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 | |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 13 | #ifdef CONFIG_HAP_CRYPT |
| 14 | /* This is to have crypt() defined on Linux */ |
| 15 | #define _GNU_SOURCE |
| 16 | |
| 17 | #ifdef NEED_CRYPT_H |
| 18 | /* some platforms such as Solaris need this */ |
| 19 | #include <crypt.h> |
| 20 | #endif |
| 21 | #endif /* CONFIG_HAP_CRYPT */ |
| 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> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | |
| 46 | #include <types/capture.h> |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 47 | #include <types/compression.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> |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 57 | #include <proto/auth.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 58 | #include <proto/backend.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 59 | #include <proto/channel.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 60 | #include <proto/checks.h> |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 61 | #include <proto/compression.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 | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 66 | #include <proto/hdr_idx.h> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 67 | #include <proto/lb_chash.h> |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 68 | #include <proto/lb_fas.h> |
Willy Tarreau | f89c187 | 2009-10-01 11:19:37 +0200 | [diff] [blame] | 69 | #include <proto/lb_fwlc.h> |
| 70 | #include <proto/lb_fwrr.h> |
| 71 | #include <proto/lb_map.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 72 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 73 | #include <proto/log.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 74 | #include <proto/protocol.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 75 | #include <proto/proto_tcp.h> |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 76 | #include <proto/proto_uxst.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 77 | #include <proto/proto_http.h> |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 78 | #include <proto/proxy.h> |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 79 | #include <proto/peers.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 80 | #include <proto/sample.h> |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 81 | #include <proto/session.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 82 | #include <proto/server.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 83 | #include <proto/stream.h> |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 84 | #include <proto/stick_table.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 85 | #include <proto/task.h> |
| 86 | #include <proto/tcp_rules.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 87 | |
| 88 | |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 89 | /* This is the SSLv3 CLIENT HELLO packet used in conjunction with the |
| 90 | * ssl-hello-chk option to ensure that the remote server speaks SSL. |
| 91 | * |
| 92 | * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details. |
| 93 | */ |
| 94 | const char sslv3_client_hello_pkt[] = { |
| 95 | "\x16" /* ContentType : 0x16 = Hanshake */ |
| 96 | "\x03\x00" /* ProtocolVersion : 0x0300 = SSLv3 */ |
| 97 | "\x00\x79" /* ContentLength : 0x79 bytes after this one */ |
| 98 | "\x01" /* HanshakeType : 0x01 = CLIENT HELLO */ |
| 99 | "\x00\x00\x75" /* HandshakeLength : 0x75 bytes after this one */ |
| 100 | "\x03\x00" /* Hello Version : 0x0300 = v3 */ |
| 101 | "\x00\x00\x00\x00" /* Unix GMT Time (s) : filled with <now> (@0x0B) */ |
| 102 | "HAPROXYSSLCHK\nHAPROXYSSLCHK\n" /* Random : must be exactly 28 bytes */ |
| 103 | "\x00" /* Session ID length : empty (no session ID) */ |
| 104 | "\x00\x4E" /* Cipher Suite Length : 78 bytes after this one */ |
| 105 | "\x00\x01" "\x00\x02" "\x00\x03" "\x00\x04" /* 39 most common ciphers : */ |
| 106 | "\x00\x05" "\x00\x06" "\x00\x07" "\x00\x08" /* 0x01...0x1B, 0x2F...0x3A */ |
| 107 | "\x00\x09" "\x00\x0A" "\x00\x0B" "\x00\x0C" /* This covers RSA/DH, */ |
| 108 | "\x00\x0D" "\x00\x0E" "\x00\x0F" "\x00\x10" /* various bit lengths, */ |
| 109 | "\x00\x11" "\x00\x12" "\x00\x13" "\x00\x14" /* SHA1/MD5, DES/3DES/AES... */ |
| 110 | "\x00\x15" "\x00\x16" "\x00\x17" "\x00\x18" |
| 111 | "\x00\x19" "\x00\x1A" "\x00\x1B" "\x00\x2F" |
| 112 | "\x00\x30" "\x00\x31" "\x00\x32" "\x00\x33" |
| 113 | "\x00\x34" "\x00\x35" "\x00\x36" "\x00\x37" |
| 114 | "\x00\x38" "\x00\x39" "\x00\x3A" |
| 115 | "\x01" /* Compression Length : 0x01 = 1 byte for types */ |
| 116 | "\x00" /* Compression Type : 0x00 = NULL compression */ |
| 117 | }; |
| 118 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 119 | /* various keyword modifiers */ |
| 120 | enum kw_mod { |
| 121 | KWM_STD = 0, /* normal */ |
| 122 | KWM_NO, /* "no" prefixed before the keyword */ |
| 123 | KWM_DEF, /* "default" prefixed before the keyword */ |
| 124 | }; |
| 125 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 126 | /* permit to store configuration section */ |
| 127 | struct cfg_section { |
| 128 | struct list list; |
| 129 | char *section_name; |
| 130 | int (*section_parser)(const char *, int, char **, int); |
| 131 | }; |
| 132 | |
| 133 | /* Used to chain configuration sections definitions. This list |
| 134 | * stores struct cfg_section |
| 135 | */ |
| 136 | struct list sections = LIST_HEAD_INIT(sections); |
| 137 | |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 138 | /* some of the most common options which are also the easiest to handle */ |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 139 | struct cfg_opt { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 140 | const char *name; |
| 141 | unsigned int val; |
| 142 | unsigned int cap; |
Willy Tarreau | 4fee4e9 | 2007-01-06 21:09:17 +0100 | [diff] [blame] | 143 | unsigned int checks; |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 144 | unsigned int mode; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 145 | }; |
| 146 | |
| 147 | /* proxy->options */ |
| 148 | static const struct cfg_opt cfg_opts[] = |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 149 | { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 150 | { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 }, |
| 151 | { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 }, |
| 152 | { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 153 | { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 }, |
| 154 | { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 }, |
| 155 | { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 156 | { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 157 | { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 0f228a0 | 2015-05-01 15:37:53 +0200 | [diff] [blame] | 158 | { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 9420b12 | 2013-12-15 18:58:25 +0100 | [diff] [blame] | 159 | { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 160 | { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 }, |
| 161 | { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 }, |
| 162 | { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 163 | { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 }, |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 164 | #ifdef TPROXY |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 165 | { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 }, |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 166 | #else |
| 167 | { "transparent", 0, 0, 0, 0 }, |
Willy Tarreau | 8f922fc | 2007-01-06 21:11:49 +0100 | [diff] [blame] | 168 | #endif |
| 169 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 170 | { NULL, 0, 0, 0, 0 } |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 171 | }; |
| 172 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 173 | /* proxy->options2 */ |
| 174 | static const struct cfg_opt cfg_opts2[] = |
| 175 | { |
| 176 | #ifdef CONFIG_HAP_LINUX_SPLICE |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 177 | { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 178 | { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 179 | { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 180 | #else |
| 181 | { "splice-request", 0, 0, 0, 0 }, |
| 182 | { "splice-response", 0, 0, 0, 0 }, |
| 183 | { "splice-auto", 0, 0, 0, 0 }, |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 184 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 185 | { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 186 | { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 187 | { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 }, |
| 188 | { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 }, |
| 189 | { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 }, |
| 190 | { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 }, |
| 191 | { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 }, |
| 192 | { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 }, |
| 193 | { "independant-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Jamie Gloudon | 801a0a3 | 2012-08-25 00:18:33 -0400 | [diff] [blame] | 194 | { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 195 | { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP }, |
Willy Tarreau | e52564c | 2010-04-27 22:19:14 +0200 | [diff] [blame] | 196 | { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 197 | { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 198 | { NULL, 0, 0, 0 } |
| 199 | }; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 200 | |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 201 | static char *cursection = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 202 | static struct proxy defproxy; /* fake proxy used to assign default values on all instances */ |
| 203 | int cfg_maxpconn = DEFAULT_MAXCONN; /* # of simultaneous connections per proxy (-N) */ |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 204 | int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */ |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 205 | char *cfg_scope = NULL; /* the current scope during the configuration parsing */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 206 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 207 | /* List head of all known configuration keywords */ |
| 208 | static struct cfg_kw_list cfg_keywords = { |
| 209 | .list = LIST_HEAD_INIT(cfg_keywords.list) |
| 210 | }; |
| 211 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 212 | /* |
| 213 | * converts <str> to a list of listeners which are dynamically allocated. |
| 214 | * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where : |
| 215 | * - <addr> can be empty or "*" to indicate INADDR_ANY ; |
| 216 | * - <port> is a numerical port from 1 to 65535 ; |
| 217 | * - <end> indicates to use the range from <port> to <end> instead (inclusive). |
| 218 | * 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] | 219 | * Function returns 1 for success or 0 if error. In case of errors, if <err> is |
| 220 | * not NULL, it must be a valid pointer to either NULL or a freeable area that |
| 221 | * will be replaced with an error message. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 222 | */ |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 223 | 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] | 224 | { |
| 225 | struct listener *l; |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 226 | char *next, *dupstr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 227 | int port, end; |
| 228 | |
| 229 | next = dupstr = strdup(str); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 230 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 231 | while (next && *next) { |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 232 | struct sockaddr_storage ss, *ss2; |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 233 | int fd = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 234 | |
| 235 | str = next; |
| 236 | /* 1) look for the end of the first address */ |
Krzysztof Piotr Oledzki | 52d522b | 2009-01-27 16:57:08 +0100 | [diff] [blame] | 237 | if ((next = strchr(str, ',')) != NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 238 | *next++ = 0; |
| 239 | } |
| 240 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 241 | ss2 = str2sa_range(str, NULL, &port, &end, err, |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 242 | curproxy == global.stats_fe ? NULL : global.unix_bind.prefix, |
Thierry FOURNIER | 7fe3be7 | 2015-09-26 20:03:36 +0200 | [diff] [blame] | 243 | NULL, 1); |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 244 | if (!ss2) |
| 245 | goto fail; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 246 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 247 | if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 248 | if (!port && !end) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 249 | memprintf(err, "missing port number: '%s'\n", str); |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 250 | goto fail; |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 251 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 252 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 253 | if (!port || !end) { |
| 254 | memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str); |
| 255 | goto fail; |
| 256 | } |
| 257 | |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 258 | if (port < 1 || port > 65535) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 259 | memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str); |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 260 | goto fail; |
| 261 | } |
| 262 | |
| 263 | if (end < 1 || end > 65535) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 264 | memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str); |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 265 | goto fail; |
| 266 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 267 | } |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 268 | else if (ss2->ss_family == AF_UNSPEC) { |
| 269 | socklen_t addr_len; |
| 270 | |
| 271 | /* We want to attach to an already bound fd whose number |
| 272 | * is in the addr part of ss2 when cast to sockaddr_in. |
| 273 | * Note that by definition there is a single listener. |
| 274 | * We still have to determine the address family to |
| 275 | * register the correct protocol. |
| 276 | */ |
| 277 | fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr; |
| 278 | addr_len = sizeof(*ss2); |
| 279 | if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) { |
| 280 | memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno)); |
| 281 | goto fail; |
| 282 | } |
| 283 | |
| 284 | port = end = get_host_port(ss2); |
| 285 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 286 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 287 | /* OK the address looks correct */ |
Vincent Bernat | 6e61589 | 2016-05-18 16:17:44 +0200 | [diff] [blame] | 288 | memcpy(&ss, ss2, sizeof(ss)); |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 289 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 290 | for (; port <= end; port++) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 291 | l = calloc(1, sizeof(*l)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 292 | l->obj_type = OBJ_TYPE_LISTENER; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 293 | LIST_ADDQ(&curproxy->conf.listeners, &l->by_fe); |
| 294 | LIST_ADDQ(&bind_conf->listeners, &l->by_bind); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 295 | l->bind_conf = bind_conf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 296 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 297 | l->fd = fd; |
Vincent Bernat | 6e46ff1 | 2016-05-19 11:29:43 +0200 | [diff] [blame] | 298 | memcpy(&l->addr, &ss, sizeof(ss)); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 299 | l->state = LI_INIT; |
| 300 | |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 301 | if (ss.ss_family == AF_INET) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 302 | ((struct sockaddr_in *)(&l->addr))->sin_port = htons(port); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 303 | tcpv4_add_listener(l); |
| 304 | } |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 305 | else if (ss.ss_family == AF_INET6) { |
| 306 | ((struct sockaddr_in6 *)(&l->addr))->sin6_port = htons(port); |
| 307 | tcpv6_add_listener(l); |
| 308 | } |
| 309 | else { |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 310 | uxst_add_listener(l); |
| 311 | } |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 312 | |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 313 | jobs++; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 314 | listeners++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 315 | } /* end for(port) */ |
| 316 | } /* end while(next) */ |
| 317 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 318 | return 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 319 | fail: |
| 320 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 321 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 322 | } |
| 323 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 324 | /* |
Willy Tarreau | ece9b07 | 2016-12-21 22:41:44 +0100 | [diff] [blame] | 325 | * Report an error in <msg> when there are too many arguments. This version is |
| 326 | * intended to be used by keyword parsers so that the message will be included |
| 327 | * into the general error message. The index is the current keyword in args. |
| 328 | * Return 0 if the number of argument is correct, otherwise build a message and |
| 329 | * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The |
| 330 | * message may also be null, it will simply not be produced (useful to check only). |
| 331 | * <msg> and <err_code> are only affected on error. |
| 332 | */ |
| 333 | int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code) |
| 334 | { |
| 335 | int i; |
| 336 | |
| 337 | if (!*args[index + maxarg + 1]) |
| 338 | return 0; |
| 339 | |
| 340 | if (msg) { |
| 341 | *msg = NULL; |
| 342 | memprintf(msg, "%s", args[0]); |
| 343 | for (i = 1; i <= index; i++) |
| 344 | memprintf(msg, "%s %s", *msg, args[i]); |
| 345 | |
| 346 | memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]); |
| 347 | } |
| 348 | if (err_code) |
| 349 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 350 | |
| 351 | return 1; |
| 352 | } |
| 353 | |
| 354 | /* |
| 355 | * same as too_many_args_idx with a 0 index |
| 356 | */ |
| 357 | int too_many_args(int maxarg, char **args, char **msg, int *err_code) |
| 358 | { |
| 359 | return too_many_args_idx(maxarg, 0, args, msg, err_code); |
| 360 | } |
| 361 | |
| 362 | /* |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 363 | * Report a fatal Alert when there is too much arguments |
| 364 | * The index is the current keyword in args |
| 365 | * Return 0 if the number of argument is correct, otherwise emit an alert and return 1 |
| 366 | * Fill err_code with an ERR_ALERT and an ERR_FATAL |
| 367 | */ |
| 368 | int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code) |
| 369 | { |
| 370 | char *kw = NULL; |
| 371 | int i; |
| 372 | |
| 373 | if (!*args[index + maxarg + 1]) |
| 374 | return 0; |
| 375 | |
| 376 | memprintf(&kw, "%s", args[0]); |
| 377 | for (i = 1; i <= index; i++) { |
| 378 | memprintf(&kw, "%s %s", kw, args[i]); |
| 379 | } |
| 380 | |
| 381 | Alert("parsing [%s:%d] : '%s' cannot handle unexpected argument '%s'.\n", file, linenum, kw, args[index + maxarg + 1]); |
| 382 | free(kw); |
| 383 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 384 | return 1; |
| 385 | } |
| 386 | |
| 387 | /* |
| 388 | * same as alertif_too_many_args_idx with a 0 index |
| 389 | */ |
| 390 | int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code) |
| 391 | { |
| 392 | return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code); |
| 393 | } |
| 394 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 395 | /* Report a warning if a rule is placed after a 'tcp-request session' rule. |
| 396 | * Return 1 if the warning has been emitted, otherwise 0. |
| 397 | */ |
| 398 | int warnif_rule_after_tcp_sess(struct proxy *proxy, const char *file, int line, const char *arg) |
| 399 | { |
| 400 | if (!LIST_ISEMPTY(&proxy->tcp_req.l5_rules)) { |
| 401 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'tcp-request session' rule will still be processed before.\n", |
| 402 | file, line, arg); |
| 403 | return 1; |
| 404 | } |
| 405 | return 0; |
| 406 | } |
| 407 | |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 408 | /* Report a warning if a rule is placed after a 'tcp-request content' rule. |
| 409 | * Return 1 if the warning has been emitted, otherwise 0. |
| 410 | */ |
| 411 | int warnif_rule_after_tcp_cont(struct proxy *proxy, const char *file, int line, const char *arg) |
| 412 | { |
| 413 | if (!LIST_ISEMPTY(&proxy->tcp_req.inspect_rules)) { |
| 414 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'tcp-request content' rule will still be processed before.\n", |
| 415 | file, line, arg); |
| 416 | return 1; |
| 417 | } |
| 418 | return 0; |
| 419 | } |
| 420 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 421 | /* Report a warning if a rule is placed after a 'block' rule. |
| 422 | * Return 1 if the warning has been emitted, otherwise 0. |
| 423 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 424 | int warnif_rule_after_block(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 425 | { |
Willy Tarreau | 353bc9f | 2014-04-28 22:05:31 +0200 | [diff] [blame] | 426 | if (!LIST_ISEMPTY(&proxy->block_rules)) { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 427 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'block' rule will still be processed before.\n", |
| 428 | file, line, arg); |
| 429 | return 1; |
| 430 | } |
| 431 | return 0; |
| 432 | } |
| 433 | |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 434 | /* Report a warning if a rule is placed after an 'http_request' rule. |
| 435 | * Return 1 if the warning has been emitted, otherwise 0. |
| 436 | */ |
| 437 | int warnif_rule_after_http_req(struct proxy *proxy, const char *file, int line, const char *arg) |
| 438 | { |
| 439 | if (!LIST_ISEMPTY(&proxy->http_req_rules)) { |
| 440 | Warning("parsing [%s:%d] : a '%s' rule placed after an 'http-request' rule will still be processed before.\n", |
| 441 | file, line, arg); |
| 442 | return 1; |
| 443 | } |
| 444 | return 0; |
| 445 | } |
| 446 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 447 | /* Report a warning if a rule is placed after a reqrewrite rule. |
| 448 | * Return 1 if the warning has been emitted, otherwise 0. |
| 449 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 450 | int warnif_rule_after_reqxxx(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 451 | { |
| 452 | if (proxy->req_exp) { |
| 453 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'reqxxx' rule will still be processed before.\n", |
| 454 | file, line, arg); |
| 455 | return 1; |
| 456 | } |
| 457 | return 0; |
| 458 | } |
| 459 | |
| 460 | /* Report a warning if a rule is placed after a reqadd rule. |
| 461 | * Return 1 if the warning has been emitted, otherwise 0. |
| 462 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 463 | int warnif_rule_after_reqadd(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 464 | { |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 465 | if (!LIST_ISEMPTY(&proxy->req_add)) { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 466 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'reqadd' rule will still be processed before.\n", |
| 467 | file, line, arg); |
| 468 | return 1; |
| 469 | } |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | /* Report a warning if a rule is placed after a redirect rule. |
| 474 | * Return 1 if the warning has been emitted, otherwise 0. |
| 475 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 476 | int warnif_rule_after_redirect(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 477 | { |
| 478 | if (!LIST_ISEMPTY(&proxy->redirect_rules)) { |
| 479 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'redirect' rule will still be processed before.\n", |
| 480 | file, line, arg); |
| 481 | return 1; |
| 482 | } |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | /* Report a warning if a rule is placed after a 'use_backend' rule. |
| 487 | * Return 1 if the warning has been emitted, otherwise 0. |
| 488 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 489 | int warnif_rule_after_use_backend(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 490 | { |
| 491 | if (!LIST_ISEMPTY(&proxy->switching_rules)) { |
| 492 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'use_backend' rule will still be processed before.\n", |
| 493 | file, line, arg); |
| 494 | return 1; |
| 495 | } |
| 496 | return 0; |
| 497 | } |
| 498 | |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 499 | /* Report a warning if a rule is placed after a 'use-server' rule. |
| 500 | * Return 1 if the warning has been emitted, otherwise 0. |
| 501 | */ |
| 502 | int warnif_rule_after_use_server(struct proxy *proxy, const char *file, int line, const char *arg) |
| 503 | { |
| 504 | if (!LIST_ISEMPTY(&proxy->server_rules)) { |
| 505 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'use-server' rule will still be processed before.\n", |
| 506 | file, line, arg); |
| 507 | return 1; |
| 508 | } |
| 509 | return 0; |
| 510 | } |
| 511 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 512 | /* report a warning if a redirect rule is dangerously placed */ |
| 513 | int warnif_misplaced_redirect(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 514 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 515 | return warnif_rule_after_use_backend(proxy, file, line, arg) || |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 516 | warnif_rule_after_use_server(proxy, file, line, arg); |
| 517 | } |
| 518 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 519 | /* report a warning if a reqadd rule is dangerously placed */ |
| 520 | int warnif_misplaced_reqadd(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 521 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 522 | return warnif_rule_after_redirect(proxy, file, line, arg) || |
| 523 | warnif_misplaced_redirect(proxy, file, line, arg); |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 524 | } |
| 525 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 526 | /* report a warning if a reqxxx rule is dangerously placed */ |
| 527 | int warnif_misplaced_reqxxx(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 528 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 529 | return warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 530 | warnif_misplaced_reqadd(proxy, file, line, arg); |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | /* report a warning if an http-request rule is dangerously placed */ |
| 534 | int warnif_misplaced_http_req(struct proxy *proxy, const char *file, int line, const char *arg) |
| 535 | { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 536 | return warnif_rule_after_reqxxx(proxy, file, line, arg) || |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 537 | warnif_misplaced_reqxxx(proxy, file, line, arg);; |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 538 | } |
| 539 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 540 | /* report a warning if a block rule is dangerously placed */ |
| 541 | int warnif_misplaced_block(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 542 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 543 | return warnif_rule_after_http_req(proxy, file, line, arg) || |
| 544 | warnif_misplaced_http_req(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 545 | } |
| 546 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 547 | /* report a warning if a "tcp request content" rule is dangerously placed */ |
| 548 | int warnif_misplaced_tcp_cont(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 549 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 550 | return warnif_rule_after_block(proxy, file, line, arg) || |
| 551 | warnif_misplaced_block(proxy, file, line, arg); |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 552 | } |
| 553 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 554 | /* report a warning if a "tcp request session" rule is dangerously placed */ |
| 555 | int warnif_misplaced_tcp_sess(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 556 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 557 | return warnif_rule_after_tcp_cont(proxy, file, line, arg) || |
| 558 | warnif_misplaced_tcp_cont(proxy, file, line, arg); |
| 559 | } |
| 560 | |
| 561 | /* report a warning if a "tcp request connection" rule is dangerously placed */ |
| 562 | int warnif_misplaced_tcp_conn(struct proxy *proxy, const char *file, int line, const char *arg) |
| 563 | { |
| 564 | return warnif_rule_after_tcp_sess(proxy, file, line, arg) || |
| 565 | warnif_misplaced_tcp_sess(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 566 | } |
| 567 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 568 | /* Report it if a request ACL condition uses some keywords that are incompatible |
| 569 | * with the place where the ACL is used. It returns either 0 or ERR_WARN so that |
| 570 | * its result can be or'ed with err_code. Note that <cond> may be NULL and then |
| 571 | * will be ignored. |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 572 | */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 573 | static 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] | 574 | { |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 575 | const struct acl *acl; |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 576 | const char *kw; |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 577 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 578 | if (!cond) |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 579 | return 0; |
| 580 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 581 | acl = acl_cond_conflicts(cond, where); |
| 582 | if (acl) { |
| 583 | if (acl->name && *acl->name) |
| 584 | Warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n", |
| 585 | file, line, acl->name, sample_ckp_names(where)); |
| 586 | else |
| 587 | Warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 588 | 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] | 589 | return ERR_WARN; |
| 590 | } |
| 591 | if (!acl_cond_kw_conflicts(cond, where, &acl, &kw)) |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 592 | return 0; |
| 593 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 594 | if (acl->name && *acl->name) |
| 595 | Warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 596 | file, line, acl->name, kw, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 597 | else |
| 598 | Warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 599 | file, line, kw, sample_ckp_names(where)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 600 | return ERR_WARN; |
| 601 | } |
| 602 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 603 | /* |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 604 | * parse a line in a <global> section. Returns the error code, 0 if OK, or |
| 605 | * any combination of : |
| 606 | * - ERR_ABORT: must abort ASAP |
| 607 | * - ERR_FATAL: we can continue parsing but not start the service |
| 608 | * - ERR_WARN: a warning has been emitted |
| 609 | * - ERR_ALERT: an alert has been emitted |
| 610 | * Only the two first ones can stop processing, the two others are just |
| 611 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 612 | */ |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 613 | int cfg_parse_global(const char *file, int linenum, char **args, int kwm) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 614 | { |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 615 | int err_code = 0; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 616 | char *errmsg = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 617 | |
| 618 | if (!strcmp(args[0], "global")) { /* new section */ |
| 619 | /* no option, nothing special to do */ |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 620 | alertif_too_many_args(0, file, linenum, args, &err_code); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 621 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 622 | } |
| 623 | else if (!strcmp(args[0], "daemon")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 624 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 625 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 626 | global.mode |= MODE_DAEMON; |
| 627 | } |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 628 | else if (!strcmp(args[0], "master-worker")) { |
William Lallemand | 69f9b3b | 2017-06-01 17:38:54 +0200 | [diff] [blame] | 629 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 630 | goto out; |
William Lallemand | 69f9b3b | 2017-06-01 17:38:54 +0200 | [diff] [blame] | 631 | if (*args[1]) { |
| 632 | if (!strcmp(args[1], "exit-on-failure")) { |
| 633 | global.tune.options |= GTUNE_EXIT_ONFAILURE; |
| 634 | } else { |
| 635 | Alert("parsing [%s:%d] : '%s' only supports 'exit-on-failure' option.\n", file, linenum, args[0]); |
| 636 | err_code |= ERR_ALERT | ERR_FATAL; |
| 637 | goto out; |
| 638 | } |
| 639 | } |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 640 | global.mode |= MODE_MWORKER; |
| 641 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 642 | else if (!strcmp(args[0], "debug")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 643 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 644 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 645 | global.mode |= MODE_DEBUG; |
| 646 | } |
| 647 | else if (!strcmp(args[0], "noepoll")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 648 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 649 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 650 | global.tune.options &= ~GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 651 | } |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 652 | else if (!strcmp(args[0], "nokqueue")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 653 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 654 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 655 | global.tune.options &= ~GTUNE_USE_KQUEUE; |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 656 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 657 | else if (!strcmp(args[0], "nopoll")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 658 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 659 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 660 | global.tune.options &= ~GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 661 | } |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 662 | else if (!strcmp(args[0], "nosplice")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 663 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 664 | goto out; |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 665 | global.tune.options &= ~GTUNE_USE_SPLICE; |
| 666 | } |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 667 | else if (!strcmp(args[0], "nogetaddrinfo")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 668 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 669 | goto out; |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 670 | global.tune.options &= ~GTUNE_USE_GAI; |
| 671 | } |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 672 | else if (!strcmp(args[0], "noreuseport")) { |
| 673 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 674 | goto out; |
| 675 | global.tune.options &= ~GTUNE_USE_REUSEPORT; |
| 676 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 677 | else if (!strcmp(args[0], "quiet")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 678 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 679 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 680 | global.mode |= MODE_QUIET; |
| 681 | } |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 682 | else if (!strcmp(args[0], "tune.maxpollevents")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 683 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 684 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 685 | if (global.tune.maxpollevents != 0) { |
| 686 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 687 | err_code |= ERR_ALERT; |
| 688 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 689 | } |
| 690 | if (*(args[1]) == 0) { |
| 691 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 692 | err_code |= ERR_ALERT | ERR_FATAL; |
| 693 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 694 | } |
| 695 | global.tune.maxpollevents = atol(args[1]); |
| 696 | } |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 697 | else if (!strcmp(args[0], "tune.maxaccept")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 698 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 699 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 700 | if (global.tune.maxaccept != 0) { |
| 701 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 702 | err_code |= ERR_ALERT; |
| 703 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 704 | } |
| 705 | if (*(args[1]) == 0) { |
| 706 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 707 | err_code |= ERR_ALERT | ERR_FATAL; |
| 708 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 709 | } |
| 710 | global.tune.maxaccept = atol(args[1]); |
| 711 | } |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 712 | else if (!strcmp(args[0], "tune.chksize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 713 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 714 | goto out; |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 715 | if (*(args[1]) == 0) { |
| 716 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 717 | err_code |= ERR_ALERT | ERR_FATAL; |
| 718 | goto out; |
| 719 | } |
| 720 | global.tune.chksize = atol(args[1]); |
| 721 | } |
Willy Tarreau | b22fc30 | 2015-12-14 12:04:35 +0100 | [diff] [blame] | 722 | else if (!strcmp(args[0], "tune.recv_enough")) { |
| 723 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 724 | goto out; |
| 725 | if (*(args[1]) == 0) { |
| 726 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 727 | err_code |= ERR_ALERT | ERR_FATAL; |
| 728 | goto out; |
| 729 | } |
| 730 | global.tune.recv_enough = atol(args[1]); |
| 731 | } |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 732 | else if (!strcmp(args[0], "tune.buffers.limit")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 733 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 734 | goto out; |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 735 | if (*(args[1]) == 0) { |
| 736 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 737 | err_code |= ERR_ALERT | ERR_FATAL; |
| 738 | goto out; |
| 739 | } |
| 740 | global.tune.buf_limit = atol(args[1]); |
| 741 | if (global.tune.buf_limit) { |
| 742 | if (global.tune.buf_limit < 3) |
| 743 | global.tune.buf_limit = 3; |
| 744 | if (global.tune.buf_limit <= global.tune.reserved_bufs) |
| 745 | global.tune.buf_limit = global.tune.reserved_bufs + 1; |
| 746 | } |
| 747 | } |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 748 | else if (!strcmp(args[0], "tune.buffers.reserve")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 749 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 750 | goto out; |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 751 | if (*(args[1]) == 0) { |
| 752 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 753 | err_code |= ERR_ALERT | ERR_FATAL; |
| 754 | goto out; |
| 755 | } |
| 756 | global.tune.reserved_bufs = atol(args[1]); |
| 757 | if (global.tune.reserved_bufs < 2) |
| 758 | global.tune.reserved_bufs = 2; |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 759 | if (global.tune.buf_limit && global.tune.buf_limit <= global.tune.reserved_bufs) |
| 760 | global.tune.buf_limit = global.tune.reserved_bufs + 1; |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 761 | } |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 762 | else if (!strcmp(args[0], "tune.bufsize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 763 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 764 | goto out; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 765 | if (*(args[1]) == 0) { |
| 766 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 767 | err_code |= ERR_ALERT | ERR_FATAL; |
| 768 | goto out; |
| 769 | } |
| 770 | global.tune.bufsize = atol(args[1]); |
Willy Tarreau | 9b69454 | 2015-09-28 13:49:53 +0200 | [diff] [blame] | 771 | if (global.tune.bufsize <= 0) { |
| 772 | Alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", file, linenum, args[0]); |
| 773 | err_code |= ERR_ALERT | ERR_FATAL; |
| 774 | goto out; |
| 775 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 776 | chunk_init(&trash, realloc(trash.str, global.tune.bufsize), global.tune.bufsize); |
Willy Tarreau | 2819e99 | 2013-12-13 14:41:10 +0100 | [diff] [blame] | 777 | alloc_trash_buffers(global.tune.bufsize); |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 778 | } |
| 779 | else if (!strcmp(args[0], "tune.maxrewrite")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 780 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 781 | goto out; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 782 | if (*(args[1]) == 0) { |
| 783 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 784 | err_code |= ERR_ALERT | ERR_FATAL; |
| 785 | goto out; |
| 786 | } |
| 787 | global.tune.maxrewrite = atol(args[1]); |
Willy Tarreau | 2709784 | 2015-09-28 13:53:23 +0200 | [diff] [blame] | 788 | if (global.tune.maxrewrite < 0) { |
| 789 | Alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", file, linenum, args[0]); |
| 790 | err_code |= ERR_ALERT | ERR_FATAL; |
| 791 | goto out; |
| 792 | } |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 793 | } |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 794 | else if (!strcmp(args[0], "tune.idletimer")) { |
| 795 | unsigned int idle; |
| 796 | const char *res; |
| 797 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 798 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 799 | goto out; |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 800 | if (*(args[1]) == 0) { |
| 801 | Alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]); |
| 802 | err_code |= ERR_ALERT | ERR_FATAL; |
| 803 | goto out; |
| 804 | } |
| 805 | |
| 806 | res = parse_time_err(args[1], &idle, TIME_UNIT_MS); |
| 807 | if (res) { |
| 808 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 809 | file, linenum, *res, args[0]); |
| 810 | err_code |= ERR_ALERT | ERR_FATAL; |
| 811 | goto out; |
| 812 | } |
| 813 | |
| 814 | if (idle > 65535) { |
| 815 | Alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]); |
| 816 | err_code |= ERR_ALERT | ERR_FATAL; |
| 817 | goto out; |
| 818 | } |
| 819 | global.tune.idle_timer = idle; |
| 820 | } |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 821 | else if (!strcmp(args[0], "tune.rcvbuf.client")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 822 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 823 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 824 | if (global.tune.client_rcvbuf != 0) { |
| 825 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 826 | err_code |= ERR_ALERT; |
| 827 | goto out; |
| 828 | } |
| 829 | if (*(args[1]) == 0) { |
| 830 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 831 | err_code |= ERR_ALERT | ERR_FATAL; |
| 832 | goto out; |
| 833 | } |
| 834 | global.tune.client_rcvbuf = atol(args[1]); |
| 835 | } |
| 836 | else if (!strcmp(args[0], "tune.rcvbuf.server")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 837 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 838 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 839 | if (global.tune.server_rcvbuf != 0) { |
| 840 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 841 | err_code |= ERR_ALERT; |
| 842 | goto out; |
| 843 | } |
| 844 | if (*(args[1]) == 0) { |
| 845 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 846 | err_code |= ERR_ALERT | ERR_FATAL; |
| 847 | goto out; |
| 848 | } |
| 849 | global.tune.server_rcvbuf = atol(args[1]); |
| 850 | } |
| 851 | else if (!strcmp(args[0], "tune.sndbuf.client")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 852 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 853 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 854 | if (global.tune.client_sndbuf != 0) { |
| 855 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 856 | err_code |= ERR_ALERT; |
| 857 | goto out; |
| 858 | } |
| 859 | if (*(args[1]) == 0) { |
| 860 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 861 | err_code |= ERR_ALERT | ERR_FATAL; |
| 862 | goto out; |
| 863 | } |
| 864 | global.tune.client_sndbuf = atol(args[1]); |
| 865 | } |
| 866 | else if (!strcmp(args[0], "tune.sndbuf.server")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 867 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 868 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 869 | if (global.tune.server_sndbuf != 0) { |
| 870 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 871 | err_code |= ERR_ALERT; |
| 872 | goto out; |
| 873 | } |
| 874 | if (*(args[1]) == 0) { |
| 875 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 876 | err_code |= ERR_ALERT | ERR_FATAL; |
| 877 | goto out; |
| 878 | } |
| 879 | global.tune.server_sndbuf = atol(args[1]); |
| 880 | } |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 881 | else if (!strcmp(args[0], "tune.pipesize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 882 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 883 | goto out; |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 884 | if (*(args[1]) == 0) { |
| 885 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 886 | err_code |= ERR_ALERT | ERR_FATAL; |
| 887 | goto out; |
| 888 | } |
| 889 | global.tune.pipesize = atol(args[1]); |
| 890 | } |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 891 | else if (!strcmp(args[0], "tune.http.cookielen")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 892 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 893 | goto out; |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 894 | if (*(args[1]) == 0) { |
| 895 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 896 | err_code |= ERR_ALERT | ERR_FATAL; |
| 897 | goto out; |
| 898 | } |
| 899 | global.tune.cookie_len = atol(args[1]) + 1; |
| 900 | } |
Stéphane Cottin | 23e9e93 | 2017-05-18 08:58:41 +0200 | [diff] [blame] | 901 | else if (!strcmp(args[0], "tune.http.logurilen")) { |
| 902 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 903 | goto out; |
| 904 | if (*(args[1]) == 0) { |
| 905 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 906 | err_code |= ERR_ALERT | ERR_FATAL; |
| 907 | goto out; |
| 908 | } |
| 909 | global.tune.requri_len = atol(args[1]) + 1; |
| 910 | } |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 911 | else if (!strcmp(args[0], "tune.http.maxhdr")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 912 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 913 | goto out; |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 914 | if (*(args[1]) == 0) { |
| 915 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 916 | err_code |= ERR_ALERT | ERR_FATAL; |
| 917 | goto out; |
| 918 | } |
Christopher Faulet | 50174f3 | 2017-06-21 16:31:35 +0200 | [diff] [blame] | 919 | global.tune.max_http_hdr = atoi(args[1]); |
| 920 | if (global.tune.max_http_hdr < 1 || global.tune.max_http_hdr > 32767) { |
| 921 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 32767\n", |
| 922 | file, linenum, args[0]); |
| 923 | err_code |= ERR_ALERT | ERR_FATAL; |
| 924 | goto out; |
| 925 | } |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 926 | } |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 927 | else if (!strcmp(args[0], "tune.comp.maxlevel")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 928 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 929 | goto out; |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 930 | if (*args[1]) { |
| 931 | global.tune.comp_maxlevel = atoi(args[1]); |
| 932 | if (global.tune.comp_maxlevel < 1 || global.tune.comp_maxlevel > 9) { |
| 933 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 934 | file, linenum, args[0]); |
| 935 | err_code |= ERR_ALERT | ERR_FATAL; |
| 936 | goto out; |
| 937 | } |
| 938 | } else { |
| 939 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 940 | file, linenum, args[0]); |
| 941 | err_code |= ERR_ALERT | ERR_FATAL; |
| 942 | goto out; |
| 943 | } |
| 944 | } |
Willy Tarreau | f3045d2 | 2015-04-29 16:24:50 +0200 | [diff] [blame] | 945 | else if (!strcmp(args[0], "tune.pattern.cache-size")) { |
| 946 | if (*args[1]) { |
| 947 | global.tune.pattern_cache = atoi(args[1]); |
| 948 | if (global.tune.pattern_cache < 0) { |
| 949 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 950 | file, linenum, args[0]); |
| 951 | err_code |= ERR_ALERT | ERR_FATAL; |
| 952 | goto out; |
| 953 | } |
| 954 | } else { |
| 955 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 956 | file, linenum, args[0]); |
| 957 | err_code |= ERR_ALERT | ERR_FATAL; |
| 958 | goto out; |
| 959 | } |
| 960 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 961 | else if (!strcmp(args[0], "uid")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 962 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 963 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 964 | if (global.uid != 0) { |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 965 | Alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 966 | err_code |= ERR_ALERT; |
| 967 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 968 | } |
| 969 | if (*(args[1]) == 0) { |
| 970 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 971 | err_code |= ERR_ALERT | ERR_FATAL; |
| 972 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 973 | } |
Baptiste Assmann | 79fee6a | 2016-03-11 17:10:04 +0100 | [diff] [blame] | 974 | if (strl2irc(args[1], strlen(args[1]), &global.uid) != 0) { |
| 975 | Warning("parsing [%s:%d] : uid: string '%s' is not a number.\n | You might want to use the 'user' parameter to use a system user name.\n", file, linenum, args[1]); |
| 976 | err_code |= ERR_WARN; |
| 977 | goto out; |
| 978 | } |
| 979 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 980 | } |
| 981 | else if (!strcmp(args[0], "gid")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 982 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 983 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 984 | if (global.gid != 0) { |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 985 | Alert("parsing [%s:%d] : group/gid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 986 | err_code |= ERR_ALERT; |
| 987 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 988 | } |
| 989 | if (*(args[1]) == 0) { |
| 990 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 991 | err_code |= ERR_ALERT | ERR_FATAL; |
| 992 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 993 | } |
Baptiste Assmann | 776e518 | 2016-03-11 17:21:15 +0100 | [diff] [blame] | 994 | if (strl2irc(args[1], strlen(args[1]), &global.gid) != 0) { |
| 995 | Warning("parsing [%s:%d] : gid: string '%s' is not a number.\n | You might want to use the 'group' parameter to use a system group name.\n", file, linenum, args[1]); |
| 996 | err_code |= ERR_WARN; |
| 997 | goto out; |
| 998 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 999 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1000 | else if (!strcmp(args[0], "external-check")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1001 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 1002 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1003 | global.external_check = 1; |
| 1004 | } |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1005 | /* user/group name handling */ |
| 1006 | else if (!strcmp(args[0], "user")) { |
| 1007 | struct passwd *ha_user; |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1008 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1009 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1010 | if (global.uid != 0) { |
| 1011 | Alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1012 | err_code |= ERR_ALERT; |
| 1013 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1014 | } |
| 1015 | errno = 0; |
| 1016 | ha_user = getpwnam(args[1]); |
| 1017 | if (ha_user != NULL) { |
| 1018 | global.uid = (int)ha_user->pw_uid; |
| 1019 | } |
| 1020 | else { |
| 1021 | Alert("parsing [%s:%d] : cannot find user id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno)); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1022 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1023 | } |
| 1024 | } |
| 1025 | else if (!strcmp(args[0], "group")) { |
| 1026 | struct group *ha_group; |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1027 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1028 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1029 | if (global.gid != 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 1030 | Alert("parsing [%s:%d] : gid/group was already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1031 | err_code |= ERR_ALERT; |
| 1032 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1033 | } |
| 1034 | errno = 0; |
| 1035 | ha_group = getgrnam(args[1]); |
| 1036 | if (ha_group != NULL) { |
| 1037 | global.gid = (int)ha_group->gr_gid; |
| 1038 | } |
| 1039 | else { |
| 1040 | Alert("parsing [%s:%d] : cannot find group id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno)); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1041 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | /* end of user/group name handling*/ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1045 | else if (!strcmp(args[0], "nbproc")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1046 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1047 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1048 | if (*(args[1]) == 0) { |
| 1049 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1050 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1051 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1052 | } |
| 1053 | global.nbproc = atol(args[1]); |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1054 | if (global.nbproc < 1 || global.nbproc > LONGBITS) { |
| 1055 | Alert("parsing [%s:%d] : '%s' must be between 1 and %d (was %d).\n", |
| 1056 | file, linenum, args[0], LONGBITS, global.nbproc); |
| 1057 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1058 | goto out; |
| 1059 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1060 | } |
| 1061 | else if (!strcmp(args[0], "maxconn")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1062 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1063 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1064 | if (global.maxconn != 0) { |
| 1065 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1066 | err_code |= ERR_ALERT; |
| 1067 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1068 | } |
| 1069 | if (*(args[1]) == 0) { |
| 1070 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1071 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1072 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1073 | } |
| 1074 | global.maxconn = atol(args[1]); |
| 1075 | #ifdef SYSTEM_MAXCONN |
| 1076 | if (global.maxconn > DEFAULT_MAXCONN && cfg_maxconn <= DEFAULT_MAXCONN) { |
| 1077 | Alert("parsing [%s:%d] : maxconn value %d too high for this system.\nLimiting to %d. Please use '-n' to force the value.\n", file, linenum, global.maxconn, DEFAULT_MAXCONN); |
| 1078 | global.maxconn = DEFAULT_MAXCONN; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1079 | err_code |= ERR_ALERT; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1080 | } |
| 1081 | #endif /* SYSTEM_MAXCONN */ |
| 1082 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1083 | else if (!strcmp(args[0], "ssl-server-verify")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1084 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1085 | goto out; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1086 | if (*(args[1]) == 0) { |
| 1087 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1088 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1089 | goto out; |
| 1090 | } |
| 1091 | if (strcmp(args[1],"none") == 0) |
| 1092 | global.ssl_server_verify = SSL_SERVER_VERIFY_NONE; |
| 1093 | else if (strcmp(args[1],"required") == 0) |
| 1094 | global.ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED; |
| 1095 | else { |
| 1096 | Alert("parsing [%s:%d] : '%s' expects 'none' or 'required' as argument.\n", file, linenum, args[0]); |
| 1097 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1098 | goto out; |
| 1099 | } |
| 1100 | } |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 1101 | else if (!strcmp(args[0], "maxconnrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1102 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1103 | goto out; |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 1104 | if (global.cps_lim != 0) { |
| 1105 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1106 | err_code |= ERR_ALERT; |
| 1107 | goto out; |
| 1108 | } |
| 1109 | if (*(args[1]) == 0) { |
| 1110 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1111 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1112 | goto out; |
| 1113 | } |
| 1114 | global.cps_lim = atol(args[1]); |
| 1115 | } |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1116 | else if (!strcmp(args[0], "maxsessrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1117 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1118 | goto out; |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1119 | if (global.sps_lim != 0) { |
| 1120 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1121 | err_code |= ERR_ALERT; |
| 1122 | goto out; |
| 1123 | } |
| 1124 | if (*(args[1]) == 0) { |
| 1125 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1126 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1127 | goto out; |
| 1128 | } |
| 1129 | global.sps_lim = atol(args[1]); |
| 1130 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1131 | else if (!strcmp(args[0], "maxsslrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1132 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1133 | goto out; |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1134 | if (global.ssl_lim != 0) { |
| 1135 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1136 | err_code |= ERR_ALERT; |
| 1137 | goto out; |
| 1138 | } |
| 1139 | if (*(args[1]) == 0) { |
| 1140 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1141 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1142 | goto out; |
| 1143 | } |
| 1144 | global.ssl_lim = atol(args[1]); |
| 1145 | } |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 1146 | else if (!strcmp(args[0], "maxcomprate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1147 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1148 | goto out; |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 1149 | if (*(args[1]) == 0) { |
| 1150 | Alert("parsing [%s:%d] : '%s' expects an integer argument in kb/s.\n", file, linenum, args[0]); |
| 1151 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1152 | goto out; |
| 1153 | } |
| 1154 | global.comp_rate_lim = atoi(args[1]) * 1024; |
| 1155 | } |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1156 | else if (!strcmp(args[0], "maxpipes")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1157 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1158 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1159 | if (global.maxpipes != 0) { |
| 1160 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1161 | err_code |= ERR_ALERT; |
| 1162 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1163 | } |
| 1164 | if (*(args[1]) == 0) { |
| 1165 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1166 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1167 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1168 | } |
| 1169 | global.maxpipes = atol(args[1]); |
| 1170 | } |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1171 | else if (!strcmp(args[0], "maxzlibmem")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1172 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1173 | goto out; |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1174 | if (*(args[1]) == 0) { |
| 1175 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1176 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1177 | goto out; |
| 1178 | } |
William Lallemand | e3a7d99 | 2012-11-20 11:25:20 +0100 | [diff] [blame] | 1179 | global.maxzlibmem = atol(args[1]) * 1024L * 1024L; |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1180 | } |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1181 | else if (!strcmp(args[0], "maxcompcpuusage")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1182 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1183 | goto out; |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1184 | if (*(args[1]) == 0) { |
| 1185 | Alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]); |
| 1186 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1187 | goto out; |
| 1188 | } |
| 1189 | compress_min_idle = 100 - atoi(args[1]); |
Willy Tarreau | cb2699a | 2013-01-24 16:25:38 +0100 | [diff] [blame] | 1190 | if (compress_min_idle > 100) { |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1191 | Alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]); |
| 1192 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1193 | goto out; |
| 1194 | } |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1195 | } |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1196 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1197 | else if (!strcmp(args[0], "ulimit-n")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1198 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1199 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1200 | if (global.rlimit_nofile != 0) { |
| 1201 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1202 | err_code |= ERR_ALERT; |
| 1203 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1204 | } |
| 1205 | if (*(args[1]) == 0) { |
| 1206 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1207 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1208 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1209 | } |
| 1210 | global.rlimit_nofile = atol(args[1]); |
| 1211 | } |
| 1212 | else if (!strcmp(args[0], "chroot")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1213 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1214 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1215 | if (global.chroot != NULL) { |
| 1216 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1217 | err_code |= ERR_ALERT; |
| 1218 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1219 | } |
| 1220 | if (*(args[1]) == 0) { |
| 1221 | Alert("parsing [%s:%d] : '%s' expects a directory as an argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1222 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1223 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1224 | } |
| 1225 | global.chroot = strdup(args[1]); |
| 1226 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1227 | else if (!strcmp(args[0], "description")) { |
| 1228 | int i, len=0; |
| 1229 | char *d; |
| 1230 | |
| 1231 | if (!*args[1]) { |
| 1232 | Alert("parsing [%s:%d]: '%s' expects a string argument.\n", |
| 1233 | file, linenum, args[0]); |
| 1234 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1235 | goto out; |
| 1236 | } |
| 1237 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 1238 | for (i = 1; *args[i]; i++) |
| 1239 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1240 | |
| 1241 | if (global.desc) |
| 1242 | free(global.desc); |
| 1243 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1244 | global.desc = d = calloc(1, len); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1245 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 1246 | d += snprintf(d, global.desc + len - d, "%s", args[1]); |
| 1247 | for (i = 2; *args[i]; i++) |
| 1248 | d += snprintf(d, global.desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1249 | } |
| 1250 | else if (!strcmp(args[0], "node")) { |
| 1251 | int i; |
| 1252 | char c; |
| 1253 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1254 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1255 | goto out; |
| 1256 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1257 | for (i=0; args[1][i]; i++) { |
| 1258 | c = args[1][i]; |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 1259 | if (!isupper((unsigned char)c) && !islower((unsigned char)c) && |
| 1260 | !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.') |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1261 | break; |
| 1262 | } |
| 1263 | |
| 1264 | if (!i || args[1][i]) { |
| 1265 | Alert("parsing [%s:%d]: '%s' requires valid node name - non-empty string" |
| 1266 | " with digits(0-9), letters(A-Z, a-z), dot(.), hyphen(-) or underscode(_).\n", |
| 1267 | file, linenum, args[0]); |
| 1268 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1269 | goto out; |
| 1270 | } |
| 1271 | |
| 1272 | if (global.node) |
| 1273 | free(global.node); |
| 1274 | |
| 1275 | global.node = strdup(args[1]); |
| 1276 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1277 | else if (!strcmp(args[0], "pidfile")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1278 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1279 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1280 | if (global.pidfile != NULL) { |
| 1281 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1282 | err_code |= ERR_ALERT; |
| 1283 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1284 | } |
| 1285 | if (*(args[1]) == 0) { |
| 1286 | Alert("parsing [%s:%d] : '%s' expects a file name as an argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1287 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1288 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1289 | } |
| 1290 | global.pidfile = strdup(args[1]); |
| 1291 | } |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 1292 | else if (!strcmp(args[0], "unix-bind")) { |
| 1293 | int cur_arg = 1; |
| 1294 | while (*(args[cur_arg])) { |
| 1295 | if (!strcmp(args[cur_arg], "prefix")) { |
| 1296 | if (global.unix_bind.prefix != NULL) { |
| 1297 | Alert("parsing [%s:%d] : unix-bind '%s' already specified. Continuing.\n", file, linenum, args[cur_arg]); |
| 1298 | err_code |= ERR_ALERT; |
| 1299 | cur_arg += 2; |
| 1300 | continue; |
| 1301 | } |
| 1302 | |
| 1303 | if (*(args[cur_arg+1]) == 0) { |
| 1304 | Alert("parsing [%s:%d] : unix_bind '%s' expects a path as an argument.\n", file, linenum, args[cur_arg]); |
| 1305 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1306 | goto out; |
| 1307 | } |
| 1308 | global.unix_bind.prefix = strdup(args[cur_arg+1]); |
| 1309 | cur_arg += 2; |
| 1310 | continue; |
| 1311 | } |
| 1312 | |
| 1313 | if (!strcmp(args[cur_arg], "mode")) { |
| 1314 | |
| 1315 | global.unix_bind.ux.mode = strtol(args[cur_arg + 1], NULL, 8); |
| 1316 | cur_arg += 2; |
| 1317 | continue; |
| 1318 | } |
| 1319 | |
| 1320 | if (!strcmp(args[cur_arg], "uid")) { |
| 1321 | |
| 1322 | global.unix_bind.ux.uid = atol(args[cur_arg + 1 ]); |
| 1323 | cur_arg += 2; |
| 1324 | continue; |
| 1325 | } |
| 1326 | |
| 1327 | if (!strcmp(args[cur_arg], "gid")) { |
| 1328 | |
| 1329 | global.unix_bind.ux.gid = atol(args[cur_arg + 1 ]); |
| 1330 | cur_arg += 2; |
| 1331 | continue; |
| 1332 | } |
| 1333 | |
| 1334 | if (!strcmp(args[cur_arg], "user")) { |
| 1335 | struct passwd *user; |
| 1336 | |
| 1337 | user = getpwnam(args[cur_arg + 1]); |
| 1338 | if (!user) { |
| 1339 | Alert("parsing [%s:%d] : '%s' : '%s' unknown user.\n", |
| 1340 | file, linenum, args[0], args[cur_arg + 1 ]); |
| 1341 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1342 | goto out; |
| 1343 | } |
| 1344 | |
| 1345 | global.unix_bind.ux.uid = user->pw_uid; |
| 1346 | cur_arg += 2; |
| 1347 | continue; |
| 1348 | } |
| 1349 | |
| 1350 | if (!strcmp(args[cur_arg], "group")) { |
| 1351 | struct group *group; |
| 1352 | |
| 1353 | group = getgrnam(args[cur_arg + 1]); |
| 1354 | if (!group) { |
| 1355 | Alert("parsing [%s:%d] : '%s' : '%s' unknown group.\n", |
| 1356 | file, linenum, args[0], args[cur_arg + 1 ]); |
| 1357 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1358 | goto out; |
| 1359 | } |
| 1360 | |
| 1361 | global.unix_bind.ux.gid = group->gr_gid; |
| 1362 | cur_arg += 2; |
| 1363 | continue; |
| 1364 | } |
| 1365 | |
Willy Tarreau | b48f958 | 2011-09-05 01:17:06 +0200 | [diff] [blame] | 1366 | Alert("parsing [%s:%d] : '%s' only supports the 'prefix', 'mode', 'uid', 'gid', 'user' and 'group' options.\n", |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 1367 | file, linenum, args[0]); |
| 1368 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1369 | goto out; |
| 1370 | } |
| 1371 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1372 | else if (!strcmp(args[0], "log") && kwm == KWM_NO) { /* no log */ |
| 1373 | /* delete previous herited or defined syslog servers */ |
| 1374 | struct logsrv *back; |
| 1375 | struct logsrv *tmp; |
| 1376 | |
| 1377 | if (*(args[1]) != 0) { |
| 1378 | Alert("parsing [%s:%d]:%s : 'no log' does not expect arguments.\n", file, linenum, args[1]); |
| 1379 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1380 | goto out; |
| 1381 | } |
| 1382 | |
| 1383 | list_for_each_entry_safe(tmp, back, &global.logsrvs, list) { |
| 1384 | LIST_DEL(&tmp->list); |
| 1385 | free(tmp); |
| 1386 | } |
| 1387 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1388 | else if (!strcmp(args[0], "log")) { /* syslog server address */ |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1389 | struct sockaddr_storage *sk; |
| 1390 | int port1, port2; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1391 | struct logsrv *logsrv; |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1392 | int arg = 0; |
| 1393 | int len = 0; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1394 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1395 | if (alertif_too_many_args(8, file, linenum, args, &err_code)) /* does not strictly check optional arguments */ |
| 1396 | goto out; |
| 1397 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1398 | if (*(args[1]) == 0 || *(args[2]) == 0) { |
| 1399 | Alert("parsing [%s:%d] : '%s' expects <address> and <facility> as arguments.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1400 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1401 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1402 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1403 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1404 | logsrv = calloc(1, sizeof(*logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1405 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1406 | /* just after the address, a length may be specified */ |
| 1407 | if (strcmp(args[arg+2], "len") == 0) { |
| 1408 | len = atoi(args[arg+3]); |
| 1409 | if (len < 80 || len > 65535) { |
| 1410 | Alert("parsing [%s:%d] : invalid log length '%s', must be between 80 and 65535.\n", |
| 1411 | file, linenum, args[arg+3]); |
| 1412 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1413 | goto out; |
| 1414 | } |
| 1415 | logsrv->maxlen = len; |
| 1416 | |
| 1417 | /* skip these two args */ |
| 1418 | arg += 2; |
| 1419 | } |
| 1420 | else |
| 1421 | logsrv->maxlen = MAX_SYSLOG_LEN; |
| 1422 | |
| 1423 | if (logsrv->maxlen > global.max_syslog_len) { |
| 1424 | global.max_syslog_len = logsrv->maxlen; |
Hubert Verstraete | 831962e | 2016-06-28 22:44:26 +0200 | [diff] [blame] | 1425 | logheader = my_realloc2(logheader, global.max_syslog_len + 1); |
| 1426 | logheader_rfc5424 = my_realloc2(logheader_rfc5424, global.max_syslog_len + 1); |
| 1427 | logline = my_realloc2(logline, global.max_syslog_len + 1); |
| 1428 | logline_rfc5424 = my_realloc2(logline_rfc5424, global.max_syslog_len + 1); |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1429 | } |
| 1430 | |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 1431 | /* after the length, a format may be specified */ |
| 1432 | if (strcmp(args[arg+2], "format") == 0) { |
| 1433 | logsrv->format = get_log_format(args[arg+3]); |
| 1434 | if (logsrv->format < 0) { |
| 1435 | Alert("parsing [%s:%d] : unknown log format '%s'\n", file, linenum, args[arg+3]); |
| 1436 | err_code |= ERR_ALERT | ERR_FATAL; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 1437 | free(logsrv); |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 1438 | goto out; |
| 1439 | } |
| 1440 | |
| 1441 | /* skip these two args */ |
| 1442 | arg += 2; |
| 1443 | } |
| 1444 | |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 1445 | if (alertif_too_many_args_idx(3, arg + 1, file, linenum, args, &err_code)) { |
| 1446 | free(logsrv); |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1447 | goto out; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 1448 | } |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1449 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1450 | logsrv->facility = get_log_facility(args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1451 | if (logsrv->facility < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1452 | Alert("parsing [%s:%d] : unknown log facility '%s'\n", file, linenum, args[arg+2]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1453 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1454 | logsrv->facility = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1455 | } |
| 1456 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1457 | logsrv->level = 7; /* max syslog level = debug */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1458 | if (*(args[arg+3])) { |
| 1459 | logsrv->level = get_log_level(args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1460 | if (logsrv->level < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1461 | Alert("parsing [%s:%d] : unknown optional log level '%s'\n", file, linenum, args[arg+3]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1462 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1463 | logsrv->level = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1464 | } |
| 1465 | } |
| 1466 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1467 | logsrv->minlvl = 0; /* limit syslog level to this level (emerg) */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1468 | if (*(args[arg+4])) { |
| 1469 | logsrv->minlvl = get_log_level(args[arg+4]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1470 | if (logsrv->minlvl < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1471 | Alert("parsing [%s:%d] : unknown optional minimum log level '%s'\n", file, linenum, args[arg+4]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1472 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1473 | logsrv->minlvl = 0; |
Willy Tarreau | f7edefa | 2009-05-10 17:20:05 +0200 | [diff] [blame] | 1474 | } |
| 1475 | } |
| 1476 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 1477 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1478 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1479 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1480 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1481 | free(logsrv); |
| 1482 | goto out; |
| 1483 | } |
| 1484 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1485 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1486 | if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1487 | if (port1 != port2) { |
| 1488 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 1489 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1490 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1491 | free(logsrv); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1492 | goto out; |
| 1493 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1494 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1495 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1496 | if (!port1) |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1497 | set_host_port(&logsrv->addr, SYSLOG_PORT); |
Robert Tsai | 81ae195 | 2007-12-05 10:47:29 +0100 | [diff] [blame] | 1498 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1499 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1500 | LIST_ADDQ(&global.logsrvs, &logsrv->list); |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1501 | } |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1502 | else if (!strcmp(args[0], "log-send-hostname")) { /* set the hostname in syslog header */ |
| 1503 | char *name; |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1504 | |
| 1505 | if (global.log_send_hostname != NULL) { |
| 1506 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1507 | err_code |= ERR_ALERT; |
| 1508 | goto out; |
| 1509 | } |
| 1510 | |
| 1511 | if (*(args[1])) |
| 1512 | name = args[1]; |
| 1513 | else |
| 1514 | name = hostname; |
| 1515 | |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1516 | free(global.log_send_hostname); |
Dragan Dosen | c8cfa7b | 2015-09-28 13:28:21 +0200 | [diff] [blame] | 1517 | global.log_send_hostname = strdup(name); |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1518 | } |
Baptiste Assmann | 6bc8936 | 2015-08-23 09:22:25 +0200 | [diff] [blame] | 1519 | else if (!strcmp(args[0], "server-state-base")) { /* path base where HAProxy can find server state files */ |
| 1520 | if (global.server_state_base != NULL) { |
| 1521 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1522 | err_code |= ERR_ALERT; |
| 1523 | goto out; |
| 1524 | } |
| 1525 | |
| 1526 | if (!*(args[1])) { |
| 1527 | Alert("parsing [%s:%d] : '%s' expects one argument: a directory path.\n", file, linenum, args[0]); |
| 1528 | err_code |= ERR_FATAL; |
| 1529 | goto out; |
| 1530 | } |
| 1531 | |
| 1532 | global.server_state_base = strdup(args[1]); |
| 1533 | } |
Baptiste Assmann | e088226 | 2015-08-23 09:54:31 +0200 | [diff] [blame] | 1534 | else if (!strcmp(args[0], "server-state-file")) { /* path to the file where HAProxy can load the server states */ |
| 1535 | if (global.server_state_file != NULL) { |
| 1536 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1537 | err_code |= ERR_ALERT; |
| 1538 | goto out; |
| 1539 | } |
| 1540 | |
| 1541 | if (!*(args[1])) { |
| 1542 | Alert("parsing [%s:%d] : '%s' expect one argument: a file path.\n", file, linenum, args[0]); |
| 1543 | err_code |= ERR_FATAL; |
| 1544 | goto out; |
| 1545 | } |
| 1546 | |
| 1547 | global.server_state_file = strdup(args[1]); |
| 1548 | } |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1549 | else if (!strcmp(args[0], "log-tag")) { /* tag to report to syslog */ |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1550 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1551 | goto out; |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1552 | if (*(args[1]) == 0) { |
| 1553 | Alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]); |
| 1554 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1555 | goto out; |
| 1556 | } |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 1557 | chunk_destroy(&global.log_tag); |
| 1558 | chunk_initstr(&global.log_tag, strdup(args[1])); |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1559 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1560 | else if (!strcmp(args[0], "spread-checks")) { /* random time between checks (0-50) */ |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1561 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1562 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1563 | if (global.spread_checks != 0) { |
| 1564 | Alert("parsing [%s:%d]: spread-checks already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1565 | err_code |= ERR_ALERT; |
| 1566 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1567 | } |
| 1568 | if (*(args[1]) == 0) { |
| 1569 | Alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1570 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1571 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1572 | } |
| 1573 | global.spread_checks = atol(args[1]); |
| 1574 | if (global.spread_checks < 0 || global.spread_checks > 50) { |
| 1575 | Alert("parsing [%s:%d]: 'spread-checks' needs a positive value in range 0..50.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1576 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1577 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1578 | } |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 1579 | else if (!strcmp(args[0], "max-spread-checks")) { /* maximum time between first and last check */ |
| 1580 | const char *err; |
| 1581 | unsigned int val; |
| 1582 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1583 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1584 | goto out; |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 1585 | if (*(args[1]) == 0) { |
| 1586 | Alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]); |
| 1587 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1588 | goto out; |
| 1589 | } |
| 1590 | |
| 1591 | err = parse_time_err(args[1], &val, TIME_UNIT_MS); |
| 1592 | if (err) { |
| 1593 | Alert("parsing [%s:%d]: unsupported character '%c' in '%s' (wants an integer delay).\n", file, linenum, *err, args[0]); |
| 1594 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1595 | } |
| 1596 | global.max_spread_checks = val; |
| 1597 | if (global.max_spread_checks < 0) { |
| 1598 | Alert("parsing [%s:%d]: '%s' needs a positive delay in milliseconds.\n",file, linenum, args[0]); |
| 1599 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1600 | } |
| 1601 | } |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1602 | else if (strcmp(args[0], "cpu-map") == 0) { /* map a process list to a CPU set */ |
| 1603 | #ifdef USE_CPU_AFFINITY |
| 1604 | int cur_arg, i; |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1605 | unsigned long proc = 0; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1606 | unsigned long cpus = 0; |
| 1607 | |
| 1608 | if (strcmp(args[1], "all") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1609 | proc = ~0UL; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1610 | else if (strcmp(args[1], "odd") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1611 | proc = ~0UL/3UL; /* 0x555....555 */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1612 | else if (strcmp(args[1], "even") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1613 | proc = (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1614 | else { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1615 | proc = atol(args[1]); |
| 1616 | if (proc >= 1 && proc <= LONGBITS) |
| 1617 | proc = 1UL << (proc - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1618 | } |
| 1619 | |
| 1620 | if (!proc || !*args[2]) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1621 | Alert("parsing [%s:%d]: %s expects a process number including 'all', 'odd', 'even', or a number from 1 to %d, followed by a list of CPU ranges with numbers from 0 to %d.\n", |
| 1622 | file, linenum, args[0], LONGBITS, LONGBITS - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1623 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1624 | goto out; |
| 1625 | } |
| 1626 | |
| 1627 | cur_arg = 2; |
| 1628 | while (*args[cur_arg]) { |
| 1629 | unsigned int low, high; |
| 1630 | |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 1631 | if (isdigit((int)*args[cur_arg])) { |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1632 | char *dash = strchr(args[cur_arg], '-'); |
| 1633 | |
| 1634 | low = high = str2uic(args[cur_arg]); |
| 1635 | if (dash) |
| 1636 | high = str2uic(dash + 1); |
| 1637 | |
| 1638 | if (high < low) { |
| 1639 | unsigned int swap = low; |
| 1640 | low = high; |
| 1641 | high = swap; |
| 1642 | } |
| 1643 | |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1644 | if (high >= LONGBITS) { |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1645 | Alert("parsing [%s:%d]: %s supports CPU numbers from 0 to %d.\n", |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1646 | file, linenum, args[0], LONGBITS - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1647 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1648 | goto out; |
| 1649 | } |
| 1650 | |
| 1651 | while (low <= high) |
| 1652 | cpus |= 1UL << low++; |
| 1653 | } |
| 1654 | else { |
| 1655 | Alert("parsing [%s:%d]: %s : '%s' is not a CPU range.\n", |
| 1656 | file, linenum, args[0], args[cur_arg]); |
| 1657 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1658 | goto out; |
| 1659 | } |
| 1660 | cur_arg++; |
| 1661 | } |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1662 | for (i = 0; i < LONGBITS; i++) |
| 1663 | if (proc & (1UL << i)) |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1664 | global.cpu_map[i] = cpus; |
| 1665 | #else |
| 1666 | Alert("parsing [%s:%d] : '%s' is not enabled, please check build options for USE_CPU_AFFINITY.\n", file, linenum, args[0]); |
| 1667 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1668 | goto out; |
| 1669 | #endif |
| 1670 | } |
Willy Tarreau | 1d54972 | 2016-02-16 12:41:57 +0100 | [diff] [blame] | 1671 | else if (strcmp(args[0], "setenv") == 0 || strcmp(args[0], "presetenv") == 0) { |
| 1672 | if (alertif_too_many_args(3, file, linenum, args, &err_code)) |
| 1673 | goto out; |
| 1674 | |
| 1675 | if (*(args[2]) == 0) { |
| 1676 | Alert("parsing [%s:%d]: '%s' expects a name and a value.\n", file, linenum, args[0]); |
| 1677 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1678 | goto out; |
| 1679 | } |
| 1680 | |
| 1681 | /* "setenv" overwrites, "presetenv" only sets if not yet set */ |
| 1682 | if (setenv(args[1], args[2], (args[0][0] == 's')) != 0) { |
| 1683 | Alert("parsing [%s:%d]: '%s' failed on variable '%s' : %s.\n", file, linenum, args[0], args[1], strerror(errno)); |
| 1684 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1685 | goto out; |
| 1686 | } |
| 1687 | } |
| 1688 | else if (!strcmp(args[0], "unsetenv")) { |
| 1689 | int arg; |
| 1690 | |
| 1691 | if (*(args[1]) == 0) { |
| 1692 | Alert("parsing [%s:%d]: '%s' expects at least one variable name.\n", file, linenum, args[0]); |
| 1693 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1694 | goto out; |
| 1695 | } |
| 1696 | |
| 1697 | for (arg = 1; *args[arg]; arg++) { |
| 1698 | if (unsetenv(args[arg]) != 0) { |
| 1699 | Alert("parsing [%s:%d]: '%s' failed on variable '%s' : %s.\n", file, linenum, args[0], args[arg], strerror(errno)); |
| 1700 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1701 | goto out; |
| 1702 | } |
| 1703 | } |
| 1704 | } |
| 1705 | else if (!strcmp(args[0], "resetenv")) { |
| 1706 | extern char **environ; |
| 1707 | char **env = environ; |
| 1708 | |
| 1709 | /* args contain variable names to keep, one per argument */ |
| 1710 | while (*env) { |
| 1711 | int arg; |
| 1712 | |
| 1713 | /* look for current variable in among all those we want to keep */ |
| 1714 | for (arg = 1; *args[arg]; arg++) { |
| 1715 | if (strncmp(*env, args[arg], strlen(args[arg])) == 0 && |
| 1716 | (*env)[strlen(args[arg])] == '=') |
| 1717 | break; |
| 1718 | } |
| 1719 | |
| 1720 | /* delete this variable */ |
| 1721 | if (!*args[arg]) { |
| 1722 | char *delim = strchr(*env, '='); |
| 1723 | |
| 1724 | if (!delim || delim - *env >= trash.size) { |
| 1725 | Alert("parsing [%s:%d]: '%s' failed to unset invalid variable '%s'.\n", file, linenum, args[0], *env); |
| 1726 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1727 | goto out; |
| 1728 | } |
| 1729 | |
| 1730 | memcpy(trash.str, *env, delim - *env); |
| 1731 | trash.str[delim - *env] = 0; |
| 1732 | |
| 1733 | if (unsetenv(trash.str) != 0) { |
| 1734 | Alert("parsing [%s:%d]: '%s' failed to unset variable '%s' : %s.\n", file, linenum, args[0], *env, strerror(errno)); |
| 1735 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1736 | goto out; |
| 1737 | } |
| 1738 | } |
| 1739 | else |
| 1740 | env++; |
| 1741 | } |
| 1742 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1743 | else { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1744 | struct cfg_kw_list *kwl; |
| 1745 | int index; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1746 | int rc; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1747 | |
| 1748 | list_for_each_entry(kwl, &cfg_keywords.list, list) { |
| 1749 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1750 | if (kwl->kw[index].section != CFG_GLOBAL) |
| 1751 | continue; |
| 1752 | if (strcmp(kwl->kw[index].kw, args[0]) == 0) { |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 1753 | rc = kwl->kw[index].parse(args, CFG_GLOBAL, NULL, NULL, file, linenum, &errmsg); |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1754 | if (rc < 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1755 | Alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1756 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1757 | } |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1758 | else if (rc > 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1759 | Warning("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1760 | err_code |= ERR_WARN; |
| 1761 | goto out; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1762 | } |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1763 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1764 | } |
| 1765 | } |
| 1766 | } |
| 1767 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1768 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "global"); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1769 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1770 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1771 | |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1772 | out: |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1773 | free(errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1774 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1775 | } |
| 1776 | |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1777 | void init_default_instance() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1778 | { |
Willy Tarreau | 97cb780 | 2010-01-03 20:23:58 +0100 | [diff] [blame] | 1779 | init_new_proxy(&defproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1780 | defproxy.mode = PR_MODE_TCP; |
| 1781 | defproxy.state = PR_STNEW; |
| 1782 | defproxy.maxconn = cfg_maxpconn; |
| 1783 | defproxy.conn_retries = CONN_RETRIES; |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 1784 | defproxy.redispatch_after = 0; |
Andrew Rodland | b1f48e3 | 2016-10-25 12:49:05 -0400 | [diff] [blame] | 1785 | defproxy.lbprm.chash.balance_factor = 0; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 1786 | |
Simon Horman | 6618300 | 2013-02-23 10:16:43 +0900 | [diff] [blame] | 1787 | defproxy.defsrv.check.inter = DEF_CHKINTR; |
| 1788 | defproxy.defsrv.check.fastinter = 0; |
| 1789 | defproxy.defsrv.check.downinter = 0; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 1790 | defproxy.defsrv.agent.inter = DEF_CHKINTR; |
| 1791 | defproxy.defsrv.agent.fastinter = 0; |
| 1792 | defproxy.defsrv.agent.downinter = 0; |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 1793 | defproxy.defsrv.check.rise = DEF_RISETIME; |
| 1794 | defproxy.defsrv.check.fall = DEF_FALLTIME; |
| 1795 | defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME; |
| 1796 | defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME; |
Willy Tarreau | 5b3a202 | 2012-09-28 15:01:02 +0200 | [diff] [blame] | 1797 | defproxy.defsrv.check.port = 0; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 1798 | defproxy.defsrv.agent.port = 0; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 1799 | defproxy.defsrv.maxqueue = 0; |
| 1800 | defproxy.defsrv.minconn = 0; |
| 1801 | defproxy.defsrv.maxconn = 0; |
| 1802 | defproxy.defsrv.slowstart = 0; |
| 1803 | defproxy.defsrv.onerror = DEF_HANA_ONERR; |
| 1804 | defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT; |
| 1805 | defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1; |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 1806 | |
| 1807 | defproxy.email_alert.level = LOG_ALERT; |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 1808 | defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1809 | } |
| 1810 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1811 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1812 | /* This function createss a new req* or rsp* rule to the proxy. It compiles the |
| 1813 | * regex and may return the ERR_WARN bit, and error bits such as ERR_ALERT and |
| 1814 | * ERR_FATAL in case of error. |
| 1815 | */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1816 | static int create_cond_regex_rule(const char *file, int line, |
| 1817 | struct proxy *px, int dir, int action, int flags, |
| 1818 | const char *cmd, const char *reg, const char *repl, |
| 1819 | const char **cond_start) |
| 1820 | { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1821 | struct my_regex *preg = NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1822 | char *errmsg = NULL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1823 | const char *err; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1824 | char *error; |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1825 | int ret_code = 0; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1826 | struct acl_cond *cond = NULL; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1827 | int cs; |
| 1828 | int cap; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1829 | |
| 1830 | if (px == &defproxy) { |
| 1831 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, line, cmd); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1832 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1833 | goto err; |
| 1834 | } |
| 1835 | |
| 1836 | if (*reg == 0) { |
| 1837 | Alert("parsing [%s:%d] : '%s' expects <regex> as an argument.\n", file, line, cmd); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1838 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1839 | goto err; |
| 1840 | } |
| 1841 | |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 1842 | if (warnifnotcap(px, PR_CAP_FE | PR_CAP_BE, file, line, cmd, NULL)) |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1843 | ret_code |= ERR_WARN; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1844 | |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1845 | if (cond_start && |
| 1846 | (strcmp(*cond_start, "if") == 0 || strcmp(*cond_start, "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1847 | if ((cond = build_acl_cond(file, line, px, cond_start, &errmsg)) == NULL) { |
| 1848 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 1849 | file, line, cmd, errmsg); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1850 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1851 | goto err; |
| 1852 | } |
| 1853 | } |
| 1854 | else if (cond_start && **cond_start) { |
| 1855 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 1856 | file, line, cmd, *cond_start); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1857 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1858 | goto err; |
| 1859 | } |
| 1860 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1861 | ret_code |= warnif_cond_conflicts(cond, |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1862 | (dir == SMP_OPT_DIR_REQ) ? |
| 1863 | ((px->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR) : |
| 1864 | ((px->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR), |
| 1865 | file, line); |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1866 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1867 | preg = calloc(1, sizeof(*preg)); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1868 | if (!preg) { |
| 1869 | Alert("parsing [%s:%d] : '%s' : not enough memory to build regex.\n", file, line, cmd); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1870 | ret_code = ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1871 | goto err; |
| 1872 | } |
| 1873 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1874 | cs = !(flags & REG_ICASE); |
| 1875 | cap = !(flags & REG_NOSUB); |
| 1876 | error = NULL; |
| 1877 | if (!regex_comp(reg, preg, cs, cap, &error)) { |
| 1878 | Alert("parsing [%s:%d] : '%s' : regular expression '%s' : %s\n", file, line, cmd, reg, error); |
| 1879 | free(error); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1880 | ret_code = ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1881 | goto err; |
| 1882 | } |
| 1883 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1884 | err = chain_regex((dir == SMP_OPT_DIR_REQ) ? &px->req_exp : &px->rsp_exp, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1885 | preg, action, repl ? strdup(repl) : NULL, cond); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1886 | if (repl && err) { |
| 1887 | Alert("parsing [%s:%d] : '%s' : invalid character or unterminated sequence in replacement string near '%c'.\n", |
| 1888 | file, line, cmd, *err); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1889 | ret_code |= ERR_ALERT | ERR_FATAL; |
| 1890 | goto err_free; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1891 | } |
| 1892 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1893 | if (dir == SMP_OPT_DIR_REQ && warnif_misplaced_reqxxx(px, file, line, cmd)) |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1894 | ret_code |= ERR_WARN; |
| 1895 | |
| 1896 | return ret_code; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1897 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1898 | err_free: |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1899 | regex_free(preg); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1900 | err: |
| 1901 | free(preg); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1902 | free(errmsg); |
| 1903 | return ret_code; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1904 | } |
| 1905 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1906 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 1907 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 1908 | * Returns the error code, 0 if OK, or any combination of : |
| 1909 | * - ERR_ABORT: must abort ASAP |
| 1910 | * - ERR_FATAL: we can continue parsing but not start the service |
| 1911 | * - ERR_WARN: a warning has been emitted |
| 1912 | * - ERR_ALERT: an alert has been emitted |
| 1913 | * Only the two first ones can stop processing, the two others are just |
| 1914 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1915 | */ |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1916 | int cfg_parse_peers(const char *file, int linenum, char **args, int kwm) |
| 1917 | { |
| 1918 | static struct peers *curpeers = NULL; |
| 1919 | struct peer *newpeer = NULL; |
| 1920 | const char *err; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1921 | struct bind_conf *bind_conf; |
| 1922 | struct listener *l; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1923 | int err_code = 0; |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1924 | char *errmsg = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1925 | |
| 1926 | if (strcmp(args[0], "peers") == 0) { /* new peers section */ |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1927 | if (!*args[1]) { |
| 1928 | Alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 1929 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1930 | goto out; |
| 1931 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1932 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 1933 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1934 | goto out; |
| 1935 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1936 | err = invalid_char(args[1]); |
| 1937 | if (err) { |
| 1938 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 1939 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 1940 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1941 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1942 | } |
| 1943 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1944 | for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1945 | /* |
| 1946 | * If there are two proxies with the same name only following |
| 1947 | * combinations are allowed: |
| 1948 | */ |
| 1949 | if (strcmp(curpeers->id, args[1]) == 0) { |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1950 | Alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n", |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1951 | file, linenum, args[1], curpeers->conf.file, curpeers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1952 | err_code |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1953 | } |
| 1954 | } |
| 1955 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1956 | if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1957 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 1958 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1959 | goto out; |
| 1960 | } |
| 1961 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1962 | curpeers->next = cfg_peers; |
| 1963 | cfg_peers = curpeers; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 1964 | curpeers->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1965 | curpeers->conf.line = linenum; |
| 1966 | curpeers->last_change = now.tv_sec; |
| 1967 | curpeers->id = strdup(args[1]); |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 1968 | curpeers->state = PR_STNEW; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1969 | } |
| 1970 | else if (strcmp(args[0], "peer") == 0) { /* peer definition */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 1971 | struct sockaddr_storage *sk; |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 1972 | int port1, port2; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 1973 | struct protocol *proto; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1974 | |
| 1975 | if (!*args[2]) { |
| 1976 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 1977 | file, linenum, args[0]); |
| 1978 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1979 | goto out; |
| 1980 | } |
| 1981 | |
| 1982 | err = invalid_char(args[1]); |
| 1983 | if (err) { |
| 1984 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 1985 | file, linenum, *err, args[1]); |
| 1986 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1987 | goto out; |
| 1988 | } |
| 1989 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1990 | if ((newpeer = calloc(1, sizeof(*newpeer))) == NULL) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1991 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 1992 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1993 | goto out; |
| 1994 | } |
| 1995 | |
| 1996 | /* the peers are linked backwards first */ |
| 1997 | curpeers->count++; |
| 1998 | newpeer->next = curpeers->remote; |
| 1999 | curpeers->remote = newpeer; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 2000 | newpeer->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2001 | newpeer->conf.line = linenum; |
| 2002 | |
| 2003 | newpeer->last_change = now.tv_sec; |
| 2004 | newpeer->id = strdup(args[1]); |
| 2005 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2006 | sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2007 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2008 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2009 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2010 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2011 | } |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 2012 | |
| 2013 | proto = protocol_by_family(sk->ss_family); |
| 2014 | if (!proto || !proto->connect) { |
| 2015 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 2016 | file, linenum, args[0], args[1]); |
| 2017 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2018 | goto out; |
| 2019 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2020 | |
| 2021 | if (port1 != port2) { |
| 2022 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2023 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2024 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2025 | goto out; |
| 2026 | } |
| 2027 | |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2028 | if (!port1) { |
| 2029 | Alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n", |
| 2030 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2031 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2032 | goto out; |
| 2033 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2034 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2035 | newpeer->addr = *sk; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 2036 | newpeer->proto = proto; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2037 | newpeer->xprt = xprt_get(XPRT_RAW); |
Willy Tarreau | d02394b | 2012-05-11 18:32:18 +0200 | [diff] [blame] | 2038 | newpeer->sock_init_arg = NULL; |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 2039 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2040 | if (strcmp(newpeer->id, localpeer) == 0) { |
| 2041 | /* Current is local peer, it define a frontend */ |
| 2042 | newpeer->local = 1; |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 2043 | cfg_peers->local = newpeer; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2044 | |
| 2045 | if (!curpeers->peers_fe) { |
| 2046 | if ((curpeers->peers_fe = calloc(1, sizeof(struct proxy))) == NULL) { |
| 2047 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2048 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2049 | goto out; |
| 2050 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2051 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 2052 | init_new_proxy(curpeers->peers_fe); |
| 2053 | curpeers->peers_fe->parent = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2054 | curpeers->peers_fe->id = strdup(args[1]); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2055 | curpeers->peers_fe->conf.args.file = curpeers->peers_fe->conf.file = strdup(file); |
| 2056 | curpeers->peers_fe->conf.args.line = curpeers->peers_fe->conf.line = linenum; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2057 | peers_setup_frontend(curpeers->peers_fe); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2058 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2059 | bind_conf = bind_conf_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW)); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2060 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2061 | if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) { |
| 2062 | if (errmsg && *errmsg) { |
| 2063 | indent_msg(&errmsg, 2); |
| 2064 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 2065 | } |
| 2066 | else |
| 2067 | Alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n", |
| 2068 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2069 | err_code |= ERR_FATAL; |
| 2070 | goto out; |
| 2071 | } |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2072 | |
| 2073 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | acf3bf9 | 2013-01-18 10:51:07 +0100 | [diff] [blame] | 2074 | l->maxaccept = 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2075 | l->maxconn = curpeers->peers_fe->maxconn; |
| 2076 | l->backlog = curpeers->peers_fe->backlog; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 2077 | l->accept = session_accept_fd; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2078 | l->handler = process_stream; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2079 | l->analysers |= curpeers->peers_fe->fe_req_ana; |
| 2080 | l->default_target = curpeers->peers_fe->default_target; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2081 | l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */ |
| 2082 | global.maxsock += l->maxconn; |
| 2083 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2084 | } |
Willy Tarreau | 8b8fd56 | 2013-01-18 11:12:27 +0100 | [diff] [blame] | 2085 | else { |
| 2086 | Alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d.\n", |
| 2087 | file, linenum, args[0], args[1], |
| 2088 | curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line); |
| 2089 | err_code |= ERR_FATAL; |
| 2090 | goto out; |
| 2091 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2092 | } |
| 2093 | } /* neither "peer" nor "peers" */ |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 2094 | else if (!strcmp(args[0], "disabled")) { /* disables this peers section */ |
| 2095 | curpeers->state = PR_STSTOPPED; |
| 2096 | } |
| 2097 | else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */ |
| 2098 | curpeers->state = PR_STNEW; |
| 2099 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2100 | else if (*args[0] != 0) { |
| 2101 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2102 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2103 | goto out; |
| 2104 | } |
| 2105 | |
| 2106 | out: |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2107 | free(errmsg); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2108 | return err_code; |
| 2109 | } |
| 2110 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2111 | /* |
| 2112 | * Parse a <resolvers> section. |
| 2113 | * Returns the error code, 0 if OK, or any combination of : |
| 2114 | * - ERR_ABORT: must abort ASAP |
| 2115 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2116 | * - ERR_WARN: a warning has been emitted |
| 2117 | * - ERR_ALERT: an alert has been emitted |
| 2118 | * Only the two first ones can stop processing, the two others are just |
| 2119 | * indicators. |
| 2120 | */ |
| 2121 | int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm) |
| 2122 | { |
| 2123 | static struct dns_resolvers *curr_resolvers = NULL; |
| 2124 | struct dns_nameserver *newnameserver = NULL; |
| 2125 | const char *err; |
| 2126 | int err_code = 0; |
| 2127 | char *errmsg = NULL; |
| 2128 | |
| 2129 | if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */ |
| 2130 | if (!*args[1]) { |
| 2131 | Alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum); |
| 2132 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2133 | goto out; |
| 2134 | } |
| 2135 | |
| 2136 | err = invalid_char(args[1]); |
| 2137 | if (err) { |
| 2138 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2139 | file, linenum, *err, args[0], args[1]); |
| 2140 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2141 | goto out; |
| 2142 | } |
| 2143 | |
| 2144 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 2145 | /* Error if two resolvers owns the same name */ |
| 2146 | if (strcmp(curr_resolvers->id, args[1]) == 0) { |
| 2147 | Alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n", |
| 2148 | file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line); |
| 2149 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2150 | } |
| 2151 | } |
| 2152 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2153 | if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) { |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2154 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2155 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2156 | goto out; |
| 2157 | } |
| 2158 | |
| 2159 | /* default values */ |
| 2160 | LIST_ADDQ(&dns_resolvers, &curr_resolvers->list); |
| 2161 | curr_resolvers->conf.file = strdup(file); |
| 2162 | curr_resolvers->conf.line = linenum; |
| 2163 | curr_resolvers->id = strdup(args[1]); |
| 2164 | curr_resolvers->query_ids = EB_ROOT; |
Baptiste Assmann | 2af08fe | 2017-08-14 00:13:01 +0200 | [diff] [blame] | 2165 | /* default maximum response size */ |
| 2166 | curr_resolvers->accepted_payload_size = 512; |
Baptiste Assmann | 987e16d | 2016-11-02 22:23:31 +0100 | [diff] [blame] | 2167 | /* default hold period for nx, other, refuse and timeout is 30s */ |
| 2168 | curr_resolvers->hold.nx = 30000; |
| 2169 | curr_resolvers->hold.other = 30000; |
| 2170 | curr_resolvers->hold.refused = 30000; |
| 2171 | curr_resolvers->hold.timeout = 30000; |
Baptiste Assmann | 686408b | 2017-08-18 10:15:42 +0200 | [diff] [blame] | 2172 | curr_resolvers->hold.obsolete = 0; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2173 | /* default hold period for valid is 10s */ |
Baptiste Assmann | 4c5490a | 2015-07-14 21:42:49 +0200 | [diff] [blame] | 2174 | curr_resolvers->hold.valid = 10000; |
| 2175 | curr_resolvers->timeout.retry = 1000; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2176 | curr_resolvers->resolve_retries = 3; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2177 | /* default resolution pool size */ |
| 2178 | curr_resolvers->resolution_pool_size = DNS_DEFAULT_RESOLUTION_POOL_SIZE; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2179 | LIST_INIT(&curr_resolvers->nameserver_list); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2180 | LIST_INIT(&curr_resolvers->resolution.curr); |
| 2181 | LIST_INIT(&curr_resolvers->resolution.wait); |
| 2182 | LIST_INIT(&curr_resolvers->resolution.pool); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2183 | } |
| 2184 | else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */ |
| 2185 | struct sockaddr_storage *sk; |
| 2186 | int port1, port2; |
| 2187 | struct protocol *proto; |
| 2188 | |
| 2189 | if (!*args[2]) { |
| 2190 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2191 | file, linenum, args[0]); |
| 2192 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2193 | goto out; |
| 2194 | } |
| 2195 | |
| 2196 | err = invalid_char(args[1]); |
| 2197 | if (err) { |
| 2198 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2199 | file, linenum, *err, args[1]); |
| 2200 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2201 | goto out; |
| 2202 | } |
| 2203 | |
Baptiste Assmann | a315c55 | 2015-11-02 22:55:49 +0100 | [diff] [blame] | 2204 | list_for_each_entry(newnameserver, &curr_resolvers->nameserver_list, list) { |
| 2205 | /* Error if two resolvers owns the same name */ |
| 2206 | if (strcmp(newnameserver->id, args[1]) == 0) { |
| 2207 | Alert("Parsing [%s:%d]: nameserver '%s' has same name as another nameserver (declared at %s:%d).\n", |
| 2208 | file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line); |
| 2209 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2210 | } |
| 2211 | } |
| 2212 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2213 | if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) { |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2214 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2215 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2216 | goto out; |
| 2217 | } |
| 2218 | |
| 2219 | /* the nameservers are linked backward first */ |
| 2220 | LIST_ADDQ(&curr_resolvers->nameserver_list, &newnameserver->list); |
| 2221 | curr_resolvers->count_nameservers++; |
| 2222 | newnameserver->resolvers = curr_resolvers; |
| 2223 | newnameserver->conf.file = strdup(file); |
| 2224 | newnameserver->conf.line = linenum; |
| 2225 | newnameserver->id = strdup(args[1]); |
| 2226 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2227 | sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2228 | if (!sk) { |
| 2229 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 2230 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2231 | goto out; |
| 2232 | } |
| 2233 | |
| 2234 | proto = protocol_by_family(sk->ss_family); |
| 2235 | if (!proto || !proto->connect) { |
| 2236 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 2237 | file, linenum, args[0], args[1]); |
| 2238 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2239 | goto out; |
| 2240 | } |
| 2241 | |
| 2242 | if (port1 != port2) { |
| 2243 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2244 | file, linenum, args[0], args[1], args[2]); |
| 2245 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2246 | goto out; |
| 2247 | } |
| 2248 | |
Baptiste Assmann | 7f43fa9 | 2016-01-21 00:59:46 +0100 | [diff] [blame] | 2249 | if (!port1 && !port2) { |
| 2250 | Alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n", |
| 2251 | file, linenum, args[0], args[1]); |
| 2252 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2253 | goto out; |
| 2254 | } |
| 2255 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2256 | newnameserver->addr = *sk; |
| 2257 | } |
| 2258 | else if (strcmp(args[0], "hold") == 0) { /* hold periods */ |
| 2259 | const char *res; |
| 2260 | unsigned int time; |
| 2261 | |
| 2262 | if (!*args[2]) { |
| 2263 | Alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n", |
| 2264 | file, linenum, args[0]); |
| 2265 | Alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n"); |
| 2266 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2267 | goto out; |
| 2268 | } |
| 2269 | res = parse_time_err(args[2], &time, TIME_UNIT_MS); |
| 2270 | if (res) { |
| 2271 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 2272 | file, linenum, *res, args[0]); |
| 2273 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2274 | goto out; |
| 2275 | } |
Baptiste Assmann | 987e16d | 2016-11-02 22:23:31 +0100 | [diff] [blame] | 2276 | if (strcmp(args[1], "nx") == 0) |
| 2277 | curr_resolvers->hold.nx = time; |
| 2278 | else if (strcmp(args[1], "other") == 0) |
| 2279 | curr_resolvers->hold.other = time; |
| 2280 | else if (strcmp(args[1], "refused") == 0) |
| 2281 | curr_resolvers->hold.refused = time; |
| 2282 | else if (strcmp(args[1], "timeout") == 0) |
| 2283 | curr_resolvers->hold.timeout = time; |
| 2284 | else if (strcmp(args[1], "valid") == 0) |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2285 | curr_resolvers->hold.valid = time; |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 2286 | else if (strcmp(args[1], "obsolete") == 0) |
| 2287 | curr_resolvers->hold.obsolete = time; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2288 | else { |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 2289 | Alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n", |
Baptiste Assmann | 987e16d | 2016-11-02 22:23:31 +0100 | [diff] [blame] | 2290 | file, linenum, args[0], args[1]); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2291 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2292 | goto out; |
| 2293 | } |
| 2294 | |
| 2295 | } |
Baptiste Assmann | 2af08fe | 2017-08-14 00:13:01 +0200 | [diff] [blame] | 2296 | else if (strcmp(args[0], "accepted_payload_size") == 0) { |
Baptiste Assmann | 9d8dbbc | 2017-08-18 23:35:08 +0200 | [diff] [blame] | 2297 | int i = 0; |
| 2298 | |
Baptiste Assmann | 2af08fe | 2017-08-14 00:13:01 +0200 | [diff] [blame] | 2299 | if (!*args[1]) { |
| 2300 | Alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n", |
| 2301 | file, linenum, args[0]); |
| 2302 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2303 | goto out; |
| 2304 | } |
Baptiste Assmann | 9d8dbbc | 2017-08-18 23:35:08 +0200 | [diff] [blame] | 2305 | |
| 2306 | i = atoi(args[1]); |
| 2307 | if (i > DNS_MAX_UDP_MESSAGE) { |
| 2308 | Alert("parsing [%s:%d] : '%s' size %d exceeds maximum allowed size %d.\n", |
| 2309 | file, linenum, args[0], i, DNS_MAX_UDP_MESSAGE); |
| 2310 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2311 | goto out; |
| 2312 | } |
| 2313 | |
| 2314 | curr_resolvers->accepted_payload_size = i; |
Baptiste Assmann | 2af08fe | 2017-08-14 00:13:01 +0200 | [diff] [blame] | 2315 | } |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2316 | else if (strcmp(args[0], "resolution_pool_size") == 0) { |
| 2317 | if (!*args[1]) { |
| 2318 | Alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n", |
| 2319 | file, linenum, args[0]); |
| 2320 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2321 | goto out; |
| 2322 | } |
| 2323 | curr_resolvers->resolution_pool_size = atoi(args[1]); |
| 2324 | } |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2325 | else if (strcmp(args[0], "resolve_retries") == 0) { |
| 2326 | if (!*args[1]) { |
| 2327 | Alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n", |
| 2328 | file, linenum, args[0]); |
| 2329 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2330 | goto out; |
| 2331 | } |
| 2332 | curr_resolvers->resolve_retries = atoi(args[1]); |
| 2333 | } |
| 2334 | else if (strcmp(args[0], "timeout") == 0) { |
Pieter Baauw | 7a91a0e | 2016-02-13 15:51:58 +0100 | [diff] [blame] | 2335 | if (!*args[1]) { |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2336 | Alert("parsing [%s:%d] : '%s' expects 'retry' and <time> as arguments.\n", |
| 2337 | file, linenum, args[0]); |
| 2338 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2339 | goto out; |
| 2340 | } |
Pieter Baauw | 7a91a0e | 2016-02-13 15:51:58 +0100 | [diff] [blame] | 2341 | else if (strcmp(args[1], "retry") == 0) { |
| 2342 | const char *res; |
| 2343 | unsigned int timeout_retry; |
| 2344 | |
| 2345 | if (!*args[2]) { |
| 2346 | Alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n", |
| 2347 | file, linenum, args[0], args[1]); |
| 2348 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2349 | goto out; |
| 2350 | } |
| 2351 | res = parse_time_err(args[2], &timeout_retry, TIME_UNIT_MS); |
| 2352 | if (res) { |
| 2353 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n", |
| 2354 | file, linenum, *res, args[0], args[1]); |
| 2355 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2356 | goto out; |
| 2357 | } |
| 2358 | curr_resolvers->timeout.retry = timeout_retry; |
| 2359 | } |
| 2360 | else { |
| 2361 | Alert("parsing [%s:%d] : '%s' expects 'retry' and <time> as arguments got '%s'.\n", |
| 2362 | file, linenum, args[0], args[1]); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2363 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2364 | goto out; |
| 2365 | } |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2366 | } /* neither "nameserver" nor "resolvers" */ |
| 2367 | else if (*args[0] != 0) { |
| 2368 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2369 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2370 | goto out; |
| 2371 | } |
| 2372 | |
| 2373 | out: |
| 2374 | free(errmsg); |
| 2375 | return err_code; |
| 2376 | } |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2377 | |
| 2378 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 2379 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2380 | * Returns the error code, 0 if OK, or any combination of : |
| 2381 | * - ERR_ABORT: must abort ASAP |
| 2382 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2383 | * - ERR_WARN: a warning has been emitted |
| 2384 | * - ERR_ALERT: an alert has been emitted |
| 2385 | * Only the two first ones can stop processing, the two others are just |
| 2386 | * indicators. |
| 2387 | */ |
| 2388 | int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm) |
| 2389 | { |
| 2390 | static struct mailers *curmailers = NULL; |
| 2391 | struct mailer *newmailer = NULL; |
| 2392 | const char *err; |
| 2393 | int err_code = 0; |
| 2394 | char *errmsg = NULL; |
| 2395 | |
| 2396 | if (strcmp(args[0], "mailers") == 0) { /* new mailers section */ |
| 2397 | if (!*args[1]) { |
| 2398 | Alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum); |
| 2399 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2400 | goto out; |
| 2401 | } |
| 2402 | |
| 2403 | err = invalid_char(args[1]); |
| 2404 | if (err) { |
| 2405 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2406 | file, linenum, *err, args[0], args[1]); |
| 2407 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2408 | goto out; |
| 2409 | } |
| 2410 | |
| 2411 | for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) { |
| 2412 | /* |
| 2413 | * If there are two proxies with the same name only following |
| 2414 | * combinations are allowed: |
| 2415 | */ |
| 2416 | if (strcmp(curmailers->id, args[1]) == 0) { |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2417 | Alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n", |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2418 | file, linenum, args[1], curmailers->conf.file, curmailers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2419 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2420 | } |
| 2421 | } |
| 2422 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2423 | if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) { |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2424 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2425 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2426 | goto out; |
| 2427 | } |
| 2428 | |
| 2429 | curmailers->next = mailers; |
| 2430 | mailers = curmailers; |
| 2431 | curmailers->conf.file = strdup(file); |
| 2432 | curmailers->conf.line = linenum; |
| 2433 | curmailers->id = strdup(args[1]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 2434 | curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP. |
| 2435 | * But need enough time so that timeouts don't occur |
| 2436 | * during tcp procssing. For now just us an arbitrary default. */ |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2437 | } |
| 2438 | else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */ |
| 2439 | struct sockaddr_storage *sk; |
| 2440 | int port1, port2; |
| 2441 | struct protocol *proto; |
| 2442 | |
| 2443 | if (!*args[2]) { |
| 2444 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2445 | file, linenum, args[0]); |
| 2446 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2447 | goto out; |
| 2448 | } |
| 2449 | |
| 2450 | err = invalid_char(args[1]); |
| 2451 | if (err) { |
| 2452 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2453 | file, linenum, *err, args[1]); |
| 2454 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2455 | goto out; |
| 2456 | } |
| 2457 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2458 | if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) { |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2459 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2460 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2461 | goto out; |
| 2462 | } |
| 2463 | |
| 2464 | /* the mailers are linked backwards first */ |
| 2465 | curmailers->count++; |
| 2466 | newmailer->next = curmailers->mailer_list; |
| 2467 | curmailers->mailer_list = newmailer; |
| 2468 | newmailer->mailers = curmailers; |
| 2469 | newmailer->conf.file = strdup(file); |
| 2470 | newmailer->conf.line = linenum; |
| 2471 | |
| 2472 | newmailer->id = strdup(args[1]); |
| 2473 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2474 | sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2475 | if (!sk) { |
| 2476 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 2477 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2478 | goto out; |
| 2479 | } |
| 2480 | |
| 2481 | proto = protocol_by_family(sk->ss_family); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 2482 | if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) { |
| 2483 | Alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n", |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2484 | file, linenum, args[0], args[1]); |
| 2485 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2486 | goto out; |
| 2487 | } |
| 2488 | |
| 2489 | if (port1 != port2) { |
| 2490 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2491 | file, linenum, args[0], args[1], args[2]); |
| 2492 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2493 | goto out; |
| 2494 | } |
| 2495 | |
| 2496 | if (!port1) { |
| 2497 | Alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n", |
| 2498 | file, linenum, args[0], args[1], args[2]); |
| 2499 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2500 | goto out; |
| 2501 | } |
| 2502 | |
| 2503 | newmailer->addr = *sk; |
| 2504 | newmailer->proto = proto; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2505 | newmailer->xprt = xprt_get(XPRT_RAW); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2506 | newmailer->sock_init_arg = NULL; |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 2507 | } |
| 2508 | else if (strcmp(args[0], "timeout") == 0) { |
| 2509 | if (!*args[1]) { |
| 2510 | Alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n", |
| 2511 | file, linenum, args[0]); |
| 2512 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2513 | goto out; |
| 2514 | } |
| 2515 | else if (strcmp(args[1], "mail") == 0) { |
| 2516 | const char *res; |
| 2517 | unsigned int timeout_mail; |
| 2518 | if (!*args[2]) { |
| 2519 | Alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n", |
| 2520 | file, linenum, args[0], args[1]); |
| 2521 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2522 | goto out; |
| 2523 | } |
| 2524 | res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS); |
| 2525 | if (res) { |
| 2526 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 2527 | file, linenum, *res, args[0]); |
| 2528 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2529 | goto out; |
| 2530 | } |
| 2531 | if (timeout_mail <= 0) { |
| 2532 | Alert("parsing [%s:%d] : '%s %s' expects a positive <time> argument.\n", file, linenum, args[0], args[1]); |
| 2533 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2534 | goto out; |
| 2535 | } |
| 2536 | curmailers->timeout.mail = timeout_mail; |
| 2537 | } else { |
| 2538 | Alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n", |
| 2539 | file, linenum, args[0], args[1]); |
| 2540 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2541 | goto out; |
| 2542 | } |
| 2543 | } |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2544 | else if (*args[0] != 0) { |
| 2545 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2546 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2547 | goto out; |
| 2548 | } |
| 2549 | |
| 2550 | out: |
| 2551 | free(errmsg); |
| 2552 | return err_code; |
| 2553 | } |
| 2554 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2555 | static void free_email_alert(struct proxy *p) |
| 2556 | { |
| 2557 | free(p->email_alert.mailers.name); |
| 2558 | p->email_alert.mailers.name = NULL; |
| 2559 | free(p->email_alert.from); |
| 2560 | p->email_alert.from = NULL; |
| 2561 | free(p->email_alert.to); |
| 2562 | p->email_alert.to = NULL; |
| 2563 | free(p->email_alert.myhostname); |
| 2564 | p->email_alert.myhostname = NULL; |
| 2565 | } |
| 2566 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 2567 | int cfg_parse_listen(const char *file, int linenum, char **args, int kwm) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2568 | { |
| 2569 | static struct proxy *curproxy = NULL; |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 2570 | const char *err; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2571 | char *error; |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 2572 | int rc; |
| 2573 | unsigned val; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2574 | int err_code = 0; |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 2575 | struct acl_cond *cond = NULL; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2576 | struct logsrv *tmplogsrv; |
Willy Tarreau | f4068b6 | 2012-05-08 17:37:49 +0200 | [diff] [blame] | 2577 | char *errmsg = NULL; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2578 | struct bind_conf *bind_conf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2579 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2580 | if (!strcmp(args[0], "listen")) |
| 2581 | rc = PR_CAP_LISTEN; |
| 2582 | else if (!strcmp(args[0], "frontend")) |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 2583 | rc = PR_CAP_FE; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2584 | else if (!strcmp(args[0], "backend")) |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 2585 | rc = PR_CAP_BE; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2586 | else |
| 2587 | rc = PR_CAP_NONE; |
| 2588 | |
| 2589 | if (rc != PR_CAP_NONE) { /* new proxy */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2590 | if (!*args[1]) { |
| 2591 | Alert("parsing [%s:%d] : '%s' expects an <id> argument and\n" |
Ian Miell | 71c432e | 2015-08-18 19:32:08 +0100 | [diff] [blame] | 2592 | " optionally supports [addr1]:port1[-end1]{,[addr]:port[-end]}...\n", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2593 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2594 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2595 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2596 | } |
Krzysztof Oledzki | 365d1cd | 2007-10-21 02:55:17 +0200 | [diff] [blame] | 2597 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 2598 | err = invalid_char(args[1]); |
| 2599 | if (err) { |
| 2600 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2601 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2602 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 2603 | } |
| 2604 | |
Willy Tarreau | 8f50b68 | 2015-05-26 11:45:02 +0200 | [diff] [blame] | 2605 | curproxy = (rc & PR_CAP_FE) ? proxy_fe_by_name(args[1]) : proxy_be_by_name(args[1]); |
| 2606 | if (curproxy) { |
| 2607 | Alert("Parsing [%s:%d]: %s '%s' has the same name as %s '%s' declared at %s:%d.\n", |
| 2608 | file, linenum, proxy_cap_str(rc), args[1], proxy_type_str(curproxy), |
| 2609 | curproxy->id, curproxy->conf.file, curproxy->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2610 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | 365d1cd | 2007-10-21 02:55:17 +0200 | [diff] [blame] | 2611 | } |
| 2612 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2613 | if ((curproxy = calloc(1, sizeof(*curproxy))) == NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2614 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2615 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2616 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2617 | } |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 2618 | |
Willy Tarreau | 97cb780 | 2010-01-03 20:23:58 +0100 | [diff] [blame] | 2619 | init_new_proxy(curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2620 | curproxy->next = proxy; |
| 2621 | proxy = curproxy; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2622 | curproxy->conf.args.file = curproxy->conf.file = strdup(file); |
| 2623 | curproxy->conf.args.line = curproxy->conf.line = linenum; |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 2624 | curproxy->last_change = now.tv_sec; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2625 | curproxy->id = strdup(args[1]); |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2626 | curproxy->cap = rc; |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 2627 | proxy_store_name(curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2628 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 2629 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2630 | if (curproxy->cap & PR_CAP_FE) |
| 2631 | Alert("parsing [%s:%d] : please use the 'bind' keyword for listening addresses.\n", file, linenum); |
| 2632 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2633 | } |
| 2634 | |
| 2635 | /* set default values */ |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 2636 | memcpy(&curproxy->defsrv, &defproxy.defsrv, sizeof(curproxy->defsrv)); |
Willy Tarreau | 7016020 | 2010-04-07 16:06:40 +0200 | [diff] [blame] | 2637 | curproxy->defsrv.id = "default-server"; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 2638 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2639 | curproxy->state = defproxy.state; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2640 | curproxy->options = defproxy.options; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 2641 | curproxy->options2 = defproxy.options2; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 2642 | curproxy->no_options = defproxy.no_options; |
| 2643 | curproxy->no_options2 = defproxy.no_options2; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 2644 | curproxy->bind_proc = defproxy.bind_proc; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 2645 | curproxy->except_net = defproxy.except_net; |
| 2646 | curproxy->except_mask = defproxy.except_mask; |
Maik Broemme | 36db02e | 2009-05-08 17:02:07 +0200 | [diff] [blame] | 2647 | curproxy->except_to = defproxy.except_to; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 2648 | curproxy->except_mask_to = defproxy.except_mask_to; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2649 | |
Willy Tarreau | 79f5fe8 | 2008-08-23 08:18:21 +0200 | [diff] [blame] | 2650 | if (defproxy.fwdfor_hdr_len) { |
| 2651 | curproxy->fwdfor_hdr_len = defproxy.fwdfor_hdr_len; |
| 2652 | curproxy->fwdfor_hdr_name = strdup(defproxy.fwdfor_hdr_name); |
| 2653 | } |
| 2654 | |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 2655 | if (defproxy.orgto_hdr_len) { |
| 2656 | curproxy->orgto_hdr_len = defproxy.orgto_hdr_len; |
| 2657 | curproxy->orgto_hdr_name = strdup(defproxy.orgto_hdr_name); |
| 2658 | } |
| 2659 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 2660 | if (defproxy.server_id_hdr_len) { |
| 2661 | curproxy->server_id_hdr_len = defproxy.server_id_hdr_len; |
| 2662 | curproxy->server_id_hdr_name = strdup(defproxy.server_id_hdr_name); |
| 2663 | } |
| 2664 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2665 | if (curproxy->cap & PR_CAP_FE) { |
| 2666 | curproxy->maxconn = defproxy.maxconn; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 2667 | curproxy->backlog = defproxy.backlog; |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 2668 | curproxy->fe_sps_lim = defproxy.fe_sps_lim; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2669 | |
| 2670 | /* initialize error relocations */ |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 2671 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) |
| 2672 | chunk_dup(&curproxy->errmsg[rc], &defproxy.errmsg[rc]); |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2673 | |
| 2674 | curproxy->to_log = defproxy.to_log & ~LW_COOKIE & ~LW_REQHDR & ~ LW_RSPHDR; |
| 2675 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2676 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2677 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | 743c128 | 2014-11-18 15:04:29 +0100 | [diff] [blame] | 2678 | curproxy->lbprm.algo = defproxy.lbprm.algo; |
Andrew Rodland | b1f48e3 | 2016-10-25 12:49:05 -0400 | [diff] [blame] | 2679 | curproxy->lbprm.chash.balance_factor = defproxy.lbprm.chash.balance_factor; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2680 | curproxy->fullconn = defproxy.fullconn; |
| 2681 | curproxy->conn_retries = defproxy.conn_retries; |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 2682 | curproxy->redispatch_after = defproxy.redispatch_after; |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 2683 | curproxy->max_ka_queue = defproxy.max_ka_queue; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2684 | |
Willy Tarreau | aa2f389 | 2010-10-22 16:15:31 +0200 | [diff] [blame] | 2685 | if (defproxy.check_req) { |
| 2686 | curproxy->check_req = calloc(1, defproxy.check_len); |
| 2687 | memcpy(curproxy->check_req, defproxy.check_req, defproxy.check_len); |
| 2688 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2689 | curproxy->check_len = defproxy.check_len; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2690 | |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2691 | if (defproxy.expect_str) { |
| 2692 | curproxy->expect_str = strdup(defproxy.expect_str); |
| 2693 | if (defproxy.expect_regex) { |
| 2694 | /* note: this regex is known to be valid */ |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2695 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 2696 | regex_comp(defproxy.expect_str, curproxy->expect_regex, 1, 1, NULL); |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2697 | } |
| 2698 | } |
| 2699 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 2700 | curproxy->ck_opts = defproxy.ck_opts; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2701 | if (defproxy.cookie_name) |
| 2702 | curproxy->cookie_name = strdup(defproxy.cookie_name); |
| 2703 | curproxy->cookie_len = defproxy.cookie_len; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 2704 | |
| 2705 | if (defproxy.dyncookie_key) |
| 2706 | curproxy->dyncookie_key = strdup(defproxy.dyncookie_key); |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 2707 | if (defproxy.cookie_domain) |
| 2708 | curproxy->cookie_domain = strdup(defproxy.cookie_domain); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2709 | |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 2710 | if (defproxy.cookie_maxidle) |
| 2711 | curproxy->cookie_maxidle = defproxy.cookie_maxidle; |
| 2712 | |
| 2713 | if (defproxy.cookie_maxlife) |
| 2714 | curproxy->cookie_maxlife = defproxy.cookie_maxlife; |
| 2715 | |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 2716 | if (defproxy.rdp_cookie_name) |
| 2717 | curproxy->rdp_cookie_name = strdup(defproxy.rdp_cookie_name); |
| 2718 | curproxy->rdp_cookie_len = defproxy.rdp_cookie_len; |
| 2719 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2720 | if (defproxy.url_param_name) |
| 2721 | curproxy->url_param_name = strdup(defproxy.url_param_name); |
| 2722 | curproxy->url_param_len = defproxy.url_param_len; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 2723 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2724 | if (defproxy.hh_name) |
| 2725 | curproxy->hh_name = strdup(defproxy.hh_name); |
| 2726 | curproxy->hh_len = defproxy.hh_len; |
| 2727 | curproxy->hh_match_domain = defproxy.hh_match_domain; |
| 2728 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2729 | if (defproxy.conn_src.iface_name) |
| 2730 | curproxy->conn_src.iface_name = strdup(defproxy.conn_src.iface_name); |
| 2731 | curproxy->conn_src.iface_len = defproxy.conn_src.iface_len; |
Godbach | 9f04853 | 2013-04-23 15:27:57 +0800 | [diff] [blame] | 2732 | curproxy->conn_src.opts = defproxy.conn_src.opts; |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 2733 | #if defined(CONFIG_HAP_TRANSPARENT) |
Godbach | 9f04853 | 2013-04-23 15:27:57 +0800 | [diff] [blame] | 2734 | curproxy->conn_src.tproxy_addr = defproxy.conn_src.tproxy_addr; |
Willy Tarreau | c621d36 | 2013-04-25 17:35:22 +0200 | [diff] [blame] | 2735 | #endif |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 2736 | curproxy->load_server_state_from_file = defproxy.load_server_state_from_file; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2737 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2738 | |
Willy Tarreau | 3b6b1a9 | 2009-07-23 13:24:23 +0200 | [diff] [blame] | 2739 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2740 | if (defproxy.capture_name) |
| 2741 | curproxy->capture_name = strdup(defproxy.capture_name); |
| 2742 | curproxy->capture_namelen = defproxy.capture_namelen; |
| 2743 | curproxy->capture_len = defproxy.capture_len; |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2744 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2745 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2746 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 2747 | curproxy->timeout.client = defproxy.timeout.client; |
Simone Gotti | 1b48cc9 | 2014-06-11 12:25:28 +0200 | [diff] [blame] | 2748 | curproxy->timeout.clientfin = defproxy.timeout.clientfin; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 2749 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 2750 | curproxy->timeout.httpreq = defproxy.timeout.httpreq; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2751 | curproxy->timeout.httpka = defproxy.timeout.httpka; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2752 | curproxy->mon_net = defproxy.mon_net; |
| 2753 | curproxy->mon_mask = defproxy.mon_mask; |
| 2754 | if (defproxy.monitor_uri) |
| 2755 | curproxy->monitor_uri = strdup(defproxy.monitor_uri); |
| 2756 | curproxy->monitor_uri_len = defproxy.monitor_uri_len; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2757 | if (defproxy.defbe.name) |
| 2758 | curproxy->defbe.name = strdup(defproxy.defbe.name); |
Willy Tarreau | 99a7ca2 | 2012-05-31 19:39:23 +0200 | [diff] [blame] | 2759 | |
| 2760 | /* get either a pointer to the logformat string or a copy of it */ |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2761 | curproxy->conf.logformat_string = defproxy.conf.logformat_string; |
| 2762 | if (curproxy->conf.logformat_string && |
| 2763 | curproxy->conf.logformat_string != default_http_log_format && |
| 2764 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 2765 | curproxy->conf.logformat_string != clf_http_log_format) |
| 2766 | curproxy->conf.logformat_string = strdup(curproxy->conf.logformat_string); |
| 2767 | |
| 2768 | if (defproxy.conf.lfs_file) { |
| 2769 | curproxy->conf.lfs_file = strdup(defproxy.conf.lfs_file); |
| 2770 | curproxy->conf.lfs_line = defproxy.conf.lfs_line; |
| 2771 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 2772 | |
| 2773 | /* get either a pointer to the logformat string for RFC5424 structured-data or a copy of it */ |
| 2774 | curproxy->conf.logformat_sd_string = defproxy.conf.logformat_sd_string; |
| 2775 | if (curproxy->conf.logformat_sd_string && |
| 2776 | curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 2777 | curproxy->conf.logformat_sd_string = strdup(curproxy->conf.logformat_sd_string); |
| 2778 | |
| 2779 | if (defproxy.conf.lfsd_file) { |
| 2780 | curproxy->conf.lfsd_file = strdup(defproxy.conf.lfsd_file); |
| 2781 | curproxy->conf.lfsd_line = defproxy.conf.lfsd_line; |
| 2782 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2783 | } |
| 2784 | |
| 2785 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 2786 | curproxy->timeout.connect = defproxy.timeout.connect; |
| 2787 | curproxy->timeout.server = defproxy.timeout.server; |
Simone Gotti | 1b48cc9 | 2014-06-11 12:25:28 +0200 | [diff] [blame] | 2788 | curproxy->timeout.serverfin = defproxy.timeout.serverfin; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2789 | curproxy->timeout.check = defproxy.timeout.check; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 2790 | curproxy->timeout.queue = defproxy.timeout.queue; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 2791 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 2792 | curproxy->timeout.httpreq = defproxy.timeout.httpreq; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2793 | curproxy->timeout.httpka = defproxy.timeout.httpka; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 2794 | curproxy->timeout.tunnel = defproxy.timeout.tunnel; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2795 | curproxy->conn_src.source_addr = defproxy.conn_src.source_addr; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2796 | } |
| 2797 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2798 | curproxy->mode = defproxy.mode; |
Willy Tarreau | ed2119c | 2014-04-24 22:10:39 +0200 | [diff] [blame] | 2799 | curproxy->uri_auth = defproxy.uri_auth; /* for stats */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2800 | |
| 2801 | /* copy default logsrvs to curproxy */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2802 | list_for_each_entry(tmplogsrv, &defproxy.logsrvs, list) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2803 | struct logsrv *node = malloc(sizeof(*node)); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2804 | memcpy(node, tmplogsrv, sizeof(struct logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2805 | LIST_INIT(&node->list); |
| 2806 | LIST_ADDQ(&curproxy->logsrvs, &node->list); |
| 2807 | } |
| 2808 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2809 | curproxy->conf.uniqueid_format_string = defproxy.conf.uniqueid_format_string; |
| 2810 | if (curproxy->conf.uniqueid_format_string) |
| 2811 | curproxy->conf.uniqueid_format_string = strdup(curproxy->conf.uniqueid_format_string); |
| 2812 | |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 2813 | chunk_dup(&curproxy->log_tag, &defproxy.log_tag); |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 2814 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2815 | if (defproxy.conf.uif_file) { |
| 2816 | curproxy->conf.uif_file = strdup(defproxy.conf.uif_file); |
| 2817 | curproxy->conf.uif_line = defproxy.conf.uif_line; |
| 2818 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 2819 | |
| 2820 | /* copy default header unique id */ |
| 2821 | if (defproxy.header_unique_id) |
| 2822 | curproxy->header_unique_id = strdup(defproxy.header_unique_id); |
| 2823 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2824 | /* default compression options */ |
| 2825 | if (defproxy.comp != NULL) { |
| 2826 | curproxy->comp = calloc(1, sizeof(struct comp)); |
| 2827 | curproxy->comp->algos = defproxy.comp->algos; |
| 2828 | curproxy->comp->types = defproxy.comp->types; |
| 2829 | } |
| 2830 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2831 | curproxy->grace = defproxy.grace; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2832 | curproxy->conf.used_listener_id = EB_ROOT; |
| 2833 | curproxy->conf.used_server_id = EB_ROOT; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2834 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2835 | if (defproxy.check_path) |
| 2836 | curproxy->check_path = strdup(defproxy.check_path); |
| 2837 | if (defproxy.check_command) |
| 2838 | curproxy->check_command = strdup(defproxy.check_command); |
| 2839 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2840 | if (defproxy.email_alert.mailers.name) |
| 2841 | curproxy->email_alert.mailers.name = strdup(defproxy.email_alert.mailers.name); |
| 2842 | if (defproxy.email_alert.from) |
| 2843 | curproxy->email_alert.from = strdup(defproxy.email_alert.from); |
| 2844 | if (defproxy.email_alert.to) |
| 2845 | curproxy->email_alert.to = strdup(defproxy.email_alert.to); |
| 2846 | if (defproxy.email_alert.myhostname) |
| 2847 | curproxy->email_alert.myhostname = strdup(defproxy.email_alert.myhostname); |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 2848 | curproxy->email_alert.level = defproxy.email_alert.level; |
Cyril Bonté | 7e08470 | 2015-12-04 03:07:06 +0100 | [diff] [blame] | 2849 | curproxy->email_alert.set = defproxy.email_alert.set; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2850 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2851 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2852 | } |
| 2853 | else if (!strcmp(args[0], "defaults")) { /* use this one to assign default values */ |
| 2854 | /* some variables may have already been initialized earlier */ |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2855 | /* FIXME-20070101: we should do this too at the end of the |
| 2856 | * config parsing to free all default values. |
| 2857 | */ |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 2858 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2859 | err_code |= ERR_ABORT; |
| 2860 | goto out; |
| 2861 | } |
| 2862 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2863 | free(defproxy.check_req); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2864 | free(defproxy.check_command); |
| 2865 | free(defproxy.check_path); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2866 | free(defproxy.cookie_name); |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 2867 | free(defproxy.rdp_cookie_name); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 2868 | free(defproxy.dyncookie_key); |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 2869 | free(defproxy.cookie_domain); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2870 | free(defproxy.url_param_name); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2871 | free(defproxy.hh_name); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2872 | free(defproxy.capture_name); |
| 2873 | free(defproxy.monitor_uri); |
| 2874 | free(defproxy.defbe.name); |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2875 | free(defproxy.conn_src.iface_name); |
Willy Tarreau | 79f5fe8 | 2008-08-23 08:18:21 +0200 | [diff] [blame] | 2876 | free(defproxy.fwdfor_hdr_name); |
| 2877 | defproxy.fwdfor_hdr_len = 0; |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 2878 | free(defproxy.orgto_hdr_name); |
| 2879 | defproxy.orgto_hdr_len = 0; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 2880 | free(defproxy.server_id_hdr_name); |
| 2881 | defproxy.server_id_hdr_len = 0; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2882 | free(defproxy.expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 2883 | if (defproxy.expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2884 | regex_free(defproxy.expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 2885 | free(defproxy.expect_regex); |
| 2886 | defproxy.expect_regex = NULL; |
| 2887 | } |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2888 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2889 | if (defproxy.conf.logformat_string != default_http_log_format && |
| 2890 | defproxy.conf.logformat_string != default_tcp_log_format && |
| 2891 | defproxy.conf.logformat_string != clf_http_log_format) |
| 2892 | free(defproxy.conf.logformat_string); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 2893 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2894 | free(defproxy.conf.uniqueid_format_string); |
| 2895 | free(defproxy.conf.lfs_file); |
| 2896 | free(defproxy.conf.uif_file); |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 2897 | chunk_destroy(&defproxy.log_tag); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2898 | free_email_alert(&defproxy); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 2899 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 2900 | if (defproxy.conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 2901 | free(defproxy.conf.logformat_sd_string); |
| 2902 | free(defproxy.conf.lfsd_file); |
| 2903 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2904 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 2905 | chunk_destroy(&defproxy.errmsg[rc]); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2906 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2907 | /* we cannot free uri_auth because it might already be used */ |
| 2908 | init_default_instance(); |
| 2909 | curproxy = &defproxy; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2910 | curproxy->conf.args.file = curproxy->conf.file = strdup(file); |
| 2911 | curproxy->conf.args.line = curproxy->conf.line = linenum; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2912 | defproxy.cap = PR_CAP_LISTEN; /* all caps for now */ |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2913 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2914 | } |
| 2915 | else if (curproxy == NULL) { |
| 2916 | Alert("parsing [%s:%d] : 'listen' or 'defaults' expected.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2917 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2918 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2919 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2920 | |
| 2921 | /* update the current file and line being parsed */ |
| 2922 | curproxy->conf.args.file = curproxy->conf.file; |
| 2923 | curproxy->conf.args.line = linenum; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2924 | |
| 2925 | /* Now let's parse the proxy-specific keywords */ |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2926 | if (!strcmp(args[0], "server") || |
| 2927 | !strcmp(args[0], "default-server") || |
| 2928 | !strcmp(args[0], "server-template")) { |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2929 | err_code |= parse_server(file, linenum, args, curproxy, &defproxy); |
| 2930 | if (err_code & ERR_FATAL) |
| 2931 | goto out; |
| 2932 | } |
| 2933 | else if (!strcmp(args[0], "bind")) { /* new listen addresses */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2934 | struct listener *l; |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2935 | int cur_arg; |
| 2936 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2937 | if (curproxy == &defproxy) { |
| 2938 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2939 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2940 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2941 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2942 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2943 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2944 | |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 2945 | if (!*(args[1])) { |
Willy Tarreau | d55c3fe | 2010-11-09 09:50:37 +0100 | [diff] [blame] | 2946 | Alert("parsing [%s:%d] : '%s' expects {<path>|[addr1]:port1[-end1]}{,[addr]:port[-end]}... as arguments.\n", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2947 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2948 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2949 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2950 | } |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 2951 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2952 | bind_conf = bind_conf_alloc(curproxy, file, linenum, args[1], xprt_get(XPRT_RAW)); |
Willy Tarreau | 8dc21fa | 2013-01-24 15:17:20 +0100 | [diff] [blame] | 2953 | |
| 2954 | /* use default settings for unix sockets */ |
| 2955 | bind_conf->ux.uid = global.unix_bind.ux.uid; |
| 2956 | bind_conf->ux.gid = global.unix_bind.ux.gid; |
| 2957 | bind_conf->ux.mode = global.unix_bind.ux.mode; |
Willy Tarreau | 8a95691 | 2010-10-15 14:27:08 +0200 | [diff] [blame] | 2958 | |
| 2959 | /* NOTE: the following line might create several listeners if there |
| 2960 | * are comma-separated IPs or port ranges. So all further processing |
| 2961 | * will have to be applied to all listeners created after last_listen. |
| 2962 | */ |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2963 | if (!str2listener(args[1], curproxy, bind_conf, file, linenum, &errmsg)) { |
| 2964 | if (errmsg && *errmsg) { |
| 2965 | indent_msg(&errmsg, 2); |
| 2966 | Alert("parsing [%s:%d] : '%s' : %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 2967 | } |
| 2968 | else |
| 2969 | Alert("parsing [%s:%d] : '%s' : error encountered while parsing listening address '%s'.\n", |
| 2970 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2971 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2972 | goto out; |
| 2973 | } |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2974 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2975 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
| 2976 | /* Set default global rights and owner for unix bind */ |
Willy Tarreau | c8b1109 | 2011-02-16 11:08:57 +0100 | [diff] [blame] | 2977 | global.maxsock++; |
Willy Tarreau | 90a570f | 2009-10-04 20:54:54 +0200 | [diff] [blame] | 2978 | } |
| 2979 | |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2980 | cur_arg = 2; |
| 2981 | while (*(args[cur_arg])) { |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2982 | static int bind_dumped; |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2983 | struct bind_kw *kw; |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2984 | char *err; |
| 2985 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2986 | kw = bind_find_kw(args[cur_arg]); |
| 2987 | if (kw) { |
| 2988 | char *err = NULL; |
| 2989 | int code; |
| 2990 | |
| 2991 | if (!kw->parse) { |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2992 | Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n", |
| 2993 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2994 | cur_arg += 1 + kw->skip ; |
| 2995 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2996 | goto out; |
| 2997 | } |
| 2998 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2999 | code = kw->parse(args, cur_arg, curproxy, bind_conf, &err); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 3000 | err_code |= code; |
| 3001 | |
| 3002 | if (code) { |
| 3003 | if (err && *err) { |
| 3004 | indent_msg(&err, 2); |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 3005 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], err); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 3006 | } |
| 3007 | else |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 3008 | Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n", |
| 3009 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 3010 | if (code & ERR_FATAL) { |
| 3011 | free(err); |
| 3012 | cur_arg += 1 + kw->skip; |
| 3013 | goto out; |
| 3014 | } |
| 3015 | } |
| 3016 | free(err); |
| 3017 | cur_arg += 1 + kw->skip; |
| 3018 | continue; |
| 3019 | } |
| 3020 | |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 3021 | err = NULL; |
| 3022 | if (!bind_dumped) { |
| 3023 | bind_dump_kws(&err); |
| 3024 | indent_msg(&err, 4); |
| 3025 | bind_dumped = 1; |
| 3026 | } |
| 3027 | |
| 3028 | Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n", |
| 3029 | file, linenum, args[0], args[1], args[cur_arg], |
| 3030 | err ? " Registered keywords :" : "", err ? err : ""); |
| 3031 | free(err); |
| 3032 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3033 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3034 | goto out; |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 3035 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3036 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3037 | } |
| 3038 | else if (!strcmp(args[0], "monitor-net")) { /* set the range of IPs to ignore */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 3039 | if (!*args[1] || !str2net(args[1], 1, &curproxy->mon_net, &curproxy->mon_mask)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3040 | Alert("parsing [%s:%d] : '%s' expects address[/mask].\n", |
| 3041 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3042 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3043 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3044 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3045 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3046 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3047 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3048 | /* flush useless bits */ |
| 3049 | curproxy->mon_net.s_addr &= curproxy->mon_mask.s_addr; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3050 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3051 | } |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3052 | else if (!strcmp(args[0], "monitor-uri")) { /* set the URI to intercept */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3053 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3054 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3055 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3056 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3057 | goto out; |
| 3058 | |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3059 | if (!*args[1]) { |
| 3060 | Alert("parsing [%s:%d] : '%s' expects an URI.\n", |
| 3061 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3062 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3063 | goto out; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3064 | } |
| 3065 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3066 | free(curproxy->monitor_uri); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 3067 | curproxy->monitor_uri_len = strlen(args[1]); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3068 | curproxy->monitor_uri = calloc(1, curproxy->monitor_uri_len + 1); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 3069 | memcpy(curproxy->monitor_uri, args[1], curproxy->monitor_uri_len); |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3070 | curproxy->monitor_uri[curproxy->monitor_uri_len] = '\0'; |
| 3071 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3072 | goto out; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3073 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3074 | else if (!strcmp(args[0], "mode")) { /* sets the proxy mode */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3075 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3076 | goto out; |
| 3077 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3078 | if (!strcmp(args[1], "http")) curproxy->mode = PR_MODE_HTTP; |
| 3079 | else if (!strcmp(args[1], "tcp")) curproxy->mode = PR_MODE_TCP; |
| 3080 | else if (!strcmp(args[1], "health")) curproxy->mode = PR_MODE_HEALTH; |
| 3081 | else { |
| 3082 | Alert("parsing [%s:%d] : unknown proxy mode '%s'.\n", file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3083 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3084 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3085 | } |
| 3086 | } |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3087 | else if (!strcmp(args[0], "id")) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3088 | struct eb32_node *node; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3089 | |
| 3090 | if (curproxy == &defproxy) { |
| 3091 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", |
| 3092 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3093 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3094 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3095 | } |
| 3096 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3097 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3098 | goto out; |
| 3099 | |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3100 | if (!*args[1]) { |
| 3101 | Alert("parsing [%s:%d]: '%s' expects an integer argument.\n", |
| 3102 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3103 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3104 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3105 | } |
| 3106 | |
| 3107 | curproxy->uuid = atol(args[1]); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3108 | curproxy->conf.id.key = curproxy->uuid; |
Willy Tarreau | 0d1fdf7 | 2015-05-27 16:44:02 +0200 | [diff] [blame] | 3109 | curproxy->options |= PR_O_FORCED_ID; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3110 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3111 | if (curproxy->uuid <= 0) { |
| 3112 | Alert("parsing [%s:%d]: custom id has to be > 0.\n", |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3113 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3114 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3115 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3116 | } |
| 3117 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3118 | node = eb32_lookup(&used_proxy_id, curproxy->uuid); |
| 3119 | if (node) { |
| 3120 | struct proxy *target = container_of(node, struct proxy, conf.id); |
| 3121 | Alert("parsing [%s:%d]: %s %s reuses same custom id as %s %s (declared at %s:%d).\n", |
| 3122 | file, linenum, proxy_type_str(curproxy), curproxy->id, |
| 3123 | proxy_type_str(target), target->id, target->conf.file, target->conf.line); |
| 3124 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3125 | goto out; |
| 3126 | } |
| 3127 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3128 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3129 | else if (!strcmp(args[0], "description")) { |
| 3130 | int i, len=0; |
| 3131 | char *d; |
| 3132 | |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3133 | if (curproxy == &defproxy) { |
| 3134 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", |
| 3135 | file, linenum, args[0]); |
| 3136 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3137 | goto out; |
| 3138 | } |
| 3139 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3140 | if (!*args[1]) { |
| 3141 | Alert("parsing [%s:%d]: '%s' expects a string argument.\n", |
| 3142 | file, linenum, args[0]); |
| 3143 | return -1; |
| 3144 | } |
| 3145 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 3146 | for (i = 1; *args[i]; i++) |
| 3147 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3148 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3149 | d = calloc(1, len); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3150 | curproxy->desc = d; |
| 3151 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 3152 | d += snprintf(d, curproxy->desc + len - d, "%s", args[1]); |
| 3153 | for (i = 2; *args[i]; i++) |
| 3154 | d += snprintf(d, curproxy->desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3155 | |
| 3156 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3157 | else if (!strcmp(args[0], "disabled")) { /* disables this proxy */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3158 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 3159 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3160 | curproxy->state = PR_STSTOPPED; |
| 3161 | } |
| 3162 | else if (!strcmp(args[0], "enabled")) { /* enables this proxy (used to revert a disabled default) */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3163 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 3164 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3165 | curproxy->state = PR_STNEW; |
| 3166 | } |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3167 | else if (!strcmp(args[0], "bind-process")) { /* enable this proxy only on some processes */ |
| 3168 | int cur_arg = 1; |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3169 | unsigned long set = 0; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3170 | |
| 3171 | while (*args[cur_arg]) { |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3172 | unsigned int low, high; |
| 3173 | |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3174 | if (strcmp(args[cur_arg], "all") == 0) { |
| 3175 | set = 0; |
| 3176 | break; |
| 3177 | } |
| 3178 | else if (strcmp(args[cur_arg], "odd") == 0) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3179 | set |= ~0UL/3UL; /* 0x555....555 */ |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3180 | } |
| 3181 | else if (strcmp(args[cur_arg], "even") == 0) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3182 | set |= (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3183 | } |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 3184 | else if (isdigit((int)*args[cur_arg])) { |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3185 | char *dash = strchr(args[cur_arg], '-'); |
| 3186 | |
| 3187 | low = high = str2uic(args[cur_arg]); |
| 3188 | if (dash) |
| 3189 | high = str2uic(dash + 1); |
| 3190 | |
| 3191 | if (high < low) { |
| 3192 | unsigned int swap = low; |
| 3193 | low = high; |
| 3194 | high = swap; |
| 3195 | } |
| 3196 | |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3197 | if (low < 1 || high > LONGBITS) { |
| 3198 | Alert("parsing [%s:%d]: %s supports process numbers from 1 to %d.\n", |
| 3199 | file, linenum, args[0], LONGBITS); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3200 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3201 | goto out; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3202 | } |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3203 | while (low <= high) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3204 | set |= 1UL << (low++ - 1); |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3205 | } |
| 3206 | else { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3207 | Alert("parsing [%s:%d]: %s expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to %d.\n", |
| 3208 | file, linenum, args[0], LONGBITS); |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3209 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3210 | goto out; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3211 | } |
| 3212 | cur_arg++; |
| 3213 | } |
| 3214 | curproxy->bind_proc = set; |
| 3215 | } |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3216 | else if (!strcmp(args[0], "acl")) { /* add an ACL */ |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3217 | if (curproxy == &defproxy) { |
| 3218 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3219 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3220 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3221 | } |
| 3222 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 3223 | err = invalid_char(args[1]); |
| 3224 | if (err) { |
| 3225 | Alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n", |
| 3226 | file, linenum, *err, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3227 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 1822e8c | 2017-04-12 18:54:00 +0200 | [diff] [blame] | 3228 | goto out; |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 3229 | } |
| 3230 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 3231 | if (parse_acl((const char **)args + 1, &curproxy->acl, &errmsg, &curproxy->conf.args, file, linenum) == NULL) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3232 | Alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n", |
| 3233 | file, linenum, args[1], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3234 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3235 | goto out; |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3236 | } |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3237 | } |
| 3238 | else if (!strcmp(args[0], "dynamic-cookie-key")) { /* Dynamic cookies secret key */ |
| 3239 | |
| 3240 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3241 | err_code |= ERR_WARN; |
| 3242 | |
| 3243 | if (*(args[1]) == 0) { |
| 3244 | Alert("parsing [%s:%d] : '%s' expects <secret_key> as argument.\n", |
| 3245 | file, linenum, args[0]); |
| 3246 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3247 | goto out; |
| 3248 | } |
| 3249 | free(curproxy->dyncookie_key); |
| 3250 | curproxy->dyncookie_key = strdup(args[1]); |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3251 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3252 | else if (!strcmp(args[0], "cookie")) { /* cookie name */ |
| 3253 | int cur_arg; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3254 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3255 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3256 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3257 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3258 | if (*(args[1]) == 0) { |
| 3259 | Alert("parsing [%s:%d] : '%s' expects <cookie_name> as argument.\n", |
| 3260 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3261 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3262 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3263 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3264 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3265 | curproxy->ck_opts = 0; |
Willy Tarreau | c63d4bb | 2010-10-23 11:37:27 +0200 | [diff] [blame] | 3266 | curproxy->cookie_maxidle = curproxy->cookie_maxlife = 0; |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 3267 | free(curproxy->cookie_domain); curproxy->cookie_domain = NULL; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3268 | free(curproxy->cookie_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3269 | curproxy->cookie_name = strdup(args[1]); |
| 3270 | curproxy->cookie_len = strlen(curproxy->cookie_name); |
Willy Tarreau | c63d4bb | 2010-10-23 11:37:27 +0200 | [diff] [blame] | 3271 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3272 | cur_arg = 2; |
| 3273 | while (*(args[cur_arg])) { |
| 3274 | if (!strcmp(args[cur_arg], "rewrite")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3275 | curproxy->ck_opts |= PR_CK_RW; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3276 | } |
| 3277 | else if (!strcmp(args[cur_arg], "indirect")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3278 | curproxy->ck_opts |= PR_CK_IND; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3279 | } |
| 3280 | else if (!strcmp(args[cur_arg], "insert")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3281 | curproxy->ck_opts |= PR_CK_INS; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3282 | } |
| 3283 | else if (!strcmp(args[cur_arg], "nocache")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3284 | curproxy->ck_opts |= PR_CK_NOC; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3285 | } |
| 3286 | else if (!strcmp(args[cur_arg], "postonly")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3287 | curproxy->ck_opts |= PR_CK_POST; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3288 | } |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3289 | else if (!strcmp(args[cur_arg], "preserve")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3290 | curproxy->ck_opts |= PR_CK_PSV; |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3291 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3292 | else if (!strcmp(args[cur_arg], "prefix")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3293 | curproxy->ck_opts |= PR_CK_PFX; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3294 | } |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 3295 | else if (!strcmp(args[cur_arg], "httponly")) { |
| 3296 | curproxy->ck_opts |= PR_CK_HTTPONLY; |
| 3297 | } |
| 3298 | else if (!strcmp(args[cur_arg], "secure")) { |
| 3299 | curproxy->ck_opts |= PR_CK_SECURE; |
| 3300 | } |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3301 | else if (!strcmp(args[cur_arg], "domain")) { |
| 3302 | if (!*args[cur_arg + 1]) { |
| 3303 | Alert("parsing [%s:%d]: '%s' expects <domain> as argument.\n", |
| 3304 | file, linenum, args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3305 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3306 | goto out; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3307 | } |
| 3308 | |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3309 | if (*args[cur_arg + 1] != '.' || !strchr(args[cur_arg + 1] + 1, '.')) { |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3310 | /* rfc2109, 4.3.2 Rejecting Cookies */ |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3311 | Warning("parsing [%s:%d]: domain '%s' contains no embedded" |
| 3312 | " dots nor does not start with a dot." |
| 3313 | " RFC forbids it, this configuration may not work properly.\n", |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3314 | file, linenum, args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3315 | err_code |= ERR_WARN; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3316 | } |
| 3317 | |
| 3318 | err = invalid_domainchar(args[cur_arg + 1]); |
| 3319 | if (err) { |
| 3320 | Alert("parsing [%s:%d]: character '%c' is not permitted in domain name '%s'.\n", |
| 3321 | file, linenum, *err, args[cur_arg + 1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3322 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3323 | goto out; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3324 | } |
| 3325 | |
Willy Tarreau | 68a897b | 2009-12-03 23:28:34 +0100 | [diff] [blame] | 3326 | if (!curproxy->cookie_domain) { |
| 3327 | curproxy->cookie_domain = strdup(args[cur_arg + 1]); |
| 3328 | } else { |
| 3329 | /* one domain was already specified, add another one by |
| 3330 | * building the string which will be returned along with |
| 3331 | * the cookie. |
| 3332 | */ |
| 3333 | char *new_ptr; |
| 3334 | int new_len = strlen(curproxy->cookie_domain) + |
| 3335 | strlen("; domain=") + strlen(args[cur_arg + 1]) + 1; |
| 3336 | new_ptr = malloc(new_len); |
| 3337 | snprintf(new_ptr, new_len, "%s; domain=%s", curproxy->cookie_domain, args[cur_arg+1]); |
| 3338 | free(curproxy->cookie_domain); |
| 3339 | curproxy->cookie_domain = new_ptr; |
| 3340 | } |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 3341 | cur_arg++; |
| 3342 | } |
| 3343 | else if (!strcmp(args[cur_arg], "maxidle")) { |
| 3344 | unsigned int maxidle; |
| 3345 | const char *res; |
| 3346 | |
| 3347 | if (!*args[cur_arg + 1]) { |
| 3348 | Alert("parsing [%s:%d]: '%s' expects <idletime> in seconds as argument.\n", |
| 3349 | file, linenum, args[cur_arg]); |
| 3350 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3351 | goto out; |
| 3352 | } |
| 3353 | |
| 3354 | res = parse_time_err(args[cur_arg + 1], &maxidle, TIME_UNIT_S); |
| 3355 | if (res) { |
| 3356 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 3357 | file, linenum, *res, args[cur_arg]); |
| 3358 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3359 | goto out; |
| 3360 | } |
| 3361 | curproxy->cookie_maxidle = maxidle; |
| 3362 | cur_arg++; |
| 3363 | } |
| 3364 | else if (!strcmp(args[cur_arg], "maxlife")) { |
| 3365 | unsigned int maxlife; |
| 3366 | const char *res; |
| 3367 | |
| 3368 | if (!*args[cur_arg + 1]) { |
| 3369 | Alert("parsing [%s:%d]: '%s' expects <lifetime> in seconds as argument.\n", |
| 3370 | file, linenum, args[cur_arg]); |
| 3371 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3372 | goto out; |
| 3373 | } |
| 3374 | |
| 3375 | res = parse_time_err(args[cur_arg + 1], &maxlife, TIME_UNIT_S); |
| 3376 | if (res) { |
| 3377 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 3378 | file, linenum, *res, args[cur_arg]); |
| 3379 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3380 | goto out; |
| 3381 | } |
| 3382 | curproxy->cookie_maxlife = maxlife; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3383 | cur_arg++; |
| 3384 | } |
Olivier Houchard | a5938f7 | 2017-03-15 15:12:06 +0100 | [diff] [blame] | 3385 | else if (!strcmp(args[cur_arg], "dynamic")) { /* Dynamic persistent cookies secret key */ |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3386 | |
| 3387 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[cur_arg], NULL)) |
| 3388 | err_code |= ERR_WARN; |
| 3389 | curproxy->ck_opts |= PR_CK_DYNAMIC; |
| 3390 | } |
| 3391 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3392 | else { |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3393 | Alert("parsing [%s:%d] : '%s' supports 'rewrite', 'insert', 'prefix', 'indirect', 'nocache', 'postonly', 'domain', 'maxidle', 'dynamic' and 'maxlife' options.\n", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3394 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3395 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3396 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3397 | } |
| 3398 | cur_arg++; |
| 3399 | } |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3400 | if (!POWEROF2(curproxy->ck_opts & (PR_CK_RW|PR_CK_IND))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3401 | Alert("parsing [%s:%d] : cookie 'rewrite' and 'indirect' modes are incompatible.\n", |
| 3402 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3403 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3404 | } |
| 3405 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3406 | if (!POWEROF2(curproxy->ck_opts & (PR_CK_RW|PR_CK_INS|PR_CK_PFX))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3407 | Alert("parsing [%s:%d] : cookie 'rewrite', 'insert' and 'prefix' modes are incompatible.\n", |
| 3408 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3409 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3410 | } |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3411 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3412 | if ((curproxy->ck_opts & (PR_CK_PSV | PR_CK_INS | PR_CK_IND)) == PR_CK_PSV) { |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3413 | Alert("parsing [%s:%d] : cookie 'preserve' requires at least 'insert' or 'indirect'.\n", |
| 3414 | file, linenum); |
| 3415 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3416 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3417 | }/* end else if (!strcmp(args[0], "cookie")) */ |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3418 | else if (!strcmp(args[0], "email-alert")) { |
| 3419 | if (*(args[1]) == 0) { |
| 3420 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3421 | file, linenum, args[0]); |
| 3422 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3423 | goto out; |
| 3424 | } |
| 3425 | |
| 3426 | if (!strcmp(args[1], "from")) { |
| 3427 | if (*(args[1]) == 0) { |
| 3428 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3429 | file, linenum, args[1]); |
| 3430 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3431 | goto out; |
| 3432 | } |
| 3433 | free(curproxy->email_alert.from); |
| 3434 | curproxy->email_alert.from = strdup(args[2]); |
| 3435 | } |
| 3436 | else if (!strcmp(args[1], "mailers")) { |
| 3437 | if (*(args[1]) == 0) { |
| 3438 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3439 | file, linenum, args[1]); |
| 3440 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3441 | goto out; |
| 3442 | } |
| 3443 | free(curproxy->email_alert.mailers.name); |
| 3444 | curproxy->email_alert.mailers.name = strdup(args[2]); |
| 3445 | } |
| 3446 | else if (!strcmp(args[1], "myhostname")) { |
| 3447 | if (*(args[1]) == 0) { |
| 3448 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3449 | file, linenum, args[1]); |
| 3450 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3451 | goto out; |
| 3452 | } |
| 3453 | free(curproxy->email_alert.myhostname); |
| 3454 | curproxy->email_alert.myhostname = strdup(args[2]); |
| 3455 | } |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3456 | else if (!strcmp(args[1], "level")) { |
| 3457 | curproxy->email_alert.level = get_log_level(args[2]); |
| 3458 | if (curproxy->email_alert.level < 0) { |
| 3459 | Alert("parsing [%s:%d] : unknown log level '%s' after '%s'\n", |
| 3460 | file, linenum, args[1], args[2]); |
| 3461 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3462 | goto out; |
| 3463 | } |
| 3464 | } |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3465 | else if (!strcmp(args[1], "to")) { |
| 3466 | if (*(args[1]) == 0) { |
| 3467 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3468 | file, linenum, args[1]); |
| 3469 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3470 | goto out; |
| 3471 | } |
| 3472 | free(curproxy->email_alert.to); |
| 3473 | curproxy->email_alert.to = strdup(args[2]); |
| 3474 | } |
| 3475 | else { |
| 3476 | Alert("parsing [%s:%d] : email-alert: unknown argument '%s'.\n", |
| 3477 | file, linenum, args[1]); |
| 3478 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3479 | goto out; |
| 3480 | } |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3481 | /* Indicate that the email_alert is at least partially configured */ |
| 3482 | curproxy->email_alert.set = 1; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3483 | }/* end else if (!strcmp(args[0], "email-alert")) */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3484 | else if (!strcmp(args[0], "external-check")) { |
| 3485 | if (*(args[1]) == 0) { |
| 3486 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3487 | file, linenum, args[0]); |
| 3488 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3489 | goto out; |
| 3490 | } |
| 3491 | |
| 3492 | if (!strcmp(args[1], "command")) { |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3493 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3494 | goto out; |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3495 | if (*(args[2]) == 0) { |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3496 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3497 | file, linenum, args[1]); |
| 3498 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3499 | goto out; |
| 3500 | } |
| 3501 | free(curproxy->check_command); |
| 3502 | curproxy->check_command = strdup(args[2]); |
| 3503 | } |
| 3504 | else if (!strcmp(args[1], "path")) { |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3505 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3506 | goto out; |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3507 | if (*(args[2]) == 0) { |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3508 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3509 | file, linenum, args[1]); |
| 3510 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3511 | goto out; |
| 3512 | } |
| 3513 | free(curproxy->check_path); |
| 3514 | curproxy->check_path = strdup(args[2]); |
| 3515 | } |
| 3516 | else { |
| 3517 | Alert("parsing [%s:%d] : external-check: unknown argument '%s'.\n", |
| 3518 | file, linenum, args[1]); |
| 3519 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3520 | goto out; |
| 3521 | } |
| 3522 | }/* end else if (!strcmp(args[0], "external-check")) */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3523 | else if (!strcmp(args[0], "persist")) { /* persist */ |
| 3524 | if (*(args[1]) == 0) { |
| 3525 | Alert("parsing [%s:%d] : missing persist method.\n", |
| 3526 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3527 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3528 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3529 | } |
| 3530 | |
| 3531 | if (!strncmp(args[1], "rdp-cookie", 10)) { |
| 3532 | curproxy->options2 |= PR_O2_RDPC_PRST; |
| 3533 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3534 | if (*(args[1] + 10) == '(') { /* cookie name */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3535 | const char *beg, *end; |
| 3536 | |
| 3537 | beg = args[1] + 11; |
| 3538 | end = strchr(beg, ')'); |
| 3539 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3540 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3541 | goto out; |
| 3542 | |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3543 | if (!end || end == beg) { |
| 3544 | Alert("parsing [%s:%d] : persist rdp-cookie(name)' requires an rdp cookie name.\n", |
| 3545 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3546 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3547 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3548 | } |
| 3549 | |
| 3550 | free(curproxy->rdp_cookie_name); |
| 3551 | curproxy->rdp_cookie_name = my_strndup(beg, end - beg); |
| 3552 | curproxy->rdp_cookie_len = end-beg; |
| 3553 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3554 | else if (*(args[1] + 10) == '\0') { /* default cookie name 'msts' */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3555 | free(curproxy->rdp_cookie_name); |
| 3556 | curproxy->rdp_cookie_name = strdup("msts"); |
| 3557 | curproxy->rdp_cookie_len = strlen(curproxy->rdp_cookie_name); |
| 3558 | } |
| 3559 | else { /* syntax */ |
| 3560 | Alert("parsing [%s:%d] : persist rdp-cookie(name)' requires an rdp cookie name.\n", |
| 3561 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3562 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3563 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3564 | } |
| 3565 | } |
| 3566 | else { |
| 3567 | Alert("parsing [%s:%d] : unknown persist method.\n", |
| 3568 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3569 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3570 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3571 | } |
| 3572 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3573 | else if (!strcmp(args[0], "appsession")) { /* cookie name */ |
Willy Tarreau | 6db62c5 | 2015-08-10 19:04:29 +0200 | [diff] [blame] | 3574 | Alert("parsing [%s:%d] : '%s' is not supported anymore, please check the documentation.\n", file, linenum, args[0]); |
| 3575 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3576 | goto out; |
| 3577 | } |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 3578 | else if (!strcmp(args[0], "load-server-state-from-file")) { |
| 3579 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3580 | err_code |= ERR_WARN; |
| 3581 | if (!strcmp(args[1], "global")) { /* use the file pointed to by global server-state-file directive */ |
| 3582 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_GLOBAL; |
| 3583 | } |
| 3584 | else if (!strcmp(args[1], "local")) { /* use the server-state-file-name variable to locate the server-state file */ |
| 3585 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_LOCAL; |
| 3586 | } |
| 3587 | else if (!strcmp(args[1], "none")) { /* don't use server-state-file directive for this backend */ |
| 3588 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE; |
| 3589 | } |
| 3590 | else { |
| 3591 | Alert("parsing [%s:%d] : '%s' expects 'global', 'local' or 'none'. Got '%s'\n", |
| 3592 | file, linenum, args[0], args[1]); |
| 3593 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3594 | goto out; |
| 3595 | } |
| 3596 | } |
| 3597 | else if (!strcmp(args[0], "server-state-file-name")) { |
| 3598 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3599 | err_code |= ERR_WARN; |
| 3600 | if (*(args[1]) == 0) { |
| 3601 | Alert("parsing [%s:%d] : '%s' expects 'use-backend-name' or a string. Got no argument\n", |
| 3602 | file, linenum, args[0]); |
| 3603 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3604 | goto out; |
| 3605 | } |
| 3606 | else if (!strcmp(args[1], "use-backend-name")) |
| 3607 | curproxy->server_state_file_name = strdup(curproxy->id); |
| 3608 | else |
| 3609 | curproxy->server_state_file_name = strdup(args[1]); |
| 3610 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3611 | else if (!strcmp(args[0], "capture")) { |
Willy Tarreau | 3b6b1a9 | 2009-07-23 13:24:23 +0200 | [diff] [blame] | 3612 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3613 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3614 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3615 | if (!strcmp(args[1], "cookie")) { /* name of a cookie to capture */ |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3616 | if (curproxy == &defproxy) { |
| 3617 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
| 3618 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3619 | goto out; |
| 3620 | } |
| 3621 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3622 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3623 | goto out; |
| 3624 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3625 | if (*(args[4]) == 0) { |
| 3626 | Alert("parsing [%s:%d] : '%s' expects 'cookie' <cookie_name> 'len' <len>.\n", |
| 3627 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3628 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3629 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3630 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3631 | free(curproxy->capture_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3632 | curproxy->capture_name = strdup(args[2]); |
| 3633 | curproxy->capture_namelen = strlen(curproxy->capture_name); |
| 3634 | curproxy->capture_len = atol(args[4]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3635 | curproxy->to_log |= LW_COOKIE; |
| 3636 | } |
| 3637 | else if (!strcmp(args[1], "request") && !strcmp(args[2], "header")) { |
| 3638 | struct cap_hdr *hdr; |
| 3639 | |
| 3640 | if (curproxy == &defproxy) { |
| 3641 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3642 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3643 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3644 | } |
| 3645 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3646 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3647 | goto out; |
| 3648 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3649 | if (*(args[3]) == 0 || strcmp(args[4], "len") != 0 || *(args[5]) == 0) { |
| 3650 | Alert("parsing [%s:%d] : '%s %s' expects 'header' <header_name> 'len' <len>.\n", |
| 3651 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3652 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3653 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3654 | } |
| 3655 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 3656 | hdr = calloc(1, sizeof(*hdr)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3657 | hdr->next = curproxy->req_cap; |
| 3658 | hdr->name = strdup(args[3]); |
| 3659 | hdr->namelen = strlen(args[3]); |
| 3660 | hdr->len = atol(args[5]); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3661 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3662 | hdr->index = curproxy->nb_req_cap++; |
| 3663 | curproxy->req_cap = hdr; |
| 3664 | curproxy->to_log |= LW_REQHDR; |
| 3665 | } |
| 3666 | else if (!strcmp(args[1], "response") && !strcmp(args[2], "header")) { |
| 3667 | struct cap_hdr *hdr; |
| 3668 | |
| 3669 | if (curproxy == &defproxy) { |
| 3670 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3671 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3672 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3673 | } |
| 3674 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3675 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3676 | goto out; |
| 3677 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3678 | if (*(args[3]) == 0 || strcmp(args[4], "len") != 0 || *(args[5]) == 0) { |
| 3679 | Alert("parsing [%s:%d] : '%s %s' expects 'header' <header_name> 'len' <len>.\n", |
| 3680 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3681 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3682 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3683 | } |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 3684 | hdr = calloc(1, sizeof(*hdr)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3685 | hdr->next = curproxy->rsp_cap; |
| 3686 | hdr->name = strdup(args[3]); |
| 3687 | hdr->namelen = strlen(args[3]); |
| 3688 | hdr->len = atol(args[5]); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3689 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3690 | hdr->index = curproxy->nb_rsp_cap++; |
| 3691 | curproxy->rsp_cap = hdr; |
| 3692 | curproxy->to_log |= LW_RSPHDR; |
| 3693 | } |
| 3694 | else { |
| 3695 | Alert("parsing [%s:%d] : '%s' expects 'cookie' or 'request header' or 'response header'.\n", |
| 3696 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3697 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3698 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3699 | } |
| 3700 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3701 | else if (!strcmp(args[0], "retries")) { /* connection retries */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3702 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3703 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3704 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3705 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3706 | goto out; |
| 3707 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3708 | if (*(args[1]) == 0) { |
| 3709 | Alert("parsing [%s:%d] : '%s' expects an integer argument (dispatch counts for one).\n", |
| 3710 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3711 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3712 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3713 | } |
| 3714 | curproxy->conn_retries = atol(args[1]); |
| 3715 | } |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3716 | else if (!strcmp(args[0], "http-request")) { /* request access control: allow/deny/auth */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3717 | struct act_rule *rule; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3718 | |
| 3719 | if (curproxy == &defproxy) { |
| 3720 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3721 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3722 | goto out; |
| 3723 | } |
| 3724 | |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3725 | if (!LIST_ISEMPTY(&curproxy->http_req_rules) && |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3726 | !LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->cond && |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 3727 | (LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_ACTION_ALLOW || |
| 3728 | LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_ACTION_DENY || |
| 3729 | LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_HTTP_REDIR || |
| 3730 | LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_HTTP_REQ_AUTH)) { |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3731 | Warning("parsing [%s:%d]: previous '%s' action is final and has no condition attached, further entries are NOOP.\n", |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3732 | file, linenum, args[0]); |
| 3733 | err_code |= ERR_WARN; |
| 3734 | } |
| 3735 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3736 | rule = parse_http_req_cond((const char **)args + 1, file, linenum, curproxy); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3737 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3738 | if (!rule) { |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3739 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3740 | goto out; |
| 3741 | } |
| 3742 | |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 3743 | err_code |= warnif_misplaced_http_req(curproxy, file, linenum, args[0]); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3744 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3745 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3746 | file, linenum); |
| 3747 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3748 | LIST_ADDQ(&curproxy->http_req_rules, &rule->list); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3749 | } |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3750 | else if (!strcmp(args[0], "http-response")) { /* response access control */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3751 | struct act_rule *rule; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3752 | |
| 3753 | if (curproxy == &defproxy) { |
| 3754 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3755 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3756 | goto out; |
| 3757 | } |
| 3758 | |
| 3759 | if (!LIST_ISEMPTY(&curproxy->http_res_rules) && |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3760 | !LIST_PREV(&curproxy->http_res_rules, struct act_rule *, list)->cond && |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 3761 | (LIST_PREV(&curproxy->http_res_rules, struct act_rule *, list)->action == ACT_ACTION_ALLOW || |
| 3762 | LIST_PREV(&curproxy->http_res_rules, struct act_rule *, list)->action == ACT_ACTION_DENY)) { |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3763 | Warning("parsing [%s:%d]: previous '%s' action is final and has no condition attached, further entries are NOOP.\n", |
| 3764 | file, linenum, args[0]); |
| 3765 | err_code |= ERR_WARN; |
| 3766 | } |
| 3767 | |
| 3768 | rule = parse_http_res_cond((const char **)args + 1, file, linenum, curproxy); |
| 3769 | |
| 3770 | if (!rule) { |
| 3771 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3772 | goto out; |
| 3773 | } |
| 3774 | |
| 3775 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3776 | (curproxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 3777 | file, linenum); |
| 3778 | |
| 3779 | LIST_ADDQ(&curproxy->http_res_rules, &rule->list); |
| 3780 | } |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 3781 | else if (!strcmp(args[0], "http-send-name-header")) { /* send server name in request header */ |
| 3782 | /* set the header name and length into the proxy structure */ |
| 3783 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3784 | err_code |= ERR_WARN; |
| 3785 | |
| 3786 | if (!*args[1]) { |
| 3787 | Alert("parsing [%s:%d] : '%s' requires a header string.\n", |
| 3788 | file, linenum, args[0]); |
| 3789 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3790 | goto out; |
| 3791 | } |
| 3792 | |
| 3793 | /* set the desired header name */ |
| 3794 | free(curproxy->server_id_hdr_name); |
| 3795 | curproxy->server_id_hdr_name = strdup(args[1]); |
| 3796 | curproxy->server_id_hdr_len = strlen(curproxy->server_id_hdr_name); |
| 3797 | } |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3798 | else if (!strcmp(args[0], "block")) { /* early blocking based on ACLs */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3799 | struct act_rule *rule; |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3800 | |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3801 | if (curproxy == &defproxy) { |
| 3802 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3803 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3804 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3805 | } |
| 3806 | |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3807 | /* emulate "block" using "http-request block". Since these rules are supposed to |
| 3808 | * be processed before all http-request rules, we put them into their own list |
| 3809 | * and will insert them at the end. |
| 3810 | */ |
| 3811 | rule = parse_http_req_cond((const char **)args, file, linenum, curproxy); |
| 3812 | if (!rule) { |
| 3813 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3814 | goto out; |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3815 | } |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3816 | err_code |= warnif_misplaced_block(curproxy, file, linenum, args[0]); |
| 3817 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3818 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3819 | file, linenum); |
| 3820 | LIST_ADDQ(&curproxy->block_rules, &rule->list); |
Willy Tarreau | de9d2d7 | 2014-04-28 22:28:02 +0200 | [diff] [blame] | 3821 | |
| 3822 | if (!already_warned(WARN_BLOCK_DEPRECATED)) |
| 3823 | Warning("parsing [%s:%d] : The '%s' directive is now deprecated in favor of 'http-request deny' which uses the exact same syntax. The rules are translated but support might disappear in a future version.\n", file, linenum, args[0]); |
| 3824 | |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3825 | } |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3826 | else if (!strcmp(args[0], "redirect")) { |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3827 | struct redirect_rule *rule; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3828 | |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3829 | if (curproxy == &defproxy) { |
| 3830 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3831 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3832 | goto out; |
| 3833 | } |
| 3834 | |
Willy Tarreau | be4653b | 2015-05-28 15:26:58 +0200 | [diff] [blame] | 3835 | if ((rule = http_parse_redirect_rule(file, linenum, curproxy, (const char **)args + 1, &errmsg, 0, 0)) == NULL) { |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 3836 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing redirect rule : %s.\n", |
| 3837 | file, linenum, proxy_type_str(curproxy), curproxy->id, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3838 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3839 | goto out; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3840 | } |
| 3841 | |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3842 | LIST_ADDQ(&curproxy->redirect_rules, &rule->list); |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 3843 | err_code |= warnif_misplaced_redirect(curproxy, file, linenum, args[0]); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3844 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3845 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3846 | file, linenum); |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3847 | } |
Krzysztof Piotr Oledzki | 7b723ef | 2009-01-27 21:09:41 +0100 | [diff] [blame] | 3848 | else if (!strcmp(args[0], "use_backend")) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3849 | struct switching_rule *rule; |
| 3850 | |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3851 | if (curproxy == &defproxy) { |
| 3852 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3853 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3854 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3855 | } |
| 3856 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3857 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3858 | err_code |= ERR_WARN; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3859 | |
| 3860 | if (*(args[1]) == 0) { |
| 3861 | Alert("parsing [%s:%d] : '%s' expects a backend name.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3862 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3863 | goto out; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3864 | } |
| 3865 | |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 3866 | if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) { |
| 3867 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 3868 | Alert("parsing [%s:%d] : error detected while parsing switching rule : %s.\n", |
| 3869 | file, linenum, errmsg); |
| 3870 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3871 | goto out; |
| 3872 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3873 | |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 3874 | err_code |= warnif_cond_conflicts(cond, SMP_VAL_FE_SET_BCK, file, linenum); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3875 | } |
Willy Tarreau | 4f86264 | 2017-02-28 09:34:39 +0100 | [diff] [blame] | 3876 | else if (*args[2]) { |
| 3877 | Alert("parsing [%s:%d] : unexpected keyword '%s' after switching rule, only 'if' and 'unless' are allowed.\n", |
| 3878 | file, linenum, args[2]); |
| 3879 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3880 | goto out; |
| 3881 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3882 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3883 | rule = calloc(1, sizeof(*rule)); |
Thierry FOURNIER / OZON.IO | 5948b01 | 2016-11-24 23:58:32 +0100 | [diff] [blame] | 3884 | if (!rule) { |
| 3885 | Alert("Out of memory error.\n"); |
| 3886 | goto out; |
| 3887 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3888 | rule->cond = cond; |
| 3889 | rule->be.name = strdup(args[1]); |
Thierry FOURNIER / OZON.IO | 4ed1c95 | 2016-11-24 23:57:54 +0100 | [diff] [blame] | 3890 | rule->line = linenum; |
| 3891 | rule->file = strdup(file); |
| 3892 | if (!rule->file) { |
| 3893 | Alert("Out of memory error.\n"); |
| 3894 | goto out; |
| 3895 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3896 | LIST_INIT(&rule->list); |
| 3897 | LIST_ADDQ(&curproxy->switching_rules, &rule->list); |
| 3898 | } |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3899 | else if (strcmp(args[0], "use-server") == 0) { |
| 3900 | struct server_rule *rule; |
| 3901 | |
| 3902 | if (curproxy == &defproxy) { |
| 3903 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3904 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3905 | goto out; |
| 3906 | } |
| 3907 | |
| 3908 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3909 | err_code |= ERR_WARN; |
| 3910 | |
| 3911 | if (*(args[1]) == 0) { |
| 3912 | Alert("parsing [%s:%d] : '%s' expects a server name.\n", file, linenum, args[0]); |
| 3913 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3914 | goto out; |
| 3915 | } |
| 3916 | |
| 3917 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
| 3918 | Alert("parsing [%s:%d] : '%s' requires either 'if' or 'unless' followed by a condition.\n", |
| 3919 | file, linenum, args[0]); |
| 3920 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3921 | goto out; |
| 3922 | } |
| 3923 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3924 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 3925 | Alert("parsing [%s:%d] : error detected while parsing switching rule : %s.\n", |
| 3926 | file, linenum, errmsg); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3927 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3928 | goto out; |
| 3929 | } |
| 3930 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3931 | err_code |= warnif_cond_conflicts(cond, SMP_VAL_BE_SET_SRV, file, linenum); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3932 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3933 | rule = calloc(1, sizeof(*rule)); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3934 | rule->cond = cond; |
| 3935 | rule->srv.name = strdup(args[1]); |
| 3936 | LIST_INIT(&rule->list); |
| 3937 | LIST_ADDQ(&curproxy->server_rules, &rule->list); |
| 3938 | curproxy->be_req_ana |= AN_REQ_SRV_RULES; |
| 3939 | } |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3940 | else if ((!strcmp(args[0], "force-persist")) || |
| 3941 | (!strcmp(args[0], "ignore-persist"))) { |
| 3942 | struct persist_rule *rule; |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3943 | |
| 3944 | if (curproxy == &defproxy) { |
| 3945 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3946 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3947 | goto out; |
| 3948 | } |
| 3949 | |
| 3950 | if (warnifnotcap(curproxy, PR_CAP_FE|PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3951 | err_code |= ERR_WARN; |
| 3952 | |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 3953 | if (strcmp(args[1], "if") != 0 && strcmp(args[1], "unless") != 0) { |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3954 | Alert("parsing [%s:%d] : '%s' requires either 'if' or 'unless' followed by a condition.\n", |
| 3955 | file, linenum, args[0]); |
| 3956 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3957 | goto out; |
| 3958 | } |
| 3959 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3960 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 1, &errmsg)) == NULL) { |
| 3961 | Alert("parsing [%s:%d] : error detected while parsing a '%s' rule : %s.\n", |
| 3962 | file, linenum, args[0], errmsg); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3963 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3964 | goto out; |
| 3965 | } |
| 3966 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3967 | /* note: BE_REQ_CNT is the first one after FE_SET_BCK, which is |
| 3968 | * where force-persist is applied. |
| 3969 | */ |
| 3970 | err_code |= warnif_cond_conflicts(cond, SMP_VAL_BE_REQ_CNT, file, linenum); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3971 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3972 | rule = calloc(1, sizeof(*rule)); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3973 | rule->cond = cond; |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3974 | if (!strcmp(args[0], "force-persist")) { |
| 3975 | rule->type = PERSIST_TYPE_FORCE; |
| 3976 | } else { |
| 3977 | rule->type = PERSIST_TYPE_IGNORE; |
| 3978 | } |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3979 | LIST_INIT(&rule->list); |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3980 | LIST_ADDQ(&curproxy->persist_rules, &rule->list); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3981 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3982 | else if (!strcmp(args[0], "stick-table")) { |
| 3983 | int myidx = 1; |
Willy Tarreau | e45288c | 2015-05-26 10:49:46 +0200 | [diff] [blame] | 3984 | struct proxy *other; |
| 3985 | |
Willy Tarreau | e2dc1fa | 2015-05-26 12:08:07 +0200 | [diff] [blame] | 3986 | other = proxy_tbl_by_name(curproxy->id); |
Willy Tarreau | e45288c | 2015-05-26 10:49:46 +0200 | [diff] [blame] | 3987 | if (other) { |
| 3988 | Alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n", |
| 3989 | file, linenum, curproxy->id, proxy_type_str(other), other->id, other->conf.file, other->conf.line); |
| 3990 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3991 | goto out; |
| 3992 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3993 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3994 | curproxy->table.id = curproxy->id; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3995 | curproxy->table.type = (unsigned int)-1; |
| 3996 | while (*args[myidx]) { |
| 3997 | const char *err; |
| 3998 | |
| 3999 | if (strcmp(args[myidx], "size") == 0) { |
| 4000 | myidx++; |
| 4001 | if (!*(args[myidx])) { |
| 4002 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 4003 | file, linenum, args[myidx-1]); |
| 4004 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4005 | goto out; |
| 4006 | } |
| 4007 | if ((err = parse_size_err(args[myidx], &curproxy->table.size))) { |
| 4008 | Alert("parsing [%s:%d] : stick-table: unexpected character '%c' in argument of '%s'.\n", |
| 4009 | file, linenum, *err, args[myidx-1]); |
| 4010 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4011 | goto out; |
| 4012 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4013 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4014 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 4015 | else if (strcmp(args[myidx], "peers") == 0) { |
| 4016 | myidx++; |
Godbach | 5052316 | 2013-12-11 19:48:57 +0800 | [diff] [blame] | 4017 | if (!*(args[myidx])) { |
Godbach | ff11554 | 2014-04-21 21:52:23 +0800 | [diff] [blame] | 4018 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 4019 | file, linenum, args[myidx-1]); |
| 4020 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4021 | goto out; |
Godbach | 5052316 | 2013-12-11 19:48:57 +0800 | [diff] [blame] | 4022 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 4023 | curproxy->table.peers.name = strdup(args[myidx++]); |
| 4024 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4025 | else if (strcmp(args[myidx], "expire") == 0) { |
| 4026 | myidx++; |
| 4027 | if (!*(args[myidx])) { |
| 4028 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 4029 | file, linenum, args[myidx-1]); |
| 4030 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4031 | goto out; |
| 4032 | } |
| 4033 | err = parse_time_err(args[myidx], &val, TIME_UNIT_MS); |
| 4034 | if (err) { |
| 4035 | Alert("parsing [%s:%d] : stick-table: unexpected character '%c' in argument of '%s'.\n", |
| 4036 | file, linenum, *err, args[myidx-1]); |
| 4037 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4038 | goto out; |
| 4039 | } |
Ben Cabot | 3b90f0a | 2016-01-20 09:44:39 +0000 | [diff] [blame] | 4040 | if (val > INT_MAX) { |
| 4041 | Alert("parsing [%s:%d] : Expire value [%u]ms exceeds maxmimum value of 24.85 days.\n", |
| 4042 | file, linenum, val); |
| 4043 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4044 | goto out; |
| 4045 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4046 | curproxy->table.expire = val; |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4047 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4048 | } |
| 4049 | else if (strcmp(args[myidx], "nopurge") == 0) { |
| 4050 | curproxy->table.nopurge = 1; |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4051 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4052 | } |
| 4053 | else if (strcmp(args[myidx], "type") == 0) { |
| 4054 | myidx++; |
| 4055 | if (stktable_parse_type(args, &myidx, &curproxy->table.type, &curproxy->table.key_size) != 0) { |
| 4056 | Alert("parsing [%s:%d] : stick-table: unknown type '%s'.\n", |
| 4057 | file, linenum, args[myidx]); |
| 4058 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4059 | goto out; |
| 4060 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4061 | /* myidx already points to next arg */ |
| 4062 | } |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 4063 | else if (strcmp(args[myidx], "store") == 0) { |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 4064 | int type, err; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 4065 | char *cw, *nw, *sa; |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 4066 | |
| 4067 | myidx++; |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4068 | nw = args[myidx]; |
| 4069 | while (*nw) { |
| 4070 | /* the "store" keyword supports a comma-separated list */ |
| 4071 | cw = nw; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 4072 | sa = NULL; /* store arg */ |
| 4073 | while (*nw && *nw != ',') { |
| 4074 | if (*nw == '(') { |
| 4075 | *nw = 0; |
| 4076 | sa = ++nw; |
| 4077 | while (*nw != ')') { |
| 4078 | if (!*nw) { |
| 4079 | Alert("parsing [%s:%d] : %s: missing closing parenthesis after store option '%s'.\n", |
| 4080 | file, linenum, args[0], cw); |
| 4081 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4082 | goto out; |
| 4083 | } |
| 4084 | nw++; |
| 4085 | } |
| 4086 | *nw = '\0'; |
| 4087 | } |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4088 | nw++; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 4089 | } |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4090 | if (*nw) |
| 4091 | *nw++ = '\0'; |
| 4092 | type = stktable_get_data_type(cw); |
| 4093 | if (type < 0) { |
| 4094 | Alert("parsing [%s:%d] : %s: unknown store option '%s'.\n", |
| 4095 | file, linenum, args[0], cw); |
| 4096 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4097 | goto out; |
| 4098 | } |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 4099 | |
| 4100 | err = stktable_alloc_data_type(&curproxy->table, type, sa); |
| 4101 | switch (err) { |
| 4102 | case PE_NONE: break; |
| 4103 | case PE_EXIST: |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4104 | Warning("parsing [%s:%d]: %s: store option '%s' already enabled, ignored.\n", |
| 4105 | file, linenum, args[0], cw); |
| 4106 | err_code |= ERR_WARN; |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 4107 | break; |
| 4108 | |
| 4109 | case PE_ARG_MISSING: |
| 4110 | Alert("parsing [%s:%d] : %s: missing argument to store option '%s'.\n", |
| 4111 | file, linenum, args[0], cw); |
| 4112 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4113 | goto out; |
| 4114 | |
| 4115 | case PE_ARG_NOT_USED: |
| 4116 | Alert("parsing [%s:%d] : %s: unexpected argument to store option '%s'.\n", |
| 4117 | file, linenum, args[0], cw); |
| 4118 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4119 | goto out; |
| 4120 | |
| 4121 | default: |
| 4122 | Alert("parsing [%s:%d] : %s: error when processing store option '%s'.\n", |
| 4123 | file, linenum, args[0], cw); |
| 4124 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4125 | goto out; |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4126 | } |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 4127 | } |
| 4128 | myidx++; |
| 4129 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4130 | else { |
| 4131 | Alert("parsing [%s:%d] : stick-table: unknown argument '%s'.\n", |
| 4132 | file, linenum, args[myidx]); |
| 4133 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4134 | goto out; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4135 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4136 | } |
| 4137 | |
| 4138 | if (!curproxy->table.size) { |
| 4139 | Alert("parsing [%s:%d] : stick-table: missing size.\n", |
| 4140 | file, linenum); |
| 4141 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4142 | goto out; |
| 4143 | } |
| 4144 | |
| 4145 | if (curproxy->table.type == (unsigned int)-1) { |
| 4146 | Alert("parsing [%s:%d] : stick-table: missing type.\n", |
| 4147 | file, linenum); |
| 4148 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4149 | goto out; |
| 4150 | } |
| 4151 | } |
| 4152 | else if (!strcmp(args[0], "stick")) { |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4153 | struct sticking_rule *rule; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 4154 | struct sample_expr *expr; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4155 | int myidx = 0; |
| 4156 | const char *name = NULL; |
| 4157 | int flags; |
| 4158 | |
| 4159 | if (curproxy == &defproxy) { |
| 4160 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 4161 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4162 | goto out; |
| 4163 | } |
| 4164 | |
| 4165 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) { |
| 4166 | err_code |= ERR_WARN; |
| 4167 | goto out; |
| 4168 | } |
| 4169 | |
| 4170 | myidx++; |
| 4171 | if ((strcmp(args[myidx], "store") == 0) || |
| 4172 | (strcmp(args[myidx], "store-request") == 0)) { |
| 4173 | myidx++; |
| 4174 | flags = STK_IS_STORE; |
| 4175 | } |
| 4176 | else if (strcmp(args[myidx], "store-response") == 0) { |
| 4177 | myidx++; |
| 4178 | flags = STK_IS_STORE | STK_ON_RSP; |
| 4179 | } |
| 4180 | else if (strcmp(args[myidx], "match") == 0) { |
| 4181 | myidx++; |
| 4182 | flags = STK_IS_MATCH; |
| 4183 | } |
| 4184 | else if (strcmp(args[myidx], "on") == 0) { |
| 4185 | myidx++; |
| 4186 | flags = STK_IS_MATCH | STK_IS_STORE; |
| 4187 | } |
| 4188 | else { |
| 4189 | Alert("parsing [%s:%d] : '%s' expects 'on', 'match', or 'store'.\n", file, linenum, args[0]); |
| 4190 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4191 | goto out; |
| 4192 | } |
| 4193 | |
| 4194 | if (*(args[myidx]) == 0) { |
| 4195 | Alert("parsing [%s:%d] : '%s' expects a fetch method.\n", file, linenum, args[0]); |
| 4196 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4197 | goto out; |
| 4198 | } |
| 4199 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 4200 | curproxy->conf.args.ctx = ARGC_STK; |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 4201 | expr = sample_parse_expr(args, &myidx, file, linenum, &errmsg, &curproxy->conf.args); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4202 | if (!expr) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 4203 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4204 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4205 | goto out; |
| 4206 | } |
| 4207 | |
| 4208 | if (flags & STK_ON_RSP) { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 4209 | if (!(expr->fetch->val & SMP_VAL_BE_STO_RUL)) { |
| 4210 | Alert("parsing [%s:%d] : '%s': fetch method '%s' extracts information from '%s', none of which is available for 'store-response'.\n", |
| 4211 | file, linenum, args[0], expr->fetch->kw, sample_src_names(expr->fetch->use)); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4212 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4213 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4214 | goto out; |
| 4215 | } |
| 4216 | } else { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 4217 | if (!(expr->fetch->val & SMP_VAL_BE_SET_SRV)) { |
| 4218 | Alert("parsing [%s:%d] : '%s': fetch method '%s' extracts information from '%s', none of which is available during request.\n", |
| 4219 | file, linenum, args[0], expr->fetch->kw, sample_src_names(expr->fetch->use)); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4220 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4221 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4222 | goto out; |
| 4223 | } |
| 4224 | } |
| 4225 | |
Willy Tarreau | 1b6c00c | 2012-10-05 22:41:26 +0200 | [diff] [blame] | 4226 | /* check if we need to allocate an hdr_idx struct for HTTP parsing */ |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 4227 | curproxy->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
Willy Tarreau | 1b6c00c | 2012-10-05 22:41:26 +0200 | [diff] [blame] | 4228 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4229 | if (strcmp(args[myidx], "table") == 0) { |
| 4230 | myidx++; |
| 4231 | name = args[myidx++]; |
| 4232 | } |
| 4233 | |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4234 | if (strcmp(args[myidx], "if") == 0 || strcmp(args[myidx], "unless") == 0) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 4235 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + myidx, &errmsg)) == NULL) { |
| 4236 | Alert("parsing [%s:%d] : '%s': error detected while parsing sticking condition : %s.\n", |
| 4237 | file, linenum, args[0], errmsg); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4238 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4239 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4240 | goto out; |
| 4241 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4242 | } |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4243 | else if (*(args[myidx])) { |
| 4244 | Alert("parsing [%s:%d] : '%s': unknown keyword '%s'.\n", |
| 4245 | file, linenum, args[0], args[myidx]); |
| 4246 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4247 | free(expr); |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4248 | goto out; |
| 4249 | } |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 4250 | if (flags & STK_ON_RSP) |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4251 | err_code |= warnif_cond_conflicts(cond, SMP_VAL_BE_STO_RUL, file, linenum); |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 4252 | else |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4253 | err_code |= warnif_cond_conflicts(cond, SMP_VAL_BE_SET_SRV, file, linenum); |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 4254 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4255 | rule = calloc(1, sizeof(*rule)); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4256 | rule->cond = cond; |
| 4257 | rule->expr = expr; |
| 4258 | rule->flags = flags; |
| 4259 | rule->table.name = name ? strdup(name) : NULL; |
| 4260 | LIST_INIT(&rule->list); |
| 4261 | if (flags & STK_ON_RSP) |
| 4262 | LIST_ADDQ(&curproxy->storersp_rules, &rule->list); |
| 4263 | else |
| 4264 | LIST_ADDQ(&curproxy->sticking_rules, &rule->list); |
| 4265 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4266 | else if (!strcmp(args[0], "stats")) { |
| 4267 | if (curproxy != &defproxy && curproxy->uri_auth == defproxy.uri_auth) |
| 4268 | curproxy->uri_auth = NULL; /* we must detach from the default config */ |
| 4269 | |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4270 | if (!*args[1]) { |
| 4271 | goto stats_error_parsing; |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4272 | } else if (!strcmp(args[1], "admin")) { |
| 4273 | struct stats_admin_rule *rule; |
| 4274 | |
| 4275 | if (curproxy == &defproxy) { |
| 4276 | Alert("parsing [%s:%d]: '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
| 4277 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4278 | goto out; |
| 4279 | } |
| 4280 | |
| 4281 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4282 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4283 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4284 | goto out; |
| 4285 | } |
| 4286 | |
| 4287 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
| 4288 | Alert("parsing [%s:%d] : '%s %s' requires either 'if' or 'unless' followed by a condition.\n", |
| 4289 | file, linenum, args[0], args[1]); |
| 4290 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4291 | goto out; |
| 4292 | } |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 4293 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 4294 | Alert("parsing [%s:%d] : error detected while parsing a '%s %s' rule : %s.\n", |
| 4295 | file, linenum, args[0], args[1], errmsg); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4296 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4297 | goto out; |
| 4298 | } |
| 4299 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4300 | err_code |= warnif_cond_conflicts(cond, |
| 4301 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 4302 | file, linenum); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4303 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4304 | rule = calloc(1, sizeof(*rule)); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4305 | rule->cond = cond; |
| 4306 | LIST_INIT(&rule->list); |
| 4307 | LIST_ADDQ(&curproxy->uri_auth->admin_rules, &rule->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4308 | } else if (!strcmp(args[1], "uri")) { |
| 4309 | if (*(args[2]) == 0) { |
| 4310 | Alert("parsing [%s:%d] : 'uri' needs an URI prefix.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4311 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4312 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4313 | } else if (!stats_set_uri(&curproxy->uri_auth, args[2])) { |
| 4314 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4315 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4316 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4317 | } |
| 4318 | } else if (!strcmp(args[1], "realm")) { |
| 4319 | if (*(args[2]) == 0) { |
| 4320 | Alert("parsing [%s:%d] : 'realm' needs an realm name.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4321 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4322 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4323 | } else if (!stats_set_realm(&curproxy->uri_auth, args[2])) { |
| 4324 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4325 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4326 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4327 | } |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4328 | } else if (!strcmp(args[1], "refresh")) { |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 4329 | unsigned interval; |
| 4330 | |
| 4331 | err = parse_time_err(args[2], &interval, TIME_UNIT_S); |
| 4332 | if (err) { |
| 4333 | Alert("parsing [%s:%d] : unexpected character '%c' in stats refresh interval.\n", |
| 4334 | file, linenum, *err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4335 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4336 | goto out; |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4337 | } else if (!stats_set_refresh(&curproxy->uri_auth, interval)) { |
| 4338 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4339 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4340 | goto out; |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4341 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4342 | } else if (!strcmp(args[1], "http-request")) { /* request access control: allow/deny/auth */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 4343 | struct act_rule *rule; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4344 | |
| 4345 | if (curproxy == &defproxy) { |
| 4346 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 4347 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4348 | goto out; |
| 4349 | } |
| 4350 | |
| 4351 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4352 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4353 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4354 | goto out; |
| 4355 | } |
| 4356 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4357 | if (!LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 4358 | !LIST_PREV(&curproxy->uri_auth->http_req_rules, struct act_rule *, list)->cond) { |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4359 | Warning("parsing [%s:%d]: previous '%s' action has no condition attached, further entries are NOOP.\n", |
| 4360 | file, linenum, args[0]); |
| 4361 | err_code |= ERR_WARN; |
| 4362 | } |
| 4363 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4364 | rule = parse_http_req_cond((const char **)args + 2, file, linenum, curproxy); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4365 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4366 | if (!rule) { |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4367 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4368 | goto out; |
| 4369 | } |
| 4370 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4371 | err_code |= warnif_cond_conflicts(rule->cond, |
| 4372 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 4373 | file, linenum); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4374 | LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4375 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4376 | } else if (!strcmp(args[1], "auth")) { |
| 4377 | if (*(args[2]) == 0) { |
| 4378 | Alert("parsing [%s:%d] : 'auth' needs a user:password account.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4379 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4380 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4381 | } else if (!stats_add_auth(&curproxy->uri_auth, args[2])) { |
| 4382 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4383 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4384 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4385 | } |
| 4386 | } else if (!strcmp(args[1], "scope")) { |
| 4387 | if (*(args[2]) == 0) { |
| 4388 | Alert("parsing [%s:%d] : 'scope' needs a proxy name.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4389 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4390 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4391 | } else if (!stats_add_scope(&curproxy->uri_auth, args[2])) { |
| 4392 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4393 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4394 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4395 | } |
| 4396 | } else if (!strcmp(args[1], "enable")) { |
| 4397 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4398 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4399 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4400 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4401 | } |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 4402 | } else if (!strcmp(args[1], "hide-version")) { |
| 4403 | if (!stats_set_flag(&curproxy->uri_auth, ST_HIDEVER)) { |
| 4404 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4405 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4406 | goto out; |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 4407 | } |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 4408 | } else if (!strcmp(args[1], "show-legends")) { |
| 4409 | if (!stats_set_flag(&curproxy->uri_auth, ST_SHLGNDS)) { |
| 4410 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4411 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4412 | goto out; |
| 4413 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4414 | } else if (!strcmp(args[1], "show-node")) { |
| 4415 | |
| 4416 | if (*args[2]) { |
| 4417 | int i; |
| 4418 | char c; |
| 4419 | |
| 4420 | for (i=0; args[2][i]; i++) { |
| 4421 | c = args[2][i]; |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 4422 | if (!isupper((unsigned char)c) && !islower((unsigned char)c) && |
| 4423 | !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.') |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4424 | break; |
| 4425 | } |
| 4426 | |
| 4427 | if (!i || args[2][i]) { |
| 4428 | Alert("parsing [%s:%d]: '%s %s' invalid node name - should be a string" |
| 4429 | "with digits(0-9), letters(A-Z, a-z), hyphen(-) or underscode(_).\n", |
| 4430 | file, linenum, args[0], args[1]); |
| 4431 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4432 | goto out; |
| 4433 | } |
| 4434 | } |
| 4435 | |
| 4436 | if (!stats_set_node(&curproxy->uri_auth, args[2])) { |
| 4437 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4438 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4439 | goto out; |
| 4440 | } |
| 4441 | } else if (!strcmp(args[1], "show-desc")) { |
| 4442 | char *desc = NULL; |
| 4443 | |
| 4444 | if (*args[2]) { |
| 4445 | int i, len=0; |
| 4446 | char *d; |
| 4447 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 4448 | for (i = 2; *args[i]; i++) |
| 4449 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4450 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4451 | desc = d = calloc(1, len); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4452 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 4453 | d += snprintf(d, desc + len - d, "%s", args[2]); |
| 4454 | for (i = 3; *args[i]; i++) |
| 4455 | d += snprintf(d, desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4456 | } |
| 4457 | |
| 4458 | if (!*args[2] && !global.desc) |
| 4459 | Warning("parsing [%s:%d]: '%s' requires a parameter or 'desc' to be set in the global section.\n", |
| 4460 | file, linenum, args[1]); |
| 4461 | else { |
| 4462 | if (!stats_set_desc(&curproxy->uri_auth, desc)) { |
| 4463 | free(desc); |
| 4464 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4465 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4466 | goto out; |
| 4467 | } |
| 4468 | free(desc); |
| 4469 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4470 | } else { |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4471 | stats_error_parsing: |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4472 | Alert("parsing [%s:%d]: %s '%s', expects 'admin', 'uri', 'realm', 'auth', 'scope', 'enable', 'hide-version', 'show-node', 'show-desc' or 'show-legends'.\n", |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4473 | file, linenum, *args[1]?"unknown stats parameter":"missing keyword in", args[*args[1]?1:0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4474 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4475 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4476 | } |
| 4477 | } |
| 4478 | else if (!strcmp(args[0], "option")) { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4479 | int optnum; |
| 4480 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4481 | if (*(args[1]) == '\0') { |
| 4482 | Alert("parsing [%s:%d]: '%s' expects an option name.\n", |
| 4483 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4484 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4485 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4486 | } |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4487 | |
| 4488 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 4489 | if (!strcmp(args[1], cfg_opts[optnum].name)) { |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 4490 | if (cfg_opts[optnum].cap == PR_CAP_NONE) { |
| 4491 | Alert("parsing [%s:%d]: option '%s' is not supported due to build options.\n", |
| 4492 | file, linenum, cfg_opts[optnum].name); |
| 4493 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4494 | goto out; |
| 4495 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4496 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4497 | goto out; |
| 4498 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4499 | if (warnifnotcap(curproxy, cfg_opts[optnum].cap, file, linenum, args[1], NULL)) { |
| 4500 | err_code |= ERR_WARN; |
| 4501 | goto out; |
| 4502 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4503 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4504 | curproxy->no_options &= ~cfg_opts[optnum].val; |
| 4505 | curproxy->options &= ~cfg_opts[optnum].val; |
| 4506 | |
| 4507 | switch (kwm) { |
| 4508 | case KWM_STD: |
| 4509 | curproxy->options |= cfg_opts[optnum].val; |
| 4510 | break; |
| 4511 | case KWM_NO: |
| 4512 | curproxy->no_options |= cfg_opts[optnum].val; |
| 4513 | break; |
| 4514 | case KWM_DEF: /* already cleared */ |
| 4515 | break; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 4516 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4517 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4518 | goto out; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4519 | } |
| 4520 | } |
| 4521 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4522 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 4523 | if (!strcmp(args[1], cfg_opts2[optnum].name)) { |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 4524 | if (cfg_opts2[optnum].cap == PR_CAP_NONE) { |
| 4525 | Alert("parsing [%s:%d]: option '%s' is not supported due to build options.\n", |
| 4526 | file, linenum, cfg_opts2[optnum].name); |
| 4527 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4528 | goto out; |
| 4529 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4530 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4531 | goto out; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4532 | if (warnifnotcap(curproxy, cfg_opts2[optnum].cap, file, linenum, args[1], NULL)) { |
| 4533 | err_code |= ERR_WARN; |
| 4534 | goto out; |
| 4535 | } |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4536 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4537 | curproxy->no_options2 &= ~cfg_opts2[optnum].val; |
| 4538 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 4539 | |
| 4540 | switch (kwm) { |
| 4541 | case KWM_STD: |
| 4542 | curproxy->options2 |= cfg_opts2[optnum].val; |
| 4543 | break; |
| 4544 | case KWM_NO: |
| 4545 | curproxy->no_options2 |= cfg_opts2[optnum].val; |
| 4546 | break; |
| 4547 | case KWM_DEF: /* already cleared */ |
| 4548 | break; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 4549 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4550 | goto out; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4551 | } |
| 4552 | } |
| 4553 | |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4554 | /* HTTP options override each other. They can be cancelled using |
| 4555 | * "no option xxx" which only switches to default mode if the mode |
| 4556 | * was this one (useful for cancelling options set in defaults |
| 4557 | * sections). |
| 4558 | */ |
| 4559 | if (strcmp(args[1], "httpclose") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4560 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4561 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4562 | if (kwm == KWM_STD) { |
| 4563 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4564 | curproxy->options |= PR_O_HTTP_PCL; |
| 4565 | goto out; |
| 4566 | } |
| 4567 | else if (kwm == KWM_NO) { |
| 4568 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 4569 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4570 | goto out; |
| 4571 | } |
| 4572 | } |
| 4573 | else if (strcmp(args[1], "forceclose") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4574 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4575 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4576 | if (kwm == KWM_STD) { |
| 4577 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4578 | curproxy->options |= PR_O_HTTP_FCL; |
| 4579 | goto out; |
| 4580 | } |
| 4581 | else if (kwm == KWM_NO) { |
| 4582 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL) |
| 4583 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4584 | goto out; |
| 4585 | } |
| 4586 | } |
| 4587 | else if (strcmp(args[1], "http-server-close") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4588 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4589 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4590 | if (kwm == KWM_STD) { |
| 4591 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4592 | curproxy->options |= PR_O_HTTP_SCL; |
| 4593 | goto out; |
| 4594 | } |
| 4595 | else if (kwm == KWM_NO) { |
| 4596 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) |
| 4597 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4598 | goto out; |
| 4599 | } |
| 4600 | } |
| 4601 | else if (strcmp(args[1], "http-keep-alive") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4602 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4603 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4604 | if (kwm == KWM_STD) { |
| 4605 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4606 | curproxy->options |= PR_O_HTTP_KAL; |
| 4607 | goto out; |
| 4608 | } |
| 4609 | else if (kwm == KWM_NO) { |
| 4610 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_KAL) |
| 4611 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4612 | goto out; |
| 4613 | } |
| 4614 | } |
| 4615 | else if (strcmp(args[1], "http-tunnel") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4616 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4617 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4618 | if (kwm == KWM_STD) { |
| 4619 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4620 | curproxy->options |= PR_O_HTTP_TUN; |
| 4621 | goto out; |
| 4622 | } |
| 4623 | else if (kwm == KWM_NO) { |
| 4624 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 4625 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4626 | goto out; |
| 4627 | } |
| 4628 | } |
| 4629 | |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 4630 | /* Redispatch can take an integer argument that control when the |
| 4631 | * resispatch occurs. All values are relative to the retries option. |
| 4632 | * This can be cancelled using "no option xxx". |
| 4633 | */ |
| 4634 | if (strcmp(args[1], "redispatch") == 0) { |
| 4635 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) { |
| 4636 | err_code |= ERR_WARN; |
| 4637 | goto out; |
| 4638 | } |
| 4639 | |
| 4640 | curproxy->no_options &= ~PR_O_REDISP; |
| 4641 | curproxy->options &= ~PR_O_REDISP; |
| 4642 | |
| 4643 | switch (kwm) { |
| 4644 | case KWM_STD: |
| 4645 | curproxy->options |= PR_O_REDISP; |
| 4646 | curproxy->redispatch_after = -1; |
| 4647 | if(*args[2]) { |
| 4648 | curproxy->redispatch_after = atol(args[2]); |
| 4649 | } |
| 4650 | break; |
| 4651 | case KWM_NO: |
| 4652 | curproxy->no_options |= PR_O_REDISP; |
| 4653 | curproxy->redispatch_after = 0; |
| 4654 | break; |
| 4655 | case KWM_DEF: /* already cleared */ |
| 4656 | break; |
| 4657 | } |
| 4658 | goto out; |
| 4659 | } |
| 4660 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4661 | if (kwm != KWM_STD) { |
| 4662 | Alert("parsing [%s:%d]: negation/default is not supported for option '%s'.\n", |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4663 | file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4664 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4665 | goto out; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4666 | } |
| 4667 | |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4668 | if (!strcmp(args[1], "httplog")) { |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4669 | char *logformat; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4670 | /* generate a complete HTTP log */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4671 | logformat = default_http_log_format; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4672 | if (*(args[2]) != '\0') { |
| 4673 | if (!strcmp(args[2], "clf")) { |
| 4674 | curproxy->options2 |= PR_O2_CLFLOG; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4675 | logformat = clf_http_log_format; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4676 | } else { |
William Lallemand | 77063bc | 2015-05-28 18:02:48 +0200 | [diff] [blame] | 4677 | Alert("parsing [%s:%d] : keyword '%s' only supports option 'clf'.\n", file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4678 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4679 | goto out; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4680 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4681 | if (alertif_too_many_args_idx(1, 1, file, linenum, args, &err_code)) |
| 4682 | goto out; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4683 | } |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 4684 | if (curproxy->conf.logformat_string && curproxy == &defproxy) { |
| 4685 | char *oldlogformat = "log-format"; |
| 4686 | char *clflogformat = ""; |
| 4687 | |
| 4688 | if (curproxy->conf.logformat_string == default_http_log_format) |
| 4689 | oldlogformat = "option httplog"; |
| 4690 | else if (curproxy->conf.logformat_string == default_tcp_log_format) |
| 4691 | oldlogformat = "option tcplog"; |
| 4692 | else if (curproxy->conf.logformat_string == clf_http_log_format) |
| 4693 | oldlogformat = "option httplog clf"; |
| 4694 | if (logformat == clf_http_log_format) |
| 4695 | clflogformat = " clf"; |
| 4696 | Warning("parsing [%s:%d]: 'option httplog%s' overrides previous '%s' in 'defaults' section.\n", |
| 4697 | file, linenum, clflogformat, oldlogformat); |
| 4698 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 4699 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 4700 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 4701 | curproxy->conf.logformat_string != clf_http_log_format) |
| 4702 | free(curproxy->conf.logformat_string); |
| 4703 | curproxy->conf.logformat_string = logformat; |
| 4704 | |
| 4705 | free(curproxy->conf.lfs_file); |
| 4706 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 4707 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4708 | } |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 4709 | else if (!strcmp(args[1], "tcplog")) { |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 4710 | if (curproxy->conf.logformat_string && curproxy == &defproxy) { |
| 4711 | char *oldlogformat = "log-format"; |
| 4712 | |
| 4713 | if (curproxy->conf.logformat_string == default_http_log_format) |
| 4714 | oldlogformat = "option httplog"; |
| 4715 | else if (curproxy->conf.logformat_string == default_tcp_log_format) |
| 4716 | oldlogformat = "option tcplog"; |
| 4717 | else if (curproxy->conf.logformat_string == clf_http_log_format) |
| 4718 | oldlogformat = "option httplog clf"; |
| 4719 | Warning("parsing [%s:%d]: 'option tcplog' overrides previous '%s' in 'defaults' section.\n", |
| 4720 | file, linenum, oldlogformat); |
| 4721 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4722 | /* generate a detailed TCP log */ |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 4723 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 4724 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 4725 | curproxy->conf.logformat_string != clf_http_log_format) |
| 4726 | free(curproxy->conf.logformat_string); |
| 4727 | curproxy->conf.logformat_string = default_tcp_log_format; |
| 4728 | |
| 4729 | free(curproxy->conf.lfs_file); |
| 4730 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 4731 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4732 | |
| 4733 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4734 | goto out; |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 4735 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4736 | else if (!strcmp(args[1], "tcpka")) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4737 | /* enable TCP keep-alives on client and server streams */ |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4738 | if (warnifnotcap(curproxy, PR_CAP_BE | PR_CAP_FE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4739 | err_code |= ERR_WARN; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4740 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4741 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4742 | goto out; |
| 4743 | |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4744 | if (curproxy->cap & PR_CAP_FE) |
| 4745 | curproxy->options |= PR_O_TCP_CLI_KA; |
| 4746 | if (curproxy->cap & PR_CAP_BE) |
| 4747 | curproxy->options |= PR_O_TCP_SRV_KA; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4748 | } |
| 4749 | else if (!strcmp(args[1], "httpchk")) { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4750 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4751 | err_code |= ERR_WARN; |
| 4752 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4753 | /* use HTTP request to check servers' health */ |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4754 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4755 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4756 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4757 | curproxy->options2 |= PR_O2_HTTP_CHK; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4758 | if (!*args[2]) { /* no argument */ |
| 4759 | curproxy->check_req = strdup(DEF_CHECK_REQ); /* default request */ |
| 4760 | curproxy->check_len = strlen(DEF_CHECK_REQ); |
| 4761 | } else if (!*args[3]) { /* one argument : URI */ |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4762 | int reqlen = strlen(args[2]) + strlen("OPTIONS HTTP/1.0\r\n") + 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4763 | curproxy->check_req = malloc(reqlen); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4764 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4765 | "OPTIONS %s HTTP/1.0\r\n", args[2]); /* URI to use */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4766 | } else { /* more arguments : METHOD URI [HTTP_VER] */ |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4767 | int reqlen = strlen(args[2]) + strlen(args[3]) + 3 + strlen("\r\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4768 | if (*args[4]) |
| 4769 | reqlen += strlen(args[4]); |
| 4770 | else |
| 4771 | reqlen += strlen("HTTP/1.0"); |
| 4772 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4773 | curproxy->check_req = malloc(reqlen); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4774 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4775 | "%s %s %s\r\n", args[2], args[3], *args[4]?args[4]:"HTTP/1.0"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4776 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4777 | if (alertif_too_many_args_idx(3, 1, file, linenum, args, &err_code)) |
| 4778 | goto out; |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 4779 | } |
| 4780 | else if (!strcmp(args[1], "ssl-hello-chk")) { |
| 4781 | /* use SSLv3 CLIENT HELLO to check servers' health */ |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4782 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4783 | err_code |= ERR_WARN; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4784 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4785 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4786 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4787 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Willy Tarreau | 07a5490 | 2010-03-29 18:33:29 +0200 | [diff] [blame] | 4788 | curproxy->options2 |= PR_O2_SSL3_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4789 | |
| 4790 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4791 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4792 | } |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4793 | else if (!strcmp(args[1], "smtpchk")) { |
| 4794 | /* use SMTP request to check servers' health */ |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4795 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4796 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4797 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4798 | curproxy->options2 |= PR_O2_SMTP_CHK; |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4799 | |
| 4800 | if (!*args[2] || !*args[3]) { /* no argument or incomplete EHLO host */ |
| 4801 | curproxy->check_req = strdup(DEF_SMTP_CHECK_REQ); /* default request */ |
| 4802 | curproxy->check_len = strlen(DEF_SMTP_CHECK_REQ); |
| 4803 | } else { /* ESMTP EHLO, or SMTP HELO, and a hostname */ |
| 4804 | if (!strcmp(args[2], "EHLO") || !strcmp(args[2], "HELO")) { |
| 4805 | int reqlen = strlen(args[2]) + strlen(args[3]) + strlen(" \r\n") + 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4806 | curproxy->check_req = malloc(reqlen); |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4807 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
| 4808 | "%s %s\r\n", args[2], args[3]); /* HELO hostname */ |
| 4809 | } else { |
| 4810 | /* this just hits the default for now, but you could potentially expand it to allow for other stuff |
| 4811 | though, it's unlikely you'd want to send anything other than an EHLO or HELO */ |
| 4812 | curproxy->check_req = strdup(DEF_SMTP_CHECK_REQ); /* default request */ |
| 4813 | curproxy->check_len = strlen(DEF_SMTP_CHECK_REQ); |
| 4814 | } |
| 4815 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4816 | if (alertif_too_many_args_idx(2, 1, file, linenum, args, &err_code)) |
| 4817 | goto out; |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4818 | } |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4819 | else if (!strcmp(args[1], "pgsql-check")) { |
| 4820 | /* use PostgreSQL request to check servers' health */ |
| 4821 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4822 | err_code |= ERR_WARN; |
| 4823 | |
| 4824 | free(curproxy->check_req); |
| 4825 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4826 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4827 | curproxy->options2 |= PR_O2_PGSQL_CHK; |
| 4828 | |
| 4829 | if (*(args[2])) { |
| 4830 | int cur_arg = 2; |
| 4831 | |
| 4832 | while (*(args[cur_arg])) { |
| 4833 | if (strcmp(args[cur_arg], "user") == 0) { |
| 4834 | char * packet; |
| 4835 | uint32_t packet_len; |
| 4836 | uint32_t pv; |
| 4837 | |
| 4838 | /* suboption header - needs additional argument for it */ |
| 4839 | if (*(args[cur_arg+1]) == 0) { |
| 4840 | Alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 4841 | file, linenum, args[0], args[1], args[cur_arg]); |
| 4842 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4843 | goto out; |
| 4844 | } |
| 4845 | |
| 4846 | /* uint32_t + uint32_t + strlen("user")+1 + strlen(username)+1 + 1 */ |
| 4847 | packet_len = 4 + 4 + 5 + strlen(args[cur_arg + 1])+1 +1; |
| 4848 | pv = htonl(0x30000); /* protocol version 3.0 */ |
| 4849 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4850 | packet = calloc(1, packet_len); |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4851 | |
| 4852 | memcpy(packet + 4, &pv, 4); |
| 4853 | |
| 4854 | /* copy "user" */ |
| 4855 | memcpy(packet + 8, "user", 4); |
| 4856 | |
| 4857 | /* copy username */ |
| 4858 | memcpy(packet + 13, args[cur_arg+1], strlen(args[cur_arg+1])); |
| 4859 | |
| 4860 | free(curproxy->check_req); |
| 4861 | curproxy->check_req = packet; |
| 4862 | curproxy->check_len = packet_len; |
| 4863 | |
| 4864 | packet_len = htonl(packet_len); |
| 4865 | memcpy(packet, &packet_len, 4); |
| 4866 | cur_arg += 2; |
| 4867 | } else { |
| 4868 | /* unknown suboption - catchall */ |
| 4869 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 4870 | file, linenum, args[0], args[1]); |
| 4871 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4872 | goto out; |
| 4873 | } |
| 4874 | } /* end while loop */ |
| 4875 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4876 | if (alertif_too_many_args_idx(2, 1, file, linenum, args, &err_code)) |
| 4877 | goto out; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4878 | } |
| 4879 | |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4880 | else if (!strcmp(args[1], "redis-check")) { |
| 4881 | /* use REDIS PING request to check servers' health */ |
| 4882 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4883 | err_code |= ERR_WARN; |
| 4884 | |
| 4885 | free(curproxy->check_req); |
| 4886 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4887 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4888 | curproxy->options2 |= PR_O2_REDIS_CHK; |
| 4889 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4890 | curproxy->check_req = malloc(sizeof(DEF_REDIS_CHECK_REQ) - 1); |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4891 | memcpy(curproxy->check_req, DEF_REDIS_CHECK_REQ, sizeof(DEF_REDIS_CHECK_REQ) - 1); |
| 4892 | curproxy->check_len = sizeof(DEF_REDIS_CHECK_REQ) - 1; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4893 | |
| 4894 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4895 | goto out; |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4896 | } |
| 4897 | |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4898 | else if (!strcmp(args[1], "mysql-check")) { |
| 4899 | /* use MYSQL request to check servers' health */ |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4900 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4901 | err_code |= ERR_WARN; |
| 4902 | |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4903 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4904 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4905 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4906 | curproxy->options2 |= PR_O2_MYSQL_CHK; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4907 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4908 | /* This is an example of a MySQL >=4.0 client Authentication packet kindly provided by Cyril Bonte. |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4909 | * const char mysql40_client_auth_pkt[] = { |
| 4910 | * "\x0e\x00\x00" // packet length |
| 4911 | * "\x01" // packet number |
| 4912 | * "\x00\x00" // client capabilities |
| 4913 | * "\x00\x00\x01" // max packet |
| 4914 | * "haproxy\x00" // username (null terminated string) |
| 4915 | * "\x00" // filler (always 0x00) |
| 4916 | * "\x01\x00\x00" // packet length |
| 4917 | * "\x00" // packet number |
| 4918 | * "\x01" // COM_QUIT command |
| 4919 | * }; |
| 4920 | */ |
| 4921 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4922 | /* This is an example of a MySQL >=4.1 client Authentication packet provided by Nenad Merdanovic. |
| 4923 | * const char mysql41_client_auth_pkt[] = { |
| 4924 | * "\x0e\x00\x00\" // packet length |
| 4925 | * "\x01" // packet number |
| 4926 | * "\x00\x00\x00\x00" // client capabilities |
| 4927 | * "\x00\x00\x00\x01" // max packet |
| 4928 | * "\x21" // character set (UTF-8) |
| 4929 | * char[23] // All zeroes |
| 4930 | * "haproxy\x00" // username (null terminated string) |
| 4931 | * "\x00" // filler (always 0x00) |
| 4932 | * "\x01\x00\x00" // packet length |
| 4933 | * "\x00" // packet number |
| 4934 | * "\x01" // COM_QUIT command |
| 4935 | * }; |
| 4936 | */ |
| 4937 | |
| 4938 | |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4939 | if (*(args[2])) { |
| 4940 | int cur_arg = 2; |
| 4941 | |
| 4942 | while (*(args[cur_arg])) { |
| 4943 | if (strcmp(args[cur_arg], "user") == 0) { |
| 4944 | char *mysqluser; |
| 4945 | int packetlen, reqlen, userlen; |
| 4946 | |
| 4947 | /* suboption header - needs additional argument for it */ |
| 4948 | if (*(args[cur_arg+1]) == 0) { |
| 4949 | Alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 4950 | file, linenum, args[0], args[1], args[cur_arg]); |
| 4951 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4952 | goto out; |
| 4953 | } |
| 4954 | mysqluser = args[cur_arg + 1]; |
| 4955 | userlen = strlen(mysqluser); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4956 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4957 | if (*(args[cur_arg+2])) { |
| 4958 | if (!strcmp(args[cur_arg+2], "post-41")) { |
| 4959 | packetlen = userlen + 7 + 27; |
| 4960 | reqlen = packetlen + 9; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4961 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4962 | free(curproxy->check_req); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4963 | curproxy->check_req = calloc(1, reqlen); |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4964 | curproxy->check_len = reqlen; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4965 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4966 | snprintf(curproxy->check_req, 4, "%c%c%c", |
| 4967 | ((unsigned char) packetlen & 0xff), |
| 4968 | ((unsigned char) (packetlen >> 8) & 0xff), |
| 4969 | ((unsigned char) (packetlen >> 16) & 0xff)); |
| 4970 | |
| 4971 | curproxy->check_req[3] = 1; |
| 4972 | curproxy->check_req[5] = 130; |
| 4973 | curproxy->check_req[11] = 1; |
| 4974 | curproxy->check_req[12] = 33; |
| 4975 | memcpy(&curproxy->check_req[36], mysqluser, userlen); |
| 4976 | curproxy->check_req[36 + userlen + 1 + 1] = 1; |
| 4977 | curproxy->check_req[36 + userlen + 1 + 1 + 4] = 1; |
| 4978 | cur_arg += 3; |
| 4979 | } else { |
| 4980 | Alert("parsing [%s:%d] : keyword '%s' only supports option 'post-41'.\n", file, linenum, args[cur_arg+2]); |
| 4981 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4982 | goto out; |
| 4983 | } |
| 4984 | } else { |
| 4985 | packetlen = userlen + 7; |
| 4986 | reqlen = packetlen + 9; |
| 4987 | |
| 4988 | free(curproxy->check_req); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4989 | curproxy->check_req = calloc(1, reqlen); |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4990 | curproxy->check_len = reqlen; |
| 4991 | |
| 4992 | snprintf(curproxy->check_req, 4, "%c%c%c", |
| 4993 | ((unsigned char) packetlen & 0xff), |
| 4994 | ((unsigned char) (packetlen >> 8) & 0xff), |
| 4995 | ((unsigned char) (packetlen >> 16) & 0xff)); |
| 4996 | |
| 4997 | curproxy->check_req[3] = 1; |
| 4998 | curproxy->check_req[5] = 128; |
| 4999 | curproxy->check_req[8] = 1; |
| 5000 | memcpy(&curproxy->check_req[9], mysqluser, userlen); |
| 5001 | curproxy->check_req[9 + userlen + 1 + 1] = 1; |
| 5002 | curproxy->check_req[9 + userlen + 1 + 1 + 4] = 1; |
| 5003 | cur_arg += 2; |
| 5004 | } |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 5005 | } else { |
| 5006 | /* unknown suboption - catchall */ |
| 5007 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 5008 | file, linenum, args[0], args[1]); |
| 5009 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5010 | goto out; |
| 5011 | } |
| 5012 | } /* end while loop */ |
| 5013 | } |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 5014 | } |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 5015 | else if (!strcmp(args[1], "ldap-check")) { |
| 5016 | /* use LDAP request to check servers' health */ |
| 5017 | free(curproxy->check_req); |
| 5018 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 5019 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 5020 | curproxy->options2 |= PR_O2_LDAP_CHK; |
| 5021 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5022 | curproxy->check_req = malloc(sizeof(DEF_LDAP_CHECK_REQ) - 1); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 5023 | memcpy(curproxy->check_req, DEF_LDAP_CHECK_REQ, sizeof(DEF_LDAP_CHECK_REQ) - 1); |
| 5024 | curproxy->check_len = sizeof(DEF_LDAP_CHECK_REQ) - 1; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5025 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5026 | goto out; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 5027 | } |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 5028 | else if (!strcmp(args[1], "spop-check")) { |
| 5029 | if (curproxy == &defproxy) { |
| 5030 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", |
| 5031 | file, linenum, args[0], args[1]); |
| 5032 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5033 | goto out; |
| 5034 | } |
| 5035 | if (curproxy->cap & PR_CAP_FE) { |
| 5036 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'frontend' and 'listen' sections.\n", |
| 5037 | file, linenum, args[0], args[1]); |
| 5038 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5039 | goto out; |
| 5040 | } |
| 5041 | |
| 5042 | /* use SPOE request to check servers' health */ |
| 5043 | free(curproxy->check_req); |
| 5044 | curproxy->check_req = NULL; |
| 5045 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 5046 | curproxy->options2 |= PR_O2_SPOP_CHK; |
| 5047 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 5048 | if (spoe_prepare_healthcheck_request(&curproxy->check_req, &curproxy->check_len)) { |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 5049 | Alert("parsing [%s:%d] : failed to prepare SPOP healthcheck request.\n", file, linenum); |
| 5050 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5051 | goto out; |
| 5052 | } |
| 5053 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5054 | goto out; |
| 5055 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5056 | else if (!strcmp(args[1], "tcp-check")) { |
| 5057 | /* use raw TCPCHK send/expect to check servers' health */ |
| 5058 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 5059 | err_code |= ERR_WARN; |
| 5060 | |
| 5061 | free(curproxy->check_req); |
| 5062 | curproxy->check_req = NULL; |
| 5063 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 5064 | curproxy->options2 |= PR_O2_TCPCHK_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5065 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5066 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5067 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 5068 | else if (!strcmp(args[1], "external-check")) { |
| 5069 | /* excute an external command to check servers' health */ |
| 5070 | free(curproxy->check_req); |
| 5071 | curproxy->check_req = NULL; |
| 5072 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 5073 | curproxy->options2 |= PR_O2_EXT_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5074 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5075 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 5076 | } |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5077 | else if (!strcmp(args[1], "forwardfor")) { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5078 | int cur_arg; |
| 5079 | |
| 5080 | /* insert x-forwarded-for field, but not for the IP address listed as an except. |
| 5081 | * set default options (ie: bitfield, header name, etc) |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5082 | */ |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5083 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5084 | curproxy->options |= PR_O_FWDFOR | PR_O_FF_ALWAYS; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5085 | |
| 5086 | free(curproxy->fwdfor_hdr_name); |
| 5087 | curproxy->fwdfor_hdr_name = strdup(DEF_XFORWARDFOR_HDR); |
| 5088 | curproxy->fwdfor_hdr_len = strlen(DEF_XFORWARDFOR_HDR); |
| 5089 | |
| 5090 | /* loop to go through arguments - start at 2, since 0+1 = "option" "forwardfor" */ |
| 5091 | cur_arg = 2; |
| 5092 | while (*(args[cur_arg])) { |
| 5093 | if (!strcmp(args[cur_arg], "except")) { |
| 5094 | /* suboption except - needs additional argument for it */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 5095 | if (!*(args[cur_arg+1]) || !str2net(args[cur_arg+1], 1, &curproxy->except_net, &curproxy->except_mask)) { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5096 | Alert("parsing [%s:%d] : '%s %s %s' expects <address>[/mask] as argument.\n", |
| 5097 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5098 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5099 | goto out; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5100 | } |
| 5101 | /* flush useless bits */ |
| 5102 | curproxy->except_net.s_addr &= curproxy->except_mask.s_addr; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5103 | cur_arg += 2; |
| 5104 | } else if (!strcmp(args[cur_arg], "header")) { |
| 5105 | /* suboption header - needs additional argument for it */ |
| 5106 | if (*(args[cur_arg+1]) == 0) { |
| 5107 | Alert("parsing [%s:%d] : '%s %s %s' expects <header_name> as argument.\n", |
| 5108 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5109 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5110 | goto out; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5111 | } |
| 5112 | free(curproxy->fwdfor_hdr_name); |
| 5113 | curproxy->fwdfor_hdr_name = strdup(args[cur_arg+1]); |
| 5114 | curproxy->fwdfor_hdr_len = strlen(curproxy->fwdfor_hdr_name); |
| 5115 | cur_arg += 2; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5116 | } else if (!strcmp(args[cur_arg], "if-none")) { |
| 5117 | curproxy->options &= ~PR_O_FF_ALWAYS; |
| 5118 | cur_arg += 1; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5119 | } else { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5120 | /* unknown suboption - catchall */ |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5121 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'except', 'header' and 'if-none'.\n", |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5122 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5123 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5124 | goto out; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5125 | } |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5126 | } /* end while loop */ |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5127 | } |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5128 | else if (!strcmp(args[1], "originalto")) { |
| 5129 | int cur_arg; |
| 5130 | |
| 5131 | /* insert x-original-to field, but not for the IP address listed as an except. |
| 5132 | * set default options (ie: bitfield, header name, etc) |
| 5133 | */ |
| 5134 | |
| 5135 | curproxy->options |= PR_O_ORGTO; |
| 5136 | |
| 5137 | free(curproxy->orgto_hdr_name); |
| 5138 | curproxy->orgto_hdr_name = strdup(DEF_XORIGINALTO_HDR); |
| 5139 | curproxy->orgto_hdr_len = strlen(DEF_XORIGINALTO_HDR); |
| 5140 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5141 | /* loop to go through arguments - start at 2, since 0+1 = "option" "originalto" */ |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5142 | cur_arg = 2; |
| 5143 | while (*(args[cur_arg])) { |
| 5144 | if (!strcmp(args[cur_arg], "except")) { |
| 5145 | /* suboption except - needs additional argument for it */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 5146 | if (!*(args[cur_arg+1]) || !str2net(args[cur_arg+1], 1, &curproxy->except_to, &curproxy->except_mask_to)) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5147 | Alert("parsing [%s:%d] : '%s %s %s' expects <address>[/mask] as argument.\n", |
| 5148 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5149 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5150 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5151 | } |
| 5152 | /* flush useless bits */ |
| 5153 | curproxy->except_to.s_addr &= curproxy->except_mask_to.s_addr; |
| 5154 | cur_arg += 2; |
| 5155 | } else if (!strcmp(args[cur_arg], "header")) { |
| 5156 | /* suboption header - needs additional argument for it */ |
| 5157 | if (*(args[cur_arg+1]) == 0) { |
| 5158 | Alert("parsing [%s:%d] : '%s %s %s' expects <header_name> as argument.\n", |
| 5159 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5160 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5161 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5162 | } |
| 5163 | free(curproxy->orgto_hdr_name); |
| 5164 | curproxy->orgto_hdr_name = strdup(args[cur_arg+1]); |
| 5165 | curproxy->orgto_hdr_len = strlen(curproxy->orgto_hdr_name); |
| 5166 | cur_arg += 2; |
| 5167 | } else { |
| 5168 | /* unknown suboption - catchall */ |
| 5169 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'except' and 'header'.\n", |
| 5170 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5171 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5172 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5173 | } |
| 5174 | } /* end while loop */ |
| 5175 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5176 | else { |
| 5177 | Alert("parsing [%s:%d] : unknown option '%s'.\n", file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5178 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5179 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5180 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5181 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5182 | } |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5183 | else if (!strcmp(args[0], "default_backend")) { |
| 5184 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5185 | err_code |= ERR_WARN; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5186 | |
| 5187 | if (*(args[1]) == 0) { |
| 5188 | Alert("parsing [%s:%d] : '%s' expects a backend name.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5189 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5190 | goto out; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5191 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 5192 | free(curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5193 | curproxy->defbe.name = strdup(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5194 | |
| 5195 | if (alertif_too_many_args_idx(1, 0, file, linenum, args, &err_code)) |
| 5196 | goto out; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5197 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5198 | else if (!strcmp(args[0], "redispatch") || !strcmp(args[0], "redisp")) { |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5199 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5200 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5201 | |
Willy Tarreau | a3c504c | 2014-04-28 22:37:32 +0200 | [diff] [blame] | 5202 | if (!already_warned(WARN_REDISPATCH_DEPRECATED)) |
| 5203 | Warning("parsing [%s:%d]: keyword '%s' is deprecated in favor of 'option redispatch', and will not be supported by future versions.\n", |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 5204 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5205 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5206 | /* enable reconnections to dispatch */ |
| 5207 | curproxy->options |= PR_O_REDISP; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5208 | |
| 5209 | if (alertif_too_many_args_idx(1, 0, file, linenum, args, &err_code)) |
| 5210 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5211 | } |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 5212 | else if (!strcmp(args[0], "http-reuse")) { |
| 5213 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5214 | err_code |= ERR_WARN; |
| 5215 | |
| 5216 | if (strcmp(args[1], "never") == 0) { |
| 5217 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5218 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5219 | curproxy->options |= PR_O_REUSE_NEVR; |
| 5220 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5221 | goto out; |
| 5222 | } |
Willy Tarreau | 161d45f | 2015-08-05 16:02:46 +0200 | [diff] [blame] | 5223 | else if (strcmp(args[1], "safe") == 0) { |
| 5224 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5225 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5226 | curproxy->options |= PR_O_REUSE_SAFE; |
| 5227 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5228 | goto out; |
| 5229 | } |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 5230 | else if (strcmp(args[1], "aggressive") == 0) { |
| 5231 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5232 | curproxy->options |= PR_O_REUSE_AGGR; |
| 5233 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5234 | goto out; |
| 5235 | } |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 5236 | else if (strcmp(args[1], "always") == 0) { |
| 5237 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5238 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5239 | curproxy->options |= PR_O_REUSE_ALWS; |
| 5240 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5241 | goto out; |
| 5242 | } |
| 5243 | else { |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 5244 | Alert("parsing [%s:%d] : '%s' only supports 'never', 'safe', 'aggressive', 'always'.\n", file, linenum, args[0]); |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 5245 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5246 | goto out; |
| 5247 | } |
| 5248 | } |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5249 | else if (!strcmp(args[0], "http-check")) { |
| 5250 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5251 | err_code |= ERR_WARN; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5252 | |
| 5253 | if (strcmp(args[1], "disable-on-404") == 0) { |
| 5254 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5255 | curproxy->options |= PR_O_DISABLE404; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5256 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5257 | goto out; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5258 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 5259 | else if (strcmp(args[1], "send-state") == 0) { |
| 5260 | /* enable emission of the apparent state of a server in HTTP checks */ |
| 5261 | curproxy->options2 |= PR_O2_CHK_SNDST; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5262 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5263 | goto out; |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 5264 | } |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5265 | else if (strcmp(args[1], "expect") == 0) { |
| 5266 | const char *ptr_arg; |
| 5267 | int cur_arg; |
| 5268 | |
| 5269 | if (curproxy->options2 & PR_O2_EXP_TYPE) { |
| 5270 | Alert("parsing [%s:%d] : '%s %s' already specified.\n", file, linenum, args[0], args[1]); |
| 5271 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5272 | goto out; |
| 5273 | } |
| 5274 | |
| 5275 | cur_arg = 2; |
| 5276 | /* consider exclamation marks, sole or at the beginning of a word */ |
| 5277 | while (*(ptr_arg = args[cur_arg])) { |
| 5278 | while (*ptr_arg == '!') { |
| 5279 | curproxy->options2 ^= PR_O2_EXP_INV; |
| 5280 | ptr_arg++; |
| 5281 | } |
| 5282 | if (*ptr_arg) |
| 5283 | break; |
| 5284 | cur_arg++; |
| 5285 | } |
| 5286 | /* now ptr_arg points to the beginning of a word past any possible |
| 5287 | * exclamation mark, and cur_arg is the argument which holds this word. |
| 5288 | */ |
| 5289 | if (strcmp(ptr_arg, "status") == 0) { |
| 5290 | if (!*(args[cur_arg + 1])) { |
| 5291 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5292 | file, linenum, args[0], args[1], ptr_arg); |
| 5293 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5294 | goto out; |
| 5295 | } |
| 5296 | curproxy->options2 |= PR_O2_EXP_STS; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5297 | free(curproxy->expect_str); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5298 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
| 5299 | } |
| 5300 | else if (strcmp(ptr_arg, "string") == 0) { |
| 5301 | if (!*(args[cur_arg + 1])) { |
| 5302 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5303 | file, linenum, args[0], args[1], ptr_arg); |
| 5304 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5305 | goto out; |
| 5306 | } |
| 5307 | curproxy->options2 |= PR_O2_EXP_STR; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5308 | free(curproxy->expect_str); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5309 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
| 5310 | } |
| 5311 | else if (strcmp(ptr_arg, "rstatus") == 0) { |
| 5312 | if (!*(args[cur_arg + 1])) { |
| 5313 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5314 | file, linenum, args[0], args[1], ptr_arg); |
| 5315 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5316 | goto out; |
| 5317 | } |
| 5318 | curproxy->options2 |= PR_O2_EXP_RSTS; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5319 | free(curproxy->expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5320 | if (curproxy->expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5321 | regex_free(curproxy->expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5322 | free(curproxy->expect_regex); |
| 5323 | curproxy->expect_regex = NULL; |
| 5324 | } |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5325 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5326 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 5327 | error = NULL; |
| 5328 | if (!regex_comp(args[cur_arg + 1], curproxy->expect_regex, 1, 1, &error)) { |
| 5329 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5330 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5331 | free(error); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5332 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5333 | goto out; |
| 5334 | } |
| 5335 | } |
| 5336 | else if (strcmp(ptr_arg, "rstring") == 0) { |
| 5337 | if (!*(args[cur_arg + 1])) { |
| 5338 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5339 | file, linenum, args[0], args[1], ptr_arg); |
| 5340 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5341 | goto out; |
| 5342 | } |
| 5343 | curproxy->options2 |= PR_O2_EXP_RSTR; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5344 | free(curproxy->expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5345 | if (curproxy->expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5346 | regex_free(curproxy->expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5347 | free(curproxy->expect_regex); |
| 5348 | curproxy->expect_regex = NULL; |
| 5349 | } |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5350 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5351 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 5352 | error = NULL; |
| 5353 | if (!regex_comp(args[cur_arg + 1], curproxy->expect_regex, 1, 1, &error)) { |
| 5354 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5355 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5356 | free(error); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5357 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5358 | goto out; |
| 5359 | } |
| 5360 | } |
| 5361 | else { |
| 5362 | Alert("parsing [%s:%d] : '%s %s' only supports [!] 'status', 'string', 'rstatus', 'rstring', found '%s'.\n", |
| 5363 | file, linenum, args[0], args[1], ptr_arg); |
| 5364 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5365 | goto out; |
| 5366 | } |
| 5367 | } |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5368 | else { |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5369 | Alert("parsing [%s:%d] : '%s' only supports 'disable-on-404', 'send-state', 'expect'.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5370 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5371 | goto out; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5372 | } |
| 5373 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5374 | else if (!strcmp(args[0], "tcp-check")) { |
| 5375 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5376 | err_code |= ERR_WARN; |
| 5377 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5378 | if (strcmp(args[1], "comment") == 0) { |
| 5379 | int cur_arg; |
| 5380 | struct tcpcheck_rule *tcpcheck; |
| 5381 | |
| 5382 | cur_arg = 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5383 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5384 | tcpcheck->action = TCPCHK_ACT_COMMENT; |
| 5385 | |
| 5386 | if (!*args[cur_arg + 1]) { |
| 5387 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5388 | file, linenum, args[cur_arg]); |
| 5389 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5390 | goto out; |
| 5391 | } |
| 5392 | |
| 5393 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5394 | |
| 5395 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5396 | if (alertif_too_many_args_idx(1, 1, file, linenum, args, &err_code)) |
| 5397 | goto out; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5398 | } |
| 5399 | else if (strcmp(args[1], "connect") == 0) { |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5400 | const char *ptr_arg; |
| 5401 | int cur_arg; |
| 5402 | struct tcpcheck_rule *tcpcheck; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5403 | |
| 5404 | /* check if first rule is also a 'connect' action */ |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 5405 | tcpcheck = LIST_NEXT(&curproxy->tcpcheck_rules, struct tcpcheck_rule *, list); |
| 5406 | while (&tcpcheck->list != &curproxy->tcpcheck_rules && |
| 5407 | tcpcheck->action == TCPCHK_ACT_COMMENT) { |
| 5408 | tcpcheck = LIST_NEXT(&tcpcheck->list, struct tcpcheck_rule *, list); |
| 5409 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5410 | |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 5411 | if (&tcpcheck->list != &curproxy->tcpcheck_rules |
| 5412 | && tcpcheck->action != TCPCHK_ACT_CONNECT) { |
| 5413 | Alert("parsing [%s:%d] : first step MUST also be a 'connect' when there is a 'connect' step in the tcp-check ruleset.\n", |
| 5414 | file, linenum); |
| 5415 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5416 | goto out; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5417 | } |
| 5418 | |
| 5419 | cur_arg = 2; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5420 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5421 | tcpcheck->action = TCPCHK_ACT_CONNECT; |
| 5422 | |
| 5423 | /* parsing each parameters to fill up the rule */ |
| 5424 | while (*(ptr_arg = args[cur_arg])) { |
| 5425 | /* tcp port */ |
| 5426 | if (strcmp(args[cur_arg], "port") == 0) { |
| 5427 | if ( (atol(args[cur_arg + 1]) > 65535) || |
| 5428 | (atol(args[cur_arg + 1]) < 1) ){ |
| 5429 | Alert("parsing [%s:%d] : '%s %s %s' expects a valid TCP port (from range 1 to 65535), got %s.\n", |
| 5430 | file, linenum, args[0], args[1], "port", args[cur_arg + 1]); |
| 5431 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5432 | goto out; |
| 5433 | } |
| 5434 | tcpcheck->port = atol(args[cur_arg + 1]); |
| 5435 | cur_arg += 2; |
| 5436 | } |
| 5437 | /* send proxy protocol */ |
| 5438 | else if (strcmp(args[cur_arg], "send-proxy") == 0) { |
| 5439 | tcpcheck->conn_opts |= TCPCHK_OPT_SEND_PROXY; |
| 5440 | cur_arg++; |
| 5441 | } |
| 5442 | #ifdef USE_OPENSSL |
| 5443 | else if (strcmp(args[cur_arg], "ssl") == 0) { |
| 5444 | curproxy->options |= PR_O_TCPCHK_SSL; |
| 5445 | tcpcheck->conn_opts |= TCPCHK_OPT_SSL; |
| 5446 | cur_arg++; |
| 5447 | } |
| 5448 | #endif /* USE_OPENSSL */ |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5449 | /* comment for this tcpcheck line */ |
| 5450 | else if (strcmp(args[cur_arg], "comment") == 0) { |
| 5451 | if (!*args[cur_arg + 1]) { |
| 5452 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5453 | file, linenum, args[cur_arg]); |
| 5454 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5455 | goto out; |
| 5456 | } |
| 5457 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5458 | cur_arg += 2; |
| 5459 | } |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5460 | else { |
| 5461 | #ifdef USE_OPENSSL |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5462 | Alert("parsing [%s:%d] : '%s %s' expects 'comment', 'port', 'send-proxy' or 'ssl' but got '%s' as argument.\n", |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5463 | #else /* USE_OPENSSL */ |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5464 | Alert("parsing [%s:%d] : '%s %s' expects 'comment', 'port', 'send-proxy' or but got '%s' as argument.\n", |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5465 | #endif /* USE_OPENSSL */ |
| 5466 | file, linenum, args[0], args[1], args[cur_arg]); |
| 5467 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5468 | goto out; |
| 5469 | } |
| 5470 | |
| 5471 | } |
| 5472 | |
| 5473 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5474 | } |
| 5475 | else if (strcmp(args[1], "send") == 0) { |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5476 | if (! *(args[2]) ) { |
| 5477 | /* SEND string expected */ |
| 5478 | Alert("parsing [%s:%d] : '%s %s %s' expects <STRING> as argument.\n", |
| 5479 | file, linenum, args[0], args[1], args[2]); |
| 5480 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5481 | goto out; |
| 5482 | } else { |
| 5483 | struct tcpcheck_rule *tcpcheck; |
| 5484 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5485 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5486 | |
| 5487 | tcpcheck->action = TCPCHK_ACT_SEND; |
| 5488 | tcpcheck->string_len = strlen(args[2]); |
| 5489 | tcpcheck->string = strdup(args[2]); |
| 5490 | tcpcheck->expect_regex = NULL; |
| 5491 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5492 | /* comment for this tcpcheck line */ |
| 5493 | if (strcmp(args[3], "comment") == 0) { |
| 5494 | if (!*args[4]) { |
| 5495 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5496 | file, linenum, args[3]); |
| 5497 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5498 | goto out; |
| 5499 | } |
| 5500 | tcpcheck->comment = strdup(args[4]); |
| 5501 | } |
| 5502 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5503 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5504 | } |
| 5505 | } |
| 5506 | else if (strcmp(args[1], "send-binary") == 0) { |
| 5507 | if (! *(args[2]) ) { |
| 5508 | /* SEND binary string expected */ |
| 5509 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument.\n", |
| 5510 | file, linenum, args[0], args[1], args[2]); |
| 5511 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5512 | goto out; |
| 5513 | } else { |
| 5514 | struct tcpcheck_rule *tcpcheck; |
| 5515 | char *err = NULL; |
| 5516 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5517 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5518 | |
| 5519 | tcpcheck->action = TCPCHK_ACT_SEND; |
| 5520 | if (parse_binary(args[2], &tcpcheck->string, &tcpcheck->string_len, &err) == 0) { |
| 5521 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument, but %s\n", |
| 5522 | file, linenum, args[0], args[1], args[2], err); |
| 5523 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5524 | goto out; |
| 5525 | } |
| 5526 | tcpcheck->expect_regex = NULL; |
| 5527 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5528 | /* comment for this tcpcheck line */ |
| 5529 | if (strcmp(args[3], "comment") == 0) { |
| 5530 | if (!*args[4]) { |
| 5531 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5532 | file, linenum, args[3]); |
| 5533 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5534 | goto out; |
| 5535 | } |
| 5536 | tcpcheck->comment = strdup(args[4]); |
| 5537 | } |
| 5538 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5539 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5540 | } |
| 5541 | } |
| 5542 | else if (strcmp(args[1], "expect") == 0) { |
| 5543 | const char *ptr_arg; |
| 5544 | int cur_arg; |
| 5545 | int inverse = 0; |
| 5546 | |
| 5547 | if (curproxy->options2 & PR_O2_EXP_TYPE) { |
| 5548 | Alert("parsing [%s:%d] : '%s %s' already specified.\n", file, linenum, args[0], args[1]); |
| 5549 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5550 | goto out; |
| 5551 | } |
| 5552 | |
| 5553 | cur_arg = 2; |
| 5554 | /* consider exclamation marks, sole or at the beginning of a word */ |
| 5555 | while (*(ptr_arg = args[cur_arg])) { |
| 5556 | while (*ptr_arg == '!') { |
| 5557 | inverse = !inverse; |
| 5558 | ptr_arg++; |
| 5559 | } |
| 5560 | if (*ptr_arg) |
| 5561 | break; |
| 5562 | cur_arg++; |
| 5563 | } |
| 5564 | /* now ptr_arg points to the beginning of a word past any possible |
| 5565 | * exclamation mark, and cur_arg is the argument which holds this word. |
| 5566 | */ |
| 5567 | if (strcmp(ptr_arg, "binary") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5568 | struct tcpcheck_rule *tcpcheck; |
| 5569 | char *err = NULL; |
| 5570 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5571 | if (!*(args[cur_arg + 1])) { |
| 5572 | Alert("parsing [%s:%d] : '%s %s %s' expects <binary string> as an argument.\n", |
| 5573 | file, linenum, args[0], args[1], ptr_arg); |
| 5574 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5575 | goto out; |
| 5576 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5577 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5578 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5579 | |
| 5580 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5581 | if (parse_binary(args[cur_arg + 1], &tcpcheck->string, &tcpcheck->string_len, &err) == 0) { |
| 5582 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument, but %s\n", |
| 5583 | file, linenum, args[0], args[1], args[2], err); |
| 5584 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5585 | goto out; |
| 5586 | } |
| 5587 | tcpcheck->expect_regex = NULL; |
| 5588 | tcpcheck->inverse = inverse; |
| 5589 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5590 | /* tcpcheck comment */ |
| 5591 | cur_arg += 2; |
| 5592 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5593 | if (!*args[cur_arg + 1]) { |
| 5594 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5595 | file, linenum, args[cur_arg + 1]); |
| 5596 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5597 | goto out; |
| 5598 | } |
| 5599 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5600 | } |
| 5601 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5602 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5603 | } |
| 5604 | else if (strcmp(ptr_arg, "string") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5605 | struct tcpcheck_rule *tcpcheck; |
| 5606 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5607 | if (!*(args[cur_arg + 1])) { |
| 5608 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5609 | file, linenum, args[0], args[1], ptr_arg); |
| 5610 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5611 | goto out; |
| 5612 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5613 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5614 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5615 | |
| 5616 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5617 | tcpcheck->string_len = strlen(args[cur_arg + 1]); |
| 5618 | tcpcheck->string = strdup(args[cur_arg + 1]); |
| 5619 | tcpcheck->expect_regex = NULL; |
| 5620 | tcpcheck->inverse = inverse; |
| 5621 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5622 | /* tcpcheck comment */ |
| 5623 | cur_arg += 2; |
| 5624 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5625 | if (!*args[cur_arg + 1]) { |
| 5626 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5627 | file, linenum, args[cur_arg + 1]); |
| 5628 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5629 | goto out; |
| 5630 | } |
| 5631 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5632 | } |
| 5633 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5634 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5635 | } |
| 5636 | else if (strcmp(ptr_arg, "rstring") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5637 | struct tcpcheck_rule *tcpcheck; |
| 5638 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5639 | if (!*(args[cur_arg + 1])) { |
| 5640 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5641 | file, linenum, args[0], args[1], ptr_arg); |
| 5642 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5643 | goto out; |
| 5644 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5645 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5646 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5647 | |
| 5648 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5649 | tcpcheck->string_len = 0; |
| 5650 | tcpcheck->string = NULL; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5651 | tcpcheck->expect_regex = calloc(1, sizeof(*tcpcheck->expect_regex)); |
| 5652 | error = NULL; |
| 5653 | if (!regex_comp(args[cur_arg + 1], tcpcheck->expect_regex, 1, 1, &error)) { |
| 5654 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5655 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5656 | free(error); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5657 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5658 | goto out; |
| 5659 | } |
| 5660 | tcpcheck->inverse = inverse; |
| 5661 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5662 | /* tcpcheck comment */ |
| 5663 | cur_arg += 2; |
| 5664 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5665 | if (!*args[cur_arg + 1]) { |
| 5666 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5667 | file, linenum, args[cur_arg + 1]); |
| 5668 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5669 | goto out; |
| 5670 | } |
| 5671 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5672 | } |
| 5673 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5674 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5675 | } |
| 5676 | else { |
| 5677 | Alert("parsing [%s:%d] : '%s %s' only supports [!] 'binary', 'string', 'rstring', found '%s'.\n", |
| 5678 | file, linenum, args[0], args[1], ptr_arg); |
| 5679 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5680 | goto out; |
| 5681 | } |
| 5682 | } |
| 5683 | else { |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5684 | Alert("parsing [%s:%d] : '%s' only supports 'comment', 'connect', 'send' or 'expect'.\n", file, linenum, args[0]); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5685 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5686 | goto out; |
| 5687 | } |
| 5688 | } |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5689 | else if (!strcmp(args[0], "monitor")) { |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 5690 | if (curproxy == &defproxy) { |
| 5691 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5692 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5693 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 5694 | } |
| 5695 | |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5696 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5697 | err_code |= ERR_WARN; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5698 | |
| 5699 | if (strcmp(args[1], "fail") == 0) { |
| 5700 | /* add a condition to fail monitor requests */ |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 5701 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5702 | Alert("parsing [%s:%d] : '%s %s' requires either 'if' or 'unless' followed by a condition.\n", |
| 5703 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5704 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5705 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5706 | } |
| 5707 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 5708 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 5709 | Alert("parsing [%s:%d] : error detected while parsing a '%s %s' condition : %s.\n", |
| 5710 | file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5711 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5712 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5713 | } |
| 5714 | LIST_ADDQ(&curproxy->mon_fail_cond, &cond->list); |
| 5715 | } |
| 5716 | else { |
| 5717 | Alert("parsing [%s:%d] : '%s' only supports 'fail'.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5718 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5719 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5720 | } |
| 5721 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5722 | #ifdef TPROXY |
| 5723 | else if (!strcmp(args[0], "transparent")) { |
| 5724 | /* enable transparent proxy connections */ |
| 5725 | curproxy->options |= PR_O_TRANSP; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5726 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 5727 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5728 | } |
| 5729 | #endif |
| 5730 | else if (!strcmp(args[0], "maxconn")) { /* maxconn */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5731 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], " Maybe you want 'fullconn' instead ?")) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5732 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5733 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5734 | if (*(args[1]) == 0) { |
| 5735 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5736 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5737 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5738 | } |
| 5739 | curproxy->maxconn = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5740 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5741 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5742 | } |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5743 | else if (!strcmp(args[0], "backlog")) { /* backlog */ |
| 5744 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5745 | err_code |= ERR_WARN; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5746 | |
| 5747 | if (*(args[1]) == 0) { |
| 5748 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5749 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5750 | goto out; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5751 | } |
| 5752 | curproxy->backlog = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5753 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5754 | goto out; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5755 | } |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5756 | else if (!strcmp(args[0], "fullconn")) { /* fullconn */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5757 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], " Maybe you want 'maxconn' instead ?")) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5758 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5759 | |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5760 | if (*(args[1]) == 0) { |
| 5761 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5762 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5763 | goto out; |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5764 | } |
| 5765 | curproxy->fullconn = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5766 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5767 | goto out; |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5768 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5769 | else if (!strcmp(args[0], "grace")) { /* grace time (ms) */ |
| 5770 | if (*(args[1]) == 0) { |
| 5771 | Alert("parsing [%s:%d] : '%s' expects a time in milliseconds.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5772 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5773 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5774 | } |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 5775 | err = parse_time_err(args[1], &val, TIME_UNIT_MS); |
| 5776 | if (err) { |
| 5777 | Alert("parsing [%s:%d] : unexpected character '%c' in grace time.\n", |
| 5778 | file, linenum, *err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5779 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5780 | goto out; |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 5781 | } |
| 5782 | curproxy->grace = val; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5783 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5784 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5785 | } |
| 5786 | else if (!strcmp(args[0], "dispatch")) { /* dispatch address */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 5787 | struct sockaddr_storage *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5788 | int port1, port2; |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5789 | struct protocol *proto; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5790 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5791 | if (curproxy == &defproxy) { |
| 5792 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5793 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5794 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5795 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5796 | else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5797 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5798 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 5799 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5800 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5801 | Alert("parsing [%s:%d] : '%s' : %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5802 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5803 | goto out; |
| 5804 | } |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5805 | |
| 5806 | proto = protocol_by_family(sk->ss_family); |
| 5807 | if (!proto || !proto->connect) { |
| 5808 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 5809 | file, linenum, args[0], args[1]); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5810 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5811 | goto out; |
| 5812 | } |
| 5813 | |
| 5814 | if (port1 != port2) { |
| 5815 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'.\n", |
| 5816 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5817 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5818 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5819 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5820 | |
| 5821 | if (!port1) { |
| 5822 | Alert("parsing [%s:%d] : '%s' : missing port number in '%s', <addr:port> expected.\n", |
| 5823 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5824 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5825 | goto out; |
| 5826 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5827 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5828 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5829 | goto out; |
| 5830 | |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5831 | curproxy->dispatch_addr = *sk; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 5832 | curproxy->options |= PR_O_DISPATCH; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5833 | } |
| 5834 | else if (!strcmp(args[0], "balance")) { /* set balancing with optional algorithm */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5835 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5836 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5837 | |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 5838 | if (backend_parse_balance((const char **)args + 1, &errmsg, curproxy) < 0) { |
| 5839 | Alert("parsing [%s:%d] : %s %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5840 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5841 | goto out; |
Willy Tarreau | 2fcb500 | 2007-05-08 13:35:26 +0200 | [diff] [blame] | 5842 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5843 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5844 | else if (!strcmp(args[0], "hash-type")) { /* set hashing method */ |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5845 | /** |
| 5846 | * The syntax for hash-type config element is |
| 5847 | * hash-type {map-based|consistent} [[<algo>] avalanche] |
| 5848 | * |
| 5849 | * The default hash function is sdbm for map-based and sdbm+avalanche for consistent. |
| 5850 | */ |
| 5851 | curproxy->lbprm.algo &= ~(BE_LB_HASH_TYPE | BE_LB_HASH_FUNC | BE_LB_HASH_MOD); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5852 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5853 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5854 | err_code |= ERR_WARN; |
| 5855 | |
| 5856 | if (strcmp(args[1], "consistent") == 0) { /* use consistent hashing */ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5857 | curproxy->lbprm.algo |= BE_LB_HASH_CONS; |
| 5858 | } |
| 5859 | else if (strcmp(args[1], "map-based") == 0) { /* use map-based hashing */ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5860 | curproxy->lbprm.algo |= BE_LB_HASH_MAP; |
| 5861 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5862 | else if (strcmp(args[1], "avalanche") == 0) { |
| 5863 | Alert("parsing [%s:%d] : experimental feature '%s %s' is not supported anymore, please use '%s map-based sdbm avalanche' instead.\n", file, linenum, args[0], args[1], args[0]); |
| 5864 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5865 | goto out; |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 5866 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5867 | else { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5868 | Alert("parsing [%s:%d] : '%s' only supports 'consistent' and 'map-based'.\n", file, linenum, args[0]); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5869 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5870 | goto out; |
| 5871 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5872 | |
| 5873 | /* set the hash function to use */ |
| 5874 | if (!*args[2]) { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5875 | /* the default algo is sdbm */ |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5876 | curproxy->lbprm.algo |= BE_LB_HFCN_SDBM; |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5877 | |
| 5878 | /* if consistent with no argument, then avalanche modifier is also applied */ |
| 5879 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) |
| 5880 | curproxy->lbprm.algo |= BE_LB_HMOD_AVAL; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5881 | } else { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5882 | /* set the hash function */ |
| 5883 | if (!strcmp(args[2], "sdbm")) { |
| 5884 | curproxy->lbprm.algo |= BE_LB_HFCN_SDBM; |
| 5885 | } |
| 5886 | else if (!strcmp(args[2], "djb2")) { |
| 5887 | curproxy->lbprm.algo |= BE_LB_HFCN_DJB2; |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5888 | } |
| 5889 | else if (!strcmp(args[2], "wt6")) { |
Willy Tarreau | a0f4271 | 2013-11-14 14:30:35 +0100 | [diff] [blame] | 5890 | curproxy->lbprm.algo |= BE_LB_HFCN_WT6; |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5891 | } |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5892 | else if (!strcmp(args[2], "crc32")) { |
| 5893 | curproxy->lbprm.algo |= BE_LB_HFCN_CRC32; |
| 5894 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5895 | else { |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5896 | Alert("parsing [%s:%d] : '%s' only supports 'sdbm', 'djb2', 'crc32', or 'wt6' hash functions.\n", file, linenum, args[0]); |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5897 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5898 | goto out; |
| 5899 | } |
| 5900 | |
| 5901 | /* set the hash modifier */ |
| 5902 | if (!strcmp(args[3], "avalanche")) { |
| 5903 | curproxy->lbprm.algo |= BE_LB_HMOD_AVAL; |
| 5904 | } |
| 5905 | else if (*args[3]) { |
| 5906 | Alert("parsing [%s:%d] : '%s' only supports 'avalanche' as a modifier for hash functions.\n", file, linenum, args[0]); |
| 5907 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5908 | goto out; |
| 5909 | } |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 5910 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5911 | } |
Andrew Rodland | b1f48e3 | 2016-10-25 12:49:05 -0400 | [diff] [blame] | 5912 | else if (strcmp(args[0], "hash-balance-factor") == 0) { |
| 5913 | if (*(args[1]) == 0) { |
| 5914 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 5915 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5916 | goto out; |
| 5917 | } |
| 5918 | curproxy->lbprm.chash.balance_factor = atol(args[1]); |
| 5919 | if (curproxy->lbprm.chash.balance_factor != 0 && curproxy->lbprm.chash.balance_factor <= 100) { |
| 5920 | Alert("parsing [%s:%d] : '%s' must be 0 or greater than 100.\n", file, linenum, args[0]); |
| 5921 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5922 | goto out; |
| 5923 | } |
| 5924 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5925 | else if (strcmp(args[0], "unique-id-format") == 0) { |
| 5926 | if (!*(args[1])) { |
| 5927 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5928 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5929 | goto out; |
| 5930 | } |
William Lallemand | 3203ff4 | 2012-11-11 17:30:56 +0100 | [diff] [blame] | 5931 | if (*(args[2])) { |
| 5932 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5933 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5934 | goto out; |
| 5935 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5936 | free(curproxy->conf.uniqueid_format_string); |
| 5937 | curproxy->conf.uniqueid_format_string = strdup(args[1]); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 5938 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5939 | free(curproxy->conf.uif_file); |
| 5940 | curproxy->conf.uif_file = strdup(curproxy->conf.args.file); |
| 5941 | curproxy->conf.uif_line = curproxy->conf.args.line; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5942 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5943 | |
| 5944 | else if (strcmp(args[0], "unique-id-header") == 0) { |
| 5945 | if (!*(args[1])) { |
| 5946 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5947 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5948 | goto out; |
| 5949 | } |
| 5950 | free(curproxy->header_unique_id); |
| 5951 | curproxy->header_unique_id = strdup(args[1]); |
| 5952 | } |
| 5953 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5954 | else if (strcmp(args[0], "log-format") == 0) { |
| 5955 | if (!*(args[1])) { |
| 5956 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5957 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5958 | goto out; |
| 5959 | } |
William Lallemand | 3203ff4 | 2012-11-11 17:30:56 +0100 | [diff] [blame] | 5960 | if (*(args[2])) { |
| 5961 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5962 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5963 | goto out; |
| 5964 | } |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 5965 | if (curproxy->conf.logformat_string && curproxy == &defproxy) { |
| 5966 | char *oldlogformat = "log-format"; |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 5967 | |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 5968 | if (curproxy->conf.logformat_string == default_http_log_format) |
| 5969 | oldlogformat = "option httplog"; |
| 5970 | else if (curproxy->conf.logformat_string == default_tcp_log_format) |
| 5971 | oldlogformat = "option tcplog"; |
| 5972 | else if (curproxy->conf.logformat_string == clf_http_log_format) |
| 5973 | oldlogformat = "option httplog clf"; |
| 5974 | Warning("parsing [%s:%d]: 'log-format' overrides previous '%s' in 'defaults' section.\n", |
| 5975 | file, linenum, oldlogformat); |
| 5976 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5977 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 5978 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 5979 | curproxy->conf.logformat_string != clf_http_log_format) |
| 5980 | free(curproxy->conf.logformat_string); |
| 5981 | curproxy->conf.logformat_string = strdup(args[1]); |
| 5982 | |
| 5983 | free(curproxy->conf.lfs_file); |
| 5984 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 5985 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 5986 | |
| 5987 | /* get a chance to improve log-format error reporting by |
| 5988 | * reporting the correct line-number when possible. |
| 5989 | */ |
| 5990 | if (curproxy != &defproxy && !(curproxy->cap & PR_CAP_FE)) { |
| 5991 | Warning("parsing [%s:%d] : backend '%s' : 'log-format' directive is ignored in backends.\n", |
| 5992 | file, linenum, curproxy->id); |
| 5993 | err_code |= ERR_WARN; |
| 5994 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5995 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 5996 | else if (!strcmp(args[0], "log-format-sd")) { |
| 5997 | if (!*(args[1])) { |
| 5998 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5999 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6000 | goto out; |
| 6001 | } |
| 6002 | if (*(args[2])) { |
| 6003 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 6004 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6005 | goto out; |
| 6006 | } |
| 6007 | |
| 6008 | if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 6009 | free(curproxy->conf.logformat_sd_string); |
| 6010 | curproxy->conf.logformat_sd_string = strdup(args[1]); |
| 6011 | |
| 6012 | free(curproxy->conf.lfsd_file); |
| 6013 | curproxy->conf.lfsd_file = strdup(curproxy->conf.args.file); |
| 6014 | curproxy->conf.lfsd_line = curproxy->conf.args.line; |
| 6015 | |
| 6016 | /* get a chance to improve log-format-sd error reporting by |
| 6017 | * reporting the correct line-number when possible. |
| 6018 | */ |
| 6019 | if (curproxy != &defproxy && !(curproxy->cap & PR_CAP_FE)) { |
| 6020 | Warning("parsing [%s:%d] : backend '%s' : 'log-format-sd' directive is ignored in backends.\n", |
| 6021 | file, linenum, curproxy->id); |
| 6022 | err_code |= ERR_WARN; |
| 6023 | } |
| 6024 | } |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 6025 | else if (!strcmp(args[0], "log-tag")) { /* tag to report to syslog */ |
| 6026 | if (*(args[1]) == 0) { |
| 6027 | Alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]); |
| 6028 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6029 | goto out; |
| 6030 | } |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 6031 | chunk_destroy(&curproxy->log_tag); |
| 6032 | chunk_initstr(&curproxy->log_tag, strdup(args[1])); |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 6033 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6034 | else if (!strcmp(args[0], "log") && kwm == KWM_NO) { |
| 6035 | /* delete previous herited or defined syslog servers */ |
| 6036 | struct logsrv *back; |
| 6037 | |
| 6038 | if (*(args[1]) != 0) { |
| 6039 | Alert("parsing [%s:%d]:%s : 'no log' does not expect arguments.\n", file, linenum, args[1]); |
| 6040 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6041 | goto out; |
| 6042 | } |
| 6043 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 6044 | list_for_each_entry_safe(tmplogsrv, back, &curproxy->logsrvs, list) { |
| 6045 | LIST_DEL(&tmplogsrv->list); |
| 6046 | free(tmplogsrv); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6047 | } |
| 6048 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6049 | else if (!strcmp(args[0], "log")) { /* syslog server address */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6050 | struct logsrv *logsrv; |
| 6051 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6052 | if (*(args[1]) && *(args[2]) == 0 && !strcmp(args[1], "global")) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6053 | /* copy global.logrsvs linked list to the end of curproxy->logsrvs */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 6054 | list_for_each_entry(tmplogsrv, &global.logsrvs, list) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6055 | struct logsrv *node = malloc(sizeof(*node)); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 6056 | memcpy(node, tmplogsrv, sizeof(struct logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6057 | LIST_INIT(&node->list); |
| 6058 | LIST_ADDQ(&curproxy->logsrvs, &node->list); |
| 6059 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6060 | } |
| 6061 | else if (*(args[1]) && *(args[2])) { |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6062 | struct sockaddr_storage *sk; |
| 6063 | int port1, port2; |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6064 | int arg = 0; |
| 6065 | int len = 0; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6066 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6067 | logsrv = calloc(1, sizeof(*logsrv)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6068 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6069 | /* just after the address, a length may be specified */ |
| 6070 | if (strcmp(args[arg+2], "len") == 0) { |
| 6071 | len = atoi(args[arg+3]); |
| 6072 | if (len < 80 || len > 65535) { |
| 6073 | Alert("parsing [%s:%d] : invalid log length '%s', must be between 80 and 65535.\n", |
| 6074 | file, linenum, args[arg+3]); |
| 6075 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6076 | goto out; |
| 6077 | } |
| 6078 | logsrv->maxlen = len; |
| 6079 | |
| 6080 | /* skip these two args */ |
| 6081 | arg += 2; |
| 6082 | } |
| 6083 | else |
| 6084 | logsrv->maxlen = MAX_SYSLOG_LEN; |
| 6085 | |
| 6086 | if (logsrv->maxlen > global.max_syslog_len) { |
| 6087 | global.max_syslog_len = logsrv->maxlen; |
Hubert Verstraete | 831962e | 2016-06-28 22:44:26 +0200 | [diff] [blame] | 6088 | logheader = my_realloc2(logheader, global.max_syslog_len + 1); |
| 6089 | logheader_rfc5424 = my_realloc2(logheader_rfc5424, global.max_syslog_len + 1); |
| 6090 | logline = my_realloc2(logline, global.max_syslog_len + 1); |
| 6091 | logline_rfc5424 = my_realloc2(logline_rfc5424, global.max_syslog_len + 1); |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6092 | } |
| 6093 | |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 6094 | /* after the length, a format may be specified */ |
| 6095 | if (strcmp(args[arg+2], "format") == 0) { |
| 6096 | logsrv->format = get_log_format(args[arg+3]); |
| 6097 | if (logsrv->format < 0) { |
| 6098 | Alert("parsing [%s:%d] : unknown log format '%s'\n", file, linenum, args[arg+3]); |
| 6099 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6100 | goto out; |
| 6101 | } |
| 6102 | |
| 6103 | /* skip these two args */ |
| 6104 | arg += 2; |
| 6105 | } |
| 6106 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 6107 | if (alertif_too_many_args_idx(3, arg + 1, file, linenum, args, &err_code)) |
| 6108 | goto out; |
| 6109 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6110 | logsrv->facility = get_log_facility(args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6111 | if (logsrv->facility < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6112 | Alert("parsing [%s:%d] : unknown log facility '%s'\n", file, linenum, args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6113 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6114 | goto out; |
| 6115 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6116 | } |
| 6117 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6118 | logsrv->level = 7; /* max syslog level = debug */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6119 | if (*(args[arg+3])) { |
| 6120 | logsrv->level = get_log_level(args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6121 | if (logsrv->level < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6122 | Alert("parsing [%s:%d] : unknown optional log level '%s'\n", file, linenum, args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6123 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6124 | goto out; |
| 6125 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6126 | } |
| 6127 | } |
| 6128 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6129 | logsrv->minlvl = 0; /* limit syslog level to this level (emerg) */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6130 | if (*(args[arg+4])) { |
| 6131 | logsrv->minlvl = get_log_level(args[arg+4]); |
Willy Tarreau | f7f057b | 2013-01-24 00:31:24 +0100 | [diff] [blame] | 6132 | if (logsrv->minlvl < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6133 | Alert("parsing [%s:%d] : unknown optional minimum log level '%s'\n", file, linenum, args[arg+4]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6134 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6135 | goto out; |
| 6136 | |
Willy Tarreau | f7edefa | 2009-05-10 17:20:05 +0200 | [diff] [blame] | 6137 | } |
| 6138 | } |
| 6139 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 6140 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6141 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6142 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6143 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6144 | goto out; |
| 6145 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6146 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6147 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6148 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6149 | if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6150 | if (port1 != port2) { |
| 6151 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 6152 | file, linenum, args[0], args[1]); |
| 6153 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6154 | goto out; |
| 6155 | } |
| 6156 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6157 | if (!port1) |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6158 | set_host_port(&logsrv->addr, SYSLOG_PORT); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6159 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6160 | |
| 6161 | LIST_ADDQ(&curproxy->logsrvs, &logsrv->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6162 | } |
| 6163 | else { |
| 6164 | Alert("parsing [%s:%d] : 'log' expects either <address[:port]> and <facility> or 'global' as arguments.\n", |
| 6165 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6166 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6167 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6168 | } |
| 6169 | } |
| 6170 | else if (!strcmp(args[0], "source")) { /* address to which we bind when connecting */ |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6171 | int cur_arg; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6172 | int port1, port2; |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 6173 | struct sockaddr_storage *sk; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6174 | struct protocol *proto; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6175 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6176 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6177 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6178 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6179 | if (!*args[1]) { |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6180 | Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], and optionally '%s' <addr>, and '%s' <name>.\n", |
| 6181 | file, linenum, "source", "usesrc", "interface"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6182 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6183 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6184 | } |
Willy Tarreau | 368480c | 2009-03-01 08:27:21 +0100 | [diff] [blame] | 6185 | |
| 6186 | /* we must first clear any optional default setting */ |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6187 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6188 | free(curproxy->conn_src.iface_name); |
| 6189 | curproxy->conn_src.iface_name = NULL; |
| 6190 | curproxy->conn_src.iface_len = 0; |
Willy Tarreau | 368480c | 2009-03-01 08:27:21 +0100 | [diff] [blame] | 6191 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 6192 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6193 | if (!sk) { |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6194 | Alert("parsing [%s:%d] : '%s %s' : %s\n", |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6195 | file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6196 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6197 | goto out; |
| 6198 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6199 | |
| 6200 | proto = protocol_by_family(sk->ss_family); |
| 6201 | if (!proto || !proto->connect) { |
| 6202 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6203 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6204 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6205 | goto out; |
| 6206 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6207 | |
| 6208 | if (port1 != port2) { |
| 6209 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 6210 | file, linenum, args[0], args[1]); |
| 6211 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6212 | goto out; |
| 6213 | } |
| 6214 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6215 | curproxy->conn_src.source_addr = *sk; |
| 6216 | curproxy->conn_src.opts |= CO_SRC_BIND; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6217 | |
| 6218 | cur_arg = 2; |
| 6219 | while (*(args[cur_arg])) { |
| 6220 | if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */ |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 6221 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6222 | if (!*args[cur_arg + 1]) { |
| 6223 | Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', or 'clientip' as argument.\n", |
| 6224 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6225 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6226 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6227 | } |
| 6228 | |
| 6229 | if (!strcmp(args[cur_arg + 1], "client")) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6230 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6231 | curproxy->conn_src.opts |= CO_SRC_TPROXY_CLI; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6232 | } else if (!strcmp(args[cur_arg + 1], "clientip")) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6233 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6234 | curproxy->conn_src.opts |= CO_SRC_TPROXY_CIP; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6235 | } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) { |
| 6236 | char *name, *end; |
| 6237 | |
| 6238 | name = args[cur_arg+1] + 7; |
| 6239 | while (isspace(*name)) |
| 6240 | name++; |
| 6241 | |
| 6242 | end = name; |
| 6243 | while (*end && !isspace(*end) && *end != ',' && *end != ')') |
| 6244 | end++; |
| 6245 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6246 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6247 | curproxy->conn_src.opts |= CO_SRC_TPROXY_DYN; |
| 6248 | curproxy->conn_src.bind_hdr_name = calloc(1, end - name + 1); |
| 6249 | curproxy->conn_src.bind_hdr_len = end - name; |
| 6250 | memcpy(curproxy->conn_src.bind_hdr_name, name, end - name); |
| 6251 | curproxy->conn_src.bind_hdr_name[end-name] = '\0'; |
| 6252 | curproxy->conn_src.bind_hdr_occ = -1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6253 | |
| 6254 | /* now look for an occurrence number */ |
| 6255 | while (isspace(*end)) |
| 6256 | end++; |
| 6257 | if (*end == ',') { |
| 6258 | end++; |
| 6259 | name = end; |
| 6260 | if (*end == '-') |
| 6261 | end++; |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 6262 | while (isdigit((int)*end)) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6263 | end++; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6264 | curproxy->conn_src.bind_hdr_occ = strl2ic(name, end-name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6265 | } |
| 6266 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6267 | if (curproxy->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) { |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6268 | Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative" |
| 6269 | " occurrences values smaller than %d.\n", |
| 6270 | file, linenum, MAX_HDR_HISTORY); |
| 6271 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6272 | goto out; |
| 6273 | } |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6274 | } else { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6275 | struct sockaddr_storage *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6276 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 6277 | sk = str2sa_range(args[cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6278 | if (!sk) { |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6279 | Alert("parsing [%s:%d] : '%s %s' : %s\n", |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6280 | file, linenum, args[cur_arg], args[cur_arg+1], errmsg); |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6281 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6282 | goto out; |
| 6283 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6284 | |
| 6285 | proto = protocol_by_family(sk->ss_family); |
| 6286 | if (!proto || !proto->connect) { |
| 6287 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 6288 | file, linenum, args[cur_arg], args[cur_arg+1]); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6289 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6290 | goto out; |
| 6291 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6292 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6293 | if (port1 != port2) { |
| 6294 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 6295 | file, linenum, args[cur_arg], args[cur_arg + 1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6296 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6297 | goto out; |
| 6298 | } |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6299 | curproxy->conn_src.tproxy_addr = *sk; |
| 6300 | curproxy->conn_src.opts |= CO_SRC_TPROXY_ADDR; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6301 | } |
| 6302 | global.last_checks |= LSTCHK_NETADM; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6303 | #else /* no TPROXY support */ |
| 6304 | Alert("parsing [%s:%d] : '%s' not allowed here because support for TPROXY was not compiled in.\n", |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 6305 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6306 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6307 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6308 | #endif |
| 6309 | cur_arg += 2; |
| 6310 | continue; |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 6311 | } |
| 6312 | |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6313 | if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */ |
| 6314 | #ifdef SO_BINDTODEVICE |
| 6315 | if (!*args[cur_arg + 1]) { |
| 6316 | Alert("parsing [%s:%d] : '%s' : missing interface name.\n", |
| 6317 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6318 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6319 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6320 | } |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6321 | free(curproxy->conn_src.iface_name); |
| 6322 | curproxy->conn_src.iface_name = strdup(args[cur_arg + 1]); |
| 6323 | curproxy->conn_src.iface_len = strlen(curproxy->conn_src.iface_name); |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6324 | global.last_checks |= LSTCHK_NETADM; |
| 6325 | #else |
| 6326 | Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n", |
| 6327 | file, linenum, args[0], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6328 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6329 | goto out; |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 6330 | #endif |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6331 | cur_arg += 2; |
| 6332 | continue; |
| 6333 | } |
| 6334 | Alert("parsing [%s:%d] : '%s' only supports optional keywords '%s' and '%s'.\n", |
Willy Tarreau | 3631d41 | 2012-09-25 16:31:00 +0200 | [diff] [blame] | 6335 | file, linenum, args[0], "interface", "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6336 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6337 | goto out; |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6338 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6339 | } |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6340 | else if (!strcmp(args[0], "usesrc")) { /* address to use outside: needs "source" first */ |
| 6341 | Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n", |
| 6342 | file, linenum, "usesrc", "source"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6343 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6344 | goto out; |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6345 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6346 | else if (!strcmp(args[0], "cliexp") || !strcmp(args[0], "reqrep")) { /* replace request header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6347 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6348 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6349 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6350 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6351 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6352 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6353 | |
| 6354 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6355 | SMP_OPT_DIR_REQ, ACT_REPLACE, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6356 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6357 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6358 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6359 | } |
| 6360 | else if (!strcmp(args[0], "reqdel")) { /* delete request header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6361 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6362 | SMP_OPT_DIR_REQ, ACT_REMOVE, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6363 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6364 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6365 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6366 | } |
| 6367 | else if (!strcmp(args[0], "reqdeny")) { /* deny a request if a header matches this regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6368 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6369 | SMP_OPT_DIR_REQ, ACT_DENY, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6370 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6371 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6372 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6373 | } |
| 6374 | else if (!strcmp(args[0], "reqpass")) { /* pass this header without allowing or denying the request */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6375 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6376 | SMP_OPT_DIR_REQ, ACT_PASS, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6377 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6378 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6379 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6380 | } |
| 6381 | else if (!strcmp(args[0], "reqallow")) { /* allow a request if a header matches this regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6382 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6383 | SMP_OPT_DIR_REQ, ACT_ALLOW, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6384 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6385 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6386 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6387 | } |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6388 | else if (!strcmp(args[0], "reqtarpit")) { /* tarpit a request if a header matches this regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6389 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6390 | SMP_OPT_DIR_REQ, ACT_TARPIT, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6391 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6392 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6393 | goto out; |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6394 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6395 | else if (!strcmp(args[0], "reqirep")) { /* replace request header from a regex, ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6396 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6397 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6398 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6399 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6400 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6401 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6402 | |
| 6403 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6404 | SMP_OPT_DIR_REQ, ACT_REPLACE, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6405 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6406 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6407 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6408 | } |
| 6409 | else if (!strcmp(args[0], "reqidel")) { /* delete request header from a regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6410 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6411 | SMP_OPT_DIR_REQ, ACT_REMOVE, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6412 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6413 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6414 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6415 | } |
| 6416 | else if (!strcmp(args[0], "reqideny")) { /* deny a request if a header matches this regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6417 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6418 | SMP_OPT_DIR_REQ, ACT_DENY, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6419 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6420 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6421 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6422 | } |
| 6423 | else if (!strcmp(args[0], "reqipass")) { /* pass this header without allowing or denying the request */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6424 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6425 | SMP_OPT_DIR_REQ, ACT_PASS, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6426 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6427 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6428 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6429 | } |
| 6430 | else if (!strcmp(args[0], "reqiallow")) { /* allow a request if a header matches this regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6431 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6432 | SMP_OPT_DIR_REQ, ACT_ALLOW, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6433 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6434 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6435 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6436 | } |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6437 | else if (!strcmp(args[0], "reqitarpit")) { /* tarpit a request if a header matches this regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6438 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6439 | SMP_OPT_DIR_REQ, ACT_TARPIT, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6440 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6441 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6442 | goto out; |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6443 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6444 | else if (!strcmp(args[0], "reqadd")) { /* add request header */ |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 6445 | struct cond_wordlist *wl; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6446 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6447 | if (curproxy == &defproxy) { |
| 6448 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6449 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6450 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6451 | } |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 6452 | else if (warnifnotcap(curproxy, PR_CAP_FE | PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6453 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6454 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6455 | if (*(args[1]) == 0) { |
| 6456 | Alert("parsing [%s:%d] : '%s' expects <header> as an argument.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6457 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6458 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6459 | } |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6460 | |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6461 | if ((strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 6462 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args+2, &errmsg)) == NULL) { |
| 6463 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 6464 | file, linenum, args[0], errmsg); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6465 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6466 | goto out; |
| 6467 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 6468 | err_code |= warnif_cond_conflicts(cond, |
| 6469 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 6470 | file, linenum); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6471 | } |
| 6472 | else if (*args[2]) { |
| 6473 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 6474 | file, linenum, args[0], args[2]); |
| 6475 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6476 | goto out; |
| 6477 | } |
| 6478 | |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6479 | wl = calloc(1, sizeof(*wl)); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6480 | wl->cond = cond; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6481 | wl->s = strdup(args[1]); |
| 6482 | LIST_ADDQ(&curproxy->req_add, &wl->list); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 6483 | warnif_misplaced_reqadd(curproxy, file, linenum, args[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6484 | } |
| 6485 | else if (!strcmp(args[0], "srvexp") || !strcmp(args[0], "rsprep")) { /* replace response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6486 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6487 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6488 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6489 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6490 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6491 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6492 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6493 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6494 | SMP_OPT_DIR_RES, ACT_REPLACE, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6495 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6496 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6497 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6498 | } |
| 6499 | else if (!strcmp(args[0], "rspdel")) { /* delete response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6500 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6501 | SMP_OPT_DIR_RES, ACT_REMOVE, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6502 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6503 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6504 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6505 | } |
| 6506 | else if (!strcmp(args[0], "rspdeny")) { /* block response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6507 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6508 | SMP_OPT_DIR_RES, ACT_DENY, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6509 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6510 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6511 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6512 | } |
| 6513 | else if (!strcmp(args[0], "rspirep")) { /* replace response header from a regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6514 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6515 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6516 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6517 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6518 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6519 | } |
| 6520 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6521 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6522 | SMP_OPT_DIR_RES, ACT_REPLACE, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6523 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6524 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6525 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6526 | } |
| 6527 | else if (!strcmp(args[0], "rspidel")) { /* delete response header from a regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6528 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6529 | SMP_OPT_DIR_RES, ACT_REMOVE, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6530 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6531 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6532 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6533 | } |
| 6534 | else if (!strcmp(args[0], "rspideny")) { /* block response header from a regex ignoring case */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6535 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6536 | SMP_OPT_DIR_RES, ACT_DENY, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6537 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6538 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6539 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6540 | } |
| 6541 | else if (!strcmp(args[0], "rspadd")) { /* add response header */ |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 6542 | struct cond_wordlist *wl; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6543 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6544 | if (curproxy == &defproxy) { |
| 6545 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6546 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6547 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6548 | } |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 6549 | else if (warnifnotcap(curproxy, PR_CAP_FE | PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6550 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6551 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6552 | if (*(args[1]) == 0) { |
| 6553 | Alert("parsing [%s:%d] : '%s' expects <header> as an argument.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6554 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6555 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6556 | } |
| 6557 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6558 | if ((strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 6559 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args+2, &errmsg)) == NULL) { |
| 6560 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 6561 | file, linenum, args[0], errmsg); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6562 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6563 | goto out; |
| 6564 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 6565 | err_code |= warnif_cond_conflicts(cond, |
| 6566 | (curproxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 6567 | file, linenum); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6568 | } |
| 6569 | else if (*args[2]) { |
| 6570 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 6571 | file, linenum, args[0], args[2]); |
| 6572 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6573 | goto out; |
| 6574 | } |
| 6575 | |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6576 | wl = calloc(1, sizeof(*wl)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6577 | wl->cond = cond; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6578 | wl->s = strdup(args[1]); |
| 6579 | LIST_ADDQ(&curproxy->rsp_add, &wl->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6580 | } |
| 6581 | else if (!strcmp(args[0], "errorloc") || |
| 6582 | !strcmp(args[0], "errorloc302") || |
| 6583 | !strcmp(args[0], "errorloc303")) { /* error location */ |
| 6584 | int errnum, errlen; |
| 6585 | char *err; |
| 6586 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6587 | if (warnifnotcap(curproxy, PR_CAP_FE | PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6588 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6589 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6590 | if (*(args[2]) == 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 6591 | Alert("parsing [%s:%d] : <%s> expects <status_code> and <url> as arguments.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6592 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6593 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6594 | } |
| 6595 | |
| 6596 | errnum = atol(args[1]); |
| 6597 | if (!strcmp(args[0], "errorloc303")) { |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 6598 | errlen = strlen(HTTP_303) + strlen(args[2]) + 5; |
| 6599 | err = malloc(errlen); |
| 6600 | errlen = snprintf(err, errlen, "%s%s\r\n\r\n", HTTP_303, args[2]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6601 | } else { |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 6602 | errlen = strlen(HTTP_302) + strlen(args[2]) + 5; |
| 6603 | err = malloc(errlen); |
| 6604 | errlen = snprintf(err, errlen, "%s%s\r\n\r\n", HTTP_302, args[2]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6605 | } |
| 6606 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6607 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) { |
| 6608 | if (http_err_codes[rc] == errnum) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 6609 | chunk_destroy(&curproxy->errmsg[rc]); |
| 6610 | chunk_initlen(&curproxy->errmsg[rc], err, errlen, errlen); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6611 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6612 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6613 | } |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6614 | |
| 6615 | if (rc >= HTTP_ERR_SIZE) { |
Willy Tarreau | bb3c09a | 2015-09-27 15:13:30 +0200 | [diff] [blame] | 6616 | Warning("parsing [%s:%d] : status code %d not handled by '%s', error relocation will be ignored.\n", |
| 6617 | file, linenum, errnum, args[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6618 | free(err); |
| 6619 | } |
| 6620 | } |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6621 | else if (!strcmp(args[0], "errorfile")) { /* error message from a file */ |
| 6622 | int errnum, errlen, fd; |
| 6623 | char *err; |
| 6624 | struct stat stat; |
| 6625 | |
| 6626 | if (warnifnotcap(curproxy, PR_CAP_FE | PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6627 | err_code |= ERR_WARN; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6628 | |
| 6629 | if (*(args[2]) == 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 6630 | Alert("parsing [%s:%d] : <%s> expects <status_code> and <file> as arguments.\n", file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6631 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6632 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6633 | } |
| 6634 | |
| 6635 | fd = open(args[2], O_RDONLY); |
| 6636 | if ((fd < 0) || (fstat(fd, &stat) < 0)) { |
| 6637 | Alert("parsing [%s:%d] : error opening file <%s> for custom error message <%s>.\n", |
| 6638 | file, linenum, args[2], args[1]); |
| 6639 | if (fd >= 0) |
| 6640 | close(fd); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6641 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6642 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6643 | } |
| 6644 | |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6645 | if (stat.st_size <= global.tune.bufsize) { |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6646 | errlen = stat.st_size; |
| 6647 | } else { |
| 6648 | Warning("parsing [%s:%d] : custom error message file <%s> larger than %d bytes. Truncating.\n", |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6649 | file, linenum, args[2], global.tune.bufsize); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6650 | err_code |= ERR_WARN; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6651 | errlen = global.tune.bufsize; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6652 | } |
| 6653 | |
| 6654 | err = malloc(errlen); /* malloc() must succeed during parsing */ |
| 6655 | errnum = read(fd, err, errlen); |
| 6656 | if (errnum != errlen) { |
| 6657 | Alert("parsing [%s:%d] : error reading file <%s> for custom error message <%s>.\n", |
| 6658 | file, linenum, args[2], args[1]); |
| 6659 | close(fd); |
| 6660 | free(err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6661 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6662 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6663 | } |
| 6664 | close(fd); |
| 6665 | |
| 6666 | errnum = atol(args[1]); |
| 6667 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) { |
| 6668 | if (http_err_codes[rc] == errnum) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 6669 | chunk_destroy(&curproxy->errmsg[rc]); |
| 6670 | chunk_initlen(&curproxy->errmsg[rc], err, errlen, errlen); |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6671 | break; |
| 6672 | } |
| 6673 | } |
| 6674 | |
| 6675 | if (rc >= HTTP_ERR_SIZE) { |
Willy Tarreau | bb3c09a | 2015-09-27 15:13:30 +0200 | [diff] [blame] | 6676 | Warning("parsing [%s:%d] : status code %d not handled by '%s', error customization will be ignored.\n", |
| 6677 | file, linenum, errnum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6678 | err_code |= ERR_WARN; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6679 | free(err); |
| 6680 | } |
| 6681 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6682 | else { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6683 | struct cfg_kw_list *kwl; |
| 6684 | int index; |
| 6685 | |
| 6686 | list_for_each_entry(kwl, &cfg_keywords.list, list) { |
| 6687 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 6688 | if (kwl->kw[index].section != CFG_LISTEN) |
| 6689 | continue; |
| 6690 | if (strcmp(kwl->kw[index].kw, args[0]) == 0) { |
| 6691 | /* prepare error message just in case */ |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 6692 | rc = kwl->kw[index].parse(args, CFG_LISTEN, curproxy, &defproxy, file, linenum, &errmsg); |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6693 | if (rc < 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 6694 | Alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6695 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6696 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6697 | } |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6698 | else if (rc > 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 6699 | Warning("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6700 | err_code |= ERR_WARN; |
| 6701 | goto out; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6702 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6703 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6704 | } |
| 6705 | } |
| 6706 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6707 | |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 6708 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6709 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6710 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6711 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6712 | out: |
Willy Tarreau | f4068b6 | 2012-05-08 17:37:49 +0200 | [diff] [blame] | 6713 | free(errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6714 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6715 | } |
| 6716 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6717 | int |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 6718 | cfg_parse_netns(const char *file, int linenum, char **args, int kwm) |
| 6719 | { |
| 6720 | #ifdef CONFIG_HAP_NS |
| 6721 | const char *err; |
| 6722 | const char *item = args[0]; |
| 6723 | |
| 6724 | if (!strcmp(item, "namespace_list")) { |
| 6725 | return 0; |
| 6726 | } |
| 6727 | else if (!strcmp(item, "namespace")) { |
| 6728 | size_t idx = 1; |
| 6729 | const char *current; |
| 6730 | while (*(current = args[idx++])) { |
| 6731 | err = invalid_char(current); |
| 6732 | if (err) { |
| 6733 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6734 | file, linenum, *err, item, current); |
| 6735 | return ERR_ALERT | ERR_FATAL; |
| 6736 | } |
| 6737 | |
| 6738 | if (netns_store_lookup(current, strlen(current))) { |
| 6739 | Alert("parsing [%s:%d]: Namespace '%s' is already added.\n", |
| 6740 | file, linenum, current); |
| 6741 | return ERR_ALERT | ERR_FATAL; |
| 6742 | } |
| 6743 | if (!netns_store_insert(current)) { |
| 6744 | Alert("parsing [%s:%d]: Cannot open namespace '%s'.\n", |
| 6745 | file, linenum, current); |
| 6746 | return ERR_ALERT | ERR_FATAL; |
| 6747 | } |
| 6748 | } |
| 6749 | } |
| 6750 | |
| 6751 | return 0; |
| 6752 | #else |
| 6753 | Alert("parsing [%s:%d]: namespace support is not compiled in.", |
| 6754 | file, linenum); |
| 6755 | return ERR_ALERT | ERR_FATAL; |
| 6756 | #endif |
| 6757 | } |
| 6758 | |
| 6759 | int |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6760 | cfg_parse_users(const char *file, int linenum, char **args, int kwm) |
| 6761 | { |
| 6762 | |
| 6763 | int err_code = 0; |
| 6764 | const char *err; |
| 6765 | |
| 6766 | if (!strcmp(args[0], "userlist")) { /* new userlist */ |
| 6767 | struct userlist *newul; |
| 6768 | |
| 6769 | if (!*args[1]) { |
| 6770 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6771 | file, linenum, args[0]); |
| 6772 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6773 | goto out; |
| 6774 | } |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 6775 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 6776 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6777 | |
| 6778 | err = invalid_char(args[1]); |
| 6779 | if (err) { |
| 6780 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6781 | file, linenum, *err, args[0], args[1]); |
| 6782 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6783 | goto out; |
| 6784 | } |
| 6785 | |
| 6786 | for (newul = userlist; newul; newul = newul->next) |
| 6787 | if (!strcmp(newul->name, args[1])) { |
| 6788 | Warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n", |
| 6789 | file, linenum, args[1]); |
| 6790 | err_code |= ERR_WARN; |
| 6791 | goto out; |
| 6792 | } |
| 6793 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6794 | newul = calloc(1, sizeof(*newul)); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6795 | if (!newul) { |
| 6796 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6797 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6798 | goto out; |
| 6799 | } |
| 6800 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6801 | newul->name = strdup(args[1]); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6802 | if (!newul->name) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6803 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6804 | err_code |= ERR_ALERT | ERR_ABORT; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 6805 | free(newul); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6806 | goto out; |
| 6807 | } |
| 6808 | |
| 6809 | newul->next = userlist; |
| 6810 | userlist = newul; |
| 6811 | |
| 6812 | } else if (!strcmp(args[0], "group")) { /* new group */ |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6813 | int cur_arg; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6814 | const char *err; |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6815 | struct auth_groups *ag; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6816 | |
| 6817 | if (!*args[1]) { |
| 6818 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6819 | file, linenum, args[0]); |
| 6820 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6821 | goto out; |
| 6822 | } |
| 6823 | |
| 6824 | err = invalid_char(args[1]); |
| 6825 | if (err) { |
| 6826 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6827 | file, linenum, *err, args[0], args[1]); |
| 6828 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6829 | goto out; |
| 6830 | } |
| 6831 | |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 6832 | if (!userlist) |
| 6833 | goto out; |
| 6834 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6835 | for (ag = userlist->groups; ag; ag = ag->next) |
| 6836 | if (!strcmp(ag->name, args[1])) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6837 | Warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n", |
| 6838 | file, linenum, args[1], userlist->name); |
| 6839 | err_code |= ERR_ALERT; |
| 6840 | goto out; |
| 6841 | } |
| 6842 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6843 | ag = calloc(1, sizeof(*ag)); |
| 6844 | if (!ag) { |
| 6845 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6846 | err_code |= ERR_ALERT | ERR_ABORT; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6847 | goto out; |
| 6848 | } |
| 6849 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6850 | ag->name = strdup(args[1]); |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 6851 | if (!ag->name) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6852 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6853 | err_code |= ERR_ALERT | ERR_ABORT; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 6854 | free(ag); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6855 | goto out; |
| 6856 | } |
| 6857 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6858 | cur_arg = 2; |
| 6859 | |
| 6860 | while (*args[cur_arg]) { |
| 6861 | if (!strcmp(args[cur_arg], "users")) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6862 | ag->groupusers = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6863 | cur_arg += 2; |
| 6864 | continue; |
| 6865 | } else { |
| 6866 | Alert("parsing [%s:%d]: '%s' only supports 'users' option.\n", |
| 6867 | file, linenum, args[0]); |
| 6868 | err_code |= ERR_ALERT | ERR_FATAL; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 6869 | free(ag->groupusers); |
| 6870 | free(ag->name); |
| 6871 | free(ag); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6872 | goto out; |
| 6873 | } |
| 6874 | } |
| 6875 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6876 | ag->next = userlist->groups; |
| 6877 | userlist->groups = ag; |
| 6878 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6879 | } else if (!strcmp(args[0], "user")) { /* new user */ |
| 6880 | struct auth_users *newuser; |
| 6881 | int cur_arg; |
| 6882 | |
| 6883 | if (!*args[1]) { |
| 6884 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6885 | file, linenum, args[0]); |
| 6886 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6887 | goto out; |
| 6888 | } |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 6889 | if (!userlist) |
| 6890 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6891 | |
| 6892 | for (newuser = userlist->users; newuser; newuser = newuser->next) |
| 6893 | if (!strcmp(newuser->user, args[1])) { |
| 6894 | Warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n", |
| 6895 | file, linenum, args[1], userlist->name); |
| 6896 | err_code |= ERR_ALERT; |
| 6897 | goto out; |
| 6898 | } |
| 6899 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6900 | newuser = calloc(1, sizeof(*newuser)); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6901 | if (!newuser) { |
| 6902 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6903 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6904 | goto out; |
| 6905 | } |
| 6906 | |
| 6907 | newuser->user = strdup(args[1]); |
| 6908 | |
| 6909 | newuser->next = userlist->users; |
| 6910 | userlist->users = newuser; |
| 6911 | |
| 6912 | cur_arg = 2; |
| 6913 | |
| 6914 | while (*args[cur_arg]) { |
| 6915 | if (!strcmp(args[cur_arg], "password")) { |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 6916 | #ifdef CONFIG_HAP_CRYPT |
| 6917 | if (!crypt("", args[cur_arg + 1])) { |
| 6918 | Alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n", |
| 6919 | file, linenum, newuser->user); |
| 6920 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6921 | goto out; |
| 6922 | } |
| 6923 | #else |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6924 | Warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n", |
| 6925 | file, linenum); |
| 6926 | err_code |= ERR_ALERT; |
| 6927 | #endif |
| 6928 | newuser->pass = strdup(args[cur_arg + 1]); |
| 6929 | cur_arg += 2; |
| 6930 | continue; |
| 6931 | } else if (!strcmp(args[cur_arg], "insecure-password")) { |
| 6932 | newuser->pass = strdup(args[cur_arg + 1]); |
| 6933 | newuser->flags |= AU_O_INSECURE; |
| 6934 | cur_arg += 2; |
| 6935 | continue; |
| 6936 | } else if (!strcmp(args[cur_arg], "groups")) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6937 | newuser->u.groups_names = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6938 | cur_arg += 2; |
| 6939 | continue; |
| 6940 | } else { |
| 6941 | Alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n", |
| 6942 | file, linenum, args[0]); |
| 6943 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6944 | goto out; |
| 6945 | } |
| 6946 | } |
| 6947 | } else { |
| 6948 | Alert("parsing [%s:%d]: unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "users"); |
| 6949 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6950 | } |
| 6951 | |
| 6952 | out: |
| 6953 | return err_code; |
| 6954 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6955 | |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 6956 | int |
| 6957 | cfg_parse_scope(const char *file, int linenum, char *line) |
| 6958 | { |
| 6959 | char *beg, *end, *scope = NULL; |
| 6960 | int err_code = 0; |
| 6961 | const char *err; |
| 6962 | |
| 6963 | beg = line + 1; |
| 6964 | end = strchr(beg, ']'); |
| 6965 | |
| 6966 | /* Detect end of scope declaration */ |
| 6967 | if (!end || end == beg) { |
| 6968 | Alert("parsing [%s:%d] : empty scope name is forbidden.\n", |
| 6969 | file, linenum); |
| 6970 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6971 | goto out; |
| 6972 | } |
| 6973 | |
| 6974 | /* Get scope name and check its validity */ |
| 6975 | scope = my_strndup(beg, end-beg); |
| 6976 | err = invalid_char(scope); |
| 6977 | if (err) { |
| 6978 | Alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n", |
| 6979 | file, linenum, *err); |
| 6980 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6981 | goto out; |
| 6982 | } |
| 6983 | |
| 6984 | /* Be sure to have a scope declaration alone on its line */ |
| 6985 | line = end+1; |
| 6986 | while (isspace((unsigned char)*line)) |
| 6987 | line++; |
| 6988 | if (*line && *line != '#' && *line != '\n' && *line != '\r') { |
| 6989 | Alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n", |
| 6990 | file, linenum, *line); |
| 6991 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6992 | goto out; |
| 6993 | } |
| 6994 | |
| 6995 | /* We have a valid scope declaration, save it */ |
| 6996 | free(cfg_scope); |
| 6997 | cfg_scope = scope; |
| 6998 | scope = NULL; |
| 6999 | |
| 7000 | out: |
| 7001 | free(scope); |
| 7002 | return err_code; |
| 7003 | } |
| 7004 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7005 | /* |
| 7006 | * This function reads and parses the configuration file given in the argument. |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7007 | * Returns the error code, 0 if OK, or any combination of : |
| 7008 | * - ERR_ABORT: must abort ASAP |
| 7009 | * - ERR_FATAL: we can continue parsing but not start the service |
| 7010 | * - ERR_WARN: a warning has been emitted |
| 7011 | * - ERR_ALERT: an alert has been emitted |
| 7012 | * Only the two first ones can stop processing, the two others are just |
| 7013 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7014 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 7015 | int readcfgfile(const char *file) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7016 | { |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7017 | char *thisline; |
| 7018 | int linesize = LINESIZE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7019 | FILE *f; |
| 7020 | int linenum = 0; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7021 | int err_code = 0; |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7022 | struct cfg_section *cs = NULL; |
| 7023 | struct cfg_section *ics; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7024 | int readbytes = 0; |
| 7025 | |
| 7026 | if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) { |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7027 | Alert("parsing [%s] : out of memory.\n", file); |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7028 | return -1; |
| 7029 | } |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7030 | |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 7031 | if ((f=fopen(file,"r")) == NULL) { |
| 7032 | free(thisline); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7033 | return -1; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 7034 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7035 | |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7036 | next_line: |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7037 | while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) { |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7038 | int arg, kwm = KWM_STD; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7039 | char *end; |
| 7040 | char *args[MAX_LINE_ARGS + 1]; |
| 7041 | char *line = thisline; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7042 | int dquote = 0; /* double quote */ |
| 7043 | int squote = 0; /* simple quote */ |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7044 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7045 | linenum++; |
| 7046 | |
| 7047 | end = line + strlen(line); |
| 7048 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7049 | if (end-line == linesize-1 && *(end-1) != '\n') { |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7050 | /* Check if we reached the limit and the last char is not \n. |
| 7051 | * Watch out for the last line without the terminating '\n'! |
| 7052 | */ |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7053 | char *newline; |
| 7054 | int newlinesize = linesize * 2; |
| 7055 | |
| 7056 | newline = realloc(thisline, sizeof(*thisline) * newlinesize); |
| 7057 | if (newline == NULL) { |
| 7058 | Alert("parsing [%s:%d]: line too long, cannot allocate memory.\n", |
| 7059 | file, linenum); |
| 7060 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7061 | continue; |
| 7062 | } |
| 7063 | |
| 7064 | readbytes = linesize - 1; |
| 7065 | linesize = newlinesize; |
| 7066 | thisline = newline; |
| 7067 | continue; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7068 | } |
| 7069 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7070 | readbytes = 0; |
| 7071 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7072 | /* skip leading spaces */ |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 7073 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7074 | line++; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7075 | |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 7076 | |
| 7077 | if (*line == '[') {/* This is the begining if a scope */ |
| 7078 | err_code |= cfg_parse_scope(file, linenum, line); |
| 7079 | goto next_line; |
| 7080 | } |
| 7081 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7082 | arg = 0; |
| 7083 | args[arg] = line; |
| 7084 | |
| 7085 | while (*line && arg < MAX_LINE_ARGS) { |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7086 | if (*line == '"' && !squote) { /* double quote outside single quotes */ |
| 7087 | if (dquote) |
| 7088 | dquote = 0; |
| 7089 | else |
| 7090 | dquote = 1; |
William Lallemand | 3f41560 | 2015-05-12 14:01:09 +0200 | [diff] [blame] | 7091 | memmove(line, line + 1, end - line); |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7092 | end--; |
| 7093 | } |
| 7094 | else if (*line == '\'' && !dquote) { /* single quote outside double quotes */ |
| 7095 | if (squote) |
| 7096 | squote = 0; |
| 7097 | else |
| 7098 | squote = 1; |
William Lallemand | 3f41560 | 2015-05-12 14:01:09 +0200 | [diff] [blame] | 7099 | memmove(line, line + 1, end - line); |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7100 | end--; |
| 7101 | } |
| 7102 | else if (*line == '\\' && !squote) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7103 | /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their |
| 7104 | * C equivalent value. Other combinations left unchanged (eg: \1). |
| 7105 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7106 | int skip = 0; |
| 7107 | if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') { |
| 7108 | *line = line[1]; |
| 7109 | skip = 1; |
| 7110 | } |
| 7111 | else if (line[1] == 'r') { |
| 7112 | *line = '\r'; |
| 7113 | skip = 1; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7114 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7115 | else if (line[1] == 'n') { |
| 7116 | *line = '\n'; |
| 7117 | skip = 1; |
| 7118 | } |
| 7119 | else if (line[1] == 't') { |
| 7120 | *line = '\t'; |
| 7121 | skip = 1; |
| 7122 | } |
| 7123 | else if (line[1] == 'x') { |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7124 | if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7125 | unsigned char hex1, hex2; |
| 7126 | hex1 = toupper(line[2]) - '0'; |
| 7127 | hex2 = toupper(line[3]) - '0'; |
| 7128 | if (hex1 > 9) hex1 -= 'A' - '9' - 1; |
| 7129 | if (hex2 > 9) hex2 -= 'A' - '9' - 1; |
| 7130 | *line = (hex1<<4) + hex2; |
| 7131 | skip = 3; |
| 7132 | } |
| 7133 | else { |
| 7134 | Alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7135 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7136 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7137 | } else if (line[1] == '"') { |
| 7138 | *line = '"'; |
| 7139 | skip = 1; |
| 7140 | } else if (line[1] == '\'') { |
| 7141 | *line = '\''; |
| 7142 | skip = 1; |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7143 | } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */ |
| 7144 | *line = '$'; |
| 7145 | skip = 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7146 | } |
| 7147 | if (skip) { |
Cyril Bonté | dd1b01d | 2009-12-06 13:43:42 +0100 | [diff] [blame] | 7148 | memmove(line + 1, line + 1 + skip, end - (line + skip)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7149 | end -= skip; |
| 7150 | } |
| 7151 | line++; |
| 7152 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7153 | else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7154 | /* end of string, end of loop */ |
| 7155 | *line = 0; |
| 7156 | break; |
| 7157 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7158 | else if (!squote && !dquote && isspace((unsigned char)*line)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7159 | /* a non-escaped space is an argument separator */ |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7160 | *line++ = '\0'; |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 7161 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7162 | line++; |
| 7163 | args[++arg] = line; |
| 7164 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7165 | else if (dquote && *line == '$') { |
| 7166 | /* environment variables are evaluated inside double quotes */ |
| 7167 | char *var_beg; |
| 7168 | char *var_end; |
| 7169 | char save_char; |
| 7170 | char *value; |
| 7171 | int val_len; |
| 7172 | int newlinesize; |
| 7173 | int braces = 0; |
| 7174 | |
| 7175 | var_beg = line + 1; |
| 7176 | var_end = var_beg; |
| 7177 | |
| 7178 | if (*var_beg == '{') { |
| 7179 | var_beg++; |
| 7180 | var_end++; |
| 7181 | braces = 1; |
| 7182 | } |
| 7183 | |
| 7184 | if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') { |
| 7185 | Alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg); |
| 7186 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7187 | goto next_line; /* skip current line */ |
| 7188 | } |
| 7189 | |
| 7190 | while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') |
| 7191 | var_end++; |
| 7192 | |
| 7193 | save_char = *var_end; |
| 7194 | *var_end = '\0'; |
| 7195 | value = getenv(var_beg); |
| 7196 | *var_end = save_char; |
| 7197 | val_len = value ? strlen(value) : 0; |
| 7198 | |
| 7199 | if (braces) { |
| 7200 | if (*var_end == '}') { |
| 7201 | var_end++; |
| 7202 | braces = 0; |
| 7203 | } else { |
| 7204 | Alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum); |
| 7205 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7206 | goto next_line; /* skip current line */ |
| 7207 | } |
| 7208 | } |
| 7209 | |
| 7210 | newlinesize = (end - thisline) - (var_end - line) + val_len + 1; |
| 7211 | |
| 7212 | /* if not enough space in thisline */ |
| 7213 | if (newlinesize > linesize) { |
| 7214 | char *newline; |
| 7215 | |
| 7216 | newline = realloc(thisline, newlinesize * sizeof(*thisline)); |
| 7217 | if (newline == NULL) { |
| 7218 | Alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum); |
| 7219 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7220 | goto next_line; /* slip current line */ |
| 7221 | } |
| 7222 | /* recompute pointers if realloc returns a new pointer */ |
| 7223 | if (newline != thisline) { |
| 7224 | int i; |
| 7225 | int diff; |
| 7226 | |
| 7227 | for (i = 0; i <= arg; i++) { |
| 7228 | diff = args[i] - thisline; |
| 7229 | args[i] = newline + diff; |
| 7230 | } |
| 7231 | |
| 7232 | diff = var_end - thisline; |
| 7233 | var_end = newline + diff; |
| 7234 | diff = end - thisline; |
| 7235 | end = newline + diff; |
| 7236 | diff = line - thisline; |
| 7237 | line = newline + diff; |
| 7238 | thisline = newline; |
| 7239 | } |
| 7240 | linesize = newlinesize; |
| 7241 | } |
| 7242 | |
| 7243 | /* insert value inside the line */ |
| 7244 | memmove(line + val_len, var_end, end - var_end + 1); |
| 7245 | memcpy(line, value, val_len); |
| 7246 | end += val_len - (var_end - line); |
| 7247 | line += val_len; |
| 7248 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7249 | else { |
| 7250 | line++; |
| 7251 | } |
| 7252 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7253 | |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7254 | if (dquote) { |
| 7255 | Alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum); |
| 7256 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7257 | } |
| 7258 | |
| 7259 | if (squote) { |
| 7260 | Alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum); |
| 7261 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7262 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7263 | |
| 7264 | /* empty line */ |
| 7265 | if (!**args) |
| 7266 | continue; |
| 7267 | |
Willy Tarreau | 7bb651e | 2009-11-09 21:16:53 +0100 | [diff] [blame] | 7268 | if (*line) { |
| 7269 | /* we had to stop due to too many args. |
| 7270 | * Let's terminate the string, print the offending part then cut the |
| 7271 | * last arg. |
| 7272 | */ |
| 7273 | while (*line && *line != '#' && *line != '\n' && *line != '\r') |
| 7274 | line++; |
| 7275 | *line = '\0'; |
| 7276 | |
Krzysztof Piotr Oledzki | 500b8f0 | 2009-12-15 22:34:51 +0100 | [diff] [blame] | 7277 | Alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n", |
Willy Tarreau | 3ccf94e | 2009-12-17 21:12:16 +0100 | [diff] [blame] | 7278 | file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]); |
Willy Tarreau | 7bb651e | 2009-11-09 21:16:53 +0100 | [diff] [blame] | 7279 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7280 | args[arg] = line; |
| 7281 | } |
| 7282 | |
Willy Tarreau | 540abe4 | 2007-05-02 20:50:16 +0200 | [diff] [blame] | 7283 | /* zero out remaining args and ensure that at least one entry |
| 7284 | * is zeroed out. |
| 7285 | */ |
| 7286 | while (++arg <= MAX_LINE_ARGS) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7287 | args[arg] = line; |
| 7288 | } |
| 7289 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7290 | /* check for keyword modifiers "no" and "default" */ |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7291 | if (!strcmp(args[0], "no")) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7292 | char *tmp; |
| 7293 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7294 | kwm = KWM_NO; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7295 | tmp = args[0]; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7296 | for (arg=0; *args[arg+1]; arg++) |
| 7297 | args[arg] = args[arg+1]; // shift args after inversion |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7298 | *tmp = '\0'; // fix the next arg to \0 |
| 7299 | args[arg] = tmp; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7300 | } |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7301 | else if (!strcmp(args[0], "default")) { |
| 7302 | kwm = KWM_DEF; |
| 7303 | for (arg=0; *args[arg+1]; arg++) |
| 7304 | args[arg] = args[arg+1]; // shift args after inversion |
| 7305 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7306 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7307 | if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \ |
| 7308 | strcmp(args[0], "log") != 0) { |
| 7309 | Alert("parsing [%s:%d]: negation/default currently supported only for options and log.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7310 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7311 | } |
| 7312 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7313 | /* detect section start */ |
| 7314 | list_for_each_entry(ics, §ions, list) { |
| 7315 | if (strcmp(args[0], ics->section_name) == 0) { |
| 7316 | cursection = ics->section_name; |
| 7317 | cs = ics; |
| 7318 | break; |
| 7319 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7320 | } |
| 7321 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7322 | /* else it's a section keyword */ |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7323 | if (cs) |
| 7324 | err_code |= cs->section_parser(file, linenum, args, kwm); |
| 7325 | else { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 7326 | 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] | 7327 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7328 | } |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7329 | |
| 7330 | if (err_code & ERR_ABORT) |
| 7331 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7332 | } |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 7333 | free(cfg_scope); |
| 7334 | cfg_scope = NULL; |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 7335 | cursection = NULL; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7336 | free(thisline); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7337 | fclose(f); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7338 | return err_code; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7339 | } |
| 7340 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7341 | /* This function propagates processes from frontend <from> to backend <to> so |
| 7342 | * that it is always guaranteed that a backend pointed to by a frontend is |
| 7343 | * bound to all of its processes. After that, if the target is a "listen" |
| 7344 | * instance, the function recursively descends the target's own targets along |
Willy Tarreau | 98d0485 | 2015-05-26 12:18:29 +0200 | [diff] [blame] | 7345 | * default_backend and use_backend rules. Since the bits are |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7346 | * checked first to ensure that <to> is already bound to all processes of |
| 7347 | * <from>, there is no risk of looping and we ensure to follow the shortest |
| 7348 | * path to the destination. |
| 7349 | * |
| 7350 | * It is possible to set <to> to NULL for the first call so that the function |
| 7351 | * takes care of visiting the initial frontend in <from>. |
| 7352 | * |
| 7353 | * It is important to note that the function relies on the fact that all names |
| 7354 | * have already been resolved. |
| 7355 | */ |
| 7356 | void propagate_processes(struct proxy *from, struct proxy *to) |
| 7357 | { |
| 7358 | struct switching_rule *rule; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7359 | |
| 7360 | if (to) { |
| 7361 | /* check whether we need to go down */ |
| 7362 | if (from->bind_proc && |
| 7363 | (from->bind_proc & to->bind_proc) == from->bind_proc) |
| 7364 | return; |
| 7365 | |
| 7366 | if (!from->bind_proc && !to->bind_proc) |
| 7367 | return; |
| 7368 | |
| 7369 | to->bind_proc = from->bind_proc ? |
| 7370 | (to->bind_proc | from->bind_proc) : 0; |
| 7371 | |
| 7372 | /* now propagate down */ |
| 7373 | from = to; |
| 7374 | } |
| 7375 | |
Willy Tarreau | 8a95d8c | 2014-12-18 13:56:26 +0100 | [diff] [blame] | 7376 | if (!(from->cap & PR_CAP_FE)) |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7377 | return; |
| 7378 | |
Willy Tarreau | f6b7001 | 2014-12-18 14:00:43 +0100 | [diff] [blame] | 7379 | if (from->state == PR_STSTOPPED) |
| 7380 | return; |
| 7381 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7382 | /* default_backend */ |
| 7383 | if (from->defbe.be) |
| 7384 | propagate_processes(from, from->defbe.be); |
| 7385 | |
| 7386 | /* use_backend */ |
| 7387 | list_for_each_entry(rule, &from->switching_rules, list) { |
Cyril Bonté | 5163969 | 2014-10-02 19:56:25 +0200 | [diff] [blame] | 7388 | if (rule->dynamic) |
| 7389 | continue; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7390 | to = rule->be.backend; |
| 7391 | propagate_processes(from, to); |
| 7392 | } |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7393 | } |
| 7394 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7395 | /* |
| 7396 | * Returns the error code, 0 if OK, or any combination of : |
| 7397 | * - ERR_ABORT: must abort ASAP |
| 7398 | * - ERR_FATAL: we can continue parsing but not start the service |
| 7399 | * - ERR_WARN: a warning has been emitted |
| 7400 | * - ERR_ALERT: an alert has been emitted |
| 7401 | * Only the two first ones can stop processing, the two others are just |
| 7402 | * indicators. |
| 7403 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7404 | int check_config_validity() |
| 7405 | { |
| 7406 | int cfgerr = 0; |
| 7407 | struct proxy *curproxy = NULL; |
| 7408 | struct server *newsrv = NULL; |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7409 | int err_code = 0; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7410 | unsigned int next_pxid = 1; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 7411 | struct bind_conf *bind_conf; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 7412 | char *err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 7413 | struct dns_resolvers *curr_resolvers; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7414 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 7415 | bind_conf = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7416 | /* |
| 7417 | * Now, check for the integrity of all that we have collected. |
| 7418 | */ |
| 7419 | |
| 7420 | /* will be needed further to delay some tasks */ |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 7421 | tv_update_date(0,1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7422 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 7423 | if (!global.tune.max_http_hdr) |
| 7424 | global.tune.max_http_hdr = MAX_HTTP_HDR; |
| 7425 | |
| 7426 | if (!global.tune.cookie_len) |
| 7427 | global.tune.cookie_len = CAPTURE_LEN; |
| 7428 | |
Stéphane Cottin | 23e9e93 | 2017-05-18 08:58:41 +0200 | [diff] [blame] | 7429 | if (!global.tune.requri_len) |
| 7430 | global.tune.requri_len = REQURI_LEN; |
| 7431 | |
Emeric Brun | 96fd926 | 2017-07-05 13:33:16 +0200 | [diff] [blame] | 7432 | pool2_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED); |
| 7433 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 7434 | pool2_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED); |
| 7435 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 7436 | /* allocate pool of resolution per resolvers */ |
| 7437 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 7438 | if (dns_alloc_resolution_pool(curr_resolvers) != 0) { |
| 7439 | /* error message is already displayed by dns_alloc_resolution_pool() */ |
| 7440 | err_code |= ERR_ALERT | ERR_ABORT; |
| 7441 | goto out; |
| 7442 | } |
| 7443 | } |
| 7444 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 7445 | /* Post initialisation of the users and groups lists. */ |
| 7446 | err_code = userlist_postinit(); |
| 7447 | if (err_code != ERR_NONE) |
| 7448 | goto out; |
| 7449 | |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 7450 | /* first, we will invert the proxy list order */ |
| 7451 | curproxy = NULL; |
| 7452 | while (proxy) { |
| 7453 | struct proxy *next; |
| 7454 | |
| 7455 | next = proxy->next; |
| 7456 | proxy->next = curproxy; |
| 7457 | curproxy = proxy; |
| 7458 | if (!next) |
| 7459 | break; |
| 7460 | proxy = next; |
| 7461 | } |
| 7462 | |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 7463 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7464 | struct switching_rule *rule; |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7465 | struct server_rule *srule; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7466 | struct sticking_rule *mrule; |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 7467 | struct act_rule *trule; |
| 7468 | struct act_rule *hrqrule; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 7469 | struct logsrv *tmplogsrv; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7470 | unsigned int next_id; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 7471 | int nbproc; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7472 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 7473 | if (curproxy->uuid < 0) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7474 | /* proxy ID not set, use automatic numbering with first |
| 7475 | * spare entry starting with next_pxid. |
| 7476 | */ |
| 7477 | next_pxid = get_next_id(&used_proxy_id, next_pxid); |
| 7478 | curproxy->conf.id.key = curproxy->uuid = next_pxid; |
| 7479 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7480 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 7481 | next_pxid++; |
| 7482 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7483 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7484 | if (curproxy->state == PR_STSTOPPED) { |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 7485 | /* ensure we don't keep listeners uselessly bound */ |
| 7486 | stop_proxy(curproxy); |
Willy Tarreau | 02df774 | 2015-05-01 19:59:56 +0200 | [diff] [blame] | 7487 | free((void *)curproxy->table.peers.name); |
| 7488 | curproxy->table.peers.p = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7489 | continue; |
| 7490 | } |
| 7491 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 7492 | /* Check multi-process mode compatibility for the current proxy */ |
| 7493 | |
| 7494 | if (curproxy->bind_proc) { |
| 7495 | /* an explicit bind-process was specified, let's check how many |
| 7496 | * processes remain. |
| 7497 | */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 7498 | nbproc = my_popcountl(curproxy->bind_proc); |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 7499 | |
| 7500 | curproxy->bind_proc &= nbits(global.nbproc); |
| 7501 | if (!curproxy->bind_proc && nbproc == 1) { |
| 7502 | 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); |
| 7503 | curproxy->bind_proc = 1; |
| 7504 | } |
| 7505 | else if (!curproxy->bind_proc && nbproc > 1) { |
| 7506 | 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); |
| 7507 | curproxy->bind_proc = 0; |
| 7508 | } |
| 7509 | } |
| 7510 | |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 7511 | /* check and reduce the bind-proc of each listener */ |
| 7512 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 7513 | unsigned long mask; |
| 7514 | |
| 7515 | if (!bind_conf->bind_proc) |
| 7516 | continue; |
| 7517 | |
| 7518 | mask = nbits(global.nbproc); |
| 7519 | if (curproxy->bind_proc) |
| 7520 | mask &= curproxy->bind_proc; |
| 7521 | /* mask cannot be null here thanks to the previous checks */ |
| 7522 | |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 7523 | nbproc = my_popcountl(bind_conf->bind_proc); |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 7524 | bind_conf->bind_proc &= mask; |
| 7525 | |
| 7526 | if (!bind_conf->bind_proc && nbproc == 1) { |
| 7527 | 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", |
| 7528 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 7529 | bind_conf->bind_proc = mask & ~(mask - 1); |
| 7530 | } |
| 7531 | else if (!bind_conf->bind_proc && nbproc > 1) { |
| 7532 | 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", |
| 7533 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 7534 | bind_conf->bind_proc = 0; |
| 7535 | } |
| 7536 | } |
| 7537 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7538 | switch (curproxy->mode) { |
| 7539 | case PR_MODE_HEALTH: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7540 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7541 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7542 | Alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n", |
| 7543 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7544 | cfgerr++; |
| 7545 | } |
| 7546 | |
| 7547 | if (curproxy->srv != NULL) |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7548 | Warning("config : servers will be ignored for %s '%s'.\n", |
| 7549 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7550 | break; |
| 7551 | |
| 7552 | case PR_MODE_TCP: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7553 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7554 | break; |
| 7555 | |
| 7556 | case PR_MODE_HTTP: |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 7557 | curproxy->http_needed = 1; |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7558 | break; |
| 7559 | } |
| 7560 | |
Willy Tarreau | f3934b8 | 2015-08-11 11:36:45 +0200 | [diff] [blame] | 7561 | if ((curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) { |
| 7562 | Warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n", |
| 7563 | proxy_type_str(curproxy), curproxy->id); |
| 7564 | err_code |= ERR_WARN; |
| 7565 | } |
| 7566 | |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7567 | if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) { |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 7568 | if (curproxy->lbprm.algo & BE_LB_KIND) { |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7569 | if (curproxy->options & PR_O_TRANSP) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7570 | Alert("config : %s '%s' cannot use both transparent and balance mode.\n", |
| 7571 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7572 | cfgerr++; |
| 7573 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7574 | #ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7575 | else if (curproxy->srv == NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7576 | Alert("config : %s '%s' needs at least 1 server in balance mode.\n", |
| 7577 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7578 | cfgerr++; |
| 7579 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7580 | #endif |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7581 | else if (curproxy->options & PR_O_DISPATCH) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7582 | Warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n", |
| 7583 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7584 | err_code |= ERR_WARN; |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7585 | } |
| 7586 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7587 | 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] | 7588 | /* If no LB algo is set in a backend, and we're not in |
| 7589 | * transparent mode, dispatch mode nor proxy mode, we |
| 7590 | * want to use balance roundrobin by default. |
| 7591 | */ |
| 7592 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 7593 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7594 | } |
| 7595 | } |
Willy Tarreau | 193cf93 | 2007-09-17 10:17:23 +0200 | [diff] [blame] | 7596 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7597 | if (curproxy->options & PR_O_DISPATCH) |
| 7598 | curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY); |
| 7599 | else if (curproxy->options & PR_O_HTTP_PROXY) |
| 7600 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP); |
| 7601 | else if (curproxy->options & PR_O_TRANSP) |
| 7602 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY); |
Willy Tarreau | 8293658 | 2007-11-30 15:20:09 +0100 | [diff] [blame] | 7603 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7604 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) { |
| 7605 | if (curproxy->options & PR_O_DISABLE404) { |
| 7606 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 7607 | "disable-on-404", proxy_type_str(curproxy), curproxy->id); |
| 7608 | err_code |= ERR_WARN; |
| 7609 | curproxy->options &= ~PR_O_DISABLE404; |
| 7610 | } |
| 7611 | if (curproxy->options2 & PR_O2_CHK_SNDST) { |
| 7612 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 7613 | "send-state", proxy_type_str(curproxy), curproxy->id); |
| 7614 | err_code |= ERR_WARN; |
| 7615 | curproxy->options &= ~PR_O2_CHK_SNDST; |
| 7616 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 7617 | } |
| 7618 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7619 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 7620 | if (!global.external_check) { |
| 7621 | Alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n", |
| 7622 | curproxy->id, "option external-check"); |
| 7623 | cfgerr++; |
| 7624 | } |
| 7625 | if (!curproxy->check_command) { |
| 7626 | Alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n", |
| 7627 | curproxy->id, "option external-check"); |
| 7628 | cfgerr++; |
| 7629 | } |
| 7630 | } |
| 7631 | |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 7632 | if (curproxy->email_alert.set) { |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 7633 | if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) { |
| 7634 | Warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of " |
Pieter Baauw | 8669e97 | 2015-08-17 00:45:05 +0200 | [diff] [blame] | 7635 | "'email-alert from', 'email-alert level' 'email-alert mailers', " |
| 7636 | "'email-alert myhostname', or 'email-alert to' " |
| 7637 | "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' " |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 7638 | "to be present).\n", |
| 7639 | proxy_type_str(curproxy), curproxy->id); |
| 7640 | err_code |= ERR_WARN; |
| 7641 | free_email_alert(curproxy); |
| 7642 | } |
| 7643 | if (!curproxy->email_alert.myhostname) |
Cyril Bonté | e22bfd6 | 2015-12-04 03:07:07 +0100 | [diff] [blame] | 7644 | curproxy->email_alert.myhostname = strdup(hostname); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 7645 | } |
| 7646 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7647 | if (curproxy->check_command) { |
| 7648 | int clear = 0; |
| 7649 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
| 7650 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 7651 | "external-check command", proxy_type_str(curproxy), curproxy->id); |
| 7652 | err_code |= ERR_WARN; |
| 7653 | clear = 1; |
| 7654 | } |
| 7655 | if (curproxy->check_command[0] != '/' && !curproxy->check_path) { |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 7656 | Alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n", |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7657 | curproxy->id, "external-check command"); |
| 7658 | cfgerr++; |
| 7659 | } |
| 7660 | if (clear) { |
| 7661 | free(curproxy->check_command); |
| 7662 | curproxy->check_command = NULL; |
| 7663 | } |
| 7664 | } |
| 7665 | |
| 7666 | if (curproxy->check_path) { |
| 7667 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
| 7668 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 7669 | "external-check path", proxy_type_str(curproxy), curproxy->id); |
| 7670 | err_code |= ERR_WARN; |
| 7671 | free(curproxy->check_path); |
| 7672 | curproxy->check_path = NULL; |
| 7673 | } |
| 7674 | } |
| 7675 | |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7676 | /* if a default backend was specified, let's find it */ |
| 7677 | if (curproxy->defbe.name) { |
| 7678 | struct proxy *target; |
| 7679 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7680 | target = proxy_be_by_name(curproxy->defbe.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7681 | if (!target) { |
| 7682 | Alert("Proxy '%s': unable to find required default_backend: '%s'.\n", |
| 7683 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7684 | cfgerr++; |
| 7685 | } else if (target == curproxy) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7686 | Alert("Proxy '%s': loop detected for default_backend: '%s'.\n", |
| 7687 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7688 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7689 | } else if (target->mode != curproxy->mode && |
| 7690 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 7691 | |
| 7692 | Alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n", |
| 7693 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 7694 | curproxy->conf.file, curproxy->conf.line, |
| 7695 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 7696 | target->conf.file, target->conf.line); |
| 7697 | cfgerr++; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7698 | } else { |
| 7699 | free(curproxy->defbe.name); |
| 7700 | curproxy->defbe.be = target; |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 7701 | /* Update tot_fe_maxconn for a further fullconn's computation */ |
| 7702 | target->tot_fe_maxconn += curproxy->maxconn; |
Willy Tarreau | ff67813 | 2012-02-13 14:32:34 +0100 | [diff] [blame] | 7703 | /* Emit a warning if this proxy also has some servers */ |
| 7704 | if (curproxy->srv) { |
| 7705 | Warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n", |
| 7706 | curproxy->id); |
| 7707 | err_code |= ERR_WARN; |
| 7708 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7709 | } |
| 7710 | } |
| 7711 | |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 7712 | if (!curproxy->defbe.be && (curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) { |
| 7713 | /* Case of listen without default backend |
| 7714 | * The curproxy will be its own default backend |
| 7715 | * so we update tot_fe_maxconn for a further |
| 7716 | * fullconn's computation */ |
| 7717 | curproxy->tot_fe_maxconn += curproxy->maxconn; |
| 7718 | } |
| 7719 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7720 | /* find the target proxy for 'use_backend' rules */ |
| 7721 | list_for_each_entry(rule, &curproxy->switching_rules, list) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7722 | struct proxy *target; |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 7723 | struct logformat_node *node; |
| 7724 | char *pxname; |
| 7725 | |
| 7726 | /* Try to parse the string as a log format expression. If the result |
| 7727 | * of the parsing is only one entry containing a simple string, then |
| 7728 | * it's a standard string corresponding to a static rule, thus the |
| 7729 | * parsing is cancelled and be.name is restored to be resolved. |
| 7730 | */ |
| 7731 | pxname = rule->be.name; |
| 7732 | LIST_INIT(&rule->be.expr); |
Thierry FOURNIER / OZON.IO | 4ed1c95 | 2016-11-24 23:57:54 +0100 | [diff] [blame] | 7733 | curproxy->conf.args.ctx = ARGC_UBK; |
| 7734 | curproxy->conf.args.file = rule->file; |
| 7735 | curproxy->conf.args.line = rule->line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 7736 | err = NULL; |
| 7737 | if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) { |
| 7738 | Alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n", |
| 7739 | rule->file, rule->line, pxname, err); |
| 7740 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 7741 | cfgerr++; |
| 7742 | continue; |
| 7743 | } |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 7744 | node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list); |
| 7745 | |
| 7746 | if (!LIST_ISEMPTY(&rule->be.expr)) { |
| 7747 | if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) { |
| 7748 | rule->dynamic = 1; |
| 7749 | free(pxname); |
| 7750 | continue; |
| 7751 | } |
| 7752 | /* simple string: free the expression and fall back to static rule */ |
| 7753 | free(node->arg); |
| 7754 | free(node); |
| 7755 | } |
| 7756 | |
| 7757 | rule->dynamic = 0; |
| 7758 | rule->be.name = pxname; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7759 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7760 | target = proxy_be_by_name(rule->be.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7761 | if (!target) { |
| 7762 | Alert("Proxy '%s': unable to find required use_backend: '%s'.\n", |
| 7763 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7764 | cfgerr++; |
| 7765 | } else if (target == curproxy) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7766 | Alert("Proxy '%s': loop detected for use_backend: '%s'.\n", |
| 7767 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7768 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7769 | } else if (target->mode != curproxy->mode && |
| 7770 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 7771 | |
| 7772 | Alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n", |
| 7773 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 7774 | curproxy->conf.file, curproxy->conf.line, |
| 7775 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 7776 | target->conf.file, target->conf.line); |
| 7777 | cfgerr++; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7778 | } else { |
| 7779 | free((void *)rule->be.name); |
| 7780 | rule->be.backend = target; |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 7781 | /* For each target of switching rules, we update |
| 7782 | * their tot_fe_maxconn, except if a previous rule point |
| 7783 | * on the same backend or on the default backend */ |
| 7784 | if (rule->be.backend != curproxy->defbe.be) { |
| 7785 | struct switching_rule *swrule; |
| 7786 | |
| 7787 | list_for_each_entry(swrule, &curproxy->switching_rules, list) { |
| 7788 | if (rule == swrule) { |
| 7789 | target->tot_fe_maxconn += curproxy->maxconn; |
| 7790 | break; |
| 7791 | } |
| 7792 | else if (!swrule->dynamic && swrule->be.backend == rule->be.backend) { |
| 7793 | /* there is multiple ref of this backend */ |
| 7794 | break; |
| 7795 | } |
| 7796 | } |
| 7797 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7798 | } |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7799 | } |
| 7800 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7801 | /* find the target server for 'use_server' rules */ |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7802 | list_for_each_entry(srule, &curproxy->server_rules, list) { |
| 7803 | struct server *target = findserver(curproxy, srule->srv.name); |
| 7804 | |
| 7805 | if (!target) { |
| 7806 | Alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n", |
| 7807 | proxy_type_str(curproxy), curproxy->id, srule->srv.name); |
| 7808 | cfgerr++; |
| 7809 | continue; |
| 7810 | } |
| 7811 | free((void *)srule->srv.name); |
| 7812 | srule->srv.ptr = target; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7813 | } |
| 7814 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7815 | /* find the target table for 'stick' rules */ |
| 7816 | list_for_each_entry(mrule, &curproxy->sticking_rules, list) { |
| 7817 | struct proxy *target; |
| 7818 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 7819 | curproxy->be_req_ana |= AN_REQ_STICKING_RULES; |
| 7820 | if (mrule->flags & STK_IS_STORE) |
| 7821 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 7822 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7823 | if (mrule->table.name) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7824 | target = proxy_tbl_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7825 | else |
| 7826 | target = curproxy; |
| 7827 | |
| 7828 | if (!target) { |
| 7829 | Alert("Proxy '%s': unable to find stick-table '%s'.\n", |
| 7830 | curproxy->id, mrule->table.name); |
| 7831 | cfgerr++; |
| 7832 | } |
| 7833 | else if (target->table.size == 0) { |
| 7834 | Alert("Proxy '%s': stick-table '%s' used but not configured.\n", |
| 7835 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7836 | cfgerr++; |
| 7837 | } |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 7838 | else if (!stktable_compatible_sample(mrule->expr, target->table.type)) { |
| 7839 | Alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n", |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7840 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7841 | cfgerr++; |
| 7842 | } |
| 7843 | else { |
| 7844 | free((void *)mrule->table.name); |
| 7845 | mrule->table.t = &(target->table); |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 7846 | stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7847 | } |
| 7848 | } |
| 7849 | |
| 7850 | /* find the target table for 'store response' rules */ |
| 7851 | list_for_each_entry(mrule, &curproxy->storersp_rules, list) { |
| 7852 | struct proxy *target; |
| 7853 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 7854 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 7855 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7856 | if (mrule->table.name) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7857 | target = proxy_tbl_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7858 | else |
| 7859 | target = curproxy; |
| 7860 | |
| 7861 | if (!target) { |
| 7862 | Alert("Proxy '%s': unable to find store table '%s'.\n", |
| 7863 | curproxy->id, mrule->table.name); |
| 7864 | cfgerr++; |
| 7865 | } |
| 7866 | else if (target->table.size == 0) { |
| 7867 | Alert("Proxy '%s': stick-table '%s' used but not configured.\n", |
| 7868 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7869 | cfgerr++; |
| 7870 | } |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 7871 | else if (!stktable_compatible_sample(mrule->expr, target->table.type)) { |
| 7872 | Alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n", |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7873 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7874 | cfgerr++; |
| 7875 | } |
| 7876 | else { |
| 7877 | free((void *)mrule->table.name); |
| 7878 | mrule->table.t = &(target->table); |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 7879 | stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7880 | } |
| 7881 | } |
| 7882 | |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7883 | /* find the target table for 'tcp-request' layer 4 rules */ |
| 7884 | list_for_each_entry(trule, &curproxy->tcp_req.l4_rules, list) { |
| 7885 | struct proxy *target; |
| 7886 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 7887 | if (trule->action < ACT_ACTION_TRK_SC0 || trule->action > ACT_ACTION_TRK_SCMAX) |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7888 | continue; |
| 7889 | |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7890 | if (trule->arg.trk_ctr.table.n) |
| 7891 | target = proxy_tbl_by_name(trule->arg.trk_ctr.table.n); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7892 | else |
| 7893 | target = curproxy; |
| 7894 | |
| 7895 | if (!target) { |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7896 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7897 | curproxy->id, trule->arg.trk_ctr.table.n, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7898 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7899 | cfgerr++; |
| 7900 | } |
| 7901 | else if (target->table.size == 0) { |
| 7902 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7903 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7904 | cfgerr++; |
| 7905 | } |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7906 | else if (!stktable_compatible_sample(trule->arg.trk_ctr.expr, target->table.type)) { |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7907 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7908 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7909 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7910 | cfgerr++; |
| 7911 | } |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7912 | else { |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7913 | free(trule->arg.trk_ctr.table.n); |
| 7914 | trule->arg.trk_ctr.table.t = &target->table; |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7915 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7916 | * to pass a list of counters to track and allocate them right here using |
| 7917 | * stktable_alloc_data_type(). |
| 7918 | */ |
| 7919 | } |
| 7920 | } |
| 7921 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 7922 | /* find the target table for 'tcp-request' layer 5 rules */ |
| 7923 | list_for_each_entry(trule, &curproxy->tcp_req.l5_rules, list) { |
| 7924 | struct proxy *target; |
| 7925 | |
| 7926 | if (trule->action < ACT_ACTION_TRK_SC0 || trule->action > ACT_ACTION_TRK_SCMAX) |
| 7927 | continue; |
| 7928 | |
| 7929 | if (trule->arg.trk_ctr.table.n) |
| 7930 | target = proxy_tbl_by_name(trule->arg.trk_ctr.table.n); |
| 7931 | else |
| 7932 | target = curproxy; |
| 7933 | |
| 7934 | if (!target) { |
| 7935 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 7936 | curproxy->id, trule->arg.trk_ctr.table.n, |
| 7937 | tcp_trk_idx(trule->action)); |
| 7938 | cfgerr++; |
| 7939 | } |
| 7940 | else if (target->table.size == 0) { |
| 7941 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 7942 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id); |
| 7943 | cfgerr++; |
| 7944 | } |
| 7945 | else if (!stktable_compatible_sample(trule->arg.trk_ctr.expr, target->table.type)) { |
| 7946 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 7947 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id, |
| 7948 | tcp_trk_idx(trule->action)); |
| 7949 | cfgerr++; |
| 7950 | } |
| 7951 | else { |
| 7952 | free(trule->arg.trk_ctr.table.n); |
| 7953 | trule->arg.trk_ctr.table.t = &target->table; |
| 7954 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 7955 | * to pass a list of counters to track and allocate them right here using |
| 7956 | * stktable_alloc_data_type(). |
| 7957 | */ |
| 7958 | } |
| 7959 | } |
| 7960 | |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7961 | /* find the target table for 'tcp-request' layer 6 rules */ |
| 7962 | list_for_each_entry(trule, &curproxy->tcp_req.inspect_rules, list) { |
| 7963 | struct proxy *target; |
| 7964 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 7965 | if (trule->action < ACT_ACTION_TRK_SC0 || trule->action > ACT_ACTION_TRK_SCMAX) |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7966 | continue; |
| 7967 | |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7968 | if (trule->arg.trk_ctr.table.n) |
| 7969 | target = proxy_tbl_by_name(trule->arg.trk_ctr.table.n); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7970 | else |
| 7971 | target = curproxy; |
| 7972 | |
| 7973 | if (!target) { |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7974 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7975 | curproxy->id, trule->arg.trk_ctr.table.n, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7976 | tcp_trk_idx(trule->action)); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7977 | cfgerr++; |
| 7978 | } |
| 7979 | else if (target->table.size == 0) { |
| 7980 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7981 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7982 | cfgerr++; |
| 7983 | } |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7984 | else if (!stktable_compatible_sample(trule->arg.trk_ctr.expr, target->table.type)) { |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7985 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7986 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7987 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7988 | cfgerr++; |
| 7989 | } |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7990 | else { |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7991 | free(trule->arg.trk_ctr.table.n); |
| 7992 | trule->arg.trk_ctr.table.t = &target->table; |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7993 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7994 | * to pass a list of counters to track and allocate them right here using |
| 7995 | * stktable_alloc_data_type(). |
| 7996 | */ |
| 7997 | } |
| 7998 | } |
| 7999 | |
Baptiste Assmann | e954493 | 2015-11-03 23:31:35 +0100 | [diff] [blame] | 8000 | /* parse http-request capture rules to ensure id really exists */ |
| 8001 | list_for_each_entry(hrqrule, &curproxy->http_req_rules, list) { |
| 8002 | if (hrqrule->action != ACT_CUSTOM || |
| 8003 | hrqrule->action_ptr != http_action_req_capture_by_id) |
| 8004 | continue; |
| 8005 | |
| 8006 | if (hrqrule->arg.capid.idx >= curproxy->nb_req_cap) { |
| 8007 | Alert("Proxy '%s': unable to find capture id '%d' referenced by http-request capture rule.\n", |
| 8008 | curproxy->id, hrqrule->arg.capid.idx); |
| 8009 | cfgerr++; |
| 8010 | } |
| 8011 | } |
| 8012 | |
| 8013 | /* parse http-response capture rules to ensure id really exists */ |
| 8014 | list_for_each_entry(hrqrule, &curproxy->http_res_rules, list) { |
| 8015 | if (hrqrule->action != ACT_CUSTOM || |
| 8016 | hrqrule->action_ptr != http_action_res_capture_by_id) |
| 8017 | continue; |
| 8018 | |
| 8019 | if (hrqrule->arg.capid.idx >= curproxy->nb_rsp_cap) { |
| 8020 | Alert("Proxy '%s': unable to find capture id '%d' referenced by http-response capture rule.\n", |
| 8021 | curproxy->id, hrqrule->arg.capid.idx); |
| 8022 | cfgerr++; |
| 8023 | } |
| 8024 | } |
| 8025 | |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8026 | /* find the target table for 'http-request' layer 7 rules */ |
| 8027 | list_for_each_entry(hrqrule, &curproxy->http_req_rules, list) { |
| 8028 | struct proxy *target; |
| 8029 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 8030 | if (hrqrule->action < ACT_ACTION_TRK_SC0 || hrqrule->action > ACT_ACTION_TRK_SCMAX) |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8031 | continue; |
| 8032 | |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8033 | if (hrqrule->arg.trk_ctr.table.n) |
| 8034 | target = proxy_tbl_by_name(hrqrule->arg.trk_ctr.table.n); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8035 | else |
| 8036 | target = curproxy; |
| 8037 | |
| 8038 | if (!target) { |
| 8039 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8040 | curproxy->id, hrqrule->arg.trk_ctr.table.n, |
Ruoshan Huang | e4edc6b | 2016-07-14 15:07:45 +0800 | [diff] [blame] | 8041 | http_trk_idx(hrqrule->action)); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8042 | cfgerr++; |
| 8043 | } |
| 8044 | else if (target->table.size == 0) { |
| 8045 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8046 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8047 | cfgerr++; |
| 8048 | } |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8049 | else if (!stktable_compatible_sample(hrqrule->arg.trk_ctr.expr, target->table.type)) { |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8050 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8051 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id, |
Ruoshan Huang | e4edc6b | 2016-07-14 15:07:45 +0800 | [diff] [blame] | 8052 | http_trk_idx(hrqrule->action)); |
| 8053 | cfgerr++; |
| 8054 | } |
| 8055 | else { |
| 8056 | free(hrqrule->arg.trk_ctr.table.n); |
| 8057 | hrqrule->arg.trk_ctr.table.t = &target->table; |
| 8058 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 8059 | * to pass a list of counters to track and allocate them right here using |
| 8060 | * stktable_alloc_data_type(). |
| 8061 | */ |
| 8062 | } |
| 8063 | } |
| 8064 | |
| 8065 | /* find the target table for 'http-response' layer 7 rules */ |
| 8066 | list_for_each_entry(hrqrule, &curproxy->http_res_rules, list) { |
| 8067 | struct proxy *target; |
| 8068 | |
| 8069 | if (hrqrule->action < ACT_ACTION_TRK_SC0 || hrqrule->action > ACT_ACTION_TRK_SCMAX) |
| 8070 | continue; |
| 8071 | |
| 8072 | if (hrqrule->arg.trk_ctr.table.n) |
| 8073 | target = proxy_tbl_by_name(hrqrule->arg.trk_ctr.table.n); |
| 8074 | else |
| 8075 | target = curproxy; |
| 8076 | |
| 8077 | if (!target) { |
| 8078 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 8079 | curproxy->id, hrqrule->arg.trk_ctr.table.n, |
| 8080 | http_trk_idx(hrqrule->action)); |
| 8081 | cfgerr++; |
| 8082 | } |
| 8083 | else if (target->table.size == 0) { |
| 8084 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 8085 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id); |
| 8086 | cfgerr++; |
| 8087 | } |
| 8088 | else if (!stktable_compatible_sample(hrqrule->arg.trk_ctr.expr, target->table.type)) { |
| 8089 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 8090 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id, |
| 8091 | http_trk_idx(hrqrule->action)); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8092 | cfgerr++; |
| 8093 | } |
| 8094 | else { |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8095 | free(hrqrule->arg.trk_ctr.table.n); |
| 8096 | hrqrule->arg.trk_ctr.table.t = &target->table; |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8097 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 8098 | * to pass a list of counters to track and allocate them right here using |
| 8099 | * stktable_alloc_data_type(). |
| 8100 | */ |
| 8101 | } |
| 8102 | } |
| 8103 | |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 8104 | /* move any "block" rules at the beginning of the http-request rules */ |
| 8105 | if (!LIST_ISEMPTY(&curproxy->block_rules)) { |
| 8106 | /* insert block_rules into http_req_rules at the beginning */ |
| 8107 | curproxy->block_rules.p->n = curproxy->http_req_rules.n; |
| 8108 | curproxy->http_req_rules.n->p = curproxy->block_rules.p; |
| 8109 | curproxy->block_rules.n->p = &curproxy->http_req_rules; |
| 8110 | curproxy->http_req_rules.n = curproxy->block_rules.n; |
| 8111 | LIST_INIT(&curproxy->block_rules); |
| 8112 | } |
| 8113 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8114 | if (curproxy->table.peers.name) { |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 8115 | struct peers *curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8116 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 8117 | for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8118 | if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) { |
| 8119 | free((void *)curproxy->table.peers.name); |
Willy Tarreau | 973ca49 | 2013-01-17 21:34:52 +0100 | [diff] [blame] | 8120 | curproxy->table.peers.p = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8121 | break; |
| 8122 | } |
| 8123 | } |
| 8124 | |
| 8125 | if (!curpeers) { |
| 8126 | Alert("Proxy '%s': unable to find sync peers '%s'.\n", |
| 8127 | curproxy->id, curproxy->table.peers.name); |
Willy Tarreau | d66bf96 | 2011-10-28 14:16:49 +0200 | [diff] [blame] | 8128 | free((void *)curproxy->table.peers.name); |
| 8129 | curproxy->table.peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8130 | cfgerr++; |
| 8131 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 8132 | else if (curpeers->state == PR_STSTOPPED) { |
| 8133 | /* silently disable this peers section */ |
| 8134 | curproxy->table.peers.p = NULL; |
| 8135 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8136 | else if (!curpeers->peers_fe) { |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 8137 | Alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n", |
| 8138 | curproxy->id, localpeer, curpeers->id); |
Willy Tarreau | d66bf96 | 2011-10-28 14:16:49 +0200 | [diff] [blame] | 8139 | curproxy->table.peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8140 | cfgerr++; |
| 8141 | } |
| 8142 | } |
| 8143 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 8144 | |
| 8145 | if (curproxy->email_alert.mailers.name) { |
| 8146 | struct mailers *curmailers = mailers; |
| 8147 | |
| 8148 | for (curmailers = mailers; curmailers; curmailers = curmailers->next) { |
| 8149 | if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0) { |
| 8150 | free(curproxy->email_alert.mailers.name); |
| 8151 | curproxy->email_alert.mailers.m = curmailers; |
| 8152 | curmailers->users++; |
| 8153 | break; |
| 8154 | } |
| 8155 | } |
| 8156 | |
| 8157 | if (!curmailers) { |
| 8158 | Alert("Proxy '%s': unable to find mailers '%s'.\n", |
| 8159 | curproxy->id, curproxy->email_alert.mailers.name); |
| 8160 | free_email_alert(curproxy); |
| 8161 | cfgerr++; |
| 8162 | } |
| 8163 | } |
| 8164 | |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 8165 | if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) && |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8166 | !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8167 | (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) { |
| 8168 | Alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n", |
| 8169 | "proxy", curproxy->id); |
| 8170 | cfgerr++; |
| 8171 | goto out_uri_auth_compat; |
| 8172 | } |
| 8173 | |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 8174 | if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8175 | const char *uri_auth_compat_req[10]; |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 8176 | struct act_rule *rule; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8177 | int i = 0; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8178 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8179 | /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */ |
| 8180 | uri_auth_compat_req[i++] = "auth"; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8181 | |
| 8182 | if (curproxy->uri_auth->auth_realm) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8183 | uri_auth_compat_req[i++] = "realm"; |
| 8184 | uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm; |
| 8185 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8186 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8187 | uri_auth_compat_req[i++] = "unless"; |
| 8188 | uri_auth_compat_req[i++] = "{"; |
| 8189 | uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)"; |
| 8190 | uri_auth_compat_req[i++] = "}"; |
| 8191 | uri_auth_compat_req[i++] = ""; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8192 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8193 | rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy); |
| 8194 | if (!rule) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8195 | cfgerr++; |
| 8196 | break; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8197 | } |
| 8198 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8199 | LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8200 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8201 | if (curproxy->uri_auth->auth_realm) { |
| 8202 | free(curproxy->uri_auth->auth_realm); |
| 8203 | curproxy->uri_auth->auth_realm = NULL; |
| 8204 | } |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 8205 | |
| 8206 | curproxy->uri_auth->flags |= ST_CONVDONE; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8207 | } |
| 8208 | out_uri_auth_compat: |
| 8209 | |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 8210 | /* check whether we have a log server that uses RFC5424 log format */ |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8211 | list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) { |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 8212 | if (tmplogsrv->format == LOG_FORMAT_RFC5424) { |
| 8213 | if (!curproxy->conf.logformat_sd_string) { |
| 8214 | /* set the default logformat_sd_string */ |
| 8215 | curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format; |
| 8216 | } |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8217 | break; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8218 | } |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8219 | } |
Dragan Dosen | 68d2e3a | 2015-09-19 22:35:44 +0200 | [diff] [blame] | 8220 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8221 | /* compile the log format */ |
| 8222 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8223 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 8224 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 8225 | curproxy->conf.logformat_string != clf_http_log_format) |
| 8226 | free(curproxy->conf.logformat_string); |
| 8227 | curproxy->conf.logformat_string = NULL; |
| 8228 | free(curproxy->conf.lfs_file); |
| 8229 | curproxy->conf.lfs_file = NULL; |
| 8230 | curproxy->conf.lfs_line = 0; |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8231 | |
| 8232 | if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 8233 | free(curproxy->conf.logformat_sd_string); |
| 8234 | curproxy->conf.logformat_sd_string = NULL; |
| 8235 | free(curproxy->conf.lfsd_file); |
| 8236 | curproxy->conf.lfsd_file = NULL; |
| 8237 | curproxy->conf.lfsd_line = 0; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8238 | } |
| 8239 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8240 | if (curproxy->conf.logformat_string) { |
| 8241 | curproxy->conf.args.ctx = ARGC_LOG; |
| 8242 | curproxy->conf.args.file = curproxy->conf.lfs_file; |
| 8243 | curproxy->conf.args.line = curproxy->conf.lfs_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8244 | err = NULL; |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8245 | 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] | 8246 | SMP_VAL_FE_LOG_END, &err)) { |
| 8247 | Alert("Parsing [%s:%d]: failed to parse log-format : %s.\n", |
| 8248 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
| 8249 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8250 | cfgerr++; |
| 8251 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8252 | curproxy->conf.args.file = NULL; |
| 8253 | curproxy->conf.args.line = 0; |
| 8254 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8255 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8256 | if (curproxy->conf.logformat_sd_string) { |
| 8257 | curproxy->conf.args.ctx = ARGC_LOGSD; |
| 8258 | curproxy->conf.args.file = curproxy->conf.lfsd_file; |
| 8259 | curproxy->conf.args.line = curproxy->conf.lfsd_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8260 | err = NULL; |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8261 | 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] | 8262 | SMP_VAL_FE_LOG_END, &err)) { |
| 8263 | Alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n", |
| 8264 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
| 8265 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8266 | cfgerr++; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8267 | } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) { |
| 8268 | Alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n", |
| 8269 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
| 8270 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8271 | cfgerr++; |
| 8272 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8273 | curproxy->conf.args.file = NULL; |
| 8274 | curproxy->conf.args.line = 0; |
| 8275 | } |
| 8276 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8277 | if (curproxy->conf.uniqueid_format_string) { |
| 8278 | curproxy->conf.args.ctx = ARGC_UIF; |
| 8279 | curproxy->conf.args.file = curproxy->conf.uif_file; |
| 8280 | curproxy->conf.args.line = curproxy->conf.uif_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8281 | err = NULL; |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8282 | 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] | 8283 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) { |
| 8284 | Alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n", |
| 8285 | curproxy->conf.uif_file, curproxy->conf.uif_line, err); |
| 8286 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8287 | cfgerr++; |
| 8288 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8289 | curproxy->conf.args.file = NULL; |
| 8290 | curproxy->conf.args.line = 0; |
| 8291 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8292 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 8293 | /* only now we can check if some args remain unresolved. |
| 8294 | * This must be done after the users and groups resolution. |
| 8295 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8296 | cfgerr += smp_resolve_args(curproxy); |
| 8297 | if (!cfgerr) |
| 8298 | cfgerr += acl_find_targets(curproxy); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8299 | |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 8300 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8301 | (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) || |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 8302 | ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) && |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 8303 | (!curproxy->timeout.connect || |
| 8304 | (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8305 | Warning("config : missing timeouts for %s '%s'.\n" |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 8306 | " | While not properly invalid, you will certainly encounter various problems\n" |
| 8307 | " | with such a configuration. To fix this, please ensure that all following\n" |
Willy Tarreau | 0f68eac | 2008-01-20 23:25:06 +0100 | [diff] [blame] | 8308 | " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n", |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8309 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 8310 | err_code |= ERR_WARN; |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 8311 | } |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 8312 | |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8313 | /* Historically, the tarpit and queue timeouts were inherited from contimeout. |
| 8314 | * We must still support older configurations, so let's find out whether those |
| 8315 | * parameters have been set or must be copied from contimeouts. |
| 8316 | */ |
| 8317 | if (curproxy != &defproxy) { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8318 | if (!curproxy->timeout.tarpit || |
| 8319 | curproxy->timeout.tarpit == defproxy.timeout.tarpit) { |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8320 | /* tarpit timeout not set. We search in the following order: |
| 8321 | * default.tarpit, curr.connect, default.connect. |
| 8322 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8323 | if (defproxy.timeout.tarpit) |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8324 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8325 | else if (curproxy->timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8326 | curproxy->timeout.tarpit = curproxy->timeout.connect; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8327 | else if (defproxy.timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8328 | curproxy->timeout.tarpit = defproxy.timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8329 | } |
| 8330 | if ((curproxy->cap & PR_CAP_BE) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8331 | (!curproxy->timeout.queue || |
| 8332 | curproxy->timeout.queue == defproxy.timeout.queue)) { |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8333 | /* queue timeout not set. We search in the following order: |
| 8334 | * default.queue, curr.connect, default.connect. |
| 8335 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8336 | if (defproxy.timeout.queue) |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8337 | curproxy->timeout.queue = defproxy.timeout.queue; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8338 | else if (curproxy->timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8339 | curproxy->timeout.queue = curproxy->timeout.connect; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8340 | else if (defproxy.timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8341 | curproxy->timeout.queue = defproxy.timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8342 | } |
| 8343 | } |
| 8344 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 8345 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) { |
Willy Tarreau | 137325d | 2010-02-01 16:38:17 +0100 | [diff] [blame] | 8346 | curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 8347 | curproxy->check_req = malloc(curproxy->check_len); |
Willy Tarreau | 137325d | 2010-02-01 16:38:17 +0100 | [diff] [blame] | 8348 | memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len); |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 8349 | } |
| 8350 | |
Willy Tarreau | 215663d | 2014-06-13 18:30:23 +0200 | [diff] [blame] | 8351 | if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) && |
| 8352 | (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) { |
| 8353 | Warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n", |
| 8354 | proxy_type_str(curproxy), curproxy->id); |
| 8355 | err_code |= ERR_WARN; |
| 8356 | } |
| 8357 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 8358 | /* ensure that cookie capture length is not too large */ |
| 8359 | if (curproxy->capture_len >= global.tune.cookie_len) { |
| 8360 | Warning("config : truncating capture length to %d bytes for %s '%s'.\n", |
| 8361 | global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id); |
| 8362 | err_code |= ERR_WARN; |
| 8363 | curproxy->capture_len = global.tune.cookie_len - 1; |
| 8364 | } |
| 8365 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 8366 | /* The small pools required for the capture lists */ |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 8367 | if (curproxy->nb_req_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 8368 | curproxy->req_cap_pool = create_pool("ptrcap", |
| 8369 | curproxy->nb_req_cap * sizeof(char *), |
| 8370 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 8371 | } |
| 8372 | |
| 8373 | if (curproxy->nb_rsp_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 8374 | curproxy->rsp_cap_pool = create_pool("ptrcap", |
| 8375 | curproxy->nb_rsp_cap * sizeof(char *), |
| 8376 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 8377 | } |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 8378 | |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 8379 | switch (curproxy->load_server_state_from_file) { |
| 8380 | case PR_SRV_STATE_FILE_UNSPEC: |
| 8381 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE; |
| 8382 | break; |
| 8383 | case PR_SRV_STATE_FILE_GLOBAL: |
| 8384 | if (!global.server_state_file) { |
| 8385 | 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", |
| 8386 | curproxy->id); |
| 8387 | err_code |= ERR_WARN; |
| 8388 | } |
| 8389 | break; |
| 8390 | } |
| 8391 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8392 | /* first, we will invert the servers list order */ |
| 8393 | newsrv = NULL; |
| 8394 | while (curproxy->srv) { |
| 8395 | struct server *next; |
| 8396 | |
| 8397 | next = curproxy->srv->next; |
| 8398 | curproxy->srv->next = newsrv; |
| 8399 | newsrv = curproxy->srv; |
| 8400 | if (!next) |
| 8401 | break; |
| 8402 | curproxy->srv = next; |
| 8403 | } |
| 8404 | |
Willy Tarreau | 17edc81 | 2014-01-03 12:14:34 +0100 | [diff] [blame] | 8405 | /* Check that no server name conflicts. This causes trouble in the stats. |
| 8406 | * We only emit a warning for the first conflict affecting each server, |
| 8407 | * in order to avoid combinatory explosion if all servers have the same |
| 8408 | * name. We do that only for servers which do not have an explicit ID, |
| 8409 | * because these IDs were made also for distinguishing them and we don't |
| 8410 | * want to annoy people who correctly manage them. |
| 8411 | */ |
| 8412 | for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) { |
| 8413 | struct server *other_srv; |
| 8414 | |
| 8415 | if (newsrv->puid) |
| 8416 | continue; |
| 8417 | |
| 8418 | for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) { |
| 8419 | if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) { |
| 8420 | Warning("parsing [%s:%d] : %s '%s', another server named '%s' was defined without an explicit ID at line %d, this is not recommended.\n", |
| 8421 | newsrv->conf.file, newsrv->conf.line, |
| 8422 | proxy_type_str(curproxy), curproxy->id, |
| 8423 | newsrv->id, other_srv->conf.line); |
| 8424 | break; |
| 8425 | } |
| 8426 | } |
| 8427 | } |
| 8428 | |
Willy Tarreau | dd70165 | 2010-05-25 23:03:02 +0200 | [diff] [blame] | 8429 | /* assign automatic UIDs to servers which don't have one yet */ |
| 8430 | next_id = 1; |
| 8431 | newsrv = curproxy->srv; |
| 8432 | while (newsrv != NULL) { |
| 8433 | if (!newsrv->puid) { |
| 8434 | /* server ID not set, use automatic numbering with first |
| 8435 | * spare entry starting with next_svid. |
| 8436 | */ |
| 8437 | next_id = get_next_id(&curproxy->conf.used_server_id, next_id); |
| 8438 | newsrv->conf.id.key = newsrv->puid = next_id; |
| 8439 | eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id); |
| 8440 | } |
| 8441 | next_id++; |
| 8442 | newsrv = newsrv->next; |
| 8443 | } |
| 8444 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 8445 | curproxy->lbprm.wmult = 1; /* default weight multiplier */ |
Willy Tarreau | 5dc2fa6 | 2007-11-19 19:10:18 +0100 | [diff] [blame] | 8446 | curproxy->lbprm.wdiv = 1; /* default weight divider */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8447 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8448 | /* |
| 8449 | * If this server supports a maxconn parameter, it needs a dedicated |
| 8450 | * tasks to fill the emptied slots when a connection leaves. |
| 8451 | * Also, resolve deferred tracking dependency if needed. |
| 8452 | */ |
| 8453 | newsrv = curproxy->srv; |
| 8454 | while (newsrv != NULL) { |
| 8455 | if (newsrv->minconn > newsrv->maxconn) { |
| 8456 | /* Only 'minconn' was specified, or it was higher than or equal |
| 8457 | * to 'maxconn'. Let's turn this into maxconn and clean it, as |
| 8458 | * this will avoid further useless expensive computations. |
| 8459 | */ |
| 8460 | newsrv->maxconn = newsrv->minconn; |
| 8461 | } else if (newsrv->maxconn && !newsrv->minconn) { |
| 8462 | /* minconn was not specified, so we set it to maxconn */ |
| 8463 | newsrv->minconn = newsrv->maxconn; |
| 8464 | } |
| 8465 | |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 8466 | /* this will also properly set the transport layer for prod and checks */ |
| 8467 | if (newsrv->use_ssl || newsrv->check.use_ssl) { |
| 8468 | if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) |
| 8469 | cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv); |
| 8470 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 8471 | |
Willy Tarreau | 2f075e9 | 2013-12-03 11:11:34 +0100 | [diff] [blame] | 8472 | /* set the check type on the server */ |
| 8473 | newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY; |
| 8474 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8475 | if (newsrv->trackit) { |
| 8476 | struct proxy *px; |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8477 | struct server *srv, *loop; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8478 | char *pname, *sname; |
| 8479 | |
| 8480 | pname = newsrv->trackit; |
| 8481 | sname = strrchr(pname, '/'); |
| 8482 | |
| 8483 | if (sname) |
| 8484 | *sname++ = '\0'; |
| 8485 | else { |
| 8486 | sname = pname; |
| 8487 | pname = NULL; |
| 8488 | } |
| 8489 | |
| 8490 | if (pname) { |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 8491 | px = proxy_be_by_name(pname); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8492 | if (!px) { |
| 8493 | Alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n", |
| 8494 | proxy_type_str(curproxy), curproxy->id, |
| 8495 | newsrv->id, pname); |
| 8496 | cfgerr++; |
| 8497 | goto next_srv; |
| 8498 | } |
| 8499 | } else |
| 8500 | px = curproxy; |
| 8501 | |
| 8502 | srv = findserver(px, sname); |
| 8503 | if (!srv) { |
| 8504 | Alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n", |
| 8505 | proxy_type_str(curproxy), curproxy->id, |
| 8506 | newsrv->id, sname); |
| 8507 | cfgerr++; |
| 8508 | goto next_srv; |
| 8509 | } |
| 8510 | |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8511 | if (!(srv->check.state & CHK_ST_CONFIGURED) && |
| 8512 | !(srv->agent.state & CHK_ST_CONFIGURED) && |
| 8513 | !srv->track && !srv->trackit) { |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8514 | Alert("config : %s '%s', server '%s': unable to use %s/%s for " |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8515 | "tracking as it does not have any check nor agent enabled.\n", |
| 8516 | proxy_type_str(curproxy), curproxy->id, |
| 8517 | newsrv->id, px->id, srv->id); |
| 8518 | cfgerr++; |
| 8519 | goto next_srv; |
| 8520 | } |
| 8521 | |
| 8522 | for (loop = srv->track; loop && loop != newsrv; loop = loop->track); |
| 8523 | |
Frédéric Lécaille | 2efc649 | 2017-03-14 14:32:17 +0100 | [diff] [blame] | 8524 | if (newsrv == srv || loop) { |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8525 | Alert("config : %s '%s', server '%s': unable to track %s/%s as it " |
| 8526 | "belongs to a tracking chain looping back to %s/%s.\n", |
| 8527 | proxy_type_str(curproxy), curproxy->id, |
Frédéric Lécaille | 2efc649 | 2017-03-14 14:32:17 +0100 | [diff] [blame] | 8528 | newsrv->id, px->id, srv->id, px->id, |
| 8529 | newsrv == srv ? srv->id : loop->id); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8530 | cfgerr++; |
| 8531 | goto next_srv; |
| 8532 | } |
| 8533 | |
| 8534 | if (curproxy != px && |
| 8535 | (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) { |
| 8536 | Alert("config : %s '%s', server '%s': unable to use %s/%s for" |
| 8537 | "tracking: disable-on-404 option inconsistency.\n", |
| 8538 | proxy_type_str(curproxy), curproxy->id, |
| 8539 | newsrv->id, px->id, srv->id); |
| 8540 | cfgerr++; |
| 8541 | goto next_srv; |
| 8542 | } |
| 8543 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8544 | newsrv->track = srv; |
Willy Tarreau | 1a53a3a | 2013-12-11 15:27:05 +0100 | [diff] [blame] | 8545 | newsrv->tracknext = srv->trackers; |
| 8546 | srv->trackers = newsrv; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8547 | |
| 8548 | free(newsrv->trackit); |
| 8549 | newsrv->trackit = NULL; |
| 8550 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 8551 | |
| 8552 | /* |
| 8553 | * resolve server's resolvers name and update the resolvers pointer |
| 8554 | * accordingly |
| 8555 | */ |
| 8556 | if (newsrv->resolvers_id) { |
| 8557 | struct dns_resolvers *curr_resolvers; |
| 8558 | int found; |
| 8559 | |
| 8560 | found = 0; |
| 8561 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 8562 | if (!strcmp(curr_resolvers->id, newsrv->resolvers_id)) { |
| 8563 | found = 1; |
| 8564 | break; |
| 8565 | } |
| 8566 | } |
| 8567 | |
| 8568 | if (!found) { |
| 8569 | Alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n", |
| 8570 | proxy_type_str(curproxy), curproxy->id, |
| 8571 | newsrv->id, newsrv->resolvers_id); |
| 8572 | cfgerr++; |
| 8573 | } else { |
Olivier Houchard | 8da5f98 | 2017-08-04 18:35:36 +0200 | [diff] [blame] | 8574 | if (newsrv->srvrq) { |
| 8575 | if (!newsrv->srvrq->resolvers) { |
| 8576 | newsrv->srvrq->resolvers = curr_resolvers; |
| 8577 | if (dns_link_resolution(newsrv->srvrq, |
| 8578 | OBJ_TYPE_SRVRQ, NULL) != 0) { |
| 8579 | Alert("config : %s '%s', server '%s': unable to set DNS resolution\n", |
| 8580 | proxy_type_str(curproxy), curproxy->id, |
| 8581 | newsrv->id); |
| 8582 | cfgerr++; |
| 8583 | } |
| 8584 | } |
| 8585 | |
| 8586 | } |
| 8587 | if (newsrv->srvrq || newsrv->hostname_dn) { |
Baptiste Assmann | 4274637 | 2017-05-03 12:12:02 +0200 | [diff] [blame] | 8588 | newsrv->resolvers = curr_resolvers; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 8589 | if (dns_link_resolution(newsrv, OBJ_TYPE_SERVER, NULL) != 0) { |
| 8590 | Alert("config : %s '%s', server '%s': unable to set DNS resolution\n", |
| 8591 | proxy_type_str(curproxy), curproxy->id, |
| 8592 | newsrv->id); |
| 8593 | cfgerr++; |
| 8594 | } |
| 8595 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 8596 | } |
| 8597 | } |
| 8598 | else { |
| 8599 | /* if no resolvers section associated to this server |
| 8600 | * we can clean up the associated resolution structure |
| 8601 | */ |
| 8602 | if (newsrv->resolution) { |
| 8603 | free(newsrv->resolution->hostname_dn); |
| 8604 | newsrv->resolution->hostname_dn = NULL; |
| 8605 | free(newsrv->resolution); |
| 8606 | newsrv->resolution = NULL; |
| 8607 | } |
| 8608 | } |
| 8609 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8610 | next_srv: |
| 8611 | newsrv = newsrv->next; |
| 8612 | } |
| 8613 | |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 8614 | /* |
| 8615 | * Try to generate dynamic cookies for servers now. |
| 8616 | * It couldn't be done earlier, since at the time we parsed |
| 8617 | * the server line, we may not have known yet that we |
| 8618 | * should use dynamic cookies, or the secret key may not |
| 8619 | * have been provided yet. |
| 8620 | */ |
| 8621 | if (curproxy->ck_opts & PR_CK_DYNAMIC) { |
| 8622 | newsrv = curproxy->srv; |
| 8623 | while (newsrv != NULL) { |
| 8624 | srv_set_dyncookie(newsrv); |
| 8625 | newsrv = newsrv->next; |
| 8626 | } |
| 8627 | |
| 8628 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8629 | /* We have to initialize the server lookup mechanism depending |
| 8630 | * on what LB algorithm was choosen. |
| 8631 | */ |
| 8632 | |
| 8633 | curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN); |
| 8634 | switch (curproxy->lbprm.algo & BE_LB_KIND) { |
| 8635 | case BE_LB_KIND_RR: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 8636 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) { |
| 8637 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 8638 | init_server_map(curproxy); |
| 8639 | } else { |
| 8640 | curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN; |
| 8641 | fwrr_init_server_groups(curproxy); |
| 8642 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8643 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8644 | |
Willy Tarreau | 3ebb116 | 2012-02-13 16:57:44 +0100 | [diff] [blame] | 8645 | case BE_LB_KIND_CB: |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 8646 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) { |
| 8647 | curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN; |
| 8648 | fwlc_init_server_tree(curproxy); |
| 8649 | } else { |
| 8650 | curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN; |
| 8651 | fas_init_server_tree(curproxy); |
| 8652 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8653 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8654 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8655 | case BE_LB_KIND_HI: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8656 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) { |
| 8657 | curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN; |
| 8658 | chash_init_server_tree(curproxy); |
| 8659 | } else { |
| 8660 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 8661 | init_server_map(curproxy); |
| 8662 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8663 | break; |
| 8664 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8665 | |
| 8666 | if (curproxy->options & PR_O_LOGASAP) |
| 8667 | curproxy->to_log &= ~LW_BYTES; |
| 8668 | |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 8669 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8670 | (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) && |
| 8671 | (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) { |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 8672 | Warning("config : log format ignored for %s '%s' since it has no log address.\n", |
| 8673 | proxy_type_str(curproxy), curproxy->id); |
| 8674 | err_code |= ERR_WARN; |
| 8675 | } |
| 8676 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8677 | if (curproxy->mode != PR_MODE_HTTP) { |
| 8678 | int optnum; |
| 8679 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8680 | if (curproxy->uri_auth) { |
| 8681 | Warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 8682 | proxy_type_str(curproxy), curproxy->id); |
| 8683 | err_code |= ERR_WARN; |
| 8684 | curproxy->uri_auth = NULL; |
| 8685 | } |
| 8686 | |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 8687 | if (curproxy->capture_name) { |
| 8688 | Warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 8689 | proxy_type_str(curproxy), curproxy->id); |
| 8690 | err_code |= ERR_WARN; |
| 8691 | } |
| 8692 | |
| 8693 | if (!LIST_ISEMPTY(&curproxy->http_req_rules)) { |
| 8694 | Warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8695 | proxy_type_str(curproxy), curproxy->id); |
| 8696 | err_code |= ERR_WARN; |
| 8697 | } |
| 8698 | |
| 8699 | if (!LIST_ISEMPTY(&curproxy->http_res_rules)) { |
| 8700 | Warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8701 | proxy_type_str(curproxy), curproxy->id); |
| 8702 | err_code |= ERR_WARN; |
| 8703 | } |
| 8704 | |
| 8705 | if (!LIST_ISEMPTY(&curproxy->block_rules)) { |
| 8706 | Warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8707 | proxy_type_str(curproxy), curproxy->id); |
| 8708 | err_code |= ERR_WARN; |
| 8709 | } |
| 8710 | |
| 8711 | if (!LIST_ISEMPTY(&curproxy->redirect_rules)) { |
| 8712 | Warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8713 | proxy_type_str(curproxy), curproxy->id); |
| 8714 | err_code |= ERR_WARN; |
| 8715 | } |
| 8716 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 8717 | if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8718 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8719 | "forwardfor", proxy_type_str(curproxy), curproxy->id); |
| 8720 | err_code |= ERR_WARN; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 8721 | curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8722 | } |
| 8723 | |
| 8724 | if (curproxy->options & PR_O_ORGTO) { |
| 8725 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8726 | "originalto", proxy_type_str(curproxy), curproxy->id); |
| 8727 | err_code |= ERR_WARN; |
| 8728 | curproxy->options &= ~PR_O_ORGTO; |
| 8729 | } |
| 8730 | |
| 8731 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 8732 | if (cfg_opts[optnum].mode == PR_MODE_HTTP && |
| 8733 | (curproxy->cap & cfg_opts[optnum].cap) && |
| 8734 | (curproxy->options & cfg_opts[optnum].val)) { |
| 8735 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8736 | cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id); |
| 8737 | err_code |= ERR_WARN; |
| 8738 | curproxy->options &= ~cfg_opts[optnum].val; |
| 8739 | } |
| 8740 | } |
| 8741 | |
| 8742 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 8743 | if (cfg_opts2[optnum].mode == PR_MODE_HTTP && |
| 8744 | (curproxy->cap & cfg_opts2[optnum].cap) && |
| 8745 | (curproxy->options2 & cfg_opts2[optnum].val)) { |
| 8746 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8747 | cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id); |
| 8748 | err_code |= ERR_WARN; |
| 8749 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 8750 | } |
| 8751 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8752 | |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 8753 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8754 | if (curproxy->conn_src.bind_hdr_occ) { |
| 8755 | curproxy->conn_src.bind_hdr_occ = 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8756 | Warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n", |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8757 | proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8758 | err_code |= ERR_WARN; |
| 8759 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 8760 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8761 | } |
| 8762 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8763 | /* |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8764 | * ensure that we're not cross-dressing a TCP server into HTTP. |
| 8765 | */ |
| 8766 | newsrv = curproxy->srv; |
| 8767 | while (newsrv != NULL) { |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 8768 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8769 | Alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n", |
| 8770 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 8771 | cfgerr++; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8772 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8773 | |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 8774 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) { |
| 8775 | Warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n", |
| 8776 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8777 | err_code |= ERR_WARN; |
| 8778 | } |
| 8779 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 8780 | if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) { |
Willy Tarreau | 82ffa39 | 2013-08-13 17:19:08 +0200 | [diff] [blame] | 8781 | Warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n", |
| 8782 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8783 | err_code |= ERR_WARN; |
| 8784 | } |
| 8785 | |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 8786 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8787 | if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) { |
| 8788 | newsrv->conn_src.bind_hdr_occ = 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8789 | Warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n", |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8790 | 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] | 8791 | err_code |= ERR_WARN; |
| 8792 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 8793 | #endif |
Willy Tarreau | 4c18346 | 2017-01-06 12:21:38 +0100 | [diff] [blame] | 8794 | |
| 8795 | if ((curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) { |
| 8796 | if ((curproxy->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CLI || |
| 8797 | (curproxy->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CIP || |
| 8798 | (newsrv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CLI || |
| 8799 | (newsrv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CIP) { |
| 8800 | Warning("config : %s '%s' : connections to server '%s' use the client's IP address as the source while http-reuse is enabled and allows the same connection to be shared between multiple clients. It is strongly advised to disable 'usesrc' and to use the 'forwardfor' option instead.\n", |
| 8801 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8802 | err_code |= ERR_WARN; |
| 8803 | } |
| 8804 | |
| 8805 | |
| 8806 | if (newsrv->pp_opts & (SRV_PP_V1|SRV_PP_V2)) { |
| 8807 | Warning("config : %s '%s' : connections to server '%s' will have a PROXY protocol header announcing the first client's IP address while http-reuse is enabled and allows the same connection to be shared between multiple clients. It is strongly advised to disable 'send-proxy' and to use the 'forwardfor' option instead.\n", |
| 8808 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8809 | err_code |= ERR_WARN; |
| 8810 | } |
| 8811 | } |
| 8812 | |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8813 | newsrv = newsrv->next; |
| 8814 | } |
| 8815 | |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8816 | /* check if we have a frontend with "tcp-request content" looking at L7 |
| 8817 | * with no inspect-delay |
| 8818 | */ |
| 8819 | if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) { |
| 8820 | list_for_each_entry(trule, &curproxy->tcp_req.inspect_rules, list) { |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 8821 | if (trule->action == ACT_TCP_CAPTURE && |
Thierry FOURNIER | d0d65ae | 2015-08-04 08:21:12 +0200 | [diff] [blame] | 8822 | !(trule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC)) |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8823 | break; |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 8824 | if ((trule->action >= ACT_ACTION_TRK_SC0 && trule->action <= ACT_ACTION_TRK_SCMAX) && |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8825 | !(trule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8826 | break; |
| 8827 | } |
| 8828 | |
| 8829 | if (&trule->list != &curproxy->tcp_req.inspect_rules) { |
| 8830 | Warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request" |
| 8831 | " contents were found in a frontend without any 'tcp-request inspect-delay' setting." |
| 8832 | " This means that these rules will randomly find their contents. This can be fixed by" |
| 8833 | " setting the tcp-request inspect-delay.\n", |
| 8834 | proxy_type_str(curproxy), curproxy->id); |
| 8835 | err_code |= ERR_WARN; |
| 8836 | } |
| 8837 | } |
| 8838 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8839 | /* Check filter configuration, if any */ |
| 8840 | cfgerr += flt_check(curproxy); |
| 8841 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8842 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 8843 | if (!curproxy->accept) |
| 8844 | curproxy->accept = frontend_accept; |
Willy Tarreau | 81f9aa3 | 2010-06-01 17:45:26 +0200 | [diff] [blame] | 8845 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8846 | if (curproxy->tcp_req.inspect_delay || |
| 8847 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 8848 | curproxy->fe_req_ana |= AN_REQ_INSPECT_FE; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8849 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 8850 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8851 | 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] | 8852 | 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] | 8853 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8854 | |
| 8855 | /* both TCP and HTTP must check switching rules */ |
| 8856 | curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8857 | |
| 8858 | /* Add filters analyzers if needed */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 8859 | if (!LIST_ISEMPTY(&curproxy->filter_configs)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8860 | curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END; |
| 8861 | 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] | 8862 | if (curproxy->mode == PR_MODE_HTTP) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8863 | curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS; |
| 8864 | curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 8865 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8866 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8867 | } |
| 8868 | |
| 8869 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 8870 | if (curproxy->tcp_req.inspect_delay || |
| 8871 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
| 8872 | curproxy->be_req_ana |= AN_REQ_INSPECT_BE; |
| 8873 | |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 8874 | if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules)) |
| 8875 | curproxy->be_rsp_ana |= AN_RES_INSPECT; |
| 8876 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 8877 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8878 | 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] | 8879 | 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] | 8880 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8881 | |
| 8882 | /* If the backend does requires RDP cookie persistence, we have to |
| 8883 | * enable the corresponding analyser. |
| 8884 | */ |
| 8885 | if (curproxy->options2 & PR_O2_RDPC_PRST) |
| 8886 | curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8887 | |
| 8888 | /* Add filters analyzers if needed */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 8889 | if (!LIST_ISEMPTY(&curproxy->filter_configs)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8890 | curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END; |
| 8891 | 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] | 8892 | if (curproxy->mode == PR_MODE_HTTP) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8893 | curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS; |
| 8894 | curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 8895 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8896 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8897 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8898 | } |
| 8899 | |
| 8900 | /***********************************************************/ |
| 8901 | /* At this point, target names have already been resolved. */ |
| 8902 | /***********************************************************/ |
| 8903 | |
| 8904 | /* Check multi-process mode compatibility */ |
| 8905 | |
| 8906 | if (global.nbproc > 1 && global.stats_fe) { |
| 8907 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 8908 | unsigned long mask; |
| 8909 | |
| 8910 | mask = nbits(global.nbproc); |
| 8911 | if (global.stats_fe->bind_proc) |
| 8912 | mask &= global.stats_fe->bind_proc; |
| 8913 | |
| 8914 | if (bind_conf->bind_proc) |
| 8915 | mask &= bind_conf->bind_proc; |
| 8916 | |
| 8917 | /* stop here if more than one process is used */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8918 | if (my_popcountl(mask) > 1) |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8919 | break; |
| 8920 | } |
| 8921 | if (&bind_conf->by_fe != &global.stats_fe->conf.bind) { |
| 8922 | 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"); |
| 8923 | } |
| 8924 | } |
| 8925 | |
| 8926 | /* Make each frontend inherit bind-process from its listeners when not specified. */ |
| 8927 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8928 | if (curproxy->bind_proc) |
| 8929 | continue; |
| 8930 | |
| 8931 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 8932 | unsigned long mask; |
| 8933 | |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8934 | mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8935 | curproxy->bind_proc |= mask; |
| 8936 | } |
| 8937 | |
| 8938 | if (!curproxy->bind_proc) |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8939 | curproxy->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8940 | } |
| 8941 | |
| 8942 | if (global.stats_fe) { |
| 8943 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 8944 | unsigned long mask; |
| 8945 | |
Cyril Bonté | 0618195 | 2016-02-24 00:14:54 +0100 | [diff] [blame] | 8946 | mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0; |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8947 | global.stats_fe->bind_proc |= mask; |
| 8948 | } |
| 8949 | if (!global.stats_fe->bind_proc) |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8950 | global.stats_fe->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8951 | } |
| 8952 | |
Willy Tarreau | acbe8ab | 2014-10-01 20:50:17 +0200 | [diff] [blame] | 8953 | /* propagate bindings from frontends to backends. Don't do it if there |
| 8954 | * are any fatal errors as we must not call it with unresolved proxies. |
| 8955 | */ |
| 8956 | if (!cfgerr) { |
| 8957 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8958 | if (curproxy->cap & PR_CAP_FE) |
| 8959 | propagate_processes(curproxy, NULL); |
| 8960 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8961 | } |
| 8962 | |
| 8963 | /* Bind each unbound backend to all processes when not specified. */ |
| 8964 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8965 | if (curproxy->bind_proc) |
| 8966 | continue; |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8967 | curproxy->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8968 | } |
| 8969 | |
| 8970 | /*******************************************************/ |
| 8971 | /* At this step, all proxies have a non-null bind_proc */ |
| 8972 | /*******************************************************/ |
| 8973 | |
| 8974 | /* perform the final checks before creating tasks */ |
| 8975 | |
| 8976 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8977 | struct listener *listener; |
| 8978 | unsigned int next_id; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8979 | |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8980 | /* Configure SSL for each bind line. |
| 8981 | * Note: if configuration fails at some point, the ->ctx member |
| 8982 | * remains NULL so that listeners can later detach. |
| 8983 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8984 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 8985 | if (bind_conf->xprt->prepare_bind_conf && |
| 8986 | bind_conf->xprt->prepare_bind_conf(bind_conf) < 0) |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8987 | cfgerr++; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8988 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8989 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 8990 | /* adjust this proxy's listeners */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8991 | next_id = 1; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8992 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 8993 | int nbproc; |
| 8994 | |
| 8995 | nbproc = my_popcountl(curproxy->bind_proc & |
Cyril Bonté | 4920d70 | 2016-04-15 07:58:43 +0200 | [diff] [blame] | 8996 | (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) & |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 8997 | nbits(global.nbproc)); |
| 8998 | |
| 8999 | if (!nbproc) /* no intersection between listener and frontend */ |
| 9000 | nbproc = 1; |
| 9001 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 9002 | if (!listener->luid) { |
| 9003 | /* listener ID not set, use automatic numbering with first |
| 9004 | * spare entry starting with next_luid. |
| 9005 | */ |
| 9006 | next_id = get_next_id(&curproxy->conf.used_listener_id, next_id); |
| 9007 | listener->conf.id.key = listener->luid = next_id; |
| 9008 | eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 9009 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 9010 | next_id++; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 9011 | |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 9012 | /* enable separate counters */ |
| 9013 | if (curproxy->options2 & PR_O2_SOCKSTAT) { |
Willy Tarreau | ae9bea0 | 2016-11-25 14:44:52 +0100 | [diff] [blame] | 9014 | listener->counters = calloc(1, sizeof(*listener->counters)); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 9015 | if (!listener->name) |
| 9016 | memprintf(&listener->name, "sock-%d", listener->luid); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 9017 | } |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 9018 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 9019 | if (curproxy->options & PR_O_TCP_NOLING) |
| 9020 | listener->options |= LI_O_NOLINGER; |
Willy Tarreau | 32368ce | 2012-09-06 11:10:55 +0200 | [diff] [blame] | 9021 | if (!listener->maxconn) |
| 9022 | listener->maxconn = curproxy->maxconn; |
| 9023 | if (!listener->backlog) |
| 9024 | listener->backlog = curproxy->backlog; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 9025 | if (!listener->maxaccept) |
| 9026 | listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64; |
| 9027 | |
| 9028 | /* we want to have an optimal behaviour on single process mode to |
| 9029 | * maximize the work at once, but in multi-process we want to keep |
| 9030 | * some fairness between processes, so we target half of the max |
| 9031 | * number of events to be balanced over all the processes the proxy |
| 9032 | * is bound to. Rememeber that maxaccept = -1 must be kept as it is |
| 9033 | * used to disable the limit. |
| 9034 | */ |
| 9035 | if (listener->maxaccept > 0) { |
| 9036 | if (nbproc > 1) |
| 9037 | listener->maxaccept = (listener->maxaccept + 1) / 2; |
| 9038 | listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc; |
| 9039 | } |
| 9040 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 9041 | listener->accept = session_accept_fd; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 9042 | listener->handler = process_stream; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 9043 | listener->analysers |= curproxy->fe_req_ana; |
Willy Tarreau | 10b688f | 2015-03-13 16:43:12 +0100 | [diff] [blame] | 9044 | listener->default_target = curproxy->default_target; |
Willy Tarreau | 3bc1377 | 2008-12-07 11:50:35 +0100 | [diff] [blame] | 9045 | |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 9046 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules)) |
Willy Tarreau | 7d9736f | 2016-10-21 16:34:21 +0200 | [diff] [blame] | 9047 | listener->options |= LI_O_TCP_L4_RULES; |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 9048 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 9049 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules)) |
| 9050 | listener->options |= LI_O_TCP_L5_RULES; |
| 9051 | |
Willy Tarreau | de3041d | 2010-05-31 10:56:17 +0200 | [diff] [blame] | 9052 | if (curproxy->mon_mask.s_addr) |
| 9053 | listener->options |= LI_O_CHK_MONNET; |
| 9054 | |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 9055 | /* smart accept mode is automatic in HTTP mode */ |
| 9056 | if ((curproxy->options2 & PR_O2_SMARTACC) || |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 9057 | ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) && |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 9058 | !(curproxy->no_options2 & PR_O2_SMARTACC))) |
| 9059 | listener->options |= LI_O_NOQUICKACK; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 9060 | } |
| 9061 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 9062 | /* Release unused SSL configs */ |
| 9063 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 9064 | if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf) |
| 9065 | bind_conf->xprt->destroy_bind_conf(bind_conf); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 9066 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 9067 | |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 9068 | if (my_popcountl(curproxy->bind_proc & nbits(global.nbproc)) > 1) { |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 9069 | if (curproxy->uri_auth) { |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 9070 | int count, maxproc = 0; |
| 9071 | |
| 9072 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 9073 | count = my_popcountl(bind_conf->bind_proc); |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 9074 | if (count > maxproc) |
| 9075 | maxproc = count; |
| 9076 | } |
| 9077 | /* backends have 0, frontends have 1 or more */ |
| 9078 | if (maxproc != 1) |
| 9079 | Warning("Proxy '%s': in multi-process mode, stats will be" |
| 9080 | " limited to process assigned to the current request.\n", |
| 9081 | curproxy->id); |
| 9082 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 9083 | if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) { |
| 9084 | Warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n", |
| 9085 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 9086 | } |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 9087 | } |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 9088 | if (!LIST_ISEMPTY(&curproxy->sticking_rules)) { |
| 9089 | Warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n", |
| 9090 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 9091 | } |
| 9092 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 9093 | |
| 9094 | /* create the task associated with the proxy */ |
| 9095 | curproxy->task = task_new(); |
| 9096 | if (curproxy->task) { |
| 9097 | curproxy->task->context = curproxy; |
| 9098 | curproxy->task->process = manage_proxy; |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 9099 | } else { |
| 9100 | Alert("Proxy '%s': no more memory when trying to allocate the management task\n", |
| 9101 | curproxy->id); |
| 9102 | cfgerr++; |
| 9103 | } |
Willy Tarreau | b369a04 | 2014-09-16 13:21:03 +0200 | [diff] [blame] | 9104 | } |
| 9105 | |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 9106 | /* automatically compute fullconn if not set. We must not do it in the |
| 9107 | * loop above because cross-references are not yet fully resolved. |
| 9108 | */ |
| 9109 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 9110 | /* If <fullconn> is not set, let's set it to 10% of the sum of |
| 9111 | * the possible incoming frontend's maxconns. |
| 9112 | */ |
| 9113 | if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) { |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 9114 | /* we have the sum of the maxconns in <total>. We only |
| 9115 | * keep 10% of that sum to set the default fullconn, with |
| 9116 | * a hard minimum of 1 (to avoid a divide by zero). |
| 9117 | */ |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 9118 | curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10; |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 9119 | if (!curproxy->fullconn) |
| 9120 | curproxy->fullconn = 1; |
| 9121 | } |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 9122 | } |
| 9123 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 9124 | /* |
| 9125 | * Recount currently required checks. |
| 9126 | */ |
| 9127 | |
| 9128 | for (curproxy=proxy; curproxy; curproxy=curproxy->next) { |
| 9129 | int optnum; |
| 9130 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 9131 | for (optnum = 0; cfg_opts[optnum].name; optnum++) |
| 9132 | if (curproxy->options & cfg_opts[optnum].val) |
| 9133 | global.last_checks |= cfg_opts[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 9134 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 9135 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) |
| 9136 | if (curproxy->options2 & cfg_opts2[optnum].val) |
| 9137 | global.last_checks |= cfg_opts2[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 9138 | } |
| 9139 | |
Willy Tarreau | 0fca483 | 2015-05-01 19:12:05 +0200 | [diff] [blame] | 9140 | /* compute the required process bindings for the peers */ |
| 9141 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) |
| 9142 | if (curproxy->table.peers.p) |
| 9143 | curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc; |
| 9144 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 9145 | if (cfg_peers) { |
| 9146 | struct peers *curpeers = cfg_peers, **last; |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9147 | struct peer *p, *pb; |
| 9148 | |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 9149 | /* Remove all peers sections which don't have a valid listener, |
| 9150 | * which are not used by any table, or which are bound to more |
| 9151 | * than one process. |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9152 | */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 9153 | last = &cfg_peers; |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9154 | while (*last) { |
| 9155 | curpeers = *last; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 9156 | |
| 9157 | if (curpeers->state == PR_STSTOPPED) { |
| 9158 | /* the "disabled" keyword was present */ |
| 9159 | if (curpeers->peers_fe) |
| 9160 | stop_proxy(curpeers->peers_fe); |
| 9161 | curpeers->peers_fe = NULL; |
| 9162 | } |
| 9163 | else if (!curpeers->peers_fe) { |
| 9164 | Warning("Removing incomplete section 'peers %s' (no peer named '%s').\n", |
| 9165 | curpeers->id, localpeer); |
| 9166 | } |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 9167 | else if (my_popcountl(curpeers->peers_fe->bind_proc) != 1) { |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 9168 | /* either it's totally stopped or too much used */ |
| 9169 | if (curpeers->peers_fe->bind_proc) { |
| 9170 | Alert("Peers section '%s': peers referenced by sections " |
Willy Tarreau | 64c5722 | 2015-05-04 21:48:51 +0200 | [diff] [blame] | 9171 | "running in different processes (%d different ones). " |
| 9172 | "Check global.nbproc and all tables' bind-process " |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 9173 | "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc)); |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 9174 | cfgerr++; |
| 9175 | } |
| 9176 | stop_proxy(curpeers->peers_fe); |
| 9177 | curpeers->peers_fe = NULL; |
| 9178 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 9179 | else { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 9180 | peers_init_sync(curpeers); |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9181 | last = &curpeers->next; |
| 9182 | continue; |
| 9183 | } |
| 9184 | |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 9185 | /* clean what has been detected above */ |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9186 | p = curpeers->remote; |
| 9187 | while (p) { |
| 9188 | pb = p->next; |
| 9189 | free(p->id); |
| 9190 | free(p); |
| 9191 | p = pb; |
| 9192 | } |
| 9193 | |
| 9194 | /* Destroy and unlink this curpeers section. |
| 9195 | * Note: curpeers is backed up into *last. |
| 9196 | */ |
| 9197 | free(curpeers->id); |
| 9198 | curpeers = curpeers->next; |
| 9199 | free(*last); |
| 9200 | *last = curpeers; |
| 9201 | } |
| 9202 | } |
| 9203 | |
Willy Tarreau | 6866f3f | 2015-05-01 19:09:08 +0200 | [diff] [blame] | 9204 | /* initialize stick-tables on backend capable proxies. This must not |
| 9205 | * be done earlier because the data size may be discovered while parsing |
| 9206 | * other proxies. |
| 9207 | */ |
| 9208 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 9209 | if (curproxy->state == PR_STSTOPPED) |
| 9210 | continue; |
| 9211 | |
| 9212 | if (!stktable_init(&curproxy->table)) { |
| 9213 | Alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id); |
| 9214 | cfgerr++; |
| 9215 | } |
| 9216 | } |
| 9217 | |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 9218 | if (mailers) { |
| 9219 | struct mailers *curmailers = mailers, **last; |
| 9220 | struct mailer *m, *mb; |
| 9221 | |
| 9222 | /* Remove all mailers sections which don't have a valid listener. |
| 9223 | * This can happen when a mailers section is never referenced. |
| 9224 | */ |
| 9225 | last = &mailers; |
| 9226 | while (*last) { |
| 9227 | curmailers = *last; |
| 9228 | if (curmailers->users) { |
| 9229 | last = &curmailers->next; |
| 9230 | continue; |
| 9231 | } |
| 9232 | |
| 9233 | Warning("Removing incomplete section 'mailers %s'.\n", |
| 9234 | curmailers->id); |
| 9235 | |
| 9236 | m = curmailers->mailer_list; |
| 9237 | while (m) { |
| 9238 | mb = m->next; |
| 9239 | free(m->id); |
| 9240 | free(m); |
| 9241 | m = mb; |
| 9242 | } |
| 9243 | |
| 9244 | /* Destroy and unlink this curmailers section. |
| 9245 | * Note: curmailers is backed up into *last. |
| 9246 | */ |
| 9247 | free(curmailers->id); |
| 9248 | curmailers = curmailers->next; |
| 9249 | free(*last); |
| 9250 | *last = curmailers; |
| 9251 | } |
| 9252 | } |
| 9253 | |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 9254 | /* Update server_state_file_name to backend name if backend is supposed to use |
| 9255 | * a server-state file locally defined and none has been provided */ |
| 9256 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 9257 | if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL && |
| 9258 | curproxy->server_state_file_name == NULL) |
| 9259 | curproxy->server_state_file_name = strdup(curproxy->id); |
| 9260 | } |
| 9261 | |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 9262 | pool2_hdr_idx = create_pool("hdr_idx", |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 9263 | global.tune.max_http_hdr * sizeof(struct hdr_idx_elem), |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 9264 | MEM_F_SHARED); |
| 9265 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 9266 | if (cfgerr > 0) |
| 9267 | err_code |= ERR_ALERT | ERR_FATAL; |
| 9268 | out: |
| 9269 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9270 | } |
| 9271 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 9272 | /* |
| 9273 | * Registers the CFG keyword list <kwl> as a list of valid keywords for next |
| 9274 | * parsing sessions. |
| 9275 | */ |
| 9276 | void cfg_register_keywords(struct cfg_kw_list *kwl) |
| 9277 | { |
| 9278 | LIST_ADDQ(&cfg_keywords.list, &kwl->list); |
| 9279 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9280 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 9281 | /* |
| 9282 | * Unregisters the CFG keyword list <kwl> from the list of valid keywords. |
| 9283 | */ |
| 9284 | void cfg_unregister_keywords(struct cfg_kw_list *kwl) |
| 9285 | { |
| 9286 | LIST_DEL(&kwl->list); |
| 9287 | LIST_INIT(&kwl->list); |
| 9288 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9289 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 9290 | /* this function register new section in the haproxy configuration file. |
| 9291 | * <section_name> is the name of this new section and <section_parser> |
| 9292 | * is the called parser. If two section declaration have the same name, |
| 9293 | * only the first declared is used. |
| 9294 | */ |
| 9295 | int cfg_register_section(char *section_name, |
| 9296 | int (*section_parser)(const char *, int, char **, int)) |
| 9297 | { |
| 9298 | struct cfg_section *cs; |
| 9299 | |
Willy Tarreau | 5e4261b | 2016-05-17 16:16:09 +0200 | [diff] [blame] | 9300 | list_for_each_entry(cs, §ions, list) { |
| 9301 | if (strcmp(cs->section_name, section_name) == 0) { |
| 9302 | Alert("register section '%s': already registered.\n", section_name); |
| 9303 | return 0; |
| 9304 | } |
| 9305 | } |
| 9306 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 9307 | cs = calloc(1, sizeof(*cs)); |
| 9308 | if (!cs) { |
| 9309 | Alert("register section '%s': out of memory.\n", section_name); |
| 9310 | return 0; |
| 9311 | } |
| 9312 | |
| 9313 | cs->section_name = section_name; |
| 9314 | cs->section_parser = section_parser; |
| 9315 | |
| 9316 | LIST_ADDQ(§ions, &cs->list); |
| 9317 | |
| 9318 | return 1; |
| 9319 | } |
| 9320 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9321 | /* |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 9322 | * free all config section entries |
| 9323 | */ |
| 9324 | void cfg_unregister_sections(void) |
| 9325 | { |
| 9326 | struct cfg_section *cs, *ics; |
| 9327 | |
| 9328 | list_for_each_entry_safe(cs, ics, §ions, list) { |
| 9329 | LIST_DEL(&cs->list); |
| 9330 | free(cs); |
| 9331 | } |
| 9332 | } |
| 9333 | |
Christopher Faulet | 7110b40 | 2016-10-26 11:09:44 +0200 | [diff] [blame] | 9334 | void cfg_backup_sections(struct list *backup_sections) |
| 9335 | { |
| 9336 | struct cfg_section *cs, *ics; |
| 9337 | |
| 9338 | list_for_each_entry_safe(cs, ics, §ions, list) { |
| 9339 | LIST_DEL(&cs->list); |
| 9340 | LIST_ADDQ(backup_sections, &cs->list); |
| 9341 | } |
| 9342 | } |
| 9343 | |
| 9344 | void cfg_restore_sections(struct list *backup_sections) |
| 9345 | { |
| 9346 | struct cfg_section *cs, *ics; |
| 9347 | |
| 9348 | list_for_each_entry_safe(cs, ics, backup_sections, list) { |
| 9349 | LIST_DEL(&cs->list); |
| 9350 | LIST_ADDQ(§ions, &cs->list); |
| 9351 | } |
| 9352 | } |
| 9353 | |
Willy Tarreau | 659fbf0 | 2016-05-26 17:55:28 +0200 | [diff] [blame] | 9354 | __attribute__((constructor)) |
| 9355 | static void cfgparse_init(void) |
| 9356 | { |
| 9357 | /* Register internal sections */ |
| 9358 | cfg_register_section("listen", cfg_parse_listen); |
| 9359 | cfg_register_section("frontend", cfg_parse_listen); |
| 9360 | cfg_register_section("backend", cfg_parse_listen); |
| 9361 | cfg_register_section("defaults", cfg_parse_listen); |
| 9362 | cfg_register_section("global", cfg_parse_global); |
| 9363 | cfg_register_section("userlist", cfg_parse_users); |
| 9364 | cfg_register_section("peers", cfg_parse_peers); |
| 9365 | cfg_register_section("mailers", cfg_parse_mailers); |
| 9366 | cfg_register_section("namespace_list", cfg_parse_netns); |
| 9367 | cfg_register_section("resolvers", cfg_parse_resolvers); |
| 9368 | } |
| 9369 | |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 9370 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9371 | * Local variables: |
| 9372 | * c-indent-level: 8 |
| 9373 | * c-basic-offset: 8 |
| 9374 | * End: |
| 9375 | */ |