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> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 49 | #include <types/obj_type.h> |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 50 | #include <types/peers.h> |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 51 | #include <types/mailers.h> |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 52 | #include <types/dns.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 53 | |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 54 | #include <proto/acl.h> |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 55 | #include <proto/auth.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 56 | #include <proto/backend.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 57 | #include <proto/channel.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 58 | #include <proto/checks.h> |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 59 | #include <proto/compression.h> |
Willy Tarreau | fbee713 | 2007-10-18 13:53:22 +0200 | [diff] [blame] | 60 | #include <proto/dumpstats.h> |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 61 | #include <proto/frontend.h> |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 62 | #include <proto/hdr_idx.h> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 63 | #include <proto/lb_chash.h> |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 64 | #include <proto/lb_fas.h> |
Willy Tarreau | f89c187 | 2009-10-01 11:19:37 +0200 | [diff] [blame] | 65 | #include <proto/lb_fwlc.h> |
| 66 | #include <proto/lb_fwrr.h> |
| 67 | #include <proto/lb_map.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 68 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 69 | #include <proto/log.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 70 | #include <proto/protocol.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 71 | #include <proto/proto_tcp.h> |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 72 | #include <proto/proto_uxst.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 73 | #include <proto/proto_http.h> |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 74 | #include <proto/proxy.h> |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 75 | #include <proto/peers.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 76 | #include <proto/sample.h> |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 77 | #include <proto/session.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 78 | #include <proto/server.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 79 | #include <proto/stream.h> |
Willy Tarreau | 75bf2c9 | 2012-08-20 17:01:35 +0200 | [diff] [blame] | 80 | #include <proto/raw_sock.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 81 | #include <proto/task.h> |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 82 | #include <proto/stick_table.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 83 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 84 | #ifdef USE_OPENSSL |
| 85 | #include <types/ssl_sock.h> |
| 86 | #include <proto/ssl_sock.h> |
| 87 | #include <proto/shctx.h> |
| 88 | #endif /*USE_OPENSSL */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 89 | |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 90 | /* This is the SSLv3 CLIENT HELLO packet used in conjunction with the |
| 91 | * ssl-hello-chk option to ensure that the remote server speaks SSL. |
| 92 | * |
| 93 | * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details. |
| 94 | */ |
| 95 | const char sslv3_client_hello_pkt[] = { |
| 96 | "\x16" /* ContentType : 0x16 = Hanshake */ |
| 97 | "\x03\x00" /* ProtocolVersion : 0x0300 = SSLv3 */ |
| 98 | "\x00\x79" /* ContentLength : 0x79 bytes after this one */ |
| 99 | "\x01" /* HanshakeType : 0x01 = CLIENT HELLO */ |
| 100 | "\x00\x00\x75" /* HandshakeLength : 0x75 bytes after this one */ |
| 101 | "\x03\x00" /* Hello Version : 0x0300 = v3 */ |
| 102 | "\x00\x00\x00\x00" /* Unix GMT Time (s) : filled with <now> (@0x0B) */ |
| 103 | "HAPROXYSSLCHK\nHAPROXYSSLCHK\n" /* Random : must be exactly 28 bytes */ |
| 104 | "\x00" /* Session ID length : empty (no session ID) */ |
| 105 | "\x00\x4E" /* Cipher Suite Length : 78 bytes after this one */ |
| 106 | "\x00\x01" "\x00\x02" "\x00\x03" "\x00\x04" /* 39 most common ciphers : */ |
| 107 | "\x00\x05" "\x00\x06" "\x00\x07" "\x00\x08" /* 0x01...0x1B, 0x2F...0x3A */ |
| 108 | "\x00\x09" "\x00\x0A" "\x00\x0B" "\x00\x0C" /* This covers RSA/DH, */ |
| 109 | "\x00\x0D" "\x00\x0E" "\x00\x0F" "\x00\x10" /* various bit lengths, */ |
| 110 | "\x00\x11" "\x00\x12" "\x00\x13" "\x00\x14" /* SHA1/MD5, DES/3DES/AES... */ |
| 111 | "\x00\x15" "\x00\x16" "\x00\x17" "\x00\x18" |
| 112 | "\x00\x19" "\x00\x1A" "\x00\x1B" "\x00\x2F" |
| 113 | "\x00\x30" "\x00\x31" "\x00\x32" "\x00\x33" |
| 114 | "\x00\x34" "\x00\x35" "\x00\x36" "\x00\x37" |
| 115 | "\x00\x38" "\x00\x39" "\x00\x3A" |
| 116 | "\x01" /* Compression Length : 0x01 = 1 byte for types */ |
| 117 | "\x00" /* Compression Type : 0x00 = NULL compression */ |
| 118 | }; |
| 119 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 120 | /* various keyword modifiers */ |
| 121 | enum kw_mod { |
| 122 | KWM_STD = 0, /* normal */ |
| 123 | KWM_NO, /* "no" prefixed before the keyword */ |
| 124 | KWM_DEF, /* "default" prefixed before the keyword */ |
| 125 | }; |
| 126 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 127 | /* permit to store configuration section */ |
| 128 | struct cfg_section { |
| 129 | struct list list; |
| 130 | char *section_name; |
| 131 | int (*section_parser)(const char *, int, char **, int); |
| 132 | }; |
| 133 | |
| 134 | /* Used to chain configuration sections definitions. This list |
| 135 | * stores struct cfg_section |
| 136 | */ |
| 137 | struct list sections = LIST_HEAD_INIT(sections); |
| 138 | |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 139 | /* 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] | 140 | struct cfg_opt { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 141 | const char *name; |
| 142 | unsigned int val; |
| 143 | unsigned int cap; |
Willy Tarreau | 4fee4e9 | 2007-01-06 21:09:17 +0100 | [diff] [blame] | 144 | unsigned int checks; |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 145 | unsigned int mode; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | /* proxy->options */ |
| 149 | static const struct cfg_opt cfg_opts[] = |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 150 | { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 151 | { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 }, |
| 152 | { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 }, |
| 153 | { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 154 | { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 }, |
| 155 | { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 }, |
| 156 | { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 157 | { "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] | 158 | { "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] | 159 | { "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] | 160 | { "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] | 161 | { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 }, |
| 162 | { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 }, |
| 163 | { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 164 | { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 }, |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 165 | #ifdef TPROXY |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 166 | { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 }, |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 167 | #else |
| 168 | { "transparent", 0, 0, 0, 0 }, |
Willy Tarreau | 8f922fc | 2007-01-06 21:11:49 +0100 | [diff] [blame] | 169 | #endif |
| 170 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 171 | { NULL, 0, 0, 0, 0 } |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 172 | }; |
| 173 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 174 | /* proxy->options2 */ |
| 175 | static const struct cfg_opt cfg_opts2[] = |
| 176 | { |
| 177 | #ifdef CONFIG_HAP_LINUX_SPLICE |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 178 | { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 179 | { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 180 | { "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] | 181 | #else |
| 182 | { "splice-request", 0, 0, 0, 0 }, |
| 183 | { "splice-response", 0, 0, 0, 0 }, |
| 184 | { "splice-auto", 0, 0, 0, 0 }, |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 185 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 186 | { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 187 | { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 188 | { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 }, |
| 189 | { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 }, |
| 190 | { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 }, |
| 191 | { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 }, |
| 192 | { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 }, |
| 193 | { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 }, |
| 194 | { "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] | 195 | { "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] | 196 | { "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] | 197 | { "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] | 198 | { "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] | 199 | { NULL, 0, 0, 0 } |
| 200 | }; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 201 | |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 202 | static char *cursection = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 203 | static struct proxy defproxy; /* fake proxy used to assign default values on all instances */ |
| 204 | int cfg_maxpconn = DEFAULT_MAXCONN; /* # of simultaneous connections per proxy (-N) */ |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 205 | int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */ |
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 | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 241 | ss2 = str2sa_range(str, &port, &end, err, |
| 242 | curproxy == global.stats_fe ? NULL : global.unix_bind.prefix); |
| 243 | if (!ss2) |
| 244 | goto fail; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 245 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 246 | if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 247 | if (!port && !end) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 248 | memprintf(err, "missing port number: '%s'\n", str); |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 249 | goto fail; |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 250 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 251 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 252 | if (!port || !end) { |
| 253 | memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str); |
| 254 | goto fail; |
| 255 | } |
| 256 | |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 257 | if (port < 1 || port > 65535) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 258 | memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str); |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 259 | goto fail; |
| 260 | } |
| 261 | |
| 262 | if (end < 1 || end > 65535) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 263 | memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str); |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 264 | goto fail; |
| 265 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 266 | } |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 267 | else if (ss2->ss_family == AF_UNSPEC) { |
| 268 | socklen_t addr_len; |
| 269 | |
| 270 | /* We want to attach to an already bound fd whose number |
| 271 | * is in the addr part of ss2 when cast to sockaddr_in. |
| 272 | * Note that by definition there is a single listener. |
| 273 | * We still have to determine the address family to |
| 274 | * register the correct protocol. |
| 275 | */ |
| 276 | fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr; |
| 277 | addr_len = sizeof(*ss2); |
| 278 | if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) { |
| 279 | memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno)); |
| 280 | goto fail; |
| 281 | } |
| 282 | |
| 283 | port = end = get_host_port(ss2); |
| 284 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 285 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 286 | /* OK the address looks correct */ |
| 287 | ss = *ss2; |
| 288 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 289 | for (; port <= end; port++) { |
| 290 | l = (struct listener *)calloc(1, sizeof(struct listener)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 291 | l->obj_type = OBJ_TYPE_LISTENER; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 292 | LIST_ADDQ(&curproxy->conf.listeners, &l->by_fe); |
| 293 | LIST_ADDQ(&bind_conf->listeners, &l->by_bind); |
| 294 | l->frontend = curproxy; |
| 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; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 298 | l->addr = ss; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 299 | l->xprt = &raw_sock; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 300 | l->state = LI_INIT; |
| 301 | |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 302 | if (ss.ss_family == AF_INET) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 303 | ((struct sockaddr_in *)(&l->addr))->sin_port = htons(port); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 304 | tcpv4_add_listener(l); |
| 305 | } |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 306 | else if (ss.ss_family == AF_INET6) { |
| 307 | ((struct sockaddr_in6 *)(&l->addr))->sin6_port = htons(port); |
| 308 | tcpv6_add_listener(l); |
| 309 | } |
| 310 | else { |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 311 | uxst_add_listener(l); |
| 312 | } |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 313 | |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 314 | jobs++; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 315 | listeners++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 316 | } /* end for(port) */ |
| 317 | } /* end while(next) */ |
| 318 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 319 | return 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 320 | fail: |
| 321 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 322 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 323 | } |
| 324 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 325 | /* |
| 326 | * Report a fatal Alert when there is too much arguments |
| 327 | * The index is the current keyword in args |
| 328 | * Return 0 if the number of argument is correct, otherwise emit an alert and return 1 |
| 329 | * Fill err_code with an ERR_ALERT and an ERR_FATAL |
| 330 | */ |
| 331 | int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code) |
| 332 | { |
| 333 | char *kw = NULL; |
| 334 | int i; |
| 335 | |
| 336 | if (!*args[index + maxarg + 1]) |
| 337 | return 0; |
| 338 | |
| 339 | memprintf(&kw, "%s", args[0]); |
| 340 | for (i = 1; i <= index; i++) { |
| 341 | memprintf(&kw, "%s %s", kw, args[i]); |
| 342 | } |
| 343 | |
| 344 | Alert("parsing [%s:%d] : '%s' cannot handle unexpected argument '%s'.\n", file, linenum, kw, args[index + maxarg + 1]); |
| 345 | free(kw); |
| 346 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 347 | return 1; |
| 348 | } |
| 349 | |
| 350 | /* |
| 351 | * same as alertif_too_many_args_idx with a 0 index |
| 352 | */ |
| 353 | int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code) |
| 354 | { |
| 355 | return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code); |
| 356 | } |
| 357 | |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 358 | /* Report a warning if a rule is placed after a 'tcp-request content' rule. |
| 359 | * Return 1 if the warning has been emitted, otherwise 0. |
| 360 | */ |
| 361 | int warnif_rule_after_tcp_cont(struct proxy *proxy, const char *file, int line, const char *arg) |
| 362 | { |
| 363 | if (!LIST_ISEMPTY(&proxy->tcp_req.inspect_rules)) { |
| 364 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'tcp-request content' rule will still be processed before.\n", |
| 365 | file, line, arg); |
| 366 | return 1; |
| 367 | } |
| 368 | return 0; |
| 369 | } |
| 370 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 371 | /* Report a warning if a rule is placed after a 'block' rule. |
| 372 | * Return 1 if the warning has been emitted, otherwise 0. |
| 373 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 374 | 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] | 375 | { |
Willy Tarreau | 353bc9f | 2014-04-28 22:05:31 +0200 | [diff] [blame] | 376 | if (!LIST_ISEMPTY(&proxy->block_rules)) { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 377 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'block' rule will still be processed before.\n", |
| 378 | file, line, arg); |
| 379 | return 1; |
| 380 | } |
| 381 | return 0; |
| 382 | } |
| 383 | |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 384 | /* Report a warning if a rule is placed after an 'http_request' rule. |
| 385 | * Return 1 if the warning has been emitted, otherwise 0. |
| 386 | */ |
| 387 | int warnif_rule_after_http_req(struct proxy *proxy, const char *file, int line, const char *arg) |
| 388 | { |
| 389 | if (!LIST_ISEMPTY(&proxy->http_req_rules)) { |
| 390 | Warning("parsing [%s:%d] : a '%s' rule placed after an 'http-request' rule will still be processed before.\n", |
| 391 | file, line, arg); |
| 392 | return 1; |
| 393 | } |
| 394 | return 0; |
| 395 | } |
| 396 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 397 | /* Report a warning if a rule is placed after a reqrewrite rule. |
| 398 | * Return 1 if the warning has been emitted, otherwise 0. |
| 399 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 400 | 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] | 401 | { |
| 402 | if (proxy->req_exp) { |
| 403 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'reqxxx' rule will still be processed before.\n", |
| 404 | file, line, arg); |
| 405 | return 1; |
| 406 | } |
| 407 | return 0; |
| 408 | } |
| 409 | |
| 410 | /* Report a warning if a rule is placed after a reqadd rule. |
| 411 | * Return 1 if the warning has been emitted, otherwise 0. |
| 412 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 413 | 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] | 414 | { |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 415 | if (!LIST_ISEMPTY(&proxy->req_add)) { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 416 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'reqadd' rule will still be processed before.\n", |
| 417 | file, line, arg); |
| 418 | return 1; |
| 419 | } |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | /* Report a warning if a rule is placed after a redirect rule. |
| 424 | * Return 1 if the warning has been emitted, otherwise 0. |
| 425 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 426 | 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] | 427 | { |
| 428 | if (!LIST_ISEMPTY(&proxy->redirect_rules)) { |
| 429 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'redirect' rule will still be processed before.\n", |
| 430 | file, line, arg); |
| 431 | return 1; |
| 432 | } |
| 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | /* Report a warning if a rule is placed after a 'use_backend' rule. |
| 437 | * Return 1 if the warning has been emitted, otherwise 0. |
| 438 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 439 | 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] | 440 | { |
| 441 | if (!LIST_ISEMPTY(&proxy->switching_rules)) { |
| 442 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'use_backend' rule will still be processed before.\n", |
| 443 | file, line, arg); |
| 444 | return 1; |
| 445 | } |
| 446 | return 0; |
| 447 | } |
| 448 | |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 449 | /* Report a warning if a rule is placed after a 'use-server' rule. |
| 450 | * Return 1 if the warning has been emitted, otherwise 0. |
| 451 | */ |
| 452 | int warnif_rule_after_use_server(struct proxy *proxy, const char *file, int line, const char *arg) |
| 453 | { |
| 454 | if (!LIST_ISEMPTY(&proxy->server_rules)) { |
| 455 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'use-server' rule will still be processed before.\n", |
| 456 | file, line, arg); |
| 457 | return 1; |
| 458 | } |
| 459 | return 0; |
| 460 | } |
| 461 | |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 462 | /* report a warning if a "tcp request connection" rule is dangerously placed */ |
| 463 | int warnif_misplaced_tcp_conn(struct proxy *proxy, const char *file, int line, const char *arg) |
| 464 | { |
| 465 | return warnif_rule_after_tcp_cont(proxy, file, line, arg) || |
| 466 | warnif_rule_after_block(proxy, file, line, arg) || |
| 467 | warnif_rule_after_http_req(proxy, file, line, arg) || |
| 468 | warnif_rule_after_reqxxx(proxy, file, line, arg) || |
| 469 | warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 470 | warnif_rule_after_redirect(proxy, file, line, arg) || |
| 471 | warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 472 | warnif_rule_after_use_server(proxy, file, line, arg); |
| 473 | } |
| 474 | |
| 475 | /* report a warning if a "tcp request content" rule is dangerously placed */ |
| 476 | int warnif_misplaced_tcp_cont(struct proxy *proxy, const char *file, int line, const char *arg) |
| 477 | { |
| 478 | return warnif_rule_after_block(proxy, file, line, arg) || |
| 479 | warnif_rule_after_http_req(proxy, file, line, arg) || |
| 480 | warnif_rule_after_reqxxx(proxy, file, line, arg) || |
| 481 | warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 482 | warnif_rule_after_redirect(proxy, file, line, arg) || |
| 483 | warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 484 | warnif_rule_after_use_server(proxy, file, line, arg); |
| 485 | } |
| 486 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 487 | /* report a warning if a block rule is dangerously placed */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 488 | 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] | 489 | { |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 490 | return warnif_rule_after_http_req(proxy, file, line, arg) || |
| 491 | warnif_rule_after_reqxxx(proxy, file, line, arg) || |
| 492 | warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 493 | warnif_rule_after_redirect(proxy, file, line, arg) || |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 494 | warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 495 | warnif_rule_after_use_server(proxy, file, line, arg); |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | /* report a warning if an http-request rule is dangerously placed */ |
| 499 | int warnif_misplaced_http_req(struct proxy *proxy, const char *file, int line, const char *arg) |
| 500 | { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 501 | return warnif_rule_after_reqxxx(proxy, file, line, arg) || |
| 502 | warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 503 | warnif_rule_after_redirect(proxy, file, line, arg) || |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 504 | warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 505 | warnif_rule_after_use_server(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | /* report a warning if a reqxxx rule is dangerously placed */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 509 | 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] | 510 | { |
| 511 | return warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 512 | warnif_rule_after_redirect(proxy, file, line, arg) || |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 513 | warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 514 | warnif_rule_after_use_server(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | /* report a warning if a reqadd rule is dangerously placed */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 518 | int warnif_misplaced_reqadd(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 519 | { |
| 520 | return warnif_rule_after_redirect(proxy, file, line, arg) || |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 521 | warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 522 | warnif_rule_after_use_server(proxy, file, line, arg); |
| 523 | } |
| 524 | |
| 525 | /* report a warning if a redirect rule is dangerously placed */ |
| 526 | int warnif_misplaced_redirect(struct proxy *proxy, const char *file, int line, const char *arg) |
| 527 | { |
| 528 | return warnif_rule_after_use_backend(proxy, file, line, arg) || |
| 529 | warnif_rule_after_use_server(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 530 | } |
| 531 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 532 | /* Report it if a request ACL condition uses some keywords that are incompatible |
| 533 | * with the place where the ACL is used. It returns either 0 or ERR_WARN so that |
| 534 | * its result can be or'ed with err_code. Note that <cond> may be NULL and then |
| 535 | * will be ignored. |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 536 | */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 537 | 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] | 538 | { |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 539 | const struct acl *acl; |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 540 | const char *kw; |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 541 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 542 | if (!cond) |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 543 | return 0; |
| 544 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 545 | acl = acl_cond_conflicts(cond, where); |
| 546 | if (acl) { |
| 547 | if (acl->name && *acl->name) |
| 548 | Warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n", |
| 549 | file, line, acl->name, sample_ckp_names(where)); |
| 550 | else |
| 551 | 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] | 552 | 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] | 553 | return ERR_WARN; |
| 554 | } |
| 555 | if (!acl_cond_kw_conflicts(cond, where, &acl, &kw)) |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 556 | return 0; |
| 557 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 558 | if (acl->name && *acl->name) |
| 559 | 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] | 560 | file, line, acl->name, kw, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 561 | else |
| 562 | 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] | 563 | file, line, kw, sample_ckp_names(where)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 564 | return ERR_WARN; |
| 565 | } |
| 566 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 567 | /* |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 568 | * parse a line in a <global> section. Returns the error code, 0 if OK, or |
| 569 | * any combination of : |
| 570 | * - ERR_ABORT: must abort ASAP |
| 571 | * - ERR_FATAL: we can continue parsing but not start the service |
| 572 | * - ERR_WARN: a warning has been emitted |
| 573 | * - ERR_ALERT: an alert has been emitted |
| 574 | * Only the two first ones can stop processing, the two others are just |
| 575 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 576 | */ |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 577 | 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] | 578 | { |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 579 | int err_code = 0; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 580 | char *errmsg = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 581 | |
| 582 | if (!strcmp(args[0], "global")) { /* new section */ |
| 583 | /* no option, nothing special to do */ |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 584 | alertif_too_many_args(0, file, linenum, args, &err_code); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 585 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 586 | } |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 587 | else if (!strcmp(args[0], "ca-base")) { |
| 588 | #ifdef USE_OPENSSL |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 589 | if(alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 590 | goto out; |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 591 | if (global.ca_base != NULL) { |
| 592 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 593 | err_code |= ERR_ALERT; |
| 594 | goto out; |
| 595 | } |
| 596 | if (*(args[1]) == 0) { |
| 597 | Alert("parsing [%s:%d] : '%s' expects a directory path as an argument.\n", file, linenum, args[0]); |
| 598 | err_code |= ERR_ALERT | ERR_FATAL; |
| 599 | goto out; |
| 600 | } |
| 601 | global.ca_base = strdup(args[1]); |
| 602 | #else |
| 603 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 604 | err_code |= ERR_ALERT | ERR_FATAL; |
| 605 | goto out; |
| 606 | #endif |
| 607 | } |
| 608 | else if (!strcmp(args[0], "crt-base")) { |
| 609 | #ifdef USE_OPENSSL |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 610 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 611 | goto out; |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 612 | if (global.crt_base != NULL) { |
| 613 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 614 | err_code |= ERR_ALERT; |
| 615 | goto out; |
| 616 | } |
| 617 | if (*(args[1]) == 0) { |
| 618 | Alert("parsing [%s:%d] : '%s' expects a directory path as an argument.\n", file, linenum, args[0]); |
| 619 | err_code |= ERR_ALERT | ERR_FATAL; |
| 620 | goto out; |
| 621 | } |
| 622 | global.crt_base = strdup(args[1]); |
| 623 | #else |
| 624 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 625 | err_code |= ERR_ALERT | ERR_FATAL; |
| 626 | goto out; |
| 627 | #endif |
| 628 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 629 | else if (!strcmp(args[0], "daemon")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 630 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 631 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 632 | global.mode |= MODE_DAEMON; |
| 633 | } |
| 634 | else if (!strcmp(args[0], "debug")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 635 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 636 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 637 | global.mode |= MODE_DEBUG; |
| 638 | } |
| 639 | else if (!strcmp(args[0], "noepoll")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 640 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 641 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 642 | global.tune.options &= ~GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 643 | } |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 644 | else if (!strcmp(args[0], "nokqueue")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 645 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 646 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 647 | global.tune.options &= ~GTUNE_USE_KQUEUE; |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 648 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 649 | else if (!strcmp(args[0], "nopoll")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 650 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 651 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 652 | global.tune.options &= ~GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 653 | } |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 654 | else if (!strcmp(args[0], "nosplice")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 655 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 656 | goto out; |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 657 | global.tune.options &= ~GTUNE_USE_SPLICE; |
| 658 | } |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 659 | else if (!strcmp(args[0], "nogetaddrinfo")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 660 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 661 | goto out; |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 662 | global.tune.options &= ~GTUNE_USE_GAI; |
| 663 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 664 | else if (!strcmp(args[0], "quiet")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 665 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 666 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 667 | global.mode |= MODE_QUIET; |
| 668 | } |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 669 | else if (!strcmp(args[0], "tune.maxpollevents")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 670 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 671 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 672 | if (global.tune.maxpollevents != 0) { |
| 673 | 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] | 674 | err_code |= ERR_ALERT; |
| 675 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 676 | } |
| 677 | if (*(args[1]) == 0) { |
| 678 | 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] | 679 | err_code |= ERR_ALERT | ERR_FATAL; |
| 680 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 681 | } |
| 682 | global.tune.maxpollevents = atol(args[1]); |
| 683 | } |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 684 | else if (!strcmp(args[0], "tune.maxaccept")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 685 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 686 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 687 | if (global.tune.maxaccept != 0) { |
| 688 | 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] | 689 | err_code |= ERR_ALERT; |
| 690 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 691 | } |
| 692 | if (*(args[1]) == 0) { |
| 693 | 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] | 694 | err_code |= ERR_ALERT | ERR_FATAL; |
| 695 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 696 | } |
| 697 | global.tune.maxaccept = atol(args[1]); |
| 698 | } |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 699 | else if (!strcmp(args[0], "tune.chksize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 700 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 701 | goto out; |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 702 | if (*(args[1]) == 0) { |
| 703 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 704 | err_code |= ERR_ALERT | ERR_FATAL; |
| 705 | goto out; |
| 706 | } |
| 707 | global.tune.chksize = atol(args[1]); |
| 708 | } |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 709 | #ifdef USE_OPENSSL |
Emeric Brun | 8dc6039 | 2014-05-09 13:52:00 +0200 | [diff] [blame] | 710 | else if (!strcmp(args[0], "tune.ssl.force-private-cache")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 711 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 712 | goto out; |
Emeric Brun | 8dc6039 | 2014-05-09 13:52:00 +0200 | [diff] [blame] | 713 | global.tune.sslprivatecache = 1; |
| 714 | } |
Willy Tarreau | 6ec58db | 2012-11-16 16:32:15 +0100 | [diff] [blame] | 715 | else if (!strcmp(args[0], "tune.ssl.cachesize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 716 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 717 | goto out; |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 718 | if (*(args[1]) == 0) { |
| 719 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 720 | err_code |= ERR_ALERT | ERR_FATAL; |
| 721 | goto out; |
| 722 | } |
| 723 | global.tune.sslcachesize = atol(args[1]); |
| 724 | } |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 725 | else if (!strcmp(args[0], "tune.ssl.lifetime")) { |
| 726 | unsigned int ssllifetime; |
| 727 | const char *res; |
| 728 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 729 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 730 | goto out; |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 731 | if (*(args[1]) == 0) { |
| 732 | Alert("parsing [%s:%d] : '%s' expects ssl sessions <lifetime> in seconds as argument.\n", file, linenum, args[0]); |
| 733 | err_code |= ERR_ALERT | ERR_FATAL; |
| 734 | goto out; |
| 735 | } |
| 736 | |
| 737 | res = parse_time_err(args[1], &ssllifetime, TIME_UNIT_S); |
| 738 | if (res) { |
| 739 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 740 | file, linenum, *res, args[0]); |
| 741 | err_code |= ERR_ALERT | ERR_FATAL; |
| 742 | goto out; |
| 743 | } |
| 744 | |
| 745 | global.tune.ssllifetime = ssllifetime; |
| 746 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 747 | else if (!strcmp(args[0], "tune.ssl.maxrecord")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 748 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 749 | goto out; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 750 | if (*(args[1]) == 0) { |
| 751 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 752 | err_code |= ERR_ALERT | ERR_FATAL; |
| 753 | goto out; |
| 754 | } |
| 755 | global.tune.ssl_max_record = atol(args[1]); |
| 756 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 757 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 758 | else if (!strcmp(args[0], "tune.ssl.default-dh-param")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 759 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 760 | goto out; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 761 | if (*(args[1]) == 0) { |
| 762 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 763 | err_code |= ERR_ALERT | ERR_FATAL; |
| 764 | goto out; |
| 765 | } |
| 766 | global.tune.ssl_default_dh_param = atol(args[1]); |
| 767 | if (global.tune.ssl_default_dh_param < 1024) { |
| 768 | Alert("parsing [%s:%d] : '%s' expects a value >= 1024.\n", file, linenum, args[0]); |
| 769 | err_code |= ERR_ALERT | ERR_FATAL; |
| 770 | goto out; |
| 771 | } |
| 772 | } |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 773 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 774 | else if (!strcmp(args[0], "tune.ssl.ssl-ctx-cache-size")) { |
| 775 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 776 | goto out; |
| 777 | if (*(args[1]) == 0) { |
| 778 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 779 | err_code |= ERR_ALERT | ERR_FATAL; |
| 780 | goto out; |
| 781 | } |
| 782 | global.tune.ssl_ctx_cache = atoi(args[1]); |
| 783 | if (global.tune.ssl_ctx_cache < 0) { |
| 784 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 785 | file, linenum, args[0]); |
| 786 | err_code |= ERR_ALERT | ERR_FATAL; |
| 787 | goto out; |
| 788 | } |
| 789 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 790 | #endif |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 791 | else if (!strcmp(args[0], "tune.buffers.limit")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 792 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 793 | goto out; |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 794 | if (*(args[1]) == 0) { |
| 795 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 796 | err_code |= ERR_ALERT | ERR_FATAL; |
| 797 | goto out; |
| 798 | } |
| 799 | global.tune.buf_limit = atol(args[1]); |
| 800 | if (global.tune.buf_limit) { |
| 801 | if (global.tune.buf_limit < 3) |
| 802 | global.tune.buf_limit = 3; |
| 803 | if (global.tune.buf_limit <= global.tune.reserved_bufs) |
| 804 | global.tune.buf_limit = global.tune.reserved_bufs + 1; |
| 805 | } |
| 806 | } |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 807 | else if (!strcmp(args[0], "tune.buffers.reserve")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 808 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 809 | goto out; |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 810 | if (*(args[1]) == 0) { |
| 811 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 812 | err_code |= ERR_ALERT | ERR_FATAL; |
| 813 | goto out; |
| 814 | } |
| 815 | global.tune.reserved_bufs = atol(args[1]); |
| 816 | if (global.tune.reserved_bufs < 2) |
| 817 | global.tune.reserved_bufs = 2; |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 818 | if (global.tune.buf_limit && global.tune.buf_limit <= global.tune.reserved_bufs) |
| 819 | global.tune.buf_limit = global.tune.reserved_bufs + 1; |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 820 | } |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 821 | else if (!strcmp(args[0], "tune.bufsize")) { |
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 | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 824 | if (*(args[1]) == 0) { |
| 825 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 826 | err_code |= ERR_ALERT | ERR_FATAL; |
| 827 | goto out; |
| 828 | } |
| 829 | global.tune.bufsize = atol(args[1]); |
| 830 | if (global.tune.maxrewrite >= global.tune.bufsize / 2) |
| 831 | global.tune.maxrewrite = global.tune.bufsize / 2; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 832 | chunk_init(&trash, realloc(trash.str, global.tune.bufsize), global.tune.bufsize); |
Willy Tarreau | 2819e99 | 2013-12-13 14:41:10 +0100 | [diff] [blame] | 833 | alloc_trash_buffers(global.tune.bufsize); |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 834 | } |
| 835 | else if (!strcmp(args[0], "tune.maxrewrite")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 836 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 837 | goto out; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 838 | if (*(args[1]) == 0) { |
| 839 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 840 | err_code |= ERR_ALERT | ERR_FATAL; |
| 841 | goto out; |
| 842 | } |
| 843 | global.tune.maxrewrite = atol(args[1]); |
| 844 | if (global.tune.maxrewrite >= global.tune.bufsize / 2) |
| 845 | global.tune.maxrewrite = global.tune.bufsize / 2; |
| 846 | } |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 847 | else if (!strcmp(args[0], "tune.idletimer")) { |
| 848 | unsigned int idle; |
| 849 | const char *res; |
| 850 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 851 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 852 | goto out; |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 853 | if (*(args[1]) == 0) { |
| 854 | Alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]); |
| 855 | err_code |= ERR_ALERT | ERR_FATAL; |
| 856 | goto out; |
| 857 | } |
| 858 | |
| 859 | res = parse_time_err(args[1], &idle, TIME_UNIT_MS); |
| 860 | if (res) { |
| 861 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 862 | file, linenum, *res, args[0]); |
| 863 | err_code |= ERR_ALERT | ERR_FATAL; |
| 864 | goto out; |
| 865 | } |
| 866 | |
| 867 | if (idle > 65535) { |
| 868 | Alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]); |
| 869 | err_code |= ERR_ALERT | ERR_FATAL; |
| 870 | goto out; |
| 871 | } |
| 872 | global.tune.idle_timer = idle; |
| 873 | } |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 874 | else if (!strcmp(args[0], "tune.rcvbuf.client")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 875 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 876 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 877 | if (global.tune.client_rcvbuf != 0) { |
| 878 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 879 | err_code |= ERR_ALERT; |
| 880 | goto out; |
| 881 | } |
| 882 | if (*(args[1]) == 0) { |
| 883 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 884 | err_code |= ERR_ALERT | ERR_FATAL; |
| 885 | goto out; |
| 886 | } |
| 887 | global.tune.client_rcvbuf = atol(args[1]); |
| 888 | } |
| 889 | else if (!strcmp(args[0], "tune.rcvbuf.server")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 890 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 891 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 892 | if (global.tune.server_rcvbuf != 0) { |
| 893 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 894 | err_code |= ERR_ALERT; |
| 895 | goto out; |
| 896 | } |
| 897 | if (*(args[1]) == 0) { |
| 898 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 899 | err_code |= ERR_ALERT | ERR_FATAL; |
| 900 | goto out; |
| 901 | } |
| 902 | global.tune.server_rcvbuf = atol(args[1]); |
| 903 | } |
| 904 | else if (!strcmp(args[0], "tune.sndbuf.client")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 905 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 906 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 907 | if (global.tune.client_sndbuf != 0) { |
| 908 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 909 | err_code |= ERR_ALERT; |
| 910 | goto out; |
| 911 | } |
| 912 | if (*(args[1]) == 0) { |
| 913 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 914 | err_code |= ERR_ALERT | ERR_FATAL; |
| 915 | goto out; |
| 916 | } |
| 917 | global.tune.client_sndbuf = atol(args[1]); |
| 918 | } |
| 919 | else if (!strcmp(args[0], "tune.sndbuf.server")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 920 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 921 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 922 | if (global.tune.server_sndbuf != 0) { |
| 923 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 924 | err_code |= ERR_ALERT; |
| 925 | goto out; |
| 926 | } |
| 927 | if (*(args[1]) == 0) { |
| 928 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 929 | err_code |= ERR_ALERT | ERR_FATAL; |
| 930 | goto out; |
| 931 | } |
| 932 | global.tune.server_sndbuf = atol(args[1]); |
| 933 | } |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 934 | else if (!strcmp(args[0], "tune.pipesize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 935 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 936 | goto out; |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 937 | if (*(args[1]) == 0) { |
| 938 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 939 | err_code |= ERR_ALERT | ERR_FATAL; |
| 940 | goto out; |
| 941 | } |
| 942 | global.tune.pipesize = atol(args[1]); |
| 943 | } |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 944 | else if (!strcmp(args[0], "tune.http.cookielen")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 945 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 946 | goto out; |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 947 | if (*(args[1]) == 0) { |
| 948 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 949 | err_code |= ERR_ALERT | ERR_FATAL; |
| 950 | goto out; |
| 951 | } |
| 952 | global.tune.cookie_len = atol(args[1]) + 1; |
| 953 | } |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 954 | else if (!strcmp(args[0], "tune.http.maxhdr")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 955 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 956 | goto out; |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 957 | if (*(args[1]) == 0) { |
| 958 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 959 | err_code |= ERR_ALERT | ERR_FATAL; |
| 960 | goto out; |
| 961 | } |
| 962 | global.tune.max_http_hdr = atol(args[1]); |
| 963 | } |
William Lallemand | a509e4c | 2012-11-07 16:54:34 +0100 | [diff] [blame] | 964 | else if (!strcmp(args[0], "tune.zlib.memlevel")) { |
| 965 | #ifdef USE_ZLIB |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 966 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 967 | goto out; |
William Lallemand | a509e4c | 2012-11-07 16:54:34 +0100 | [diff] [blame] | 968 | if (*args[1]) { |
| 969 | global.tune.zlibmemlevel = atoi(args[1]); |
| 970 | if (global.tune.zlibmemlevel < 1 || global.tune.zlibmemlevel > 9) { |
| 971 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 972 | file, linenum, args[0]); |
| 973 | err_code |= ERR_ALERT | ERR_FATAL; |
| 974 | goto out; |
| 975 | } |
| 976 | } else { |
| 977 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 978 | file, linenum, args[0]); |
| 979 | err_code |= ERR_ALERT | ERR_FATAL; |
| 980 | goto out; |
| 981 | } |
| 982 | #else |
| 983 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 984 | err_code |= ERR_ALERT | ERR_FATAL; |
| 985 | goto out; |
| 986 | #endif |
| 987 | } |
| 988 | else if (!strcmp(args[0], "tune.zlib.windowsize")) { |
| 989 | #ifdef USE_ZLIB |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 990 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 991 | goto out; |
William Lallemand | a509e4c | 2012-11-07 16:54:34 +0100 | [diff] [blame] | 992 | if (*args[1]) { |
| 993 | global.tune.zlibwindowsize = atoi(args[1]); |
| 994 | if (global.tune.zlibwindowsize < 8 || global.tune.zlibwindowsize > 15) { |
| 995 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 8 and 15\n", |
| 996 | file, linenum, args[0]); |
| 997 | err_code |= ERR_ALERT | ERR_FATAL; |
| 998 | goto out; |
| 999 | } |
| 1000 | } else { |
| 1001 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 8 and 15\n", |
| 1002 | file, linenum, args[0]); |
| 1003 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1004 | goto out; |
| 1005 | } |
| 1006 | #else |
| 1007 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 1008 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1009 | goto out; |
| 1010 | #endif |
| 1011 | } |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 1012 | else if (!strcmp(args[0], "tune.comp.maxlevel")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1013 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1014 | goto out; |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 1015 | if (*args[1]) { |
| 1016 | global.tune.comp_maxlevel = atoi(args[1]); |
| 1017 | if (global.tune.comp_maxlevel < 1 || global.tune.comp_maxlevel > 9) { |
| 1018 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 1019 | file, linenum, args[0]); |
| 1020 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1021 | goto out; |
| 1022 | } |
| 1023 | } else { |
| 1024 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 1025 | file, linenum, args[0]); |
| 1026 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1027 | goto out; |
| 1028 | } |
| 1029 | } |
Willy Tarreau | f3045d2 | 2015-04-29 16:24:50 +0200 | [diff] [blame] | 1030 | else if (!strcmp(args[0], "tune.pattern.cache-size")) { |
| 1031 | if (*args[1]) { |
| 1032 | global.tune.pattern_cache = atoi(args[1]); |
| 1033 | if (global.tune.pattern_cache < 0) { |
| 1034 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 1035 | file, linenum, args[0]); |
| 1036 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1037 | goto out; |
| 1038 | } |
| 1039 | } else { |
| 1040 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 1041 | file, linenum, args[0]); |
| 1042 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1043 | goto out; |
| 1044 | } |
| 1045 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1046 | else if (!strcmp(args[0], "uid")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1047 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1048 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1049 | if (global.uid != 0) { |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1050 | Alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1051 | err_code |= ERR_ALERT; |
| 1052 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1053 | } |
| 1054 | if (*(args[1]) == 0) { |
| 1055 | 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] | 1056 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1057 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1058 | } |
| 1059 | global.uid = atol(args[1]); |
| 1060 | } |
| 1061 | else if (!strcmp(args[0], "gid")) { |
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.gid != 0) { |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1065 | Alert("parsing [%s:%d] : group/gid already specified. Continuing.\n", file, linenum); |
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.gid = atol(args[1]); |
| 1075 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1076 | else if (!strcmp(args[0], "external-check")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1077 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 1078 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1079 | global.external_check = 1; |
| 1080 | } |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1081 | /* user/group name handling */ |
| 1082 | else if (!strcmp(args[0], "user")) { |
| 1083 | struct passwd *ha_user; |
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; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1086 | if (global.uid != 0) { |
| 1087 | Alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1088 | err_code |= ERR_ALERT; |
| 1089 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1090 | } |
| 1091 | errno = 0; |
| 1092 | ha_user = getpwnam(args[1]); |
| 1093 | if (ha_user != NULL) { |
| 1094 | global.uid = (int)ha_user->pw_uid; |
| 1095 | } |
| 1096 | else { |
| 1097 | 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] | 1098 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1099 | } |
| 1100 | } |
| 1101 | else if (!strcmp(args[0], "group")) { |
| 1102 | struct group *ha_group; |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1103 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1104 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1105 | if (global.gid != 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 1106 | 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] | 1107 | err_code |= ERR_ALERT; |
| 1108 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1109 | } |
| 1110 | errno = 0; |
| 1111 | ha_group = getgrnam(args[1]); |
| 1112 | if (ha_group != NULL) { |
| 1113 | global.gid = (int)ha_group->gr_gid; |
| 1114 | } |
| 1115 | else { |
| 1116 | 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] | 1117 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1118 | } |
| 1119 | } |
| 1120 | /* end of user/group name handling*/ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1121 | else if (!strcmp(args[0], "nbproc")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1122 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1123 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1124 | if (*(args[1]) == 0) { |
| 1125 | 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] | 1126 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1127 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1128 | } |
| 1129 | global.nbproc = atol(args[1]); |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1130 | if (global.nbproc < 1 || global.nbproc > LONGBITS) { |
| 1131 | Alert("parsing [%s:%d] : '%s' must be between 1 and %d (was %d).\n", |
| 1132 | file, linenum, args[0], LONGBITS, global.nbproc); |
| 1133 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1134 | goto out; |
| 1135 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1136 | } |
| 1137 | else if (!strcmp(args[0], "maxconn")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1138 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1139 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1140 | if (global.maxconn != 0) { |
| 1141 | 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] | 1142 | err_code |= ERR_ALERT; |
| 1143 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1144 | } |
| 1145 | if (*(args[1]) == 0) { |
| 1146 | 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] | 1147 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1148 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1149 | } |
| 1150 | global.maxconn = atol(args[1]); |
| 1151 | #ifdef SYSTEM_MAXCONN |
| 1152 | if (global.maxconn > DEFAULT_MAXCONN && cfg_maxconn <= DEFAULT_MAXCONN) { |
| 1153 | 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); |
| 1154 | global.maxconn = DEFAULT_MAXCONN; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1155 | err_code |= ERR_ALERT; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1156 | } |
| 1157 | #endif /* SYSTEM_MAXCONN */ |
| 1158 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 1159 | else if (!strcmp(args[0], "maxsslconn")) { |
| 1160 | #ifdef USE_OPENSSL |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1161 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1162 | goto out; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 1163 | if (*(args[1]) == 0) { |
| 1164 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1165 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1166 | goto out; |
| 1167 | } |
| 1168 | global.maxsslconn = atol(args[1]); |
| 1169 | #else |
Emeric Brun | 0914df8 | 2012-10-02 18:45:42 +0200 | [diff] [blame] | 1170 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 1171 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1172 | goto out; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 1173 | #endif |
| 1174 | } |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 1175 | else if (!strcmp(args[0], "ssl-default-bind-ciphers")) { |
| 1176 | #ifdef USE_OPENSSL |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1177 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1178 | goto out; |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 1179 | if (*(args[1]) == 0) { |
| 1180 | Alert("parsing [%s:%d] : '%s' expects a cipher suite as an argument.\n", file, linenum, args[0]); |
| 1181 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1182 | goto out; |
| 1183 | } |
| 1184 | free(global.listen_default_ciphers); |
| 1185 | global.listen_default_ciphers = strdup(args[1]); |
| 1186 | #else |
| 1187 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 1188 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1189 | goto out; |
| 1190 | #endif |
| 1191 | } |
| 1192 | else if (!strcmp(args[0], "ssl-default-server-ciphers")) { |
| 1193 | #ifdef USE_OPENSSL |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1194 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1195 | goto out; |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 1196 | if (*(args[1]) == 0) { |
| 1197 | Alert("parsing [%s:%d] : '%s' expects a cipher suite as an argument.\n", file, linenum, args[0]); |
| 1198 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1199 | goto out; |
| 1200 | } |
| 1201 | free(global.connect_default_ciphers); |
| 1202 | global.connect_default_ciphers = strdup(args[1]); |
| 1203 | #else |
| 1204 | Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]); |
| 1205 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1206 | goto out; |
| 1207 | #endif |
| 1208 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1209 | #ifdef USE_OPENSSL |
| 1210 | #ifndef OPENSSL_NO_DH |
| 1211 | else if (!strcmp(args[0], "ssl-dh-param-file")) { |
| 1212 | if (*(args[1]) == 0) { |
| 1213 | Alert("parsing [%s:%d] : '%s' expects a file path as an argument.\n", file, linenum, args[0]); |
| 1214 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1215 | goto out; |
| 1216 | } |
| 1217 | if (ssl_sock_load_global_dh_param_from_file(args[1])) { |
| 1218 | Alert("parsing [%s:%d] : '%s': unable to load DH parameters from file <%s>.\n", file, linenum, args[0], args[1]); |
| 1219 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1220 | goto out; |
| 1221 | } |
| 1222 | } |
| 1223 | #endif |
| 1224 | #endif |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1225 | else if (!strcmp(args[0], "ssl-server-verify")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1226 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1227 | goto out; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1228 | if (*(args[1]) == 0) { |
| 1229 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1230 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1231 | goto out; |
| 1232 | } |
| 1233 | if (strcmp(args[1],"none") == 0) |
| 1234 | global.ssl_server_verify = SSL_SERVER_VERIFY_NONE; |
| 1235 | else if (strcmp(args[1],"required") == 0) |
| 1236 | global.ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED; |
| 1237 | else { |
| 1238 | Alert("parsing [%s:%d] : '%s' expects 'none' or 'required' as argument.\n", file, linenum, args[0]); |
| 1239 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1240 | goto out; |
| 1241 | } |
| 1242 | } |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 1243 | else if (!strcmp(args[0], "maxconnrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1244 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1245 | goto out; |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 1246 | if (global.cps_lim != 0) { |
| 1247 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1248 | err_code |= ERR_ALERT; |
| 1249 | goto out; |
| 1250 | } |
| 1251 | if (*(args[1]) == 0) { |
| 1252 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1253 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1254 | goto out; |
| 1255 | } |
| 1256 | global.cps_lim = atol(args[1]); |
| 1257 | } |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1258 | else if (!strcmp(args[0], "maxsessrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1259 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1260 | goto out; |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1261 | if (global.sps_lim != 0) { |
| 1262 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1263 | err_code |= ERR_ALERT; |
| 1264 | goto out; |
| 1265 | } |
| 1266 | if (*(args[1]) == 0) { |
| 1267 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1268 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1269 | goto out; |
| 1270 | } |
| 1271 | global.sps_lim = atol(args[1]); |
| 1272 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1273 | else if (!strcmp(args[0], "maxsslrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1274 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1275 | goto out; |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1276 | if (global.ssl_lim != 0) { |
| 1277 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1278 | err_code |= ERR_ALERT; |
| 1279 | goto out; |
| 1280 | } |
| 1281 | if (*(args[1]) == 0) { |
| 1282 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1283 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1284 | goto out; |
| 1285 | } |
| 1286 | global.ssl_lim = atol(args[1]); |
| 1287 | } |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 1288 | else if (!strcmp(args[0], "maxcomprate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1289 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1290 | goto out; |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 1291 | if (*(args[1]) == 0) { |
| 1292 | Alert("parsing [%s:%d] : '%s' expects an integer argument in kb/s.\n", file, linenum, args[0]); |
| 1293 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1294 | goto out; |
| 1295 | } |
| 1296 | global.comp_rate_lim = atoi(args[1]) * 1024; |
| 1297 | } |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1298 | else if (!strcmp(args[0], "maxpipes")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1299 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1300 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1301 | if (global.maxpipes != 0) { |
| 1302 | 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] | 1303 | err_code |= ERR_ALERT; |
| 1304 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1305 | } |
| 1306 | if (*(args[1]) == 0) { |
| 1307 | 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] | 1308 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1309 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1310 | } |
| 1311 | global.maxpipes = atol(args[1]); |
| 1312 | } |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1313 | else if (!strcmp(args[0], "maxzlibmem")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1314 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1315 | goto out; |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1316 | if (*(args[1]) == 0) { |
| 1317 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1318 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1319 | goto out; |
| 1320 | } |
William Lallemand | e3a7d99 | 2012-11-20 11:25:20 +0100 | [diff] [blame] | 1321 | global.maxzlibmem = atol(args[1]) * 1024L * 1024L; |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1322 | } |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1323 | else if (!strcmp(args[0], "maxcompcpuusage")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1324 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1325 | goto out; |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1326 | if (*(args[1]) == 0) { |
| 1327 | Alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]); |
| 1328 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1329 | goto out; |
| 1330 | } |
| 1331 | compress_min_idle = 100 - atoi(args[1]); |
Willy Tarreau | cb2699a | 2013-01-24 16:25:38 +0100 | [diff] [blame] | 1332 | if (compress_min_idle > 100) { |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1333 | Alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]); |
| 1334 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1335 | goto out; |
| 1336 | } |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1337 | } |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1338 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1339 | else if (!strcmp(args[0], "ulimit-n")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1340 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1341 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1342 | if (global.rlimit_nofile != 0) { |
| 1343 | 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] | 1344 | err_code |= ERR_ALERT; |
| 1345 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1346 | } |
| 1347 | if (*(args[1]) == 0) { |
| 1348 | 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] | 1349 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1350 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1351 | } |
| 1352 | global.rlimit_nofile = atol(args[1]); |
| 1353 | } |
| 1354 | else if (!strcmp(args[0], "chroot")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1355 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1356 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1357 | if (global.chroot != NULL) { |
| 1358 | 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] | 1359 | err_code |= ERR_ALERT; |
| 1360 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1361 | } |
| 1362 | if (*(args[1]) == 0) { |
| 1363 | 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] | 1364 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1365 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1366 | } |
| 1367 | global.chroot = strdup(args[1]); |
| 1368 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1369 | else if (!strcmp(args[0], "description")) { |
| 1370 | int i, len=0; |
| 1371 | char *d; |
| 1372 | |
| 1373 | if (!*args[1]) { |
| 1374 | Alert("parsing [%s:%d]: '%s' expects a string argument.\n", |
| 1375 | file, linenum, args[0]); |
| 1376 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1377 | goto out; |
| 1378 | } |
| 1379 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 1380 | for (i = 1; *args[i]; i++) |
| 1381 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1382 | |
| 1383 | if (global.desc) |
| 1384 | free(global.desc); |
| 1385 | |
| 1386 | global.desc = d = (char *)calloc(1, len); |
| 1387 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 1388 | d += snprintf(d, global.desc + len - d, "%s", args[1]); |
| 1389 | for (i = 2; *args[i]; i++) |
| 1390 | d += snprintf(d, global.desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1391 | } |
| 1392 | else if (!strcmp(args[0], "node")) { |
| 1393 | int i; |
| 1394 | char c; |
| 1395 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1396 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1397 | goto out; |
| 1398 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1399 | for (i=0; args[1][i]; i++) { |
| 1400 | c = args[1][i]; |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 1401 | if (!isupper((unsigned char)c) && !islower((unsigned char)c) && |
| 1402 | !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.') |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1403 | break; |
| 1404 | } |
| 1405 | |
| 1406 | if (!i || args[1][i]) { |
| 1407 | Alert("parsing [%s:%d]: '%s' requires valid node name - non-empty string" |
| 1408 | " with digits(0-9), letters(A-Z, a-z), dot(.), hyphen(-) or underscode(_).\n", |
| 1409 | file, linenum, args[0]); |
| 1410 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1411 | goto out; |
| 1412 | } |
| 1413 | |
| 1414 | if (global.node) |
| 1415 | free(global.node); |
| 1416 | |
| 1417 | global.node = strdup(args[1]); |
| 1418 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1419 | else if (!strcmp(args[0], "pidfile")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1420 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1421 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1422 | if (global.pidfile != NULL) { |
| 1423 | 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] | 1424 | err_code |= ERR_ALERT; |
| 1425 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1426 | } |
| 1427 | if (*(args[1]) == 0) { |
| 1428 | 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] | 1429 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1430 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1431 | } |
| 1432 | global.pidfile = strdup(args[1]); |
| 1433 | } |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 1434 | else if (!strcmp(args[0], "unix-bind")) { |
| 1435 | int cur_arg = 1; |
| 1436 | while (*(args[cur_arg])) { |
| 1437 | if (!strcmp(args[cur_arg], "prefix")) { |
| 1438 | if (global.unix_bind.prefix != NULL) { |
| 1439 | Alert("parsing [%s:%d] : unix-bind '%s' already specified. Continuing.\n", file, linenum, args[cur_arg]); |
| 1440 | err_code |= ERR_ALERT; |
| 1441 | cur_arg += 2; |
| 1442 | continue; |
| 1443 | } |
| 1444 | |
| 1445 | if (*(args[cur_arg+1]) == 0) { |
| 1446 | Alert("parsing [%s:%d] : unix_bind '%s' expects a path as an argument.\n", file, linenum, args[cur_arg]); |
| 1447 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1448 | goto out; |
| 1449 | } |
| 1450 | global.unix_bind.prefix = strdup(args[cur_arg+1]); |
| 1451 | cur_arg += 2; |
| 1452 | continue; |
| 1453 | } |
| 1454 | |
| 1455 | if (!strcmp(args[cur_arg], "mode")) { |
| 1456 | |
| 1457 | global.unix_bind.ux.mode = strtol(args[cur_arg + 1], NULL, 8); |
| 1458 | cur_arg += 2; |
| 1459 | continue; |
| 1460 | } |
| 1461 | |
| 1462 | if (!strcmp(args[cur_arg], "uid")) { |
| 1463 | |
| 1464 | global.unix_bind.ux.uid = atol(args[cur_arg + 1 ]); |
| 1465 | cur_arg += 2; |
| 1466 | continue; |
| 1467 | } |
| 1468 | |
| 1469 | if (!strcmp(args[cur_arg], "gid")) { |
| 1470 | |
| 1471 | global.unix_bind.ux.gid = atol(args[cur_arg + 1 ]); |
| 1472 | cur_arg += 2; |
| 1473 | continue; |
| 1474 | } |
| 1475 | |
| 1476 | if (!strcmp(args[cur_arg], "user")) { |
| 1477 | struct passwd *user; |
| 1478 | |
| 1479 | user = getpwnam(args[cur_arg + 1]); |
| 1480 | if (!user) { |
| 1481 | Alert("parsing [%s:%d] : '%s' : '%s' unknown user.\n", |
| 1482 | file, linenum, args[0], args[cur_arg + 1 ]); |
| 1483 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1484 | goto out; |
| 1485 | } |
| 1486 | |
| 1487 | global.unix_bind.ux.uid = user->pw_uid; |
| 1488 | cur_arg += 2; |
| 1489 | continue; |
| 1490 | } |
| 1491 | |
| 1492 | if (!strcmp(args[cur_arg], "group")) { |
| 1493 | struct group *group; |
| 1494 | |
| 1495 | group = getgrnam(args[cur_arg + 1]); |
| 1496 | if (!group) { |
| 1497 | Alert("parsing [%s:%d] : '%s' : '%s' unknown group.\n", |
| 1498 | file, linenum, args[0], args[cur_arg + 1 ]); |
| 1499 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1500 | goto out; |
| 1501 | } |
| 1502 | |
| 1503 | global.unix_bind.ux.gid = group->gr_gid; |
| 1504 | cur_arg += 2; |
| 1505 | continue; |
| 1506 | } |
| 1507 | |
Willy Tarreau | b48f958 | 2011-09-05 01:17:06 +0200 | [diff] [blame] | 1508 | 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] | 1509 | file, linenum, args[0]); |
| 1510 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1511 | goto out; |
| 1512 | } |
| 1513 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1514 | else if (!strcmp(args[0], "log") && kwm == KWM_NO) { /* no log */ |
| 1515 | /* delete previous herited or defined syslog servers */ |
| 1516 | struct logsrv *back; |
| 1517 | struct logsrv *tmp; |
| 1518 | |
| 1519 | if (*(args[1]) != 0) { |
| 1520 | Alert("parsing [%s:%d]:%s : 'no log' does not expect arguments.\n", file, linenum, args[1]); |
| 1521 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1522 | goto out; |
| 1523 | } |
| 1524 | |
| 1525 | list_for_each_entry_safe(tmp, back, &global.logsrvs, list) { |
| 1526 | LIST_DEL(&tmp->list); |
| 1527 | free(tmp); |
| 1528 | } |
| 1529 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1530 | else if (!strcmp(args[0], "log")) { /* syslog server address */ |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1531 | struct sockaddr_storage *sk; |
| 1532 | int port1, port2; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1533 | struct logsrv *logsrv; |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1534 | int arg = 0; |
| 1535 | int len = 0; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1536 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1537 | if (alertif_too_many_args(8, file, linenum, args, &err_code)) /* does not strictly check optional arguments */ |
| 1538 | goto out; |
| 1539 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1540 | if (*(args[1]) == 0 || *(args[2]) == 0) { |
| 1541 | 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] | 1542 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1543 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1544 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1545 | |
| 1546 | logsrv = calloc(1, sizeof(struct logsrv)); |
| 1547 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1548 | /* just after the address, a length may be specified */ |
| 1549 | if (strcmp(args[arg+2], "len") == 0) { |
| 1550 | len = atoi(args[arg+3]); |
| 1551 | if (len < 80 || len > 65535) { |
| 1552 | Alert("parsing [%s:%d] : invalid log length '%s', must be between 80 and 65535.\n", |
| 1553 | file, linenum, args[arg+3]); |
| 1554 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1555 | goto out; |
| 1556 | } |
| 1557 | logsrv->maxlen = len; |
| 1558 | |
| 1559 | /* skip these two args */ |
| 1560 | arg += 2; |
| 1561 | } |
| 1562 | else |
| 1563 | logsrv->maxlen = MAX_SYSLOG_LEN; |
| 1564 | |
| 1565 | if (logsrv->maxlen > global.max_syslog_len) { |
| 1566 | global.max_syslog_len = logsrv->maxlen; |
| 1567 | logline = realloc(logline, global.max_syslog_len + 1); |
| 1568 | } |
| 1569 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1570 | if (alertif_too_many_args_idx(3, arg + 1, file, linenum, args, &err_code)) |
| 1571 | goto out; |
| 1572 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1573 | logsrv->facility = get_log_facility(args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1574 | if (logsrv->facility < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1575 | 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] | 1576 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1577 | logsrv->facility = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1578 | } |
| 1579 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1580 | logsrv->level = 7; /* max syslog level = debug */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1581 | if (*(args[arg+3])) { |
| 1582 | logsrv->level = get_log_level(args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1583 | if (logsrv->level < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1584 | 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] | 1585 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1586 | logsrv->level = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1587 | } |
| 1588 | } |
| 1589 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1590 | logsrv->minlvl = 0; /* limit syslog level to this level (emerg) */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1591 | if (*(args[arg+4])) { |
| 1592 | logsrv->minlvl = get_log_level(args[arg+4]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1593 | if (logsrv->minlvl < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1594 | 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] | 1595 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1596 | logsrv->minlvl = 0; |
Willy Tarreau | f7edefa | 2009-05-10 17:20:05 +0200 | [diff] [blame] | 1597 | } |
| 1598 | } |
| 1599 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1600 | sk = str2sa_range(args[1], &port1, &port2, &errmsg, NULL); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1601 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1602 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1603 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1604 | free(logsrv); |
| 1605 | goto out; |
| 1606 | } |
| 1607 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1608 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1609 | if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1610 | if (port1 != port2) { |
| 1611 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 1612 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1613 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1614 | free(logsrv); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1615 | goto out; |
| 1616 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1617 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1618 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1619 | if (!port1) |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1620 | set_host_port(&logsrv->addr, SYSLOG_PORT); |
Robert Tsai | 81ae195 | 2007-12-05 10:47:29 +0100 | [diff] [blame] | 1621 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1622 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1623 | LIST_ADDQ(&global.logsrvs, &logsrv->list); |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1624 | } |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1625 | else if (!strcmp(args[0], "log-send-hostname")) { /* set the hostname in syslog header */ |
| 1626 | char *name; |
| 1627 | int len; |
| 1628 | |
| 1629 | if (global.log_send_hostname != NULL) { |
| 1630 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1631 | err_code |= ERR_ALERT; |
| 1632 | goto out; |
| 1633 | } |
| 1634 | |
| 1635 | if (*(args[1])) |
| 1636 | name = args[1]; |
| 1637 | else |
| 1638 | name = hostname; |
| 1639 | |
| 1640 | len = strlen(name); |
| 1641 | |
| 1642 | /* We'll add a space after the name to respect the log format */ |
| 1643 | free(global.log_send_hostname); |
| 1644 | global.log_send_hostname = malloc(len + 2); |
| 1645 | snprintf(global.log_send_hostname, len + 2, "%s ", name); |
| 1646 | } |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1647 | else if (!strcmp(args[0], "log-tag")) { /* tag to report to syslog */ |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1648 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1649 | goto out; |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1650 | if (*(args[1]) == 0) { |
| 1651 | Alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]); |
| 1652 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1653 | goto out; |
| 1654 | } |
| 1655 | free(global.log_tag); |
| 1656 | global.log_tag = strdup(args[1]); |
| 1657 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1658 | 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] | 1659 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1660 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1661 | if (global.spread_checks != 0) { |
| 1662 | Alert("parsing [%s:%d]: spread-checks already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1663 | err_code |= ERR_ALERT; |
| 1664 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1665 | } |
| 1666 | if (*(args[1]) == 0) { |
| 1667 | 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] | 1668 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1669 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1670 | } |
| 1671 | global.spread_checks = atol(args[1]); |
| 1672 | if (global.spread_checks < 0 || global.spread_checks > 50) { |
| 1673 | 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] | 1674 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1675 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1676 | } |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 1677 | else if (!strcmp(args[0], "max-spread-checks")) { /* maximum time between first and last check */ |
| 1678 | const char *err; |
| 1679 | unsigned int val; |
| 1680 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1681 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1682 | goto out; |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 1683 | if (*(args[1]) == 0) { |
| 1684 | Alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]); |
| 1685 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1686 | goto out; |
| 1687 | } |
| 1688 | |
| 1689 | err = parse_time_err(args[1], &val, TIME_UNIT_MS); |
| 1690 | if (err) { |
| 1691 | Alert("parsing [%s:%d]: unsupported character '%c' in '%s' (wants an integer delay).\n", file, linenum, *err, args[0]); |
| 1692 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1693 | } |
| 1694 | global.max_spread_checks = val; |
| 1695 | if (global.max_spread_checks < 0) { |
| 1696 | Alert("parsing [%s:%d]: '%s' needs a positive delay in milliseconds.\n",file, linenum, args[0]); |
| 1697 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1698 | } |
| 1699 | } |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1700 | else if (strcmp(args[0], "cpu-map") == 0) { /* map a process list to a CPU set */ |
| 1701 | #ifdef USE_CPU_AFFINITY |
| 1702 | int cur_arg, i; |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1703 | unsigned long proc = 0; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1704 | unsigned long cpus = 0; |
| 1705 | |
| 1706 | if (strcmp(args[1], "all") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1707 | proc = ~0UL; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1708 | else if (strcmp(args[1], "odd") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1709 | proc = ~0UL/3UL; /* 0x555....555 */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1710 | else if (strcmp(args[1], "even") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1711 | proc = (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1712 | else { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1713 | proc = atol(args[1]); |
| 1714 | if (proc >= 1 && proc <= LONGBITS) |
| 1715 | proc = 1UL << (proc - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1716 | } |
| 1717 | |
| 1718 | if (!proc || !*args[2]) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1719 | 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", |
| 1720 | file, linenum, args[0], LONGBITS, LONGBITS - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1721 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1722 | goto out; |
| 1723 | } |
| 1724 | |
| 1725 | cur_arg = 2; |
| 1726 | while (*args[cur_arg]) { |
| 1727 | unsigned int low, high; |
| 1728 | |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 1729 | if (isdigit((int)*args[cur_arg])) { |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1730 | char *dash = strchr(args[cur_arg], '-'); |
| 1731 | |
| 1732 | low = high = str2uic(args[cur_arg]); |
| 1733 | if (dash) |
| 1734 | high = str2uic(dash + 1); |
| 1735 | |
| 1736 | if (high < low) { |
| 1737 | unsigned int swap = low; |
| 1738 | low = high; |
| 1739 | high = swap; |
| 1740 | } |
| 1741 | |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1742 | if (high >= LONGBITS) { |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1743 | 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] | 1744 | file, linenum, args[0], LONGBITS - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1745 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1746 | goto out; |
| 1747 | } |
| 1748 | |
| 1749 | while (low <= high) |
| 1750 | cpus |= 1UL << low++; |
| 1751 | } |
| 1752 | else { |
| 1753 | Alert("parsing [%s:%d]: %s : '%s' is not a CPU range.\n", |
| 1754 | file, linenum, args[0], args[cur_arg]); |
| 1755 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1756 | goto out; |
| 1757 | } |
| 1758 | cur_arg++; |
| 1759 | } |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1760 | for (i = 0; i < LONGBITS; i++) |
| 1761 | if (proc & (1UL << i)) |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1762 | global.cpu_map[i] = cpus; |
| 1763 | #else |
| 1764 | Alert("parsing [%s:%d] : '%s' is not enabled, please check build options for USE_CPU_AFFINITY.\n", file, linenum, args[0]); |
| 1765 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1766 | goto out; |
| 1767 | #endif |
| 1768 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1769 | else { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1770 | struct cfg_kw_list *kwl; |
| 1771 | int index; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1772 | int rc; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1773 | |
| 1774 | list_for_each_entry(kwl, &cfg_keywords.list, list) { |
| 1775 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1776 | if (kwl->kw[index].section != CFG_GLOBAL) |
| 1777 | continue; |
| 1778 | if (strcmp(kwl->kw[index].kw, args[0]) == 0) { |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 1779 | 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] | 1780 | if (rc < 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1781 | Alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1782 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1783 | } |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1784 | else if (rc > 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1785 | Warning("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1786 | err_code |= ERR_WARN; |
| 1787 | goto out; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1788 | } |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1789 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1790 | } |
| 1791 | } |
| 1792 | } |
| 1793 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1794 | 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] | 1795 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1796 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1797 | |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1798 | out: |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1799 | free(errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1800 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1801 | } |
| 1802 | |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1803 | void init_default_instance() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1804 | { |
Willy Tarreau | 97cb780 | 2010-01-03 20:23:58 +0100 | [diff] [blame] | 1805 | init_new_proxy(&defproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1806 | defproxy.mode = PR_MODE_TCP; |
| 1807 | defproxy.state = PR_STNEW; |
| 1808 | defproxy.maxconn = cfg_maxpconn; |
| 1809 | defproxy.conn_retries = CONN_RETRIES; |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 1810 | defproxy.redispatch_after = 0; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 1811 | |
Simon Horman | 6618300 | 2013-02-23 10:16:43 +0900 | [diff] [blame] | 1812 | defproxy.defsrv.check.inter = DEF_CHKINTR; |
| 1813 | defproxy.defsrv.check.fastinter = 0; |
| 1814 | defproxy.defsrv.check.downinter = 0; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 1815 | defproxy.defsrv.agent.inter = DEF_CHKINTR; |
| 1816 | defproxy.defsrv.agent.fastinter = 0; |
| 1817 | defproxy.defsrv.agent.downinter = 0; |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 1818 | defproxy.defsrv.check.rise = DEF_RISETIME; |
| 1819 | defproxy.defsrv.check.fall = DEF_FALLTIME; |
| 1820 | defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME; |
| 1821 | defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME; |
Willy Tarreau | 5b3a202 | 2012-09-28 15:01:02 +0200 | [diff] [blame] | 1822 | defproxy.defsrv.check.port = 0; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 1823 | defproxy.defsrv.agent.port = 0; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 1824 | defproxy.defsrv.maxqueue = 0; |
| 1825 | defproxy.defsrv.minconn = 0; |
| 1826 | defproxy.defsrv.maxconn = 0; |
| 1827 | defproxy.defsrv.slowstart = 0; |
| 1828 | defproxy.defsrv.onerror = DEF_HANA_ONERR; |
| 1829 | defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT; |
| 1830 | defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1; |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 1831 | |
| 1832 | defproxy.email_alert.level = LOG_ALERT; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1833 | } |
| 1834 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1835 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1836 | /* This function createss a new req* or rsp* rule to the proxy. It compiles the |
| 1837 | * regex and may return the ERR_WARN bit, and error bits such as ERR_ALERT and |
| 1838 | * ERR_FATAL in case of error. |
| 1839 | */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1840 | static int create_cond_regex_rule(const char *file, int line, |
| 1841 | struct proxy *px, int dir, int action, int flags, |
| 1842 | const char *cmd, const char *reg, const char *repl, |
| 1843 | const char **cond_start) |
| 1844 | { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1845 | struct my_regex *preg = NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1846 | char *errmsg = NULL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1847 | const char *err; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1848 | char *error; |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1849 | int ret_code = 0; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1850 | struct acl_cond *cond = NULL; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1851 | int cs; |
| 1852 | int cap; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1853 | |
| 1854 | if (px == &defproxy) { |
| 1855 | 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] | 1856 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1857 | goto err; |
| 1858 | } |
| 1859 | |
| 1860 | if (*reg == 0) { |
| 1861 | 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] | 1862 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1863 | goto err; |
| 1864 | } |
| 1865 | |
| 1866 | if (warnifnotcap(px, PR_CAP_RS, file, line, cmd, NULL)) |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1867 | ret_code |= ERR_WARN; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1868 | |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1869 | if (cond_start && |
| 1870 | (strcmp(*cond_start, "if") == 0 || strcmp(*cond_start, "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1871 | if ((cond = build_acl_cond(file, line, px, cond_start, &errmsg)) == NULL) { |
| 1872 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 1873 | file, line, cmd, errmsg); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1874 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1875 | goto err; |
| 1876 | } |
| 1877 | } |
| 1878 | else if (cond_start && **cond_start) { |
| 1879 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 1880 | file, line, cmd, *cond_start); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1881 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1882 | goto err; |
| 1883 | } |
| 1884 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1885 | ret_code |= warnif_cond_conflicts(cond, |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1886 | (dir == SMP_OPT_DIR_REQ) ? |
| 1887 | ((px->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR) : |
| 1888 | ((px->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR), |
| 1889 | file, line); |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1890 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1891 | preg = calloc(1, sizeof(*preg)); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1892 | if (!preg) { |
| 1893 | 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] | 1894 | ret_code = ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1895 | goto err; |
| 1896 | } |
| 1897 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1898 | cs = !(flags & REG_ICASE); |
| 1899 | cap = !(flags & REG_NOSUB); |
| 1900 | error = NULL; |
| 1901 | if (!regex_comp(reg, preg, cs, cap, &error)) { |
| 1902 | Alert("parsing [%s:%d] : '%s' : regular expression '%s' : %s\n", file, line, cmd, reg, error); |
| 1903 | free(error); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1904 | ret_code = ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1905 | goto err; |
| 1906 | } |
| 1907 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1908 | 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] | 1909 | preg, action, repl ? strdup(repl) : NULL, cond); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1910 | if (repl && err) { |
| 1911 | Alert("parsing [%s:%d] : '%s' : invalid character or unterminated sequence in replacement string near '%c'.\n", |
| 1912 | file, line, cmd, *err); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1913 | ret_code |= ERR_ALERT | ERR_FATAL; |
| 1914 | goto err_free; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1915 | } |
| 1916 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1917 | 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] | 1918 | ret_code |= ERR_WARN; |
| 1919 | |
| 1920 | return ret_code; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1921 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1922 | err_free: |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1923 | regex_free(preg); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1924 | err: |
| 1925 | free(preg); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1926 | free(errmsg); |
| 1927 | return ret_code; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1928 | } |
| 1929 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1930 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 1931 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 1932 | * Returns the error code, 0 if OK, or any combination of : |
| 1933 | * - ERR_ABORT: must abort ASAP |
| 1934 | * - ERR_FATAL: we can continue parsing but not start the service |
| 1935 | * - ERR_WARN: a warning has been emitted |
| 1936 | * - ERR_ALERT: an alert has been emitted |
| 1937 | * Only the two first ones can stop processing, the two others are just |
| 1938 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1939 | */ |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1940 | int cfg_parse_peers(const char *file, int linenum, char **args, int kwm) |
| 1941 | { |
| 1942 | static struct peers *curpeers = NULL; |
| 1943 | struct peer *newpeer = NULL; |
| 1944 | const char *err; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1945 | struct bind_conf *bind_conf; |
| 1946 | struct listener *l; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1947 | int err_code = 0; |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1948 | char *errmsg = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1949 | |
| 1950 | if (strcmp(args[0], "peers") == 0) { /* new peers section */ |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1951 | if (!*args[1]) { |
| 1952 | Alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 1953 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1954 | goto out; |
| 1955 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1956 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 1957 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1958 | goto out; |
| 1959 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1960 | err = invalid_char(args[1]); |
| 1961 | if (err) { |
| 1962 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 1963 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 1964 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1965 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1966 | } |
| 1967 | |
| 1968 | for (curpeers = peers; curpeers != NULL; curpeers = curpeers->next) { |
| 1969 | /* |
| 1970 | * If there are two proxies with the same name only following |
| 1971 | * combinations are allowed: |
| 1972 | */ |
| 1973 | if (strcmp(curpeers->id, args[1]) == 0) { |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1974 | 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] | 1975 | file, linenum, args[1], curpeers->conf.file, curpeers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1976 | err_code |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1977 | } |
| 1978 | } |
| 1979 | |
| 1980 | if ((curpeers = (struct peers *)calloc(1, sizeof(struct peers))) == NULL) { |
| 1981 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 1982 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1983 | goto out; |
| 1984 | } |
| 1985 | |
| 1986 | curpeers->next = peers; |
| 1987 | peers = curpeers; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 1988 | curpeers->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1989 | curpeers->conf.line = linenum; |
| 1990 | curpeers->last_change = now.tv_sec; |
| 1991 | curpeers->id = strdup(args[1]); |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 1992 | curpeers->state = PR_STNEW; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1993 | } |
| 1994 | else if (strcmp(args[0], "peer") == 0) { /* peer definition */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 1995 | struct sockaddr_storage *sk; |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 1996 | int port1, port2; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 1997 | struct protocol *proto; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1998 | |
| 1999 | if (!*args[2]) { |
| 2000 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2001 | file, linenum, args[0]); |
| 2002 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2003 | goto out; |
| 2004 | } |
| 2005 | |
| 2006 | err = invalid_char(args[1]); |
| 2007 | if (err) { |
| 2008 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2009 | file, linenum, *err, args[1]); |
| 2010 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2011 | goto out; |
| 2012 | } |
| 2013 | |
| 2014 | if ((newpeer = (struct peer *)calloc(1, sizeof(struct peer))) == NULL) { |
| 2015 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2016 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2017 | goto out; |
| 2018 | } |
| 2019 | |
| 2020 | /* the peers are linked backwards first */ |
| 2021 | curpeers->count++; |
| 2022 | newpeer->next = curpeers->remote; |
| 2023 | curpeers->remote = newpeer; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 2024 | newpeer->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2025 | newpeer->conf.line = linenum; |
| 2026 | |
| 2027 | newpeer->last_change = now.tv_sec; |
| 2028 | newpeer->id = strdup(args[1]); |
| 2029 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2030 | sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL); |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2031 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2032 | 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] | 2033 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2034 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2035 | } |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 2036 | |
| 2037 | proto = protocol_by_family(sk->ss_family); |
| 2038 | if (!proto || !proto->connect) { |
| 2039 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 2040 | file, linenum, args[0], args[1]); |
| 2041 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2042 | goto out; |
| 2043 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2044 | |
| 2045 | if (port1 != port2) { |
| 2046 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2047 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2048 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2049 | goto out; |
| 2050 | } |
| 2051 | |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2052 | if (!port1) { |
| 2053 | Alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n", |
| 2054 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2055 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2056 | goto out; |
| 2057 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2058 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2059 | newpeer->addr = *sk; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 2060 | newpeer->proto = proto; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2061 | newpeer->xprt = &raw_sock; |
Willy Tarreau | d02394b | 2012-05-11 18:32:18 +0200 | [diff] [blame] | 2062 | newpeer->sock_init_arg = NULL; |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 2063 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2064 | if (strcmp(newpeer->id, localpeer) == 0) { |
| 2065 | /* Current is local peer, it define a frontend */ |
| 2066 | newpeer->local = 1; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2067 | peers->local = newpeer; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2068 | |
| 2069 | if (!curpeers->peers_fe) { |
| 2070 | if ((curpeers->peers_fe = calloc(1, sizeof(struct proxy))) == NULL) { |
| 2071 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2072 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2073 | goto out; |
| 2074 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2075 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 2076 | init_new_proxy(curpeers->peers_fe); |
| 2077 | curpeers->peers_fe->parent = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2078 | curpeers->peers_fe->id = strdup(args[1]); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2079 | curpeers->peers_fe->conf.args.file = curpeers->peers_fe->conf.file = strdup(file); |
| 2080 | curpeers->peers_fe->conf.args.line = curpeers->peers_fe->conf.line = linenum; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2081 | peers_setup_frontend(curpeers->peers_fe); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2082 | |
| 2083 | bind_conf = bind_conf_alloc(&curpeers->peers_fe->conf.bind, file, linenum, args[2]); |
| 2084 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2085 | if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) { |
| 2086 | if (errmsg && *errmsg) { |
| 2087 | indent_msg(&errmsg, 2); |
| 2088 | 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] | 2089 | } |
| 2090 | else |
| 2091 | Alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n", |
| 2092 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2093 | err_code |= ERR_FATAL; |
| 2094 | goto out; |
| 2095 | } |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2096 | |
| 2097 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | acf3bf9 | 2013-01-18 10:51:07 +0100 | [diff] [blame] | 2098 | l->maxaccept = 1; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2099 | l->maxconn = ((struct proxy *)curpeers->peers_fe)->maxconn; |
| 2100 | l->backlog = ((struct proxy *)curpeers->peers_fe)->backlog; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 2101 | l->accept = session_accept_fd; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2102 | l->handler = process_stream; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2103 | l->analysers |= ((struct proxy *)curpeers->peers_fe)->fe_req_ana; |
Willy Tarreau | 10b688f | 2015-03-13 16:43:12 +0100 | [diff] [blame] | 2104 | l->default_target = ((struct proxy *)curpeers->peers_fe)->default_target; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2105 | l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */ |
| 2106 | global.maxsock += l->maxconn; |
| 2107 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2108 | } |
Willy Tarreau | 8b8fd56 | 2013-01-18 11:12:27 +0100 | [diff] [blame] | 2109 | else { |
| 2110 | Alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d.\n", |
| 2111 | file, linenum, args[0], args[1], |
| 2112 | curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line); |
| 2113 | err_code |= ERR_FATAL; |
| 2114 | goto out; |
| 2115 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2116 | } |
| 2117 | } /* neither "peer" nor "peers" */ |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 2118 | else if (!strcmp(args[0], "disabled")) { /* disables this peers section */ |
| 2119 | curpeers->state = PR_STSTOPPED; |
| 2120 | } |
| 2121 | else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */ |
| 2122 | curpeers->state = PR_STNEW; |
| 2123 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2124 | else if (*args[0] != 0) { |
| 2125 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2126 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2127 | goto out; |
| 2128 | } |
| 2129 | |
| 2130 | out: |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2131 | free(errmsg); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2132 | return err_code; |
| 2133 | } |
| 2134 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2135 | /* |
| 2136 | * Parse a <resolvers> section. |
| 2137 | * Returns the error code, 0 if OK, or any combination of : |
| 2138 | * - ERR_ABORT: must abort ASAP |
| 2139 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2140 | * - ERR_WARN: a warning has been emitted |
| 2141 | * - ERR_ALERT: an alert has been emitted |
| 2142 | * Only the two first ones can stop processing, the two others are just |
| 2143 | * indicators. |
| 2144 | */ |
| 2145 | int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm) |
| 2146 | { |
| 2147 | static struct dns_resolvers *curr_resolvers = NULL; |
| 2148 | struct dns_nameserver *newnameserver = NULL; |
| 2149 | const char *err; |
| 2150 | int err_code = 0; |
| 2151 | char *errmsg = NULL; |
| 2152 | |
| 2153 | if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */ |
| 2154 | if (!*args[1]) { |
| 2155 | Alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum); |
| 2156 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2157 | goto out; |
| 2158 | } |
| 2159 | |
| 2160 | err = invalid_char(args[1]); |
| 2161 | if (err) { |
| 2162 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2163 | file, linenum, *err, args[0], args[1]); |
| 2164 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2165 | goto out; |
| 2166 | } |
| 2167 | |
| 2168 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 2169 | /* Error if two resolvers owns the same name */ |
| 2170 | if (strcmp(curr_resolvers->id, args[1]) == 0) { |
| 2171 | Alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n", |
| 2172 | file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line); |
| 2173 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2174 | } |
| 2175 | } |
| 2176 | |
| 2177 | if ((curr_resolvers = (struct dns_resolvers *)calloc(1, sizeof(struct dns_resolvers))) == NULL) { |
| 2178 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2179 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2180 | goto out; |
| 2181 | } |
| 2182 | |
| 2183 | /* default values */ |
| 2184 | LIST_ADDQ(&dns_resolvers, &curr_resolvers->list); |
| 2185 | curr_resolvers->conf.file = strdup(file); |
| 2186 | curr_resolvers->conf.line = linenum; |
| 2187 | curr_resolvers->id = strdup(args[1]); |
| 2188 | curr_resolvers->query_ids = EB_ROOT; |
| 2189 | /* default hold period for valid is 10s */ |
Baptiste Assmann | 4c5490a | 2015-07-14 21:42:49 +0200 | [diff] [blame] | 2190 | curr_resolvers->hold.valid = 10000; |
| 2191 | curr_resolvers->timeout.retry = 1000; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2192 | curr_resolvers->resolve_retries = 3; |
| 2193 | LIST_INIT(&curr_resolvers->nameserver_list); |
| 2194 | LIST_INIT(&curr_resolvers->curr_resolution); |
| 2195 | } |
| 2196 | else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */ |
| 2197 | struct sockaddr_storage *sk; |
| 2198 | int port1, port2; |
| 2199 | struct protocol *proto; |
| 2200 | |
| 2201 | if (!*args[2]) { |
| 2202 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2203 | file, linenum, args[0]); |
| 2204 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2205 | goto out; |
| 2206 | } |
| 2207 | |
| 2208 | err = invalid_char(args[1]); |
| 2209 | if (err) { |
| 2210 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2211 | file, linenum, *err, args[1]); |
| 2212 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2213 | goto out; |
| 2214 | } |
| 2215 | |
| 2216 | if ((newnameserver = (struct dns_nameserver *)calloc(1, sizeof(struct dns_nameserver))) == NULL) { |
| 2217 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2218 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2219 | goto out; |
| 2220 | } |
| 2221 | |
| 2222 | /* the nameservers are linked backward first */ |
| 2223 | LIST_ADDQ(&curr_resolvers->nameserver_list, &newnameserver->list); |
| 2224 | curr_resolvers->count_nameservers++; |
| 2225 | newnameserver->resolvers = curr_resolvers; |
| 2226 | newnameserver->conf.file = strdup(file); |
| 2227 | newnameserver->conf.line = linenum; |
| 2228 | newnameserver->id = strdup(args[1]); |
| 2229 | |
| 2230 | sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL); |
| 2231 | if (!sk) { |
| 2232 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 2233 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2234 | goto out; |
| 2235 | } |
| 2236 | |
| 2237 | proto = protocol_by_family(sk->ss_family); |
| 2238 | if (!proto || !proto->connect) { |
| 2239 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 2240 | file, linenum, args[0], args[1]); |
| 2241 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2242 | goto out; |
| 2243 | } |
| 2244 | |
| 2245 | if (port1 != port2) { |
| 2246 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2247 | file, linenum, args[0], args[1], args[2]); |
| 2248 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2249 | goto out; |
| 2250 | } |
| 2251 | |
| 2252 | newnameserver->addr = *sk; |
| 2253 | } |
| 2254 | else if (strcmp(args[0], "hold") == 0) { /* hold periods */ |
| 2255 | const char *res; |
| 2256 | unsigned int time; |
| 2257 | |
| 2258 | if (!*args[2]) { |
| 2259 | Alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n", |
| 2260 | file, linenum, args[0]); |
| 2261 | Alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n"); |
| 2262 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2263 | goto out; |
| 2264 | } |
| 2265 | res = parse_time_err(args[2], &time, TIME_UNIT_MS); |
| 2266 | if (res) { |
| 2267 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 2268 | file, linenum, *res, args[0]); |
| 2269 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2270 | goto out; |
| 2271 | } |
| 2272 | if (strcmp(args[1], "valid") == 0) |
| 2273 | curr_resolvers->hold.valid = time; |
| 2274 | else { |
| 2275 | Alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects 'valid'\n", |
| 2276 | file, linenum, args[0], args[1]); |
| 2277 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2278 | goto out; |
| 2279 | } |
| 2280 | |
| 2281 | } |
| 2282 | else if (strcmp(args[0], "resolve_retries") == 0) { |
| 2283 | if (!*args[1]) { |
| 2284 | Alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n", |
| 2285 | file, linenum, args[0]); |
| 2286 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2287 | goto out; |
| 2288 | } |
| 2289 | curr_resolvers->resolve_retries = atoi(args[1]); |
| 2290 | } |
| 2291 | else if (strcmp(args[0], "timeout") == 0) { |
| 2292 | const char *res; |
| 2293 | unsigned int timeout_retry; |
| 2294 | |
| 2295 | if (!*args[2]) { |
| 2296 | Alert("parsing [%s:%d] : '%s' expects 'retry' and <time> as arguments.\n", |
| 2297 | file, linenum, args[0]); |
| 2298 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2299 | goto out; |
| 2300 | } |
| 2301 | res = parse_time_err(args[2], &timeout_retry, TIME_UNIT_MS); |
| 2302 | if (res) { |
| 2303 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 2304 | file, linenum, *res, args[0]); |
| 2305 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2306 | goto out; |
| 2307 | } |
| 2308 | curr_resolvers->timeout.retry = timeout_retry; |
| 2309 | } /* neither "nameserver" nor "resolvers" */ |
| 2310 | else if (*args[0] != 0) { |
| 2311 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2312 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2313 | goto out; |
| 2314 | } |
| 2315 | |
| 2316 | out: |
| 2317 | free(errmsg); |
| 2318 | return err_code; |
| 2319 | } |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2320 | |
| 2321 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 2322 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2323 | * Returns the error code, 0 if OK, or any combination of : |
| 2324 | * - ERR_ABORT: must abort ASAP |
| 2325 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2326 | * - ERR_WARN: a warning has been emitted |
| 2327 | * - ERR_ALERT: an alert has been emitted |
| 2328 | * Only the two first ones can stop processing, the two others are just |
| 2329 | * indicators. |
| 2330 | */ |
| 2331 | int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm) |
| 2332 | { |
| 2333 | static struct mailers *curmailers = NULL; |
| 2334 | struct mailer *newmailer = NULL; |
| 2335 | const char *err; |
| 2336 | int err_code = 0; |
| 2337 | char *errmsg = NULL; |
| 2338 | |
| 2339 | if (strcmp(args[0], "mailers") == 0) { /* new mailers section */ |
| 2340 | if (!*args[1]) { |
| 2341 | Alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum); |
| 2342 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2343 | goto out; |
| 2344 | } |
| 2345 | |
| 2346 | err = invalid_char(args[1]); |
| 2347 | if (err) { |
| 2348 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2349 | file, linenum, *err, args[0], args[1]); |
| 2350 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2351 | goto out; |
| 2352 | } |
| 2353 | |
| 2354 | for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) { |
| 2355 | /* |
| 2356 | * If there are two proxies with the same name only following |
| 2357 | * combinations are allowed: |
| 2358 | */ |
| 2359 | if (strcmp(curmailers->id, args[1]) == 0) { |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2360 | 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] | 2361 | file, linenum, args[1], curmailers->conf.file, curmailers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2362 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2363 | } |
| 2364 | } |
| 2365 | |
| 2366 | if ((curmailers = (struct mailers *)calloc(1, sizeof(struct mailers))) == NULL) { |
| 2367 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2368 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2369 | goto out; |
| 2370 | } |
| 2371 | |
| 2372 | curmailers->next = mailers; |
| 2373 | mailers = curmailers; |
| 2374 | curmailers->conf.file = strdup(file); |
| 2375 | curmailers->conf.line = linenum; |
| 2376 | curmailers->id = strdup(args[1]); |
| 2377 | } |
| 2378 | else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */ |
| 2379 | struct sockaddr_storage *sk; |
| 2380 | int port1, port2; |
| 2381 | struct protocol *proto; |
| 2382 | |
| 2383 | if (!*args[2]) { |
| 2384 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2385 | file, linenum, args[0]); |
| 2386 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2387 | goto out; |
| 2388 | } |
| 2389 | |
| 2390 | err = invalid_char(args[1]); |
| 2391 | if (err) { |
| 2392 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2393 | file, linenum, *err, args[1]); |
| 2394 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2395 | goto out; |
| 2396 | } |
| 2397 | |
| 2398 | if ((newmailer = (struct mailer *)calloc(1, sizeof(struct mailer))) == NULL) { |
| 2399 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2400 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2401 | goto out; |
| 2402 | } |
| 2403 | |
| 2404 | /* the mailers are linked backwards first */ |
| 2405 | curmailers->count++; |
| 2406 | newmailer->next = curmailers->mailer_list; |
| 2407 | curmailers->mailer_list = newmailer; |
| 2408 | newmailer->mailers = curmailers; |
| 2409 | newmailer->conf.file = strdup(file); |
| 2410 | newmailer->conf.line = linenum; |
| 2411 | |
| 2412 | newmailer->id = strdup(args[1]); |
| 2413 | |
| 2414 | sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL); |
| 2415 | if (!sk) { |
| 2416 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 2417 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2418 | goto out; |
| 2419 | } |
| 2420 | |
| 2421 | proto = protocol_by_family(sk->ss_family); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 2422 | if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) { |
| 2423 | 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] | 2424 | file, linenum, args[0], args[1]); |
| 2425 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2426 | goto out; |
| 2427 | } |
| 2428 | |
| 2429 | if (port1 != port2) { |
| 2430 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2431 | file, linenum, args[0], args[1], args[2]); |
| 2432 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2433 | goto out; |
| 2434 | } |
| 2435 | |
| 2436 | if (!port1) { |
| 2437 | Alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n", |
| 2438 | file, linenum, args[0], args[1], args[2]); |
| 2439 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2440 | goto out; |
| 2441 | } |
| 2442 | |
| 2443 | newmailer->addr = *sk; |
| 2444 | newmailer->proto = proto; |
| 2445 | newmailer->xprt = &raw_sock; |
| 2446 | newmailer->sock_init_arg = NULL; |
| 2447 | } /* neither "mailer" nor "mailers" */ |
| 2448 | else if (*args[0] != 0) { |
| 2449 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2450 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2451 | goto out; |
| 2452 | } |
| 2453 | |
| 2454 | out: |
| 2455 | free(errmsg); |
| 2456 | return err_code; |
| 2457 | } |
| 2458 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2459 | static void free_email_alert(struct proxy *p) |
| 2460 | { |
| 2461 | free(p->email_alert.mailers.name); |
| 2462 | p->email_alert.mailers.name = NULL; |
| 2463 | free(p->email_alert.from); |
| 2464 | p->email_alert.from = NULL; |
| 2465 | free(p->email_alert.to); |
| 2466 | p->email_alert.to = NULL; |
| 2467 | free(p->email_alert.myhostname); |
| 2468 | p->email_alert.myhostname = NULL; |
| 2469 | } |
| 2470 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 2471 | 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] | 2472 | { |
| 2473 | static struct proxy *curproxy = NULL; |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 2474 | const char *err; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2475 | char *error; |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 2476 | int rc; |
| 2477 | unsigned val; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2478 | int err_code = 0; |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 2479 | struct acl_cond *cond = NULL; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2480 | struct logsrv *tmplogsrv; |
Willy Tarreau | f4068b6 | 2012-05-08 17:37:49 +0200 | [diff] [blame] | 2481 | char *errmsg = NULL; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2482 | struct bind_conf *bind_conf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2483 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2484 | if (!strcmp(args[0], "listen")) |
| 2485 | rc = PR_CAP_LISTEN; |
| 2486 | else if (!strcmp(args[0], "frontend")) |
| 2487 | rc = PR_CAP_FE | PR_CAP_RS; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2488 | else if (!strcmp(args[0], "backend")) |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2489 | rc = PR_CAP_BE | PR_CAP_RS; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2490 | else |
| 2491 | rc = PR_CAP_NONE; |
| 2492 | |
| 2493 | if (rc != PR_CAP_NONE) { /* new proxy */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2494 | if (!*args[1]) { |
| 2495 | Alert("parsing [%s:%d] : '%s' expects an <id> argument and\n" |
| 2496 | " optionnally supports [addr1]:port1[-end1]{,[addr]:port[-end]}...\n", |
| 2497 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2498 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2499 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2500 | } |
Krzysztof Oledzki | 365d1cd | 2007-10-21 02:55:17 +0200 | [diff] [blame] | 2501 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 2502 | err = invalid_char(args[1]); |
| 2503 | if (err) { |
| 2504 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2505 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2506 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 2507 | } |
| 2508 | |
Willy Tarreau | 8f50b68 | 2015-05-26 11:45:02 +0200 | [diff] [blame] | 2509 | curproxy = (rc & PR_CAP_FE) ? proxy_fe_by_name(args[1]) : proxy_be_by_name(args[1]); |
| 2510 | if (curproxy) { |
| 2511 | Alert("Parsing [%s:%d]: %s '%s' has the same name as %s '%s' declared at %s:%d.\n", |
| 2512 | file, linenum, proxy_cap_str(rc), args[1], proxy_type_str(curproxy), |
| 2513 | curproxy->id, curproxy->conf.file, curproxy->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2514 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | 365d1cd | 2007-10-21 02:55:17 +0200 | [diff] [blame] | 2515 | } |
| 2516 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2517 | if ((curproxy = (struct proxy *)calloc(1, sizeof(struct proxy))) == NULL) { |
| 2518 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2519 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2520 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2521 | } |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 2522 | |
Willy Tarreau | 97cb780 | 2010-01-03 20:23:58 +0100 | [diff] [blame] | 2523 | init_new_proxy(curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2524 | curproxy->next = proxy; |
| 2525 | proxy = curproxy; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2526 | curproxy->conf.args.file = curproxy->conf.file = strdup(file); |
| 2527 | curproxy->conf.args.line = curproxy->conf.line = linenum; |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 2528 | curproxy->last_change = now.tv_sec; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2529 | curproxy->id = strdup(args[1]); |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2530 | curproxy->cap = rc; |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 2531 | proxy_store_name(curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2532 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 2533 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2534 | if (curproxy->cap & PR_CAP_FE) |
| 2535 | Alert("parsing [%s:%d] : please use the 'bind' keyword for listening addresses.\n", file, linenum); |
| 2536 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2537 | } |
| 2538 | |
| 2539 | /* set default values */ |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 2540 | memcpy(&curproxy->defsrv, &defproxy.defsrv, sizeof(curproxy->defsrv)); |
Willy Tarreau | 7016020 | 2010-04-07 16:06:40 +0200 | [diff] [blame] | 2541 | curproxy->defsrv.id = "default-server"; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 2542 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2543 | curproxy->state = defproxy.state; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2544 | curproxy->options = defproxy.options; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 2545 | curproxy->options2 = defproxy.options2; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 2546 | curproxy->no_options = defproxy.no_options; |
| 2547 | curproxy->no_options2 = defproxy.no_options2; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 2548 | curproxy->bind_proc = defproxy.bind_proc; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 2549 | curproxy->except_net = defproxy.except_net; |
| 2550 | curproxy->except_mask = defproxy.except_mask; |
Maik Broemme | 36db02e | 2009-05-08 17:02:07 +0200 | [diff] [blame] | 2551 | curproxy->except_to = defproxy.except_to; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 2552 | curproxy->except_mask_to = defproxy.except_mask_to; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2553 | |
Willy Tarreau | 79f5fe8 | 2008-08-23 08:18:21 +0200 | [diff] [blame] | 2554 | if (defproxy.fwdfor_hdr_len) { |
| 2555 | curproxy->fwdfor_hdr_len = defproxy.fwdfor_hdr_len; |
| 2556 | curproxy->fwdfor_hdr_name = strdup(defproxy.fwdfor_hdr_name); |
| 2557 | } |
| 2558 | |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 2559 | if (defproxy.orgto_hdr_len) { |
| 2560 | curproxy->orgto_hdr_len = defproxy.orgto_hdr_len; |
| 2561 | curproxy->orgto_hdr_name = strdup(defproxy.orgto_hdr_name); |
| 2562 | } |
| 2563 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 2564 | if (defproxy.server_id_hdr_len) { |
| 2565 | curproxy->server_id_hdr_len = defproxy.server_id_hdr_len; |
| 2566 | curproxy->server_id_hdr_name = strdup(defproxy.server_id_hdr_name); |
| 2567 | } |
| 2568 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2569 | if (curproxy->cap & PR_CAP_FE) { |
| 2570 | curproxy->maxconn = defproxy.maxconn; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 2571 | curproxy->backlog = defproxy.backlog; |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 2572 | curproxy->fe_sps_lim = defproxy.fe_sps_lim; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2573 | |
| 2574 | /* initialize error relocations */ |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 2575 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) |
| 2576 | chunk_dup(&curproxy->errmsg[rc], &defproxy.errmsg[rc]); |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2577 | |
| 2578 | curproxy->to_log = defproxy.to_log & ~LW_COOKIE & ~LW_REQHDR & ~ LW_RSPHDR; |
| 2579 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2580 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2581 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | 743c128 | 2014-11-18 15:04:29 +0100 | [diff] [blame] | 2582 | curproxy->lbprm.algo = defproxy.lbprm.algo; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2583 | curproxy->fullconn = defproxy.fullconn; |
| 2584 | curproxy->conn_retries = defproxy.conn_retries; |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 2585 | curproxy->redispatch_after = defproxy.redispatch_after; |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 2586 | curproxy->max_ka_queue = defproxy.max_ka_queue; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2587 | |
Willy Tarreau | aa2f389 | 2010-10-22 16:15:31 +0200 | [diff] [blame] | 2588 | if (defproxy.check_req) { |
| 2589 | curproxy->check_req = calloc(1, defproxy.check_len); |
| 2590 | memcpy(curproxy->check_req, defproxy.check_req, defproxy.check_len); |
| 2591 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2592 | curproxy->check_len = defproxy.check_len; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2593 | |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2594 | if (defproxy.expect_str) { |
| 2595 | curproxy->expect_str = strdup(defproxy.expect_str); |
| 2596 | if (defproxy.expect_regex) { |
| 2597 | /* note: this regex is known to be valid */ |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2598 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 2599 | regex_comp(defproxy.expect_str, curproxy->expect_regex, 1, 1, NULL); |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2600 | } |
| 2601 | } |
| 2602 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 2603 | curproxy->ck_opts = defproxy.ck_opts; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2604 | if (defproxy.cookie_name) |
| 2605 | curproxy->cookie_name = strdup(defproxy.cookie_name); |
| 2606 | curproxy->cookie_len = defproxy.cookie_len; |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 2607 | if (defproxy.cookie_domain) |
| 2608 | curproxy->cookie_domain = strdup(defproxy.cookie_domain); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2609 | |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 2610 | if (defproxy.cookie_maxidle) |
| 2611 | curproxy->cookie_maxidle = defproxy.cookie_maxidle; |
| 2612 | |
| 2613 | if (defproxy.cookie_maxlife) |
| 2614 | curproxy->cookie_maxlife = defproxy.cookie_maxlife; |
| 2615 | |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 2616 | if (defproxy.rdp_cookie_name) |
| 2617 | curproxy->rdp_cookie_name = strdup(defproxy.rdp_cookie_name); |
| 2618 | curproxy->rdp_cookie_len = defproxy.rdp_cookie_len; |
| 2619 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2620 | if (defproxy.url_param_name) |
| 2621 | curproxy->url_param_name = strdup(defproxy.url_param_name); |
| 2622 | curproxy->url_param_len = defproxy.url_param_len; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 2623 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2624 | if (defproxy.hh_name) |
| 2625 | curproxy->hh_name = strdup(defproxy.hh_name); |
| 2626 | curproxy->hh_len = defproxy.hh_len; |
| 2627 | curproxy->hh_match_domain = defproxy.hh_match_domain; |
| 2628 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2629 | if (defproxy.conn_src.iface_name) |
| 2630 | curproxy->conn_src.iface_name = strdup(defproxy.conn_src.iface_name); |
| 2631 | curproxy->conn_src.iface_len = defproxy.conn_src.iface_len; |
Godbach | 9f04853 | 2013-04-23 15:27:57 +0800 | [diff] [blame] | 2632 | curproxy->conn_src.opts = defproxy.conn_src.opts; |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 2633 | #if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT) |
Godbach | 9f04853 | 2013-04-23 15:27:57 +0800 | [diff] [blame] | 2634 | curproxy->conn_src.tproxy_addr = defproxy.conn_src.tproxy_addr; |
Willy Tarreau | c621d36 | 2013-04-25 17:35:22 +0200 | [diff] [blame] | 2635 | #endif |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2636 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2637 | |
Willy Tarreau | 3b6b1a9 | 2009-07-23 13:24:23 +0200 | [diff] [blame] | 2638 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2639 | if (defproxy.capture_name) |
| 2640 | curproxy->capture_name = strdup(defproxy.capture_name); |
| 2641 | curproxy->capture_namelen = defproxy.capture_namelen; |
| 2642 | curproxy->capture_len = defproxy.capture_len; |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2643 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2644 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2645 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 2646 | curproxy->timeout.client = defproxy.timeout.client; |
Simone Gotti | 1b48cc9 | 2014-06-11 12:25:28 +0200 | [diff] [blame] | 2647 | curproxy->timeout.clientfin = defproxy.timeout.clientfin; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 2648 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 2649 | curproxy->timeout.httpreq = defproxy.timeout.httpreq; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2650 | curproxy->timeout.httpka = defproxy.timeout.httpka; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2651 | curproxy->mon_net = defproxy.mon_net; |
| 2652 | curproxy->mon_mask = defproxy.mon_mask; |
| 2653 | if (defproxy.monitor_uri) |
| 2654 | curproxy->monitor_uri = strdup(defproxy.monitor_uri); |
| 2655 | curproxy->monitor_uri_len = defproxy.monitor_uri_len; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2656 | if (defproxy.defbe.name) |
| 2657 | curproxy->defbe.name = strdup(defproxy.defbe.name); |
Willy Tarreau | 99a7ca2 | 2012-05-31 19:39:23 +0200 | [diff] [blame] | 2658 | |
| 2659 | /* 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] | 2660 | curproxy->conf.logformat_string = defproxy.conf.logformat_string; |
| 2661 | if (curproxy->conf.logformat_string && |
| 2662 | curproxy->conf.logformat_string != default_http_log_format && |
| 2663 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 2664 | curproxy->conf.logformat_string != clf_http_log_format) |
| 2665 | curproxy->conf.logformat_string = strdup(curproxy->conf.logformat_string); |
| 2666 | |
| 2667 | if (defproxy.conf.lfs_file) { |
| 2668 | curproxy->conf.lfs_file = strdup(defproxy.conf.lfs_file); |
| 2669 | curproxy->conf.lfs_line = defproxy.conf.lfs_line; |
| 2670 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2671 | } |
| 2672 | |
| 2673 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 2674 | curproxy->timeout.connect = defproxy.timeout.connect; |
| 2675 | curproxy->timeout.server = defproxy.timeout.server; |
Simone Gotti | 1b48cc9 | 2014-06-11 12:25:28 +0200 | [diff] [blame] | 2676 | curproxy->timeout.serverfin = defproxy.timeout.serverfin; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2677 | curproxy->timeout.check = defproxy.timeout.check; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 2678 | curproxy->timeout.queue = defproxy.timeout.queue; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 2679 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 2680 | curproxy->timeout.httpreq = defproxy.timeout.httpreq; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2681 | curproxy->timeout.httpka = defproxy.timeout.httpka; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 2682 | curproxy->timeout.tunnel = defproxy.timeout.tunnel; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2683 | curproxy->conn_src.source_addr = defproxy.conn_src.source_addr; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2684 | } |
| 2685 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2686 | curproxy->mode = defproxy.mode; |
Willy Tarreau | ed2119c | 2014-04-24 22:10:39 +0200 | [diff] [blame] | 2687 | curproxy->uri_auth = defproxy.uri_auth; /* for stats */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2688 | |
| 2689 | /* copy default logsrvs to curproxy */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2690 | list_for_each_entry(tmplogsrv, &defproxy.logsrvs, list) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2691 | struct logsrv *node = malloc(sizeof(struct logsrv)); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2692 | memcpy(node, tmplogsrv, sizeof(struct logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2693 | LIST_INIT(&node->list); |
| 2694 | LIST_ADDQ(&curproxy->logsrvs, &node->list); |
| 2695 | } |
| 2696 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2697 | curproxy->conf.uniqueid_format_string = defproxy.conf.uniqueid_format_string; |
| 2698 | if (curproxy->conf.uniqueid_format_string) |
| 2699 | curproxy->conf.uniqueid_format_string = strdup(curproxy->conf.uniqueid_format_string); |
| 2700 | |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 2701 | if (defproxy.log_tag) |
| 2702 | curproxy->log_tag = strdup(defproxy.log_tag); |
| 2703 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2704 | if (defproxy.conf.uif_file) { |
| 2705 | curproxy->conf.uif_file = strdup(defproxy.conf.uif_file); |
| 2706 | curproxy->conf.uif_line = defproxy.conf.uif_line; |
| 2707 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 2708 | |
| 2709 | /* copy default header unique id */ |
| 2710 | if (defproxy.header_unique_id) |
| 2711 | curproxy->header_unique_id = strdup(defproxy.header_unique_id); |
| 2712 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2713 | /* default compression options */ |
| 2714 | if (defproxy.comp != NULL) { |
| 2715 | curproxy->comp = calloc(1, sizeof(struct comp)); |
| 2716 | curproxy->comp->algos = defproxy.comp->algos; |
| 2717 | curproxy->comp->types = defproxy.comp->types; |
| 2718 | } |
| 2719 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2720 | curproxy->grace = defproxy.grace; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2721 | curproxy->conf.used_listener_id = EB_ROOT; |
| 2722 | curproxy->conf.used_server_id = EB_ROOT; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2723 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2724 | if (defproxy.check_path) |
| 2725 | curproxy->check_path = strdup(defproxy.check_path); |
| 2726 | if (defproxy.check_command) |
| 2727 | curproxy->check_command = strdup(defproxy.check_command); |
| 2728 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2729 | if (defproxy.email_alert.mailers.name) |
| 2730 | curproxy->email_alert.mailers.name = strdup(defproxy.email_alert.mailers.name); |
| 2731 | if (defproxy.email_alert.from) |
| 2732 | curproxy->email_alert.from = strdup(defproxy.email_alert.from); |
| 2733 | if (defproxy.email_alert.to) |
| 2734 | curproxy->email_alert.to = strdup(defproxy.email_alert.to); |
| 2735 | if (defproxy.email_alert.myhostname) |
| 2736 | curproxy->email_alert.myhostname = strdup(defproxy.email_alert.myhostname); |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 2737 | curproxy->email_alert.level = defproxy.email_alert.level; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2738 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2739 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2740 | } |
| 2741 | else if (!strcmp(args[0], "defaults")) { /* use this one to assign default values */ |
| 2742 | /* some variables may have already been initialized earlier */ |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2743 | /* FIXME-20070101: we should do this too at the end of the |
| 2744 | * config parsing to free all default values. |
| 2745 | */ |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 2746 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2747 | err_code |= ERR_ABORT; |
| 2748 | goto out; |
| 2749 | } |
| 2750 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2751 | free(defproxy.check_req); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2752 | free(defproxy.check_command); |
| 2753 | free(defproxy.check_path); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2754 | free(defproxy.cookie_name); |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 2755 | free(defproxy.rdp_cookie_name); |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 2756 | free(defproxy.cookie_domain); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2757 | free(defproxy.url_param_name); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2758 | free(defproxy.hh_name); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2759 | free(defproxy.capture_name); |
| 2760 | free(defproxy.monitor_uri); |
| 2761 | free(defproxy.defbe.name); |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2762 | free(defproxy.conn_src.iface_name); |
Willy Tarreau | 79f5fe8 | 2008-08-23 08:18:21 +0200 | [diff] [blame] | 2763 | free(defproxy.fwdfor_hdr_name); |
| 2764 | defproxy.fwdfor_hdr_len = 0; |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 2765 | free(defproxy.orgto_hdr_name); |
| 2766 | defproxy.orgto_hdr_len = 0; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 2767 | free(defproxy.server_id_hdr_name); |
| 2768 | defproxy.server_id_hdr_len = 0; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2769 | free(defproxy.expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 2770 | if (defproxy.expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2771 | regex_free(defproxy.expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 2772 | free(defproxy.expect_regex); |
| 2773 | defproxy.expect_regex = NULL; |
| 2774 | } |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2775 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2776 | if (defproxy.conf.logformat_string != default_http_log_format && |
| 2777 | defproxy.conf.logformat_string != default_tcp_log_format && |
| 2778 | defproxy.conf.logformat_string != clf_http_log_format) |
| 2779 | free(defproxy.conf.logformat_string); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 2780 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2781 | free(defproxy.conf.uniqueid_format_string); |
| 2782 | free(defproxy.conf.lfs_file); |
| 2783 | free(defproxy.conf.uif_file); |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 2784 | free(defproxy.log_tag); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2785 | free_email_alert(&defproxy); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 2786 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2787 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 2788 | chunk_destroy(&defproxy.errmsg[rc]); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2789 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2790 | /* we cannot free uri_auth because it might already be used */ |
| 2791 | init_default_instance(); |
| 2792 | curproxy = &defproxy; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2793 | curproxy->conf.args.file = curproxy->conf.file = strdup(file); |
| 2794 | curproxy->conf.args.line = curproxy->conf.line = linenum; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2795 | defproxy.cap = PR_CAP_LISTEN; /* all caps for now */ |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2796 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2797 | } |
| 2798 | else if (curproxy == NULL) { |
| 2799 | Alert("parsing [%s:%d] : 'listen' or 'defaults' expected.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2800 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2801 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2802 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2803 | |
| 2804 | /* update the current file and line being parsed */ |
| 2805 | curproxy->conf.args.file = curproxy->conf.file; |
| 2806 | curproxy->conf.args.line = linenum; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2807 | |
| 2808 | /* Now let's parse the proxy-specific keywords */ |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2809 | if (!strcmp(args[0], "server") || !strcmp(args[0], "default-server")) { |
| 2810 | err_code |= parse_server(file, linenum, args, curproxy, &defproxy); |
| 2811 | if (err_code & ERR_FATAL) |
| 2812 | goto out; |
| 2813 | } |
| 2814 | else if (!strcmp(args[0], "bind")) { /* new listen addresses */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2815 | struct listener *l; |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2816 | int cur_arg; |
| 2817 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2818 | if (curproxy == &defproxy) { |
| 2819 | 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] | 2820 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2821 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2822 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2823 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2824 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2825 | |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 2826 | if (!*(args[1])) { |
Willy Tarreau | d55c3fe | 2010-11-09 09:50:37 +0100 | [diff] [blame] | 2827 | 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] | 2828 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2829 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2830 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2831 | } |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 2832 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2833 | bind_conf = bind_conf_alloc(&curproxy->conf.bind, file, linenum, args[1]); |
Willy Tarreau | 8dc21fa | 2013-01-24 15:17:20 +0100 | [diff] [blame] | 2834 | |
| 2835 | /* use default settings for unix sockets */ |
| 2836 | bind_conf->ux.uid = global.unix_bind.ux.uid; |
| 2837 | bind_conf->ux.gid = global.unix_bind.ux.gid; |
| 2838 | bind_conf->ux.mode = global.unix_bind.ux.mode; |
Willy Tarreau | 8a95691 | 2010-10-15 14:27:08 +0200 | [diff] [blame] | 2839 | |
| 2840 | /* NOTE: the following line might create several listeners if there |
| 2841 | * are comma-separated IPs or port ranges. So all further processing |
| 2842 | * will have to be applied to all listeners created after last_listen. |
| 2843 | */ |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2844 | if (!str2listener(args[1], curproxy, bind_conf, file, linenum, &errmsg)) { |
| 2845 | if (errmsg && *errmsg) { |
| 2846 | indent_msg(&errmsg, 2); |
| 2847 | Alert("parsing [%s:%d] : '%s' : %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 2848 | } |
| 2849 | else |
| 2850 | Alert("parsing [%s:%d] : '%s' : error encountered while parsing listening address '%s'.\n", |
| 2851 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2852 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2853 | goto out; |
| 2854 | } |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2855 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2856 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
| 2857 | /* Set default global rights and owner for unix bind */ |
Willy Tarreau | c8b1109 | 2011-02-16 11:08:57 +0100 | [diff] [blame] | 2858 | global.maxsock++; |
Willy Tarreau | 90a570f | 2009-10-04 20:54:54 +0200 | [diff] [blame] | 2859 | } |
| 2860 | |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2861 | cur_arg = 2; |
| 2862 | while (*(args[cur_arg])) { |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2863 | static int bind_dumped; |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2864 | struct bind_kw *kw; |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2865 | char *err; |
| 2866 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2867 | kw = bind_find_kw(args[cur_arg]); |
| 2868 | if (kw) { |
| 2869 | char *err = NULL; |
| 2870 | int code; |
| 2871 | |
| 2872 | if (!kw->parse) { |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2873 | Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n", |
| 2874 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2875 | cur_arg += 1 + kw->skip ; |
| 2876 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2877 | goto out; |
| 2878 | } |
| 2879 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2880 | code = kw->parse(args, cur_arg, curproxy, bind_conf, &err); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2881 | err_code |= code; |
| 2882 | |
| 2883 | if (code) { |
| 2884 | if (err && *err) { |
| 2885 | indent_msg(&err, 2); |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2886 | 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] | 2887 | } |
| 2888 | else |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2889 | Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n", |
| 2890 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2891 | if (code & ERR_FATAL) { |
| 2892 | free(err); |
| 2893 | cur_arg += 1 + kw->skip; |
| 2894 | goto out; |
| 2895 | } |
| 2896 | } |
| 2897 | free(err); |
| 2898 | cur_arg += 1 + kw->skip; |
| 2899 | continue; |
| 2900 | } |
| 2901 | |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2902 | err = NULL; |
| 2903 | if (!bind_dumped) { |
| 2904 | bind_dump_kws(&err); |
| 2905 | indent_msg(&err, 4); |
| 2906 | bind_dumped = 1; |
| 2907 | } |
| 2908 | |
| 2909 | Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n", |
| 2910 | file, linenum, args[0], args[1], args[cur_arg], |
| 2911 | err ? " Registered keywords :" : "", err ? err : ""); |
| 2912 | free(err); |
| 2913 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2914 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2915 | goto out; |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 2916 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2917 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2918 | } |
| 2919 | 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] | 2920 | 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] | 2921 | Alert("parsing [%s:%d] : '%s' expects address[/mask].\n", |
| 2922 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2923 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2924 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2925 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2926 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2927 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2928 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2929 | /* flush useless bits */ |
| 2930 | curproxy->mon_net.s_addr &= curproxy->mon_mask.s_addr; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2931 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2932 | } |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2933 | else if (!strcmp(args[0], "monitor-uri")) { /* set the URI to intercept */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2934 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2935 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2936 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 2937 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 2938 | goto out; |
| 2939 | |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2940 | if (!*args[1]) { |
| 2941 | Alert("parsing [%s:%d] : '%s' expects an URI.\n", |
| 2942 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2943 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2944 | goto out; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2945 | } |
| 2946 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2947 | free(curproxy->monitor_uri); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2948 | curproxy->monitor_uri_len = strlen(args[1]); |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2949 | curproxy->monitor_uri = (char *)calloc(1, curproxy->monitor_uri_len + 1); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2950 | memcpy(curproxy->monitor_uri, args[1], curproxy->monitor_uri_len); |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2951 | curproxy->monitor_uri[curproxy->monitor_uri_len] = '\0'; |
| 2952 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2953 | goto out; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2954 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2955 | else if (!strcmp(args[0], "mode")) { /* sets the proxy mode */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 2956 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 2957 | goto out; |
| 2958 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2959 | if (!strcmp(args[1], "http")) curproxy->mode = PR_MODE_HTTP; |
| 2960 | else if (!strcmp(args[1], "tcp")) curproxy->mode = PR_MODE_TCP; |
| 2961 | else if (!strcmp(args[1], "health")) curproxy->mode = PR_MODE_HEALTH; |
| 2962 | else { |
| 2963 | 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] | 2964 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2965 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2966 | } |
| 2967 | } |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2968 | else if (!strcmp(args[0], "id")) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2969 | struct eb32_node *node; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2970 | |
| 2971 | if (curproxy == &defproxy) { |
| 2972 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", |
| 2973 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2974 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2975 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2976 | } |
| 2977 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 2978 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 2979 | goto out; |
| 2980 | |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2981 | if (!*args[1]) { |
| 2982 | Alert("parsing [%s:%d]: '%s' expects an integer argument.\n", |
| 2983 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2984 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2985 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2986 | } |
| 2987 | |
| 2988 | curproxy->uuid = atol(args[1]); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2989 | curproxy->conf.id.key = curproxy->uuid; |
Willy Tarreau | 0d1fdf7 | 2015-05-27 16:44:02 +0200 | [diff] [blame] | 2990 | curproxy->options |= PR_O_FORCED_ID; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2991 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2992 | if (curproxy->uuid <= 0) { |
| 2993 | Alert("parsing [%s:%d]: custom id has to be > 0.\n", |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2994 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2995 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2996 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 2997 | } |
| 2998 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2999 | node = eb32_lookup(&used_proxy_id, curproxy->uuid); |
| 3000 | if (node) { |
| 3001 | struct proxy *target = container_of(node, struct proxy, conf.id); |
| 3002 | Alert("parsing [%s:%d]: %s %s reuses same custom id as %s %s (declared at %s:%d).\n", |
| 3003 | file, linenum, proxy_type_str(curproxy), curproxy->id, |
| 3004 | proxy_type_str(target), target->id, target->conf.file, target->conf.line); |
| 3005 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3006 | goto out; |
| 3007 | } |
| 3008 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3009 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3010 | else if (!strcmp(args[0], "description")) { |
| 3011 | int i, len=0; |
| 3012 | char *d; |
| 3013 | |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3014 | if (curproxy == &defproxy) { |
| 3015 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", |
| 3016 | file, linenum, args[0]); |
| 3017 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3018 | goto out; |
| 3019 | } |
| 3020 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3021 | if (!*args[1]) { |
| 3022 | Alert("parsing [%s:%d]: '%s' expects a string argument.\n", |
| 3023 | file, linenum, args[0]); |
| 3024 | return -1; |
| 3025 | } |
| 3026 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 3027 | for (i = 1; *args[i]; i++) |
| 3028 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3029 | |
| 3030 | d = (char *)calloc(1, len); |
| 3031 | curproxy->desc = d; |
| 3032 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 3033 | d += snprintf(d, curproxy->desc + len - d, "%s", args[1]); |
| 3034 | for (i = 2; *args[i]; i++) |
| 3035 | d += snprintf(d, curproxy->desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3036 | |
| 3037 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3038 | else if (!strcmp(args[0], "disabled")) { /* disables this proxy */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3039 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 3040 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3041 | curproxy->state = PR_STSTOPPED; |
| 3042 | } |
| 3043 | 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] | 3044 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 3045 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3046 | curproxy->state = PR_STNEW; |
| 3047 | } |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3048 | else if (!strcmp(args[0], "bind-process")) { /* enable this proxy only on some processes */ |
| 3049 | int cur_arg = 1; |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3050 | unsigned long set = 0; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3051 | |
| 3052 | while (*args[cur_arg]) { |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3053 | unsigned int low, high; |
| 3054 | |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3055 | if (strcmp(args[cur_arg], "all") == 0) { |
| 3056 | set = 0; |
| 3057 | break; |
| 3058 | } |
| 3059 | else if (strcmp(args[cur_arg], "odd") == 0) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3060 | set |= ~0UL/3UL; /* 0x555....555 */ |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3061 | } |
| 3062 | else if (strcmp(args[cur_arg], "even") == 0) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3063 | set |= (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3064 | } |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 3065 | else if (isdigit((int)*args[cur_arg])) { |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3066 | char *dash = strchr(args[cur_arg], '-'); |
| 3067 | |
| 3068 | low = high = str2uic(args[cur_arg]); |
| 3069 | if (dash) |
| 3070 | high = str2uic(dash + 1); |
| 3071 | |
| 3072 | if (high < low) { |
| 3073 | unsigned int swap = low; |
| 3074 | low = high; |
| 3075 | high = swap; |
| 3076 | } |
| 3077 | |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3078 | if (low < 1 || high > LONGBITS) { |
| 3079 | Alert("parsing [%s:%d]: %s supports process numbers from 1 to %d.\n", |
| 3080 | file, linenum, args[0], LONGBITS); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3081 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3082 | goto out; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3083 | } |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3084 | while (low <= high) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3085 | set |= 1UL << (low++ - 1); |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3086 | } |
| 3087 | else { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3088 | Alert("parsing [%s:%d]: %s expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to %d.\n", |
| 3089 | file, linenum, args[0], LONGBITS); |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3090 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3091 | goto out; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3092 | } |
| 3093 | cur_arg++; |
| 3094 | } |
| 3095 | curproxy->bind_proc = set; |
| 3096 | } |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3097 | else if (!strcmp(args[0], "acl")) { /* add an ACL */ |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3098 | if (curproxy == &defproxy) { |
| 3099 | 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] | 3100 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3101 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3102 | } |
| 3103 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 3104 | err = invalid_char(args[1]); |
| 3105 | if (err) { |
| 3106 | Alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n", |
| 3107 | file, linenum, *err, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3108 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 3109 | } |
| 3110 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 3111 | 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] | 3112 | Alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n", |
| 3113 | file, linenum, args[1], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3114 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3115 | goto out; |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3116 | } |
| 3117 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3118 | else if (!strcmp(args[0], "cookie")) { /* cookie name */ |
| 3119 | int cur_arg; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3120 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3121 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3122 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3123 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3124 | if (*(args[1]) == 0) { |
| 3125 | Alert("parsing [%s:%d] : '%s' expects <cookie_name> as argument.\n", |
| 3126 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3127 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3128 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3129 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3130 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3131 | curproxy->ck_opts = 0; |
Willy Tarreau | c63d4bb | 2010-10-23 11:37:27 +0200 | [diff] [blame] | 3132 | curproxy->cookie_maxidle = curproxy->cookie_maxlife = 0; |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 3133 | free(curproxy->cookie_domain); curproxy->cookie_domain = NULL; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3134 | free(curproxy->cookie_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3135 | curproxy->cookie_name = strdup(args[1]); |
| 3136 | curproxy->cookie_len = strlen(curproxy->cookie_name); |
Willy Tarreau | c63d4bb | 2010-10-23 11:37:27 +0200 | [diff] [blame] | 3137 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3138 | cur_arg = 2; |
| 3139 | while (*(args[cur_arg])) { |
| 3140 | if (!strcmp(args[cur_arg], "rewrite")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3141 | curproxy->ck_opts |= PR_CK_RW; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3142 | } |
| 3143 | else if (!strcmp(args[cur_arg], "indirect")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3144 | curproxy->ck_opts |= PR_CK_IND; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3145 | } |
| 3146 | else if (!strcmp(args[cur_arg], "insert")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3147 | curproxy->ck_opts |= PR_CK_INS; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3148 | } |
| 3149 | else if (!strcmp(args[cur_arg], "nocache")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3150 | curproxy->ck_opts |= PR_CK_NOC; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3151 | } |
| 3152 | else if (!strcmp(args[cur_arg], "postonly")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3153 | curproxy->ck_opts |= PR_CK_POST; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3154 | } |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3155 | else if (!strcmp(args[cur_arg], "preserve")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3156 | curproxy->ck_opts |= PR_CK_PSV; |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3157 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3158 | else if (!strcmp(args[cur_arg], "prefix")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3159 | curproxy->ck_opts |= PR_CK_PFX; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3160 | } |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 3161 | else if (!strcmp(args[cur_arg], "httponly")) { |
| 3162 | curproxy->ck_opts |= PR_CK_HTTPONLY; |
| 3163 | } |
| 3164 | else if (!strcmp(args[cur_arg], "secure")) { |
| 3165 | curproxy->ck_opts |= PR_CK_SECURE; |
| 3166 | } |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3167 | else if (!strcmp(args[cur_arg], "domain")) { |
| 3168 | if (!*args[cur_arg + 1]) { |
| 3169 | Alert("parsing [%s:%d]: '%s' expects <domain> as argument.\n", |
| 3170 | file, linenum, args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3171 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3172 | goto out; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3173 | } |
| 3174 | |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3175 | if (*args[cur_arg + 1] != '.' || !strchr(args[cur_arg + 1] + 1, '.')) { |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3176 | /* rfc2109, 4.3.2 Rejecting Cookies */ |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3177 | Warning("parsing [%s:%d]: domain '%s' contains no embedded" |
| 3178 | " dots nor does not start with a dot." |
| 3179 | " RFC forbids it, this configuration may not work properly.\n", |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3180 | file, linenum, args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3181 | err_code |= ERR_WARN; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3182 | } |
| 3183 | |
| 3184 | err = invalid_domainchar(args[cur_arg + 1]); |
| 3185 | if (err) { |
| 3186 | Alert("parsing [%s:%d]: character '%c' is not permitted in domain name '%s'.\n", |
| 3187 | file, linenum, *err, args[cur_arg + 1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3188 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3189 | goto out; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3190 | } |
| 3191 | |
Willy Tarreau | 68a897b | 2009-12-03 23:28:34 +0100 | [diff] [blame] | 3192 | if (!curproxy->cookie_domain) { |
| 3193 | curproxy->cookie_domain = strdup(args[cur_arg + 1]); |
| 3194 | } else { |
| 3195 | /* one domain was already specified, add another one by |
| 3196 | * building the string which will be returned along with |
| 3197 | * the cookie. |
| 3198 | */ |
| 3199 | char *new_ptr; |
| 3200 | int new_len = strlen(curproxy->cookie_domain) + |
| 3201 | strlen("; domain=") + strlen(args[cur_arg + 1]) + 1; |
| 3202 | new_ptr = malloc(new_len); |
| 3203 | snprintf(new_ptr, new_len, "%s; domain=%s", curproxy->cookie_domain, args[cur_arg+1]); |
| 3204 | free(curproxy->cookie_domain); |
| 3205 | curproxy->cookie_domain = new_ptr; |
| 3206 | } |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 3207 | cur_arg++; |
| 3208 | } |
| 3209 | else if (!strcmp(args[cur_arg], "maxidle")) { |
| 3210 | unsigned int maxidle; |
| 3211 | const char *res; |
| 3212 | |
| 3213 | if (!*args[cur_arg + 1]) { |
| 3214 | Alert("parsing [%s:%d]: '%s' expects <idletime> in seconds as argument.\n", |
| 3215 | file, linenum, args[cur_arg]); |
| 3216 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3217 | goto out; |
| 3218 | } |
| 3219 | |
| 3220 | res = parse_time_err(args[cur_arg + 1], &maxidle, TIME_UNIT_S); |
| 3221 | if (res) { |
| 3222 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 3223 | file, linenum, *res, args[cur_arg]); |
| 3224 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3225 | goto out; |
| 3226 | } |
| 3227 | curproxy->cookie_maxidle = maxidle; |
| 3228 | cur_arg++; |
| 3229 | } |
| 3230 | else if (!strcmp(args[cur_arg], "maxlife")) { |
| 3231 | unsigned int maxlife; |
| 3232 | const char *res; |
| 3233 | |
| 3234 | if (!*args[cur_arg + 1]) { |
| 3235 | Alert("parsing [%s:%d]: '%s' expects <lifetime> in seconds as argument.\n", |
| 3236 | file, linenum, args[cur_arg]); |
| 3237 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3238 | goto out; |
| 3239 | } |
| 3240 | |
| 3241 | res = parse_time_err(args[cur_arg + 1], &maxlife, TIME_UNIT_S); |
| 3242 | if (res) { |
| 3243 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 3244 | file, linenum, *res, args[cur_arg]); |
| 3245 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3246 | goto out; |
| 3247 | } |
| 3248 | curproxy->cookie_maxlife = maxlife; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3249 | cur_arg++; |
| 3250 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3251 | else { |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 3252 | Alert("parsing [%s:%d] : '%s' supports 'rewrite', 'insert', 'prefix', 'indirect', 'nocache', 'postonly', 'domain', 'maxidle, and 'maxlife' options.\n", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3253 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3254 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3255 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3256 | } |
| 3257 | cur_arg++; |
| 3258 | } |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3259 | if (!POWEROF2(curproxy->ck_opts & (PR_CK_RW|PR_CK_IND))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3260 | Alert("parsing [%s:%d] : cookie 'rewrite' and 'indirect' modes are incompatible.\n", |
| 3261 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3262 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3263 | } |
| 3264 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3265 | 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] | 3266 | Alert("parsing [%s:%d] : cookie 'rewrite', 'insert' and 'prefix' modes are incompatible.\n", |
| 3267 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3268 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3269 | } |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3270 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3271 | 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] | 3272 | Alert("parsing [%s:%d] : cookie 'preserve' requires at least 'insert' or 'indirect'.\n", |
| 3273 | file, linenum); |
| 3274 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3275 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3276 | }/* end else if (!strcmp(args[0], "cookie")) */ |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3277 | else if (!strcmp(args[0], "email-alert")) { |
| 3278 | if (*(args[1]) == 0) { |
| 3279 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3280 | file, linenum, args[0]); |
| 3281 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3282 | goto out; |
| 3283 | } |
| 3284 | |
| 3285 | if (!strcmp(args[1], "from")) { |
| 3286 | if (*(args[1]) == 0) { |
| 3287 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3288 | file, linenum, args[1]); |
| 3289 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3290 | goto out; |
| 3291 | } |
| 3292 | free(curproxy->email_alert.from); |
| 3293 | curproxy->email_alert.from = strdup(args[2]); |
| 3294 | } |
| 3295 | else if (!strcmp(args[1], "mailers")) { |
| 3296 | if (*(args[1]) == 0) { |
| 3297 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3298 | file, linenum, args[1]); |
| 3299 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3300 | goto out; |
| 3301 | } |
| 3302 | free(curproxy->email_alert.mailers.name); |
| 3303 | curproxy->email_alert.mailers.name = strdup(args[2]); |
| 3304 | } |
| 3305 | else if (!strcmp(args[1], "myhostname")) { |
| 3306 | if (*(args[1]) == 0) { |
| 3307 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3308 | file, linenum, args[1]); |
| 3309 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3310 | goto out; |
| 3311 | } |
| 3312 | free(curproxy->email_alert.myhostname); |
| 3313 | curproxy->email_alert.myhostname = strdup(args[2]); |
| 3314 | } |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3315 | else if (!strcmp(args[1], "level")) { |
| 3316 | curproxy->email_alert.level = get_log_level(args[2]); |
| 3317 | if (curproxy->email_alert.level < 0) { |
| 3318 | Alert("parsing [%s:%d] : unknown log level '%s' after '%s'\n", |
| 3319 | file, linenum, args[1], args[2]); |
| 3320 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3321 | goto out; |
| 3322 | } |
| 3323 | } |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3324 | else if (!strcmp(args[1], "to")) { |
| 3325 | if (*(args[1]) == 0) { |
| 3326 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3327 | file, linenum, args[1]); |
| 3328 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3329 | goto out; |
| 3330 | } |
| 3331 | free(curproxy->email_alert.to); |
| 3332 | curproxy->email_alert.to = strdup(args[2]); |
| 3333 | } |
| 3334 | else { |
| 3335 | Alert("parsing [%s:%d] : email-alert: unknown argument '%s'.\n", |
| 3336 | file, linenum, args[1]); |
| 3337 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3338 | goto out; |
| 3339 | } |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3340 | /* Indicate that the email_alert is at least partially configured */ |
| 3341 | curproxy->email_alert.set = 1; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3342 | }/* end else if (!strcmp(args[0], "email-alert")) */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3343 | else if (!strcmp(args[0], "external-check")) { |
| 3344 | if (*(args[1]) == 0) { |
| 3345 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3346 | file, linenum, args[0]); |
| 3347 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3348 | goto out; |
| 3349 | } |
| 3350 | |
| 3351 | if (!strcmp(args[1], "command")) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3352 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3353 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3354 | if (*(args[1]) == 0) { |
| 3355 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3356 | file, linenum, args[1]); |
| 3357 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3358 | goto out; |
| 3359 | } |
| 3360 | free(curproxy->check_command); |
| 3361 | curproxy->check_command = strdup(args[2]); |
| 3362 | } |
| 3363 | else if (!strcmp(args[1], "path")) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3364 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3365 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3366 | if (*(args[1]) == 0) { |
| 3367 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3368 | file, linenum, args[1]); |
| 3369 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3370 | goto out; |
| 3371 | } |
| 3372 | free(curproxy->check_path); |
| 3373 | curproxy->check_path = strdup(args[2]); |
| 3374 | } |
| 3375 | else { |
| 3376 | Alert("parsing [%s:%d] : external-check: unknown argument '%s'.\n", |
| 3377 | file, linenum, args[1]); |
| 3378 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3379 | goto out; |
| 3380 | } |
| 3381 | }/* end else if (!strcmp(args[0], "external-check")) */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3382 | else if (!strcmp(args[0], "persist")) { /* persist */ |
| 3383 | if (*(args[1]) == 0) { |
| 3384 | Alert("parsing [%s:%d] : missing persist method.\n", |
| 3385 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3386 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3387 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3388 | } |
| 3389 | |
| 3390 | if (!strncmp(args[1], "rdp-cookie", 10)) { |
| 3391 | curproxy->options2 |= PR_O2_RDPC_PRST; |
| 3392 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3393 | if (*(args[1] + 10) == '(') { /* cookie name */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3394 | const char *beg, *end; |
| 3395 | |
| 3396 | beg = args[1] + 11; |
| 3397 | end = strchr(beg, ')'); |
| 3398 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3399 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3400 | goto out; |
| 3401 | |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3402 | if (!end || end == beg) { |
| 3403 | Alert("parsing [%s:%d] : persist rdp-cookie(name)' requires an rdp cookie name.\n", |
| 3404 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3405 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3406 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3407 | } |
| 3408 | |
| 3409 | free(curproxy->rdp_cookie_name); |
| 3410 | curproxy->rdp_cookie_name = my_strndup(beg, end - beg); |
| 3411 | curproxy->rdp_cookie_len = end-beg; |
| 3412 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3413 | else if (*(args[1] + 10) == '\0') { /* default cookie name 'msts' */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3414 | free(curproxy->rdp_cookie_name); |
| 3415 | curproxy->rdp_cookie_name = strdup("msts"); |
| 3416 | curproxy->rdp_cookie_len = strlen(curproxy->rdp_cookie_name); |
| 3417 | } |
| 3418 | else { /* syntax */ |
| 3419 | Alert("parsing [%s:%d] : persist rdp-cookie(name)' requires an rdp cookie name.\n", |
| 3420 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3421 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3422 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3423 | } |
| 3424 | } |
| 3425 | else { |
| 3426 | Alert("parsing [%s:%d] : unknown persist method.\n", |
| 3427 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3428 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3429 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3430 | } |
| 3431 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3432 | else if (!strcmp(args[0], "appsession")) { /* cookie name */ |
Willy Tarreau | 6db62c5 | 2015-08-10 19:04:29 +0200 | [diff] [blame] | 3433 | Alert("parsing [%s:%d] : '%s' is not supported anymore, please check the documentation.\n", file, linenum, args[0]); |
| 3434 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3435 | goto out; |
| 3436 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3437 | else if (!strcmp(args[0], "capture")) { |
Willy Tarreau | 3b6b1a9 | 2009-07-23 13:24:23 +0200 | [diff] [blame] | 3438 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3439 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3440 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3441 | if (!strcmp(args[1], "cookie")) { /* name of a cookie to capture */ |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3442 | if (curproxy == &defproxy) { |
| 3443 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
| 3444 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3445 | goto out; |
| 3446 | } |
| 3447 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3448 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3449 | goto out; |
| 3450 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3451 | if (*(args[4]) == 0) { |
| 3452 | Alert("parsing [%s:%d] : '%s' expects 'cookie' <cookie_name> 'len' <len>.\n", |
| 3453 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3454 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3455 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3456 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3457 | free(curproxy->capture_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3458 | curproxy->capture_name = strdup(args[2]); |
| 3459 | curproxy->capture_namelen = strlen(curproxy->capture_name); |
| 3460 | curproxy->capture_len = atol(args[4]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3461 | curproxy->to_log |= LW_COOKIE; |
| 3462 | } |
| 3463 | else if (!strcmp(args[1], "request") && !strcmp(args[2], "header")) { |
| 3464 | struct cap_hdr *hdr; |
| 3465 | |
| 3466 | if (curproxy == &defproxy) { |
| 3467 | 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] | 3468 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3469 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3470 | } |
| 3471 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3472 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3473 | goto out; |
| 3474 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3475 | if (*(args[3]) == 0 || strcmp(args[4], "len") != 0 || *(args[5]) == 0) { |
| 3476 | Alert("parsing [%s:%d] : '%s %s' expects 'header' <header_name> 'len' <len>.\n", |
| 3477 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3478 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3479 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3480 | } |
| 3481 | |
| 3482 | hdr = calloc(sizeof(struct cap_hdr), 1); |
| 3483 | hdr->next = curproxy->req_cap; |
| 3484 | hdr->name = strdup(args[3]); |
| 3485 | hdr->namelen = strlen(args[3]); |
| 3486 | hdr->len = atol(args[5]); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3487 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3488 | hdr->index = curproxy->nb_req_cap++; |
| 3489 | curproxy->req_cap = hdr; |
| 3490 | curproxy->to_log |= LW_REQHDR; |
| 3491 | } |
| 3492 | else if (!strcmp(args[1], "response") && !strcmp(args[2], "header")) { |
| 3493 | struct cap_hdr *hdr; |
| 3494 | |
| 3495 | if (curproxy == &defproxy) { |
| 3496 | 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] | 3497 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3498 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3499 | } |
| 3500 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3501 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3502 | goto out; |
| 3503 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3504 | if (*(args[3]) == 0 || strcmp(args[4], "len") != 0 || *(args[5]) == 0) { |
| 3505 | Alert("parsing [%s:%d] : '%s %s' expects 'header' <header_name> 'len' <len>.\n", |
| 3506 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3507 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3508 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3509 | } |
| 3510 | hdr = calloc(sizeof(struct cap_hdr), 1); |
| 3511 | hdr->next = curproxy->rsp_cap; |
| 3512 | hdr->name = strdup(args[3]); |
| 3513 | hdr->namelen = strlen(args[3]); |
| 3514 | hdr->len = atol(args[5]); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3515 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3516 | hdr->index = curproxy->nb_rsp_cap++; |
| 3517 | curproxy->rsp_cap = hdr; |
| 3518 | curproxy->to_log |= LW_RSPHDR; |
| 3519 | } |
| 3520 | else { |
| 3521 | Alert("parsing [%s:%d] : '%s' expects 'cookie' or 'request header' or 'response header'.\n", |
| 3522 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3523 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3524 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3525 | } |
| 3526 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3527 | else if (!strcmp(args[0], "retries")) { /* connection retries */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3528 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3529 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3530 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3531 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3532 | goto out; |
| 3533 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3534 | if (*(args[1]) == 0) { |
| 3535 | Alert("parsing [%s:%d] : '%s' expects an integer argument (dispatch counts for one).\n", |
| 3536 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3537 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3538 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3539 | } |
| 3540 | curproxy->conn_retries = atol(args[1]); |
| 3541 | } |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3542 | else if (!strcmp(args[0], "http-request")) { /* request access control: allow/deny/auth */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3543 | struct http_req_rule *rule; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3544 | |
| 3545 | if (curproxy == &defproxy) { |
| 3546 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3547 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3548 | goto out; |
| 3549 | } |
| 3550 | |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3551 | if (!LIST_ISEMPTY(&curproxy->http_req_rules) && |
| 3552 | !LIST_PREV(&curproxy->http_req_rules, struct http_req_rule *, list)->cond && |
| 3553 | (LIST_PREV(&curproxy->http_req_rules, struct http_req_rule *, list)->action == HTTP_REQ_ACT_ALLOW || |
| 3554 | LIST_PREV(&curproxy->http_req_rules, struct http_req_rule *, list)->action == HTTP_REQ_ACT_DENY || |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3555 | LIST_PREV(&curproxy->http_req_rules, struct http_req_rule *, list)->action == HTTP_REQ_ACT_REDIR || |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3556 | LIST_PREV(&curproxy->http_req_rules, struct http_req_rule *, list)->action == HTTP_REQ_ACT_AUTH)) { |
| 3557 | 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] | 3558 | file, linenum, args[0]); |
| 3559 | err_code |= ERR_WARN; |
| 3560 | } |
| 3561 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3562 | 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] | 3563 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3564 | if (!rule) { |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3565 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3566 | goto out; |
| 3567 | } |
| 3568 | |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 3569 | err_code |= warnif_misplaced_http_req(curproxy, file, linenum, args[0]); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3570 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3571 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3572 | file, linenum); |
| 3573 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3574 | LIST_ADDQ(&curproxy->http_req_rules, &rule->list); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3575 | } |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3576 | else if (!strcmp(args[0], "http-response")) { /* response access control */ |
| 3577 | struct http_res_rule *rule; |
| 3578 | |
| 3579 | if (curproxy == &defproxy) { |
| 3580 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3581 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3582 | goto out; |
| 3583 | } |
| 3584 | |
| 3585 | if (!LIST_ISEMPTY(&curproxy->http_res_rules) && |
| 3586 | !LIST_PREV(&curproxy->http_res_rules, struct http_res_rule *, list)->cond && |
| 3587 | (LIST_PREV(&curproxy->http_res_rules, struct http_res_rule *, list)->action == HTTP_RES_ACT_ALLOW || |
| 3588 | LIST_PREV(&curproxy->http_res_rules, struct http_res_rule *, list)->action == HTTP_RES_ACT_DENY)) { |
| 3589 | Warning("parsing [%s:%d]: previous '%s' action is final and has no condition attached, further entries are NOOP.\n", |
| 3590 | file, linenum, args[0]); |
| 3591 | err_code |= ERR_WARN; |
| 3592 | } |
| 3593 | |
| 3594 | rule = parse_http_res_cond((const char **)args + 1, file, linenum, curproxy); |
| 3595 | |
| 3596 | if (!rule) { |
| 3597 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3598 | goto out; |
| 3599 | } |
| 3600 | |
| 3601 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3602 | (curproxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 3603 | file, linenum); |
| 3604 | |
| 3605 | LIST_ADDQ(&curproxy->http_res_rules, &rule->list); |
| 3606 | } |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 3607 | else if (!strcmp(args[0], "http-send-name-header")) { /* send server name in request header */ |
| 3608 | /* set the header name and length into the proxy structure */ |
| 3609 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3610 | err_code |= ERR_WARN; |
| 3611 | |
| 3612 | if (!*args[1]) { |
| 3613 | Alert("parsing [%s:%d] : '%s' requires a header string.\n", |
| 3614 | file, linenum, args[0]); |
| 3615 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3616 | goto out; |
| 3617 | } |
| 3618 | |
| 3619 | /* set the desired header name */ |
| 3620 | free(curproxy->server_id_hdr_name); |
| 3621 | curproxy->server_id_hdr_name = strdup(args[1]); |
| 3622 | curproxy->server_id_hdr_len = strlen(curproxy->server_id_hdr_name); |
| 3623 | } |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3624 | else if (!strcmp(args[0], "block")) { /* early blocking based on ACLs */ |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3625 | struct http_req_rule *rule; |
| 3626 | |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3627 | if (curproxy == &defproxy) { |
| 3628 | 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] | 3629 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3630 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3631 | } |
| 3632 | |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3633 | /* emulate "block" using "http-request block". Since these rules are supposed to |
| 3634 | * be processed before all http-request rules, we put them into their own list |
| 3635 | * and will insert them at the end. |
| 3636 | */ |
| 3637 | rule = parse_http_req_cond((const char **)args, file, linenum, curproxy); |
| 3638 | if (!rule) { |
| 3639 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3640 | goto out; |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3641 | } |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3642 | err_code |= warnif_misplaced_block(curproxy, file, linenum, args[0]); |
| 3643 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3644 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3645 | file, linenum); |
| 3646 | LIST_ADDQ(&curproxy->block_rules, &rule->list); |
Willy Tarreau | de9d2d7 | 2014-04-28 22:28:02 +0200 | [diff] [blame] | 3647 | |
| 3648 | if (!already_warned(WARN_BLOCK_DEPRECATED)) |
| 3649 | 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]); |
| 3650 | |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3651 | } |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3652 | else if (!strcmp(args[0], "redirect")) { |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3653 | struct redirect_rule *rule; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3654 | |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3655 | if (curproxy == &defproxy) { |
| 3656 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3657 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3658 | goto out; |
| 3659 | } |
| 3660 | |
Willy Tarreau | be4653b | 2015-05-28 15:26:58 +0200 | [diff] [blame] | 3661 | 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] | 3662 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing redirect rule : %s.\n", |
| 3663 | file, linenum, proxy_type_str(curproxy), curproxy->id, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3664 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3665 | goto out; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3666 | } |
| 3667 | |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3668 | LIST_ADDQ(&curproxy->redirect_rules, &rule->list); |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 3669 | err_code |= warnif_misplaced_redirect(curproxy, file, linenum, args[0]); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3670 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3671 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3672 | file, linenum); |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3673 | } |
Krzysztof Piotr Oledzki | 7b723ef | 2009-01-27 21:09:41 +0100 | [diff] [blame] | 3674 | else if (!strcmp(args[0], "use_backend")) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3675 | struct switching_rule *rule; |
| 3676 | |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3677 | if (curproxy == &defproxy) { |
| 3678 | 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] | 3679 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3680 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3681 | } |
| 3682 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3683 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3684 | err_code |= ERR_WARN; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3685 | |
| 3686 | if (*(args[1]) == 0) { |
| 3687 | 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] | 3688 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3689 | goto out; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3690 | } |
| 3691 | |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 3692 | if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) { |
| 3693 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 3694 | Alert("parsing [%s:%d] : error detected while parsing switching rule : %s.\n", |
| 3695 | file, linenum, errmsg); |
| 3696 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3697 | goto out; |
| 3698 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3699 | |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 3700 | 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] | 3701 | } |
| 3702 | |
| 3703 | rule = (struct switching_rule *)calloc(1, sizeof(*rule)); |
| 3704 | rule->cond = cond; |
| 3705 | rule->be.name = strdup(args[1]); |
| 3706 | LIST_INIT(&rule->list); |
| 3707 | LIST_ADDQ(&curproxy->switching_rules, &rule->list); |
| 3708 | } |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3709 | else if (strcmp(args[0], "use-server") == 0) { |
| 3710 | struct server_rule *rule; |
| 3711 | |
| 3712 | if (curproxy == &defproxy) { |
| 3713 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3714 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3715 | goto out; |
| 3716 | } |
| 3717 | |
| 3718 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3719 | err_code |= ERR_WARN; |
| 3720 | |
| 3721 | if (*(args[1]) == 0) { |
| 3722 | Alert("parsing [%s:%d] : '%s' expects a server name.\n", file, linenum, args[0]); |
| 3723 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3724 | goto out; |
| 3725 | } |
| 3726 | |
| 3727 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
| 3728 | Alert("parsing [%s:%d] : '%s' requires either 'if' or 'unless' followed by a condition.\n", |
| 3729 | file, linenum, args[0]); |
| 3730 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3731 | goto out; |
| 3732 | } |
| 3733 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3734 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 3735 | Alert("parsing [%s:%d] : error detected while parsing switching rule : %s.\n", |
| 3736 | file, linenum, errmsg); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3737 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3738 | goto out; |
| 3739 | } |
| 3740 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3741 | 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] | 3742 | |
| 3743 | rule = (struct server_rule *)calloc(1, sizeof(*rule)); |
| 3744 | rule->cond = cond; |
| 3745 | rule->srv.name = strdup(args[1]); |
| 3746 | LIST_INIT(&rule->list); |
| 3747 | LIST_ADDQ(&curproxy->server_rules, &rule->list); |
| 3748 | curproxy->be_req_ana |= AN_REQ_SRV_RULES; |
| 3749 | } |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3750 | else if ((!strcmp(args[0], "force-persist")) || |
| 3751 | (!strcmp(args[0], "ignore-persist"))) { |
| 3752 | struct persist_rule *rule; |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3753 | |
| 3754 | if (curproxy == &defproxy) { |
| 3755 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3756 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3757 | goto out; |
| 3758 | } |
| 3759 | |
| 3760 | if (warnifnotcap(curproxy, PR_CAP_FE|PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3761 | err_code |= ERR_WARN; |
| 3762 | |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 3763 | if (strcmp(args[1], "if") != 0 && strcmp(args[1], "unless") != 0) { |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3764 | Alert("parsing [%s:%d] : '%s' requires either 'if' or 'unless' followed by a condition.\n", |
| 3765 | file, linenum, args[0]); |
| 3766 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3767 | goto out; |
| 3768 | } |
| 3769 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3770 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 1, &errmsg)) == NULL) { |
| 3771 | Alert("parsing [%s:%d] : error detected while parsing a '%s' rule : %s.\n", |
| 3772 | file, linenum, args[0], errmsg); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3773 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3774 | goto out; |
| 3775 | } |
| 3776 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3777 | /* note: BE_REQ_CNT is the first one after FE_SET_BCK, which is |
| 3778 | * where force-persist is applied. |
| 3779 | */ |
| 3780 | 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] | 3781 | |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3782 | rule = (struct persist_rule *)calloc(1, sizeof(*rule)); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3783 | rule->cond = cond; |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3784 | if (!strcmp(args[0], "force-persist")) { |
| 3785 | rule->type = PERSIST_TYPE_FORCE; |
| 3786 | } else { |
| 3787 | rule->type = PERSIST_TYPE_IGNORE; |
| 3788 | } |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3789 | LIST_INIT(&rule->list); |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3790 | LIST_ADDQ(&curproxy->persist_rules, &rule->list); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3791 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3792 | else if (!strcmp(args[0], "stick-table")) { |
| 3793 | int myidx = 1; |
Willy Tarreau | e45288c | 2015-05-26 10:49:46 +0200 | [diff] [blame] | 3794 | struct proxy *other; |
| 3795 | |
Willy Tarreau | e2dc1fa | 2015-05-26 12:08:07 +0200 | [diff] [blame] | 3796 | other = proxy_tbl_by_name(curproxy->id); |
Willy Tarreau | e45288c | 2015-05-26 10:49:46 +0200 | [diff] [blame] | 3797 | if (other) { |
| 3798 | Alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n", |
| 3799 | file, linenum, curproxy->id, proxy_type_str(other), other->id, other->conf.file, other->conf.line); |
| 3800 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3801 | goto out; |
| 3802 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3803 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3804 | curproxy->table.id = curproxy->id; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3805 | curproxy->table.type = (unsigned int)-1; |
| 3806 | while (*args[myidx]) { |
| 3807 | const char *err; |
| 3808 | |
| 3809 | if (strcmp(args[myidx], "size") == 0) { |
| 3810 | myidx++; |
| 3811 | if (!*(args[myidx])) { |
| 3812 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 3813 | file, linenum, args[myidx-1]); |
| 3814 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3815 | goto out; |
| 3816 | } |
| 3817 | if ((err = parse_size_err(args[myidx], &curproxy->table.size))) { |
| 3818 | Alert("parsing [%s:%d] : stick-table: unexpected character '%c' in argument of '%s'.\n", |
| 3819 | file, linenum, *err, args[myidx-1]); |
| 3820 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3821 | goto out; |
| 3822 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 3823 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3824 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3825 | else if (strcmp(args[myidx], "peers") == 0) { |
| 3826 | myidx++; |
Godbach | 5052316 | 2013-12-11 19:48:57 +0800 | [diff] [blame] | 3827 | if (!*(args[myidx])) { |
Godbach | ff11554 | 2014-04-21 21:52:23 +0800 | [diff] [blame] | 3828 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 3829 | file, linenum, args[myidx-1]); |
| 3830 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3831 | goto out; |
Godbach | 5052316 | 2013-12-11 19:48:57 +0800 | [diff] [blame] | 3832 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3833 | curproxy->table.peers.name = strdup(args[myidx++]); |
| 3834 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3835 | else if (strcmp(args[myidx], "expire") == 0) { |
| 3836 | myidx++; |
| 3837 | if (!*(args[myidx])) { |
| 3838 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 3839 | file, linenum, args[myidx-1]); |
| 3840 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3841 | goto out; |
| 3842 | } |
| 3843 | err = parse_time_err(args[myidx], &val, TIME_UNIT_MS); |
| 3844 | if (err) { |
| 3845 | Alert("parsing [%s:%d] : stick-table: unexpected character '%c' in argument of '%s'.\n", |
| 3846 | file, linenum, *err, args[myidx-1]); |
| 3847 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3848 | goto out; |
| 3849 | } |
| 3850 | curproxy->table.expire = val; |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 3851 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3852 | } |
| 3853 | else if (strcmp(args[myidx], "nopurge") == 0) { |
| 3854 | curproxy->table.nopurge = 1; |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 3855 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3856 | } |
| 3857 | else if (strcmp(args[myidx], "type") == 0) { |
| 3858 | myidx++; |
| 3859 | if (stktable_parse_type(args, &myidx, &curproxy->table.type, &curproxy->table.key_size) != 0) { |
| 3860 | Alert("parsing [%s:%d] : stick-table: unknown type '%s'.\n", |
| 3861 | file, linenum, args[myidx]); |
| 3862 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3863 | goto out; |
| 3864 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 3865 | /* myidx already points to next arg */ |
| 3866 | } |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 3867 | else if (strcmp(args[myidx], "store") == 0) { |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 3868 | int type, err; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 3869 | char *cw, *nw, *sa; |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 3870 | |
| 3871 | myidx++; |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 3872 | nw = args[myidx]; |
| 3873 | while (*nw) { |
| 3874 | /* the "store" keyword supports a comma-separated list */ |
| 3875 | cw = nw; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 3876 | sa = NULL; /* store arg */ |
| 3877 | while (*nw && *nw != ',') { |
| 3878 | if (*nw == '(') { |
| 3879 | *nw = 0; |
| 3880 | sa = ++nw; |
| 3881 | while (*nw != ')') { |
| 3882 | if (!*nw) { |
| 3883 | Alert("parsing [%s:%d] : %s: missing closing parenthesis after store option '%s'.\n", |
| 3884 | file, linenum, args[0], cw); |
| 3885 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3886 | goto out; |
| 3887 | } |
| 3888 | nw++; |
| 3889 | } |
| 3890 | *nw = '\0'; |
| 3891 | } |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 3892 | nw++; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 3893 | } |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 3894 | if (*nw) |
| 3895 | *nw++ = '\0'; |
| 3896 | type = stktable_get_data_type(cw); |
| 3897 | if (type < 0) { |
| 3898 | Alert("parsing [%s:%d] : %s: unknown store option '%s'.\n", |
| 3899 | file, linenum, args[0], cw); |
| 3900 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3901 | goto out; |
| 3902 | } |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 3903 | |
| 3904 | err = stktable_alloc_data_type(&curproxy->table, type, sa); |
| 3905 | switch (err) { |
| 3906 | case PE_NONE: break; |
| 3907 | case PE_EXIST: |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 3908 | Warning("parsing [%s:%d]: %s: store option '%s' already enabled, ignored.\n", |
| 3909 | file, linenum, args[0], cw); |
| 3910 | err_code |= ERR_WARN; |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 3911 | break; |
| 3912 | |
| 3913 | case PE_ARG_MISSING: |
| 3914 | Alert("parsing [%s:%d] : %s: missing argument to store option '%s'.\n", |
| 3915 | file, linenum, args[0], cw); |
| 3916 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3917 | goto out; |
| 3918 | |
| 3919 | case PE_ARG_NOT_USED: |
| 3920 | Alert("parsing [%s:%d] : %s: unexpected argument to store option '%s'.\n", |
| 3921 | file, linenum, args[0], cw); |
| 3922 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3923 | goto out; |
| 3924 | |
| 3925 | default: |
| 3926 | Alert("parsing [%s:%d] : %s: error when processing store option '%s'.\n", |
| 3927 | file, linenum, args[0], cw); |
| 3928 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3929 | goto out; |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 3930 | } |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 3931 | } |
| 3932 | myidx++; |
| 3933 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 3934 | else { |
| 3935 | Alert("parsing [%s:%d] : stick-table: unknown argument '%s'.\n", |
| 3936 | file, linenum, args[myidx]); |
| 3937 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3938 | goto out; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3939 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3940 | } |
| 3941 | |
| 3942 | if (!curproxy->table.size) { |
| 3943 | Alert("parsing [%s:%d] : stick-table: missing size.\n", |
| 3944 | file, linenum); |
| 3945 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3946 | goto out; |
| 3947 | } |
| 3948 | |
| 3949 | if (curproxy->table.type == (unsigned int)-1) { |
| 3950 | Alert("parsing [%s:%d] : stick-table: missing type.\n", |
| 3951 | file, linenum); |
| 3952 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3953 | goto out; |
| 3954 | } |
| 3955 | } |
| 3956 | else if (!strcmp(args[0], "stick")) { |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3957 | struct sticking_rule *rule; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 3958 | struct sample_expr *expr; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3959 | int myidx = 0; |
| 3960 | const char *name = NULL; |
| 3961 | int flags; |
| 3962 | |
| 3963 | if (curproxy == &defproxy) { |
| 3964 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3965 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3966 | goto out; |
| 3967 | } |
| 3968 | |
| 3969 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) { |
| 3970 | err_code |= ERR_WARN; |
| 3971 | goto out; |
| 3972 | } |
| 3973 | |
| 3974 | myidx++; |
| 3975 | if ((strcmp(args[myidx], "store") == 0) || |
| 3976 | (strcmp(args[myidx], "store-request") == 0)) { |
| 3977 | myidx++; |
| 3978 | flags = STK_IS_STORE; |
| 3979 | } |
| 3980 | else if (strcmp(args[myidx], "store-response") == 0) { |
| 3981 | myidx++; |
| 3982 | flags = STK_IS_STORE | STK_ON_RSP; |
| 3983 | } |
| 3984 | else if (strcmp(args[myidx], "match") == 0) { |
| 3985 | myidx++; |
| 3986 | flags = STK_IS_MATCH; |
| 3987 | } |
| 3988 | else if (strcmp(args[myidx], "on") == 0) { |
| 3989 | myidx++; |
| 3990 | flags = STK_IS_MATCH | STK_IS_STORE; |
| 3991 | } |
| 3992 | else { |
| 3993 | Alert("parsing [%s:%d] : '%s' expects 'on', 'match', or 'store'.\n", file, linenum, args[0]); |
| 3994 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3995 | goto out; |
| 3996 | } |
| 3997 | |
| 3998 | if (*(args[myidx]) == 0) { |
| 3999 | Alert("parsing [%s:%d] : '%s' expects a fetch method.\n", file, linenum, args[0]); |
| 4000 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4001 | goto out; |
| 4002 | } |
| 4003 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 4004 | curproxy->conf.args.ctx = ARGC_STK; |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 4005 | expr = sample_parse_expr(args, &myidx, file, linenum, &errmsg, &curproxy->conf.args); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4006 | if (!expr) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 4007 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4008 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4009 | goto out; |
| 4010 | } |
| 4011 | |
| 4012 | if (flags & STK_ON_RSP) { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 4013 | if (!(expr->fetch->val & SMP_VAL_BE_STO_RUL)) { |
| 4014 | Alert("parsing [%s:%d] : '%s': fetch method '%s' extracts information from '%s', none of which is available for 'store-response'.\n", |
| 4015 | 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] | 4016 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4017 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4018 | goto out; |
| 4019 | } |
| 4020 | } else { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 4021 | if (!(expr->fetch->val & SMP_VAL_BE_SET_SRV)) { |
| 4022 | Alert("parsing [%s:%d] : '%s': fetch method '%s' extracts information from '%s', none of which is available during request.\n", |
| 4023 | 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] | 4024 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4025 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4026 | goto out; |
| 4027 | } |
| 4028 | } |
| 4029 | |
Willy Tarreau | 1b6c00c | 2012-10-05 22:41:26 +0200 | [diff] [blame] | 4030 | /* 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] | 4031 | curproxy->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
Willy Tarreau | 1b6c00c | 2012-10-05 22:41:26 +0200 | [diff] [blame] | 4032 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4033 | if (strcmp(args[myidx], "table") == 0) { |
| 4034 | myidx++; |
| 4035 | name = args[myidx++]; |
| 4036 | } |
| 4037 | |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4038 | if (strcmp(args[myidx], "if") == 0 || strcmp(args[myidx], "unless") == 0) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 4039 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + myidx, &errmsg)) == NULL) { |
| 4040 | Alert("parsing [%s:%d] : '%s': error detected while parsing sticking condition : %s.\n", |
| 4041 | file, linenum, args[0], errmsg); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4042 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4043 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4044 | goto out; |
| 4045 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4046 | } |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4047 | else if (*(args[myidx])) { |
| 4048 | Alert("parsing [%s:%d] : '%s': unknown keyword '%s'.\n", |
| 4049 | file, linenum, args[0], args[myidx]); |
| 4050 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4051 | free(expr); |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4052 | goto out; |
| 4053 | } |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 4054 | if (flags & STK_ON_RSP) |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4055 | 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] | 4056 | else |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4057 | 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] | 4058 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4059 | rule = (struct sticking_rule *)calloc(1, sizeof(*rule)); |
| 4060 | rule->cond = cond; |
| 4061 | rule->expr = expr; |
| 4062 | rule->flags = flags; |
| 4063 | rule->table.name = name ? strdup(name) : NULL; |
| 4064 | LIST_INIT(&rule->list); |
| 4065 | if (flags & STK_ON_RSP) |
| 4066 | LIST_ADDQ(&curproxy->storersp_rules, &rule->list); |
| 4067 | else |
| 4068 | LIST_ADDQ(&curproxy->sticking_rules, &rule->list); |
| 4069 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4070 | else if (!strcmp(args[0], "stats")) { |
| 4071 | if (curproxy != &defproxy && curproxy->uri_auth == defproxy.uri_auth) |
| 4072 | curproxy->uri_auth = NULL; /* we must detach from the default config */ |
| 4073 | |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4074 | if (!*args[1]) { |
| 4075 | goto stats_error_parsing; |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4076 | } else if (!strcmp(args[1], "admin")) { |
| 4077 | struct stats_admin_rule *rule; |
| 4078 | |
| 4079 | if (curproxy == &defproxy) { |
| 4080 | Alert("parsing [%s:%d]: '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
| 4081 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4082 | goto out; |
| 4083 | } |
| 4084 | |
| 4085 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4086 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4087 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4088 | goto out; |
| 4089 | } |
| 4090 | |
| 4091 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
| 4092 | Alert("parsing [%s:%d] : '%s %s' requires either 'if' or 'unless' followed by a condition.\n", |
| 4093 | file, linenum, args[0], args[1]); |
| 4094 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4095 | goto out; |
| 4096 | } |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 4097 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 4098 | Alert("parsing [%s:%d] : error detected while parsing a '%s %s' rule : %s.\n", |
| 4099 | file, linenum, args[0], args[1], errmsg); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4100 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4101 | goto out; |
| 4102 | } |
| 4103 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4104 | err_code |= warnif_cond_conflicts(cond, |
| 4105 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 4106 | file, linenum); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4107 | |
| 4108 | rule = (struct stats_admin_rule *)calloc(1, sizeof(*rule)); |
| 4109 | rule->cond = cond; |
| 4110 | LIST_INIT(&rule->list); |
| 4111 | LIST_ADDQ(&curproxy->uri_auth->admin_rules, &rule->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4112 | } else if (!strcmp(args[1], "uri")) { |
| 4113 | if (*(args[2]) == 0) { |
| 4114 | Alert("parsing [%s:%d] : 'uri' needs an URI prefix.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4115 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4116 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4117 | } else if (!stats_set_uri(&curproxy->uri_auth, args[2])) { |
| 4118 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4119 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4120 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4121 | } |
| 4122 | } else if (!strcmp(args[1], "realm")) { |
| 4123 | if (*(args[2]) == 0) { |
| 4124 | Alert("parsing [%s:%d] : 'realm' needs an realm name.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4125 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4126 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4127 | } else if (!stats_set_realm(&curproxy->uri_auth, args[2])) { |
| 4128 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4129 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4130 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4131 | } |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4132 | } else if (!strcmp(args[1], "refresh")) { |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 4133 | unsigned interval; |
| 4134 | |
| 4135 | err = parse_time_err(args[2], &interval, TIME_UNIT_S); |
| 4136 | if (err) { |
| 4137 | Alert("parsing [%s:%d] : unexpected character '%c' in stats refresh interval.\n", |
| 4138 | file, linenum, *err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4139 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4140 | goto out; |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4141 | } else if (!stats_set_refresh(&curproxy->uri_auth, interval)) { |
| 4142 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4143 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4144 | goto out; |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4145 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4146 | } else if (!strcmp(args[1], "http-request")) { /* request access control: allow/deny/auth */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4147 | struct http_req_rule *rule; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4148 | |
| 4149 | if (curproxy == &defproxy) { |
| 4150 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 4151 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4152 | goto out; |
| 4153 | } |
| 4154 | |
| 4155 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4156 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4157 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4158 | goto out; |
| 4159 | } |
| 4160 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4161 | if (!LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
| 4162 | !LIST_PREV(&curproxy->uri_auth->http_req_rules, struct http_req_rule *, list)->cond) { |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4163 | Warning("parsing [%s:%d]: previous '%s' action has no condition attached, further entries are NOOP.\n", |
| 4164 | file, linenum, args[0]); |
| 4165 | err_code |= ERR_WARN; |
| 4166 | } |
| 4167 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4168 | 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] | 4169 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4170 | if (!rule) { |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4171 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4172 | goto out; |
| 4173 | } |
| 4174 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4175 | err_code |= warnif_cond_conflicts(rule->cond, |
| 4176 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 4177 | file, linenum); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4178 | LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4179 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4180 | } else if (!strcmp(args[1], "auth")) { |
| 4181 | if (*(args[2]) == 0) { |
| 4182 | 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] | 4183 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4184 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4185 | } else if (!stats_add_auth(&curproxy->uri_auth, args[2])) { |
| 4186 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4187 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4188 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4189 | } |
| 4190 | } else if (!strcmp(args[1], "scope")) { |
| 4191 | if (*(args[2]) == 0) { |
| 4192 | Alert("parsing [%s:%d] : 'scope' needs a proxy name.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4193 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4194 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4195 | } else if (!stats_add_scope(&curproxy->uri_auth, args[2])) { |
| 4196 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4197 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4198 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4199 | } |
| 4200 | } else if (!strcmp(args[1], "enable")) { |
| 4201 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4202 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4203 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4204 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4205 | } |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 4206 | } else if (!strcmp(args[1], "hide-version")) { |
| 4207 | if (!stats_set_flag(&curproxy->uri_auth, ST_HIDEVER)) { |
| 4208 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4209 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4210 | goto out; |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 4211 | } |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 4212 | } else if (!strcmp(args[1], "show-legends")) { |
| 4213 | if (!stats_set_flag(&curproxy->uri_auth, ST_SHLGNDS)) { |
| 4214 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4215 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4216 | goto out; |
| 4217 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4218 | } else if (!strcmp(args[1], "show-node")) { |
| 4219 | |
| 4220 | if (*args[2]) { |
| 4221 | int i; |
| 4222 | char c; |
| 4223 | |
| 4224 | for (i=0; args[2][i]; i++) { |
| 4225 | c = args[2][i]; |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 4226 | if (!isupper((unsigned char)c) && !islower((unsigned char)c) && |
| 4227 | !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.') |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4228 | break; |
| 4229 | } |
| 4230 | |
| 4231 | if (!i || args[2][i]) { |
| 4232 | Alert("parsing [%s:%d]: '%s %s' invalid node name - should be a string" |
| 4233 | "with digits(0-9), letters(A-Z, a-z), hyphen(-) or underscode(_).\n", |
| 4234 | file, linenum, args[0], args[1]); |
| 4235 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4236 | goto out; |
| 4237 | } |
| 4238 | } |
| 4239 | |
| 4240 | if (!stats_set_node(&curproxy->uri_auth, args[2])) { |
| 4241 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4242 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4243 | goto out; |
| 4244 | } |
| 4245 | } else if (!strcmp(args[1], "show-desc")) { |
| 4246 | char *desc = NULL; |
| 4247 | |
| 4248 | if (*args[2]) { |
| 4249 | int i, len=0; |
| 4250 | char *d; |
| 4251 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 4252 | for (i = 2; *args[i]; i++) |
| 4253 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4254 | |
| 4255 | desc = d = (char *)calloc(1, len); |
| 4256 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 4257 | d += snprintf(d, desc + len - d, "%s", args[2]); |
| 4258 | for (i = 3; *args[i]; i++) |
| 4259 | d += snprintf(d, desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4260 | } |
| 4261 | |
| 4262 | if (!*args[2] && !global.desc) |
| 4263 | Warning("parsing [%s:%d]: '%s' requires a parameter or 'desc' to be set in the global section.\n", |
| 4264 | file, linenum, args[1]); |
| 4265 | else { |
| 4266 | if (!stats_set_desc(&curproxy->uri_auth, desc)) { |
| 4267 | free(desc); |
| 4268 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4269 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4270 | goto out; |
| 4271 | } |
| 4272 | free(desc); |
| 4273 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4274 | } else { |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4275 | stats_error_parsing: |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4276 | 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] | 4277 | 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] | 4278 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4279 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4280 | } |
| 4281 | } |
| 4282 | else if (!strcmp(args[0], "option")) { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4283 | int optnum; |
| 4284 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4285 | if (*(args[1]) == '\0') { |
| 4286 | Alert("parsing [%s:%d]: '%s' expects an option name.\n", |
| 4287 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4288 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4289 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4290 | } |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4291 | |
| 4292 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 4293 | if (!strcmp(args[1], cfg_opts[optnum].name)) { |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 4294 | if (cfg_opts[optnum].cap == PR_CAP_NONE) { |
| 4295 | Alert("parsing [%s:%d]: option '%s' is not supported due to build options.\n", |
| 4296 | file, linenum, cfg_opts[optnum].name); |
| 4297 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4298 | goto out; |
| 4299 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4300 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4301 | goto out; |
| 4302 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4303 | if (warnifnotcap(curproxy, cfg_opts[optnum].cap, file, linenum, args[1], NULL)) { |
| 4304 | err_code |= ERR_WARN; |
| 4305 | goto out; |
| 4306 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4307 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4308 | curproxy->no_options &= ~cfg_opts[optnum].val; |
| 4309 | curproxy->options &= ~cfg_opts[optnum].val; |
| 4310 | |
| 4311 | switch (kwm) { |
| 4312 | case KWM_STD: |
| 4313 | curproxy->options |= cfg_opts[optnum].val; |
| 4314 | break; |
| 4315 | case KWM_NO: |
| 4316 | curproxy->no_options |= cfg_opts[optnum].val; |
| 4317 | break; |
| 4318 | case KWM_DEF: /* already cleared */ |
| 4319 | break; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 4320 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4321 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4322 | goto out; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4323 | } |
| 4324 | } |
| 4325 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4326 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 4327 | if (!strcmp(args[1], cfg_opts2[optnum].name)) { |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 4328 | if (cfg_opts2[optnum].cap == PR_CAP_NONE) { |
| 4329 | Alert("parsing [%s:%d]: option '%s' is not supported due to build options.\n", |
| 4330 | file, linenum, cfg_opts2[optnum].name); |
| 4331 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4332 | goto out; |
| 4333 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4334 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4335 | goto out; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4336 | if (warnifnotcap(curproxy, cfg_opts2[optnum].cap, file, linenum, args[1], NULL)) { |
| 4337 | err_code |= ERR_WARN; |
| 4338 | goto out; |
| 4339 | } |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4340 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4341 | curproxy->no_options2 &= ~cfg_opts2[optnum].val; |
| 4342 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 4343 | |
| 4344 | switch (kwm) { |
| 4345 | case KWM_STD: |
| 4346 | curproxy->options2 |= cfg_opts2[optnum].val; |
| 4347 | break; |
| 4348 | case KWM_NO: |
| 4349 | curproxy->no_options2 |= cfg_opts2[optnum].val; |
| 4350 | break; |
| 4351 | case KWM_DEF: /* already cleared */ |
| 4352 | break; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 4353 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4354 | goto out; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4355 | } |
| 4356 | } |
| 4357 | |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4358 | /* HTTP options override each other. They can be cancelled using |
| 4359 | * "no option xxx" which only switches to default mode if the mode |
| 4360 | * was this one (useful for cancelling options set in defaults |
| 4361 | * sections). |
| 4362 | */ |
| 4363 | if (strcmp(args[1], "httpclose") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4364 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4365 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4366 | if (kwm == KWM_STD) { |
| 4367 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4368 | curproxy->options |= PR_O_HTTP_PCL; |
| 4369 | goto out; |
| 4370 | } |
| 4371 | else if (kwm == KWM_NO) { |
| 4372 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 4373 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4374 | goto out; |
| 4375 | } |
| 4376 | } |
| 4377 | else if (strcmp(args[1], "forceclose") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4378 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4379 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4380 | if (kwm == KWM_STD) { |
| 4381 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4382 | curproxy->options |= PR_O_HTTP_FCL; |
| 4383 | goto out; |
| 4384 | } |
| 4385 | else if (kwm == KWM_NO) { |
| 4386 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL) |
| 4387 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4388 | goto out; |
| 4389 | } |
| 4390 | } |
| 4391 | else if (strcmp(args[1], "http-server-close") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4392 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4393 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4394 | if (kwm == KWM_STD) { |
| 4395 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4396 | curproxy->options |= PR_O_HTTP_SCL; |
| 4397 | goto out; |
| 4398 | } |
| 4399 | else if (kwm == KWM_NO) { |
| 4400 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) |
| 4401 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4402 | goto out; |
| 4403 | } |
| 4404 | } |
| 4405 | else if (strcmp(args[1], "http-keep-alive") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4406 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4407 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4408 | if (kwm == KWM_STD) { |
| 4409 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4410 | curproxy->options |= PR_O_HTTP_KAL; |
| 4411 | goto out; |
| 4412 | } |
| 4413 | else if (kwm == KWM_NO) { |
| 4414 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_KAL) |
| 4415 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4416 | goto out; |
| 4417 | } |
| 4418 | } |
| 4419 | else if (strcmp(args[1], "http-tunnel") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4420 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4421 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4422 | if (kwm == KWM_STD) { |
| 4423 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4424 | curproxy->options |= PR_O_HTTP_TUN; |
| 4425 | goto out; |
| 4426 | } |
| 4427 | else if (kwm == KWM_NO) { |
| 4428 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 4429 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4430 | goto out; |
| 4431 | } |
| 4432 | } |
| 4433 | |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 4434 | /* Redispatch can take an integer argument that control when the |
| 4435 | * resispatch occurs. All values are relative to the retries option. |
| 4436 | * This can be cancelled using "no option xxx". |
| 4437 | */ |
| 4438 | if (strcmp(args[1], "redispatch") == 0) { |
| 4439 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) { |
| 4440 | err_code |= ERR_WARN; |
| 4441 | goto out; |
| 4442 | } |
| 4443 | |
| 4444 | curproxy->no_options &= ~PR_O_REDISP; |
| 4445 | curproxy->options &= ~PR_O_REDISP; |
| 4446 | |
| 4447 | switch (kwm) { |
| 4448 | case KWM_STD: |
| 4449 | curproxy->options |= PR_O_REDISP; |
| 4450 | curproxy->redispatch_after = -1; |
| 4451 | if(*args[2]) { |
| 4452 | curproxy->redispatch_after = atol(args[2]); |
| 4453 | } |
| 4454 | break; |
| 4455 | case KWM_NO: |
| 4456 | curproxy->no_options |= PR_O_REDISP; |
| 4457 | curproxy->redispatch_after = 0; |
| 4458 | break; |
| 4459 | case KWM_DEF: /* already cleared */ |
| 4460 | break; |
| 4461 | } |
| 4462 | goto out; |
| 4463 | } |
| 4464 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4465 | if (kwm != KWM_STD) { |
| 4466 | 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] | 4467 | file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4468 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4469 | goto out; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4470 | } |
| 4471 | |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4472 | if (!strcmp(args[1], "httplog")) { |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4473 | char *logformat; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4474 | /* generate a complete HTTP log */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4475 | logformat = default_http_log_format; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4476 | if (*(args[2]) != '\0') { |
| 4477 | if (!strcmp(args[2], "clf")) { |
| 4478 | curproxy->options2 |= PR_O2_CLFLOG; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4479 | logformat = clf_http_log_format; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4480 | } else { |
William Lallemand | 77063bc | 2015-05-28 18:02:48 +0200 | [diff] [blame] | 4481 | 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] | 4482 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4483 | goto out; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4484 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4485 | if (alertif_too_many_args_idx(1, 1, file, linenum, args, &err_code)) |
| 4486 | goto out; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4487 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 4488 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 4489 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 4490 | curproxy->conf.logformat_string != clf_http_log_format) |
| 4491 | free(curproxy->conf.logformat_string); |
| 4492 | curproxy->conf.logformat_string = logformat; |
| 4493 | |
| 4494 | free(curproxy->conf.lfs_file); |
| 4495 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 4496 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4497 | } |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 4498 | else if (!strcmp(args[1], "tcplog")) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4499 | /* generate a detailed TCP log */ |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 4500 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 4501 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 4502 | curproxy->conf.logformat_string != clf_http_log_format) |
| 4503 | free(curproxy->conf.logformat_string); |
| 4504 | curproxy->conf.logformat_string = default_tcp_log_format; |
| 4505 | |
| 4506 | free(curproxy->conf.lfs_file); |
| 4507 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 4508 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4509 | |
| 4510 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4511 | goto out; |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 4512 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4513 | else if (!strcmp(args[1], "tcpka")) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4514 | /* enable TCP keep-alives on client and server streams */ |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4515 | 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] | 4516 | err_code |= ERR_WARN; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4517 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4518 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4519 | goto out; |
| 4520 | |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4521 | if (curproxy->cap & PR_CAP_FE) |
| 4522 | curproxy->options |= PR_O_TCP_CLI_KA; |
| 4523 | if (curproxy->cap & PR_CAP_BE) |
| 4524 | curproxy->options |= PR_O_TCP_SRV_KA; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4525 | } |
| 4526 | else if (!strcmp(args[1], "httpchk")) { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4527 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4528 | err_code |= ERR_WARN; |
| 4529 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4530 | /* use HTTP request to check servers' health */ |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4531 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4532 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4533 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4534 | curproxy->options2 |= PR_O2_HTTP_CHK; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4535 | if (!*args[2]) { /* no argument */ |
| 4536 | curproxy->check_req = strdup(DEF_CHECK_REQ); /* default request */ |
| 4537 | curproxy->check_len = strlen(DEF_CHECK_REQ); |
| 4538 | } else if (!*args[3]) { /* one argument : URI */ |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4539 | int reqlen = strlen(args[2]) + strlen("OPTIONS HTTP/1.0\r\n") + 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4540 | curproxy->check_req = (char *)malloc(reqlen); |
| 4541 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4542 | "OPTIONS %s HTTP/1.0\r\n", args[2]); /* URI to use */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4543 | } else { /* more arguments : METHOD URI [HTTP_VER] */ |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4544 | int reqlen = strlen(args[2]) + strlen(args[3]) + 3 + strlen("\r\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4545 | if (*args[4]) |
| 4546 | reqlen += strlen(args[4]); |
| 4547 | else |
| 4548 | reqlen += strlen("HTTP/1.0"); |
| 4549 | |
| 4550 | curproxy->check_req = (char *)malloc(reqlen); |
| 4551 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4552 | "%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] | 4553 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4554 | if (alertif_too_many_args_idx(3, 1, file, linenum, args, &err_code)) |
| 4555 | goto out; |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 4556 | } |
| 4557 | else if (!strcmp(args[1], "ssl-hello-chk")) { |
| 4558 | /* use SSLv3 CLIENT HELLO to check servers' health */ |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4559 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4560 | err_code |= ERR_WARN; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4561 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4562 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4563 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4564 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Willy Tarreau | 07a5490 | 2010-03-29 18:33:29 +0200 | [diff] [blame] | 4565 | curproxy->options2 |= PR_O2_SSL3_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4566 | |
| 4567 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4568 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4569 | } |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4570 | else if (!strcmp(args[1], "smtpchk")) { |
| 4571 | /* use SMTP request to check servers' health */ |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4572 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4573 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4574 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4575 | curproxy->options2 |= PR_O2_SMTP_CHK; |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4576 | |
| 4577 | if (!*args[2] || !*args[3]) { /* no argument or incomplete EHLO host */ |
| 4578 | curproxy->check_req = strdup(DEF_SMTP_CHECK_REQ); /* default request */ |
| 4579 | curproxy->check_len = strlen(DEF_SMTP_CHECK_REQ); |
| 4580 | } else { /* ESMTP EHLO, or SMTP HELO, and a hostname */ |
| 4581 | if (!strcmp(args[2], "EHLO") || !strcmp(args[2], "HELO")) { |
| 4582 | int reqlen = strlen(args[2]) + strlen(args[3]) + strlen(" \r\n") + 1; |
| 4583 | curproxy->check_req = (char *)malloc(reqlen); |
| 4584 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
| 4585 | "%s %s\r\n", args[2], args[3]); /* HELO hostname */ |
| 4586 | } else { |
| 4587 | /* this just hits the default for now, but you could potentially expand it to allow for other stuff |
| 4588 | though, it's unlikely you'd want to send anything other than an EHLO or HELO */ |
| 4589 | curproxy->check_req = strdup(DEF_SMTP_CHECK_REQ); /* default request */ |
| 4590 | curproxy->check_len = strlen(DEF_SMTP_CHECK_REQ); |
| 4591 | } |
| 4592 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4593 | if (alertif_too_many_args_idx(2, 1, file, linenum, args, &err_code)) |
| 4594 | goto out; |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4595 | } |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4596 | else if (!strcmp(args[1], "pgsql-check")) { |
| 4597 | /* use PostgreSQL request to check servers' health */ |
| 4598 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4599 | err_code |= ERR_WARN; |
| 4600 | |
| 4601 | free(curproxy->check_req); |
| 4602 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4603 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4604 | curproxy->options2 |= PR_O2_PGSQL_CHK; |
| 4605 | |
| 4606 | if (*(args[2])) { |
| 4607 | int cur_arg = 2; |
| 4608 | |
| 4609 | while (*(args[cur_arg])) { |
| 4610 | if (strcmp(args[cur_arg], "user") == 0) { |
| 4611 | char * packet; |
| 4612 | uint32_t packet_len; |
| 4613 | uint32_t pv; |
| 4614 | |
| 4615 | /* suboption header - needs additional argument for it */ |
| 4616 | if (*(args[cur_arg+1]) == 0) { |
| 4617 | Alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 4618 | file, linenum, args[0], args[1], args[cur_arg]); |
| 4619 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4620 | goto out; |
| 4621 | } |
| 4622 | |
| 4623 | /* uint32_t + uint32_t + strlen("user")+1 + strlen(username)+1 + 1 */ |
| 4624 | packet_len = 4 + 4 + 5 + strlen(args[cur_arg + 1])+1 +1; |
| 4625 | pv = htonl(0x30000); /* protocol version 3.0 */ |
| 4626 | |
| 4627 | packet = (char*) calloc(1, packet_len); |
| 4628 | |
| 4629 | memcpy(packet + 4, &pv, 4); |
| 4630 | |
| 4631 | /* copy "user" */ |
| 4632 | memcpy(packet + 8, "user", 4); |
| 4633 | |
| 4634 | /* copy username */ |
| 4635 | memcpy(packet + 13, args[cur_arg+1], strlen(args[cur_arg+1])); |
| 4636 | |
| 4637 | free(curproxy->check_req); |
| 4638 | curproxy->check_req = packet; |
| 4639 | curproxy->check_len = packet_len; |
| 4640 | |
| 4641 | packet_len = htonl(packet_len); |
| 4642 | memcpy(packet, &packet_len, 4); |
| 4643 | cur_arg += 2; |
| 4644 | } else { |
| 4645 | /* unknown suboption - catchall */ |
| 4646 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 4647 | file, linenum, args[0], args[1]); |
| 4648 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4649 | goto out; |
| 4650 | } |
| 4651 | } /* end while loop */ |
| 4652 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4653 | if (alertif_too_many_args_idx(2, 1, file, linenum, args, &err_code)) |
| 4654 | goto out; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4655 | } |
| 4656 | |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4657 | else if (!strcmp(args[1], "redis-check")) { |
| 4658 | /* use REDIS PING request to check servers' health */ |
| 4659 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4660 | err_code |= ERR_WARN; |
| 4661 | |
| 4662 | free(curproxy->check_req); |
| 4663 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4664 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4665 | curproxy->options2 |= PR_O2_REDIS_CHK; |
| 4666 | |
| 4667 | curproxy->check_req = (char *) malloc(sizeof(DEF_REDIS_CHECK_REQ) - 1); |
| 4668 | memcpy(curproxy->check_req, DEF_REDIS_CHECK_REQ, sizeof(DEF_REDIS_CHECK_REQ) - 1); |
| 4669 | curproxy->check_len = sizeof(DEF_REDIS_CHECK_REQ) - 1; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4670 | |
| 4671 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4672 | goto out; |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4673 | } |
| 4674 | |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4675 | else if (!strcmp(args[1], "mysql-check")) { |
| 4676 | /* use MYSQL request to check servers' health */ |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4677 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4678 | err_code |= ERR_WARN; |
| 4679 | |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4680 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4681 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4682 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4683 | curproxy->options2 |= PR_O2_MYSQL_CHK; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4684 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4685 | /* 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] | 4686 | * const char mysql40_client_auth_pkt[] = { |
| 4687 | * "\x0e\x00\x00" // packet length |
| 4688 | * "\x01" // packet number |
| 4689 | * "\x00\x00" // client capabilities |
| 4690 | * "\x00\x00\x01" // max packet |
| 4691 | * "haproxy\x00" // username (null terminated string) |
| 4692 | * "\x00" // filler (always 0x00) |
| 4693 | * "\x01\x00\x00" // packet length |
| 4694 | * "\x00" // packet number |
| 4695 | * "\x01" // COM_QUIT command |
| 4696 | * }; |
| 4697 | */ |
| 4698 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4699 | /* This is an example of a MySQL >=4.1 client Authentication packet provided by Nenad Merdanovic. |
| 4700 | * const char mysql41_client_auth_pkt[] = { |
| 4701 | * "\x0e\x00\x00\" // packet length |
| 4702 | * "\x01" // packet number |
| 4703 | * "\x00\x00\x00\x00" // client capabilities |
| 4704 | * "\x00\x00\x00\x01" // max packet |
| 4705 | * "\x21" // character set (UTF-8) |
| 4706 | * char[23] // All zeroes |
| 4707 | * "haproxy\x00" // username (null terminated string) |
| 4708 | * "\x00" // filler (always 0x00) |
| 4709 | * "\x01\x00\x00" // packet length |
| 4710 | * "\x00" // packet number |
| 4711 | * "\x01" // COM_QUIT command |
| 4712 | * }; |
| 4713 | */ |
| 4714 | |
| 4715 | |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4716 | if (*(args[2])) { |
| 4717 | int cur_arg = 2; |
| 4718 | |
| 4719 | while (*(args[cur_arg])) { |
| 4720 | if (strcmp(args[cur_arg], "user") == 0) { |
| 4721 | char *mysqluser; |
| 4722 | int packetlen, reqlen, userlen; |
| 4723 | |
| 4724 | /* suboption header - needs additional argument for it */ |
| 4725 | if (*(args[cur_arg+1]) == 0) { |
| 4726 | Alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 4727 | file, linenum, args[0], args[1], args[cur_arg]); |
| 4728 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4729 | goto out; |
| 4730 | } |
| 4731 | mysqluser = args[cur_arg + 1]; |
| 4732 | userlen = strlen(mysqluser); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4733 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4734 | if (*(args[cur_arg+2])) { |
| 4735 | if (!strcmp(args[cur_arg+2], "post-41")) { |
| 4736 | packetlen = userlen + 7 + 27; |
| 4737 | reqlen = packetlen + 9; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4738 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4739 | free(curproxy->check_req); |
| 4740 | curproxy->check_req = (char *)calloc(1, reqlen); |
| 4741 | curproxy->check_len = reqlen; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4742 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4743 | snprintf(curproxy->check_req, 4, "%c%c%c", |
| 4744 | ((unsigned char) packetlen & 0xff), |
| 4745 | ((unsigned char) (packetlen >> 8) & 0xff), |
| 4746 | ((unsigned char) (packetlen >> 16) & 0xff)); |
| 4747 | |
| 4748 | curproxy->check_req[3] = 1; |
| 4749 | curproxy->check_req[5] = 130; |
| 4750 | curproxy->check_req[11] = 1; |
| 4751 | curproxy->check_req[12] = 33; |
| 4752 | memcpy(&curproxy->check_req[36], mysqluser, userlen); |
| 4753 | curproxy->check_req[36 + userlen + 1 + 1] = 1; |
| 4754 | curproxy->check_req[36 + userlen + 1 + 1 + 4] = 1; |
| 4755 | cur_arg += 3; |
| 4756 | } else { |
| 4757 | Alert("parsing [%s:%d] : keyword '%s' only supports option 'post-41'.\n", file, linenum, args[cur_arg+2]); |
| 4758 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4759 | goto out; |
| 4760 | } |
| 4761 | } else { |
| 4762 | packetlen = userlen + 7; |
| 4763 | reqlen = packetlen + 9; |
| 4764 | |
| 4765 | free(curproxy->check_req); |
| 4766 | curproxy->check_req = (char *)calloc(1, reqlen); |
| 4767 | curproxy->check_len = reqlen; |
| 4768 | |
| 4769 | snprintf(curproxy->check_req, 4, "%c%c%c", |
| 4770 | ((unsigned char) packetlen & 0xff), |
| 4771 | ((unsigned char) (packetlen >> 8) & 0xff), |
| 4772 | ((unsigned char) (packetlen >> 16) & 0xff)); |
| 4773 | |
| 4774 | curproxy->check_req[3] = 1; |
| 4775 | curproxy->check_req[5] = 128; |
| 4776 | curproxy->check_req[8] = 1; |
| 4777 | memcpy(&curproxy->check_req[9], mysqluser, userlen); |
| 4778 | curproxy->check_req[9 + userlen + 1 + 1] = 1; |
| 4779 | curproxy->check_req[9 + userlen + 1 + 1 + 4] = 1; |
| 4780 | cur_arg += 2; |
| 4781 | } |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4782 | } else { |
| 4783 | /* unknown suboption - catchall */ |
| 4784 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 4785 | file, linenum, args[0], args[1]); |
| 4786 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4787 | goto out; |
| 4788 | } |
| 4789 | } /* end while loop */ |
| 4790 | } |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4791 | } |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 4792 | else if (!strcmp(args[1], "ldap-check")) { |
| 4793 | /* use LDAP request to check servers' health */ |
| 4794 | free(curproxy->check_req); |
| 4795 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4796 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 4797 | curproxy->options2 |= PR_O2_LDAP_CHK; |
| 4798 | |
| 4799 | curproxy->check_req = (char *) malloc(sizeof(DEF_LDAP_CHECK_REQ) - 1); |
| 4800 | memcpy(curproxy->check_req, DEF_LDAP_CHECK_REQ, sizeof(DEF_LDAP_CHECK_REQ) - 1); |
| 4801 | curproxy->check_len = sizeof(DEF_LDAP_CHECK_REQ) - 1; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4802 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4803 | goto out; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 4804 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 4805 | else if (!strcmp(args[1], "tcp-check")) { |
| 4806 | /* use raw TCPCHK send/expect to check servers' health */ |
| 4807 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4808 | err_code |= ERR_WARN; |
| 4809 | |
| 4810 | free(curproxy->check_req); |
| 4811 | curproxy->check_req = NULL; |
| 4812 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4813 | curproxy->options2 |= PR_O2_TCPCHK_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4814 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4815 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 4816 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 4817 | else if (!strcmp(args[1], "external-check")) { |
| 4818 | /* excute an external command to check servers' health */ |
| 4819 | free(curproxy->check_req); |
| 4820 | curproxy->check_req = NULL; |
| 4821 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4822 | curproxy->options2 |= PR_O2_EXT_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4823 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4824 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 4825 | } |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4826 | else if (!strcmp(args[1], "forwardfor")) { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4827 | int cur_arg; |
| 4828 | |
| 4829 | /* insert x-forwarded-for field, but not for the IP address listed as an except. |
| 4830 | * set default options (ie: bitfield, header name, etc) |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4831 | */ |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4832 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4833 | curproxy->options |= PR_O_FWDFOR | PR_O_FF_ALWAYS; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4834 | |
| 4835 | free(curproxy->fwdfor_hdr_name); |
| 4836 | curproxy->fwdfor_hdr_name = strdup(DEF_XFORWARDFOR_HDR); |
| 4837 | curproxy->fwdfor_hdr_len = strlen(DEF_XFORWARDFOR_HDR); |
| 4838 | |
| 4839 | /* loop to go through arguments - start at 2, since 0+1 = "option" "forwardfor" */ |
| 4840 | cur_arg = 2; |
| 4841 | while (*(args[cur_arg])) { |
| 4842 | if (!strcmp(args[cur_arg], "except")) { |
| 4843 | /* suboption except - needs additional argument for it */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 4844 | 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] | 4845 | Alert("parsing [%s:%d] : '%s %s %s' expects <address>[/mask] as argument.\n", |
| 4846 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4847 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4848 | goto out; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4849 | } |
| 4850 | /* flush useless bits */ |
| 4851 | curproxy->except_net.s_addr &= curproxy->except_mask.s_addr; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4852 | cur_arg += 2; |
| 4853 | } else if (!strcmp(args[cur_arg], "header")) { |
| 4854 | /* suboption header - needs additional argument for it */ |
| 4855 | if (*(args[cur_arg+1]) == 0) { |
| 4856 | Alert("parsing [%s:%d] : '%s %s %s' expects <header_name> as argument.\n", |
| 4857 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4858 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4859 | goto out; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4860 | } |
| 4861 | free(curproxy->fwdfor_hdr_name); |
| 4862 | curproxy->fwdfor_hdr_name = strdup(args[cur_arg+1]); |
| 4863 | curproxy->fwdfor_hdr_len = strlen(curproxy->fwdfor_hdr_name); |
| 4864 | cur_arg += 2; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4865 | } else if (!strcmp(args[cur_arg], "if-none")) { |
| 4866 | curproxy->options &= ~PR_O_FF_ALWAYS; |
| 4867 | cur_arg += 1; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4868 | } else { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4869 | /* unknown suboption - catchall */ |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4870 | 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] | 4871 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4872 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4873 | goto out; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4874 | } |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4875 | } /* end while loop */ |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 4876 | } |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4877 | else if (!strcmp(args[1], "originalto")) { |
| 4878 | int cur_arg; |
| 4879 | |
| 4880 | /* insert x-original-to field, but not for the IP address listed as an except. |
| 4881 | * set default options (ie: bitfield, header name, etc) |
| 4882 | */ |
| 4883 | |
| 4884 | curproxy->options |= PR_O_ORGTO; |
| 4885 | |
| 4886 | free(curproxy->orgto_hdr_name); |
| 4887 | curproxy->orgto_hdr_name = strdup(DEF_XORIGINALTO_HDR); |
| 4888 | curproxy->orgto_hdr_len = strlen(DEF_XORIGINALTO_HDR); |
| 4889 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4890 | /* 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] | 4891 | cur_arg = 2; |
| 4892 | while (*(args[cur_arg])) { |
| 4893 | if (!strcmp(args[cur_arg], "except")) { |
| 4894 | /* suboption except - needs additional argument for it */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 4895 | 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] | 4896 | Alert("parsing [%s:%d] : '%s %s %s' expects <address>[/mask] as argument.\n", |
| 4897 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4898 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4899 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4900 | } |
| 4901 | /* flush useless bits */ |
| 4902 | curproxy->except_to.s_addr &= curproxy->except_mask_to.s_addr; |
| 4903 | cur_arg += 2; |
| 4904 | } else if (!strcmp(args[cur_arg], "header")) { |
| 4905 | /* suboption header - needs additional argument for it */ |
| 4906 | if (*(args[cur_arg+1]) == 0) { |
| 4907 | Alert("parsing [%s:%d] : '%s %s %s' expects <header_name> as argument.\n", |
| 4908 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4909 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4910 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4911 | } |
| 4912 | free(curproxy->orgto_hdr_name); |
| 4913 | curproxy->orgto_hdr_name = strdup(args[cur_arg+1]); |
| 4914 | curproxy->orgto_hdr_len = strlen(curproxy->orgto_hdr_name); |
| 4915 | cur_arg += 2; |
| 4916 | } else { |
| 4917 | /* unknown suboption - catchall */ |
| 4918 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'except' and 'header'.\n", |
| 4919 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4920 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4921 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4922 | } |
| 4923 | } /* end while loop */ |
| 4924 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4925 | else { |
| 4926 | Alert("parsing [%s:%d] : unknown option '%s'.\n", file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4927 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4928 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4929 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4930 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4931 | } |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 4932 | else if (!strcmp(args[0], "default_backend")) { |
| 4933 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4934 | err_code |= ERR_WARN; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 4935 | |
| 4936 | if (*(args[1]) == 0) { |
| 4937 | 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] | 4938 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4939 | goto out; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 4940 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4941 | free(curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 4942 | curproxy->defbe.name = strdup(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4943 | |
| 4944 | if (alertif_too_many_args_idx(1, 0, file, linenum, args, &err_code)) |
| 4945 | goto out; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 4946 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4947 | else if (!strcmp(args[0], "redispatch") || !strcmp(args[0], "redisp")) { |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 4948 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4949 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 4950 | |
Willy Tarreau | a3c504c | 2014-04-28 22:37:32 +0200 | [diff] [blame] | 4951 | if (!already_warned(WARN_REDISPATCH_DEPRECATED)) |
| 4952 | 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] | 4953 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4954 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4955 | /* enable reconnections to dispatch */ |
| 4956 | curproxy->options |= PR_O_REDISP; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4957 | |
| 4958 | if (alertif_too_many_args_idx(1, 0, file, linenum, args, &err_code)) |
| 4959 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4960 | } |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 4961 | else if (!strcmp(args[0], "http-reuse")) { |
| 4962 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 4963 | err_code |= ERR_WARN; |
| 4964 | |
| 4965 | if (strcmp(args[1], "never") == 0) { |
| 4966 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 4967 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 4968 | curproxy->options |= PR_O_REUSE_NEVR; |
| 4969 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4970 | goto out; |
| 4971 | } |
Willy Tarreau | 161d45f | 2015-08-05 16:02:46 +0200 | [diff] [blame] | 4972 | else if (strcmp(args[1], "safe") == 0) { |
| 4973 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 4974 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 4975 | curproxy->options |= PR_O_REUSE_SAFE; |
| 4976 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4977 | goto out; |
| 4978 | } |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 4979 | else if (strcmp(args[1], "aggressive") == 0) { |
| 4980 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 4981 | curproxy->options |= PR_O_REUSE_AGGR; |
| 4982 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4983 | goto out; |
| 4984 | } |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 4985 | else if (strcmp(args[1], "always") == 0) { |
| 4986 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 4987 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 4988 | curproxy->options |= PR_O_REUSE_ALWS; |
| 4989 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4990 | goto out; |
| 4991 | } |
| 4992 | else { |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 4993 | 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] | 4994 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4995 | goto out; |
| 4996 | } |
| 4997 | } |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 4998 | else if (!strcmp(args[0], "http-check")) { |
| 4999 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5000 | err_code |= ERR_WARN; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5001 | |
| 5002 | if (strcmp(args[1], "disable-on-404") == 0) { |
| 5003 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5004 | curproxy->options |= PR_O_DISABLE404; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5005 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5006 | goto out; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5007 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 5008 | else if (strcmp(args[1], "send-state") == 0) { |
| 5009 | /* enable emission of the apparent state of a server in HTTP checks */ |
| 5010 | curproxy->options2 |= PR_O2_CHK_SNDST; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5011 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5012 | goto out; |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 5013 | } |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5014 | else if (strcmp(args[1], "expect") == 0) { |
| 5015 | const char *ptr_arg; |
| 5016 | int cur_arg; |
| 5017 | |
| 5018 | if (curproxy->options2 & PR_O2_EXP_TYPE) { |
| 5019 | Alert("parsing [%s:%d] : '%s %s' already specified.\n", file, linenum, args[0], args[1]); |
| 5020 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5021 | goto out; |
| 5022 | } |
| 5023 | |
| 5024 | cur_arg = 2; |
| 5025 | /* consider exclamation marks, sole or at the beginning of a word */ |
| 5026 | while (*(ptr_arg = args[cur_arg])) { |
| 5027 | while (*ptr_arg == '!') { |
| 5028 | curproxy->options2 ^= PR_O2_EXP_INV; |
| 5029 | ptr_arg++; |
| 5030 | } |
| 5031 | if (*ptr_arg) |
| 5032 | break; |
| 5033 | cur_arg++; |
| 5034 | } |
| 5035 | /* now ptr_arg points to the beginning of a word past any possible |
| 5036 | * exclamation mark, and cur_arg is the argument which holds this word. |
| 5037 | */ |
| 5038 | if (strcmp(ptr_arg, "status") == 0) { |
| 5039 | if (!*(args[cur_arg + 1])) { |
| 5040 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5041 | file, linenum, args[0], args[1], ptr_arg); |
| 5042 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5043 | goto out; |
| 5044 | } |
| 5045 | curproxy->options2 |= PR_O2_EXP_STS; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5046 | free(curproxy->expect_str); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5047 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
| 5048 | } |
| 5049 | else if (strcmp(ptr_arg, "string") == 0) { |
| 5050 | if (!*(args[cur_arg + 1])) { |
| 5051 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5052 | file, linenum, args[0], args[1], ptr_arg); |
| 5053 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5054 | goto out; |
| 5055 | } |
| 5056 | curproxy->options2 |= PR_O2_EXP_STR; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5057 | free(curproxy->expect_str); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5058 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
| 5059 | } |
| 5060 | else if (strcmp(ptr_arg, "rstatus") == 0) { |
| 5061 | if (!*(args[cur_arg + 1])) { |
| 5062 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5063 | file, linenum, args[0], args[1], ptr_arg); |
| 5064 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5065 | goto out; |
| 5066 | } |
| 5067 | curproxy->options2 |= PR_O2_EXP_RSTS; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5068 | free(curproxy->expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5069 | if (curproxy->expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5070 | regex_free(curproxy->expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5071 | free(curproxy->expect_regex); |
| 5072 | curproxy->expect_regex = NULL; |
| 5073 | } |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5074 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5075 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 5076 | error = NULL; |
| 5077 | if (!regex_comp(args[cur_arg + 1], curproxy->expect_regex, 1, 1, &error)) { |
| 5078 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5079 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5080 | free(error); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5081 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5082 | goto out; |
| 5083 | } |
| 5084 | } |
| 5085 | else if (strcmp(ptr_arg, "rstring") == 0) { |
| 5086 | if (!*(args[cur_arg + 1])) { |
| 5087 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5088 | file, linenum, args[0], args[1], ptr_arg); |
| 5089 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5090 | goto out; |
| 5091 | } |
| 5092 | curproxy->options2 |= PR_O2_EXP_RSTR; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5093 | free(curproxy->expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5094 | if (curproxy->expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5095 | regex_free(curproxy->expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5096 | free(curproxy->expect_regex); |
| 5097 | curproxy->expect_regex = NULL; |
| 5098 | } |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5099 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5100 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 5101 | error = NULL; |
| 5102 | if (!regex_comp(args[cur_arg + 1], curproxy->expect_regex, 1, 1, &error)) { |
| 5103 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5104 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5105 | free(error); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5106 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5107 | goto out; |
| 5108 | } |
| 5109 | } |
| 5110 | else { |
| 5111 | Alert("parsing [%s:%d] : '%s %s' only supports [!] 'status', 'string', 'rstatus', 'rstring', found '%s'.\n", |
| 5112 | file, linenum, args[0], args[1], ptr_arg); |
| 5113 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5114 | goto out; |
| 5115 | } |
| 5116 | } |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5117 | else { |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5118 | 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] | 5119 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5120 | goto out; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5121 | } |
| 5122 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5123 | else if (!strcmp(args[0], "tcp-check")) { |
| 5124 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5125 | err_code |= ERR_WARN; |
| 5126 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5127 | if (strcmp(args[1], "comment") == 0) { |
| 5128 | int cur_arg; |
| 5129 | struct tcpcheck_rule *tcpcheck; |
| 5130 | |
| 5131 | cur_arg = 1; |
| 5132 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5133 | tcpcheck->action = TCPCHK_ACT_COMMENT; |
| 5134 | |
| 5135 | if (!*args[cur_arg + 1]) { |
| 5136 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5137 | file, linenum, args[cur_arg]); |
| 5138 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5139 | goto out; |
| 5140 | } |
| 5141 | |
| 5142 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5143 | |
| 5144 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5145 | if (alertif_too_many_args_idx(1, 1, file, linenum, args, &err_code)) |
| 5146 | goto out; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5147 | } |
| 5148 | else if (strcmp(args[1], "connect") == 0) { |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5149 | const char *ptr_arg; |
| 5150 | int cur_arg; |
| 5151 | struct tcpcheck_rule *tcpcheck; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5152 | |
| 5153 | /* check if first rule is also a 'connect' action */ |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 5154 | tcpcheck = LIST_NEXT(&curproxy->tcpcheck_rules, struct tcpcheck_rule *, list); |
| 5155 | while (&tcpcheck->list != &curproxy->tcpcheck_rules && |
| 5156 | tcpcheck->action == TCPCHK_ACT_COMMENT) { |
| 5157 | tcpcheck = LIST_NEXT(&tcpcheck->list, struct tcpcheck_rule *, list); |
| 5158 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5159 | |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 5160 | if (&tcpcheck->list != &curproxy->tcpcheck_rules |
| 5161 | && tcpcheck->action != TCPCHK_ACT_CONNECT) { |
| 5162 | Alert("parsing [%s:%d] : first step MUST also be a 'connect' when there is a 'connect' step in the tcp-check ruleset.\n", |
| 5163 | file, linenum); |
| 5164 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5165 | goto out; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5166 | } |
| 5167 | |
| 5168 | cur_arg = 2; |
| 5169 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5170 | tcpcheck->action = TCPCHK_ACT_CONNECT; |
| 5171 | |
| 5172 | /* parsing each parameters to fill up the rule */ |
| 5173 | while (*(ptr_arg = args[cur_arg])) { |
| 5174 | /* tcp port */ |
| 5175 | if (strcmp(args[cur_arg], "port") == 0) { |
| 5176 | if ( (atol(args[cur_arg + 1]) > 65535) || |
| 5177 | (atol(args[cur_arg + 1]) < 1) ){ |
| 5178 | Alert("parsing [%s:%d] : '%s %s %s' expects a valid TCP port (from range 1 to 65535), got %s.\n", |
| 5179 | file, linenum, args[0], args[1], "port", args[cur_arg + 1]); |
| 5180 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5181 | goto out; |
| 5182 | } |
| 5183 | tcpcheck->port = atol(args[cur_arg + 1]); |
| 5184 | cur_arg += 2; |
| 5185 | } |
| 5186 | /* send proxy protocol */ |
| 5187 | else if (strcmp(args[cur_arg], "send-proxy") == 0) { |
| 5188 | tcpcheck->conn_opts |= TCPCHK_OPT_SEND_PROXY; |
| 5189 | cur_arg++; |
| 5190 | } |
| 5191 | #ifdef USE_OPENSSL |
| 5192 | else if (strcmp(args[cur_arg], "ssl") == 0) { |
| 5193 | curproxy->options |= PR_O_TCPCHK_SSL; |
| 5194 | tcpcheck->conn_opts |= TCPCHK_OPT_SSL; |
| 5195 | cur_arg++; |
| 5196 | } |
| 5197 | #endif /* USE_OPENSSL */ |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5198 | /* comment for this tcpcheck line */ |
| 5199 | else if (strcmp(args[cur_arg], "comment") == 0) { |
| 5200 | if (!*args[cur_arg + 1]) { |
| 5201 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5202 | file, linenum, args[cur_arg]); |
| 5203 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5204 | goto out; |
| 5205 | } |
| 5206 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5207 | cur_arg += 2; |
| 5208 | } |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5209 | else { |
| 5210 | #ifdef USE_OPENSSL |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5211 | 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] | 5212 | #else /* USE_OPENSSL */ |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5213 | 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] | 5214 | #endif /* USE_OPENSSL */ |
| 5215 | file, linenum, args[0], args[1], args[cur_arg]); |
| 5216 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5217 | goto out; |
| 5218 | } |
| 5219 | |
| 5220 | } |
| 5221 | |
| 5222 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5223 | } |
| 5224 | else if (strcmp(args[1], "send") == 0) { |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5225 | if (! *(args[2]) ) { |
| 5226 | /* SEND string expected */ |
| 5227 | Alert("parsing [%s:%d] : '%s %s %s' expects <STRING> as argument.\n", |
| 5228 | file, linenum, args[0], args[1], args[2]); |
| 5229 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5230 | goto out; |
| 5231 | } else { |
| 5232 | struct tcpcheck_rule *tcpcheck; |
| 5233 | |
| 5234 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5235 | |
| 5236 | tcpcheck->action = TCPCHK_ACT_SEND; |
| 5237 | tcpcheck->string_len = strlen(args[2]); |
| 5238 | tcpcheck->string = strdup(args[2]); |
| 5239 | tcpcheck->expect_regex = NULL; |
| 5240 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5241 | /* comment for this tcpcheck line */ |
| 5242 | if (strcmp(args[3], "comment") == 0) { |
| 5243 | if (!*args[4]) { |
| 5244 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5245 | file, linenum, args[3]); |
| 5246 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5247 | goto out; |
| 5248 | } |
| 5249 | tcpcheck->comment = strdup(args[4]); |
| 5250 | } |
| 5251 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5252 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5253 | } |
| 5254 | } |
| 5255 | else if (strcmp(args[1], "send-binary") == 0) { |
| 5256 | if (! *(args[2]) ) { |
| 5257 | /* SEND binary string expected */ |
| 5258 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument.\n", |
| 5259 | file, linenum, args[0], args[1], args[2]); |
| 5260 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5261 | goto out; |
| 5262 | } else { |
| 5263 | struct tcpcheck_rule *tcpcheck; |
| 5264 | char *err = NULL; |
| 5265 | |
| 5266 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5267 | |
| 5268 | tcpcheck->action = TCPCHK_ACT_SEND; |
| 5269 | if (parse_binary(args[2], &tcpcheck->string, &tcpcheck->string_len, &err) == 0) { |
| 5270 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument, but %s\n", |
| 5271 | file, linenum, args[0], args[1], args[2], err); |
| 5272 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5273 | goto out; |
| 5274 | } |
| 5275 | tcpcheck->expect_regex = NULL; |
| 5276 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5277 | /* comment for this tcpcheck line */ |
| 5278 | if (strcmp(args[3], "comment") == 0) { |
| 5279 | if (!*args[4]) { |
| 5280 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5281 | file, linenum, args[3]); |
| 5282 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5283 | goto out; |
| 5284 | } |
| 5285 | tcpcheck->comment = strdup(args[4]); |
| 5286 | } |
| 5287 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5288 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5289 | } |
| 5290 | } |
| 5291 | else if (strcmp(args[1], "expect") == 0) { |
| 5292 | const char *ptr_arg; |
| 5293 | int cur_arg; |
| 5294 | int inverse = 0; |
| 5295 | |
| 5296 | if (curproxy->options2 & PR_O2_EXP_TYPE) { |
| 5297 | Alert("parsing [%s:%d] : '%s %s' already specified.\n", file, linenum, args[0], args[1]); |
| 5298 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5299 | goto out; |
| 5300 | } |
| 5301 | |
| 5302 | cur_arg = 2; |
| 5303 | /* consider exclamation marks, sole or at the beginning of a word */ |
| 5304 | while (*(ptr_arg = args[cur_arg])) { |
| 5305 | while (*ptr_arg == '!') { |
| 5306 | inverse = !inverse; |
| 5307 | ptr_arg++; |
| 5308 | } |
| 5309 | if (*ptr_arg) |
| 5310 | break; |
| 5311 | cur_arg++; |
| 5312 | } |
| 5313 | /* now ptr_arg points to the beginning of a word past any possible |
| 5314 | * exclamation mark, and cur_arg is the argument which holds this word. |
| 5315 | */ |
| 5316 | if (strcmp(ptr_arg, "binary") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5317 | struct tcpcheck_rule *tcpcheck; |
| 5318 | char *err = NULL; |
| 5319 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5320 | if (!*(args[cur_arg + 1])) { |
| 5321 | Alert("parsing [%s:%d] : '%s %s %s' expects <binary string> as an argument.\n", |
| 5322 | file, linenum, args[0], args[1], ptr_arg); |
| 5323 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5324 | goto out; |
| 5325 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5326 | |
| 5327 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5328 | |
| 5329 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5330 | if (parse_binary(args[cur_arg + 1], &tcpcheck->string, &tcpcheck->string_len, &err) == 0) { |
| 5331 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument, but %s\n", |
| 5332 | file, linenum, args[0], args[1], args[2], err); |
| 5333 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5334 | goto out; |
| 5335 | } |
| 5336 | tcpcheck->expect_regex = NULL; |
| 5337 | tcpcheck->inverse = inverse; |
| 5338 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5339 | /* tcpcheck comment */ |
| 5340 | cur_arg += 2; |
| 5341 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5342 | if (!*args[cur_arg + 1]) { |
| 5343 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5344 | file, linenum, args[cur_arg + 1]); |
| 5345 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5346 | goto out; |
| 5347 | } |
| 5348 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5349 | } |
| 5350 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5351 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5352 | } |
| 5353 | else if (strcmp(ptr_arg, "string") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5354 | struct tcpcheck_rule *tcpcheck; |
| 5355 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5356 | if (!*(args[cur_arg + 1])) { |
| 5357 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5358 | file, linenum, args[0], args[1], ptr_arg); |
| 5359 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5360 | goto out; |
| 5361 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5362 | |
| 5363 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5364 | |
| 5365 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5366 | tcpcheck->string_len = strlen(args[cur_arg + 1]); |
| 5367 | tcpcheck->string = strdup(args[cur_arg + 1]); |
| 5368 | tcpcheck->expect_regex = NULL; |
| 5369 | tcpcheck->inverse = inverse; |
| 5370 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5371 | /* tcpcheck comment */ |
| 5372 | cur_arg += 2; |
| 5373 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5374 | if (!*args[cur_arg + 1]) { |
| 5375 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5376 | file, linenum, args[cur_arg + 1]); |
| 5377 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5378 | goto out; |
| 5379 | } |
| 5380 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5381 | } |
| 5382 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5383 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5384 | } |
| 5385 | else if (strcmp(ptr_arg, "rstring") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5386 | struct tcpcheck_rule *tcpcheck; |
| 5387 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5388 | if (!*(args[cur_arg + 1])) { |
| 5389 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5390 | file, linenum, args[0], args[1], ptr_arg); |
| 5391 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5392 | goto out; |
| 5393 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5394 | |
| 5395 | tcpcheck = (struct tcpcheck_rule *)calloc(1, sizeof(*tcpcheck)); |
| 5396 | |
| 5397 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5398 | tcpcheck->string_len = 0; |
| 5399 | tcpcheck->string = NULL; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5400 | tcpcheck->expect_regex = calloc(1, sizeof(*tcpcheck->expect_regex)); |
| 5401 | error = NULL; |
| 5402 | if (!regex_comp(args[cur_arg + 1], tcpcheck->expect_regex, 1, 1, &error)) { |
| 5403 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5404 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5405 | free(error); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5406 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5407 | goto out; |
| 5408 | } |
| 5409 | tcpcheck->inverse = inverse; |
| 5410 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5411 | /* tcpcheck comment */ |
| 5412 | cur_arg += 2; |
| 5413 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5414 | if (!*args[cur_arg + 1]) { |
| 5415 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5416 | file, linenum, args[cur_arg + 1]); |
| 5417 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5418 | goto out; |
| 5419 | } |
| 5420 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5421 | } |
| 5422 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5423 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5424 | } |
| 5425 | else { |
| 5426 | Alert("parsing [%s:%d] : '%s %s' only supports [!] 'binary', 'string', 'rstring', found '%s'.\n", |
| 5427 | file, linenum, args[0], args[1], ptr_arg); |
| 5428 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5429 | goto out; |
| 5430 | } |
| 5431 | } |
| 5432 | else { |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5433 | 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] | 5434 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5435 | goto out; |
| 5436 | } |
| 5437 | } |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5438 | else if (!strcmp(args[0], "monitor")) { |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 5439 | if (curproxy == &defproxy) { |
| 5440 | 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] | 5441 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5442 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 5443 | } |
| 5444 | |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5445 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5446 | err_code |= ERR_WARN; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5447 | |
| 5448 | if (strcmp(args[1], "fail") == 0) { |
| 5449 | /* add a condition to fail monitor requests */ |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 5450 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5451 | Alert("parsing [%s:%d] : '%s %s' requires either 'if' or 'unless' followed by a condition.\n", |
| 5452 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5453 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5454 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5455 | } |
| 5456 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 5457 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 5458 | Alert("parsing [%s:%d] : error detected while parsing a '%s %s' condition : %s.\n", |
| 5459 | file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5460 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5461 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5462 | } |
| 5463 | LIST_ADDQ(&curproxy->mon_fail_cond, &cond->list); |
| 5464 | } |
| 5465 | else { |
| 5466 | 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] | 5467 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5468 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5469 | } |
| 5470 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5471 | #ifdef TPROXY |
| 5472 | else if (!strcmp(args[0], "transparent")) { |
| 5473 | /* enable transparent proxy connections */ |
| 5474 | curproxy->options |= PR_O_TRANSP; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5475 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 5476 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5477 | } |
| 5478 | #endif |
| 5479 | else if (!strcmp(args[0], "maxconn")) { /* maxconn */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5480 | 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] | 5481 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5482 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5483 | if (*(args[1]) == 0) { |
| 5484 | 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] | 5485 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5486 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5487 | } |
| 5488 | curproxy->maxconn = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5489 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5490 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5491 | } |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5492 | else if (!strcmp(args[0], "backlog")) { /* backlog */ |
| 5493 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5494 | err_code |= ERR_WARN; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5495 | |
| 5496 | if (*(args[1]) == 0) { |
| 5497 | 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] | 5498 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5499 | goto out; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5500 | } |
| 5501 | curproxy->backlog = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5502 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5503 | goto out; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5504 | } |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5505 | else if (!strcmp(args[0], "fullconn")) { /* fullconn */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5506 | 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] | 5507 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5508 | |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5509 | if (*(args[1]) == 0) { |
| 5510 | 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] | 5511 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5512 | goto out; |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5513 | } |
| 5514 | curproxy->fullconn = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5515 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5516 | goto out; |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5517 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5518 | else if (!strcmp(args[0], "grace")) { /* grace time (ms) */ |
| 5519 | if (*(args[1]) == 0) { |
| 5520 | 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] | 5521 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5522 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5523 | } |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 5524 | err = parse_time_err(args[1], &val, TIME_UNIT_MS); |
| 5525 | if (err) { |
| 5526 | Alert("parsing [%s:%d] : unexpected character '%c' in grace time.\n", |
| 5527 | file, linenum, *err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5528 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5529 | goto out; |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 5530 | } |
| 5531 | curproxy->grace = val; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5532 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5533 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5534 | } |
| 5535 | else if (!strcmp(args[0], "dispatch")) { /* dispatch address */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 5536 | struct sockaddr_storage *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5537 | int port1, port2; |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5538 | struct protocol *proto; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5539 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5540 | if (curproxy == &defproxy) { |
| 5541 | 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] | 5542 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5543 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5544 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5545 | else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5546 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5547 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5548 | sk = str2sa_range(args[1], &port1, &port2, &errmsg, NULL); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5549 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5550 | Alert("parsing [%s:%d] : '%s' : %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5551 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5552 | goto out; |
| 5553 | } |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5554 | |
| 5555 | proto = protocol_by_family(sk->ss_family); |
| 5556 | if (!proto || !proto->connect) { |
| 5557 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 5558 | file, linenum, args[0], args[1]); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5559 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5560 | goto out; |
| 5561 | } |
| 5562 | |
| 5563 | if (port1 != port2) { |
| 5564 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'.\n", |
| 5565 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5566 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5567 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5568 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5569 | |
| 5570 | if (!port1) { |
| 5571 | Alert("parsing [%s:%d] : '%s' : missing port number in '%s', <addr:port> expected.\n", |
| 5572 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5573 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5574 | goto out; |
| 5575 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5576 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5577 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5578 | goto out; |
| 5579 | |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5580 | curproxy->dispatch_addr = *sk; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 5581 | curproxy->options |= PR_O_DISPATCH; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5582 | } |
| 5583 | else if (!strcmp(args[0], "balance")) { /* set balancing with optional algorithm */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5584 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5585 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5586 | |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 5587 | if (backend_parse_balance((const char **)args + 1, &errmsg, curproxy) < 0) { |
| 5588 | Alert("parsing [%s:%d] : %s %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5589 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5590 | goto out; |
Willy Tarreau | 2fcb500 | 2007-05-08 13:35:26 +0200 | [diff] [blame] | 5591 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5592 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5593 | else if (!strcmp(args[0], "hash-type")) { /* set hashing method */ |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5594 | /** |
| 5595 | * The syntax for hash-type config element is |
| 5596 | * hash-type {map-based|consistent} [[<algo>] avalanche] |
| 5597 | * |
| 5598 | * The default hash function is sdbm for map-based and sdbm+avalanche for consistent. |
| 5599 | */ |
| 5600 | 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] | 5601 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5602 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5603 | err_code |= ERR_WARN; |
| 5604 | |
| 5605 | if (strcmp(args[1], "consistent") == 0) { /* use consistent hashing */ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5606 | curproxy->lbprm.algo |= BE_LB_HASH_CONS; |
| 5607 | } |
| 5608 | else if (strcmp(args[1], "map-based") == 0) { /* use map-based hashing */ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5609 | curproxy->lbprm.algo |= BE_LB_HASH_MAP; |
| 5610 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5611 | else if (strcmp(args[1], "avalanche") == 0) { |
| 5612 | 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]); |
| 5613 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5614 | goto out; |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 5615 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5616 | else { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5617 | 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] | 5618 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5619 | goto out; |
| 5620 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5621 | |
| 5622 | /* set the hash function to use */ |
| 5623 | if (!*args[2]) { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5624 | /* the default algo is sdbm */ |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5625 | curproxy->lbprm.algo |= BE_LB_HFCN_SDBM; |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5626 | |
| 5627 | /* if consistent with no argument, then avalanche modifier is also applied */ |
| 5628 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) |
| 5629 | curproxy->lbprm.algo |= BE_LB_HMOD_AVAL; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5630 | } else { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5631 | /* set the hash function */ |
| 5632 | if (!strcmp(args[2], "sdbm")) { |
| 5633 | curproxy->lbprm.algo |= BE_LB_HFCN_SDBM; |
| 5634 | } |
| 5635 | else if (!strcmp(args[2], "djb2")) { |
| 5636 | curproxy->lbprm.algo |= BE_LB_HFCN_DJB2; |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5637 | } |
| 5638 | else if (!strcmp(args[2], "wt6")) { |
Willy Tarreau | a0f4271 | 2013-11-14 14:30:35 +0100 | [diff] [blame] | 5639 | curproxy->lbprm.algo |= BE_LB_HFCN_WT6; |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5640 | } |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5641 | else if (!strcmp(args[2], "crc32")) { |
| 5642 | curproxy->lbprm.algo |= BE_LB_HFCN_CRC32; |
| 5643 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5644 | else { |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5645 | 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] | 5646 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5647 | goto out; |
| 5648 | } |
| 5649 | |
| 5650 | /* set the hash modifier */ |
| 5651 | if (!strcmp(args[3], "avalanche")) { |
| 5652 | curproxy->lbprm.algo |= BE_LB_HMOD_AVAL; |
| 5653 | } |
| 5654 | else if (*args[3]) { |
| 5655 | Alert("parsing [%s:%d] : '%s' only supports 'avalanche' as a modifier for hash functions.\n", file, linenum, args[0]); |
| 5656 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5657 | goto out; |
| 5658 | } |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 5659 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5660 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5661 | else if (strcmp(args[0], "unique-id-format") == 0) { |
| 5662 | if (!*(args[1])) { |
| 5663 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5664 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5665 | goto out; |
| 5666 | } |
William Lallemand | 3203ff4 | 2012-11-11 17:30:56 +0100 | [diff] [blame] | 5667 | if (*(args[2])) { |
| 5668 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5669 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5670 | goto out; |
| 5671 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5672 | free(curproxy->conf.uniqueid_format_string); |
| 5673 | curproxy->conf.uniqueid_format_string = strdup(args[1]); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 5674 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5675 | free(curproxy->conf.uif_file); |
| 5676 | curproxy->conf.uif_file = strdup(curproxy->conf.args.file); |
| 5677 | curproxy->conf.uif_line = curproxy->conf.args.line; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5678 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5679 | |
| 5680 | else if (strcmp(args[0], "unique-id-header") == 0) { |
| 5681 | if (!*(args[1])) { |
| 5682 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5683 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5684 | goto out; |
| 5685 | } |
| 5686 | free(curproxy->header_unique_id); |
| 5687 | curproxy->header_unique_id = strdup(args[1]); |
| 5688 | } |
| 5689 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5690 | else if (strcmp(args[0], "log-format") == 0) { |
| 5691 | if (!*(args[1])) { |
| 5692 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5693 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5694 | goto out; |
| 5695 | } |
William Lallemand | 3203ff4 | 2012-11-11 17:30:56 +0100 | [diff] [blame] | 5696 | if (*(args[2])) { |
| 5697 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5698 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5699 | goto out; |
| 5700 | } |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 5701 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5702 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 5703 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 5704 | curproxy->conf.logformat_string != clf_http_log_format) |
| 5705 | free(curproxy->conf.logformat_string); |
| 5706 | curproxy->conf.logformat_string = strdup(args[1]); |
| 5707 | |
| 5708 | free(curproxy->conf.lfs_file); |
| 5709 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 5710 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 5711 | |
| 5712 | /* get a chance to improve log-format error reporting by |
| 5713 | * reporting the correct line-number when possible. |
| 5714 | */ |
| 5715 | if (curproxy != &defproxy && !(curproxy->cap & PR_CAP_FE)) { |
| 5716 | Warning("parsing [%s:%d] : backend '%s' : 'log-format' directive is ignored in backends.\n", |
| 5717 | file, linenum, curproxy->id); |
| 5718 | err_code |= ERR_WARN; |
| 5719 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5720 | } |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 5721 | else if (!strcmp(args[0], "log-tag")) { /* tag to report to syslog */ |
| 5722 | if (*(args[1]) == 0) { |
| 5723 | Alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]); |
| 5724 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5725 | goto out; |
| 5726 | } |
| 5727 | free(curproxy->log_tag); |
| 5728 | curproxy->log_tag = strdup(args[1]); |
| 5729 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5730 | else if (!strcmp(args[0], "log") && kwm == KWM_NO) { |
| 5731 | /* delete previous herited or defined syslog servers */ |
| 5732 | struct logsrv *back; |
| 5733 | |
| 5734 | if (*(args[1]) != 0) { |
| 5735 | Alert("parsing [%s:%d]:%s : 'no log' does not expect arguments.\n", file, linenum, args[1]); |
| 5736 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5737 | goto out; |
| 5738 | } |
| 5739 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5740 | list_for_each_entry_safe(tmplogsrv, back, &curproxy->logsrvs, list) { |
| 5741 | LIST_DEL(&tmplogsrv->list); |
| 5742 | free(tmplogsrv); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5743 | } |
| 5744 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5745 | else if (!strcmp(args[0], "log")) { /* syslog server address */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5746 | struct logsrv *logsrv; |
| 5747 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5748 | if (*(args[1]) && *(args[2]) == 0 && !strcmp(args[1], "global")) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5749 | /* copy global.logrsvs linked list to the end of curproxy->logsrvs */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5750 | list_for_each_entry(tmplogsrv, &global.logsrvs, list) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5751 | struct logsrv *node = malloc(sizeof(struct logsrv)); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5752 | memcpy(node, tmplogsrv, sizeof(struct logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5753 | LIST_INIT(&node->list); |
| 5754 | LIST_ADDQ(&curproxy->logsrvs, &node->list); |
| 5755 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5756 | } |
| 5757 | else if (*(args[1]) && *(args[2])) { |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 5758 | struct sockaddr_storage *sk; |
| 5759 | int port1, port2; |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5760 | int arg = 0; |
| 5761 | int len = 0; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5762 | |
| 5763 | logsrv = calloc(1, sizeof(struct logsrv)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5764 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5765 | /* just after the address, a length may be specified */ |
| 5766 | if (strcmp(args[arg+2], "len") == 0) { |
| 5767 | len = atoi(args[arg+3]); |
| 5768 | if (len < 80 || len > 65535) { |
| 5769 | Alert("parsing [%s:%d] : invalid log length '%s', must be between 80 and 65535.\n", |
| 5770 | file, linenum, args[arg+3]); |
| 5771 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5772 | goto out; |
| 5773 | } |
| 5774 | logsrv->maxlen = len; |
| 5775 | |
| 5776 | /* skip these two args */ |
| 5777 | arg += 2; |
| 5778 | } |
| 5779 | else |
| 5780 | logsrv->maxlen = MAX_SYSLOG_LEN; |
| 5781 | |
| 5782 | if (logsrv->maxlen > global.max_syslog_len) { |
| 5783 | global.max_syslog_len = logsrv->maxlen; |
| 5784 | logline = realloc(logline, global.max_syslog_len + 1); |
| 5785 | } |
| 5786 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5787 | if (alertif_too_many_args_idx(3, arg + 1, file, linenum, args, &err_code)) |
| 5788 | goto out; |
| 5789 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5790 | logsrv->facility = get_log_facility(args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5791 | if (logsrv->facility < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5792 | 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] | 5793 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5794 | goto out; |
| 5795 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5796 | } |
| 5797 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5798 | logsrv->level = 7; /* max syslog level = debug */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5799 | if (*(args[arg+3])) { |
| 5800 | logsrv->level = get_log_level(args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5801 | if (logsrv->level < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5802 | 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] | 5803 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5804 | goto out; |
| 5805 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5806 | } |
| 5807 | } |
| 5808 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5809 | logsrv->minlvl = 0; /* limit syslog level to this level (emerg) */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5810 | if (*(args[arg+4])) { |
| 5811 | logsrv->minlvl = get_log_level(args[arg+4]); |
Willy Tarreau | f7f057b | 2013-01-24 00:31:24 +0100 | [diff] [blame] | 5812 | if (logsrv->minlvl < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 5813 | 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] | 5814 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5815 | goto out; |
| 5816 | |
Willy Tarreau | f7edefa | 2009-05-10 17:20:05 +0200 | [diff] [blame] | 5817 | } |
| 5818 | } |
| 5819 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5820 | sk = str2sa_range(args[1], &port1, &port2, &errmsg, NULL); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 5821 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5822 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 5823 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 5824 | goto out; |
| 5825 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5826 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 5827 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5828 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 5829 | if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5830 | if (port1 != port2) { |
| 5831 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 5832 | file, linenum, args[0], args[1]); |
| 5833 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5834 | goto out; |
| 5835 | } |
| 5836 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5837 | if (!port1) |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5838 | set_host_port(&logsrv->addr, SYSLOG_PORT); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5839 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 5840 | |
| 5841 | LIST_ADDQ(&curproxy->logsrvs, &logsrv->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5842 | } |
| 5843 | else { |
| 5844 | Alert("parsing [%s:%d] : 'log' expects either <address[:port]> and <facility> or 'global' as arguments.\n", |
| 5845 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5846 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5847 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5848 | } |
| 5849 | } |
| 5850 | 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] | 5851 | int cur_arg; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5852 | int port1, port2; |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 5853 | struct sockaddr_storage *sk; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5854 | struct protocol *proto; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5855 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5856 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5857 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5858 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5859 | if (!*args[1]) { |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5860 | Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], and optionally '%s' <addr>, and '%s' <name>.\n", |
| 5861 | file, linenum, "source", "usesrc", "interface"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5862 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5863 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5864 | } |
Willy Tarreau | 368480c | 2009-03-01 08:27:21 +0100 | [diff] [blame] | 5865 | |
| 5866 | /* we must first clear any optional default setting */ |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5867 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 5868 | free(curproxy->conn_src.iface_name); |
| 5869 | curproxy->conn_src.iface_name = NULL; |
| 5870 | curproxy->conn_src.iface_len = 0; |
Willy Tarreau | 368480c | 2009-03-01 08:27:21 +0100 | [diff] [blame] | 5871 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5872 | sk = str2sa_range(args[1], &port1, &port2, &errmsg, NULL); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5873 | if (!sk) { |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5874 | Alert("parsing [%s:%d] : '%s %s' : %s\n", |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5875 | file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5876 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5877 | goto out; |
| 5878 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5879 | |
| 5880 | proto = protocol_by_family(sk->ss_family); |
| 5881 | if (!proto || !proto->connect) { |
| 5882 | 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] | 5883 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5884 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5885 | goto out; |
| 5886 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5887 | |
| 5888 | if (port1 != port2) { |
| 5889 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 5890 | file, linenum, args[0], args[1]); |
| 5891 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5892 | goto out; |
| 5893 | } |
| 5894 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5895 | curproxy->conn_src.source_addr = *sk; |
| 5896 | curproxy->conn_src.opts |= CO_SRC_BIND; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5897 | |
| 5898 | cur_arg = 2; |
| 5899 | while (*(args[cur_arg])) { |
| 5900 | if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */ |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 5901 | #if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT) |
| 5902 | #if !defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | 9cf8d3f | 2014-05-09 22:56:10 +0200 | [diff] [blame] | 5903 | if (!is_inet_addr(&curproxy->conn_src.source_addr)) { |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5904 | Alert("parsing [%s:%d] : '%s' requires an explicit 'source' address.\n", |
| 5905 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5906 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5907 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5908 | } |
| 5909 | #endif |
| 5910 | if (!*args[cur_arg + 1]) { |
| 5911 | Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', or 'clientip' as argument.\n", |
| 5912 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5913 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5914 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5915 | } |
| 5916 | |
| 5917 | if (!strcmp(args[cur_arg + 1], "client")) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5918 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 5919 | curproxy->conn_src.opts |= CO_SRC_TPROXY_CLI; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5920 | } else if (!strcmp(args[cur_arg + 1], "clientip")) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5921 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 5922 | curproxy->conn_src.opts |= CO_SRC_TPROXY_CIP; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 5923 | } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) { |
| 5924 | char *name, *end; |
| 5925 | |
| 5926 | name = args[cur_arg+1] + 7; |
| 5927 | while (isspace(*name)) |
| 5928 | name++; |
| 5929 | |
| 5930 | end = name; |
| 5931 | while (*end && !isspace(*end) && *end != ',' && *end != ')') |
| 5932 | end++; |
| 5933 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5934 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 5935 | curproxy->conn_src.opts |= CO_SRC_TPROXY_DYN; |
| 5936 | curproxy->conn_src.bind_hdr_name = calloc(1, end - name + 1); |
| 5937 | curproxy->conn_src.bind_hdr_len = end - name; |
| 5938 | memcpy(curproxy->conn_src.bind_hdr_name, name, end - name); |
| 5939 | curproxy->conn_src.bind_hdr_name[end-name] = '\0'; |
| 5940 | curproxy->conn_src.bind_hdr_occ = -1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 5941 | |
| 5942 | /* now look for an occurrence number */ |
| 5943 | while (isspace(*end)) |
| 5944 | end++; |
| 5945 | if (*end == ',') { |
| 5946 | end++; |
| 5947 | name = end; |
| 5948 | if (*end == '-') |
| 5949 | end++; |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 5950 | while (isdigit((int)*end)) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 5951 | end++; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5952 | curproxy->conn_src.bind_hdr_occ = strl2ic(name, end-name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 5953 | } |
| 5954 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5955 | if (curproxy->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) { |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 5956 | Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative" |
| 5957 | " occurrences values smaller than %d.\n", |
| 5958 | file, linenum, MAX_HDR_HISTORY); |
| 5959 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5960 | goto out; |
| 5961 | } |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5962 | } else { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5963 | struct sockaddr_storage *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5964 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5965 | sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5966 | if (!sk) { |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5967 | Alert("parsing [%s:%d] : '%s %s' : %s\n", |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5968 | file, linenum, args[cur_arg], args[cur_arg+1], errmsg); |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5969 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5970 | goto out; |
| 5971 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5972 | |
| 5973 | proto = protocol_by_family(sk->ss_family); |
| 5974 | if (!proto || !proto->connect) { |
| 5975 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 5976 | file, linenum, args[cur_arg], args[cur_arg+1]); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5977 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5978 | goto out; |
| 5979 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 5980 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5981 | if (port1 != port2) { |
| 5982 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 5983 | file, linenum, args[cur_arg], args[cur_arg + 1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5984 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5985 | goto out; |
| 5986 | } |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 5987 | curproxy->conn_src.tproxy_addr = *sk; |
| 5988 | curproxy->conn_src.opts |= CO_SRC_TPROXY_ADDR; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5989 | } |
| 5990 | global.last_checks |= LSTCHK_NETADM; |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 5991 | #if !defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5992 | global.last_checks |= LSTCHK_CTTPROXY; |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 5993 | #endif |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5994 | #else /* no TPROXY support */ |
| 5995 | 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] | 5996 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5997 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5998 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 5999 | #endif |
| 6000 | cur_arg += 2; |
| 6001 | continue; |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 6002 | } |
| 6003 | |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6004 | if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */ |
| 6005 | #ifdef SO_BINDTODEVICE |
| 6006 | if (!*args[cur_arg + 1]) { |
| 6007 | Alert("parsing [%s:%d] : '%s' : missing interface name.\n", |
| 6008 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6009 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6010 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6011 | } |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6012 | free(curproxy->conn_src.iface_name); |
| 6013 | curproxy->conn_src.iface_name = strdup(args[cur_arg + 1]); |
| 6014 | curproxy->conn_src.iface_len = strlen(curproxy->conn_src.iface_name); |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6015 | global.last_checks |= LSTCHK_NETADM; |
| 6016 | #else |
| 6017 | Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n", |
| 6018 | file, linenum, args[0], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6019 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6020 | goto out; |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 6021 | #endif |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6022 | cur_arg += 2; |
| 6023 | continue; |
| 6024 | } |
| 6025 | 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] | 6026 | file, linenum, args[0], "interface", "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6027 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6028 | goto out; |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6029 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6030 | } |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6031 | else if (!strcmp(args[0], "usesrc")) { /* address to use outside: needs "source" first */ |
| 6032 | Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n", |
| 6033 | file, linenum, "usesrc", "source"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6034 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6035 | goto out; |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6036 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6037 | 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] | 6038 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6039 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6040 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6041 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6042 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6043 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6044 | |
| 6045 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6046 | SMP_OPT_DIR_REQ, ACT_REPLACE, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6047 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6048 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6049 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6050 | } |
| 6051 | else if (!strcmp(args[0], "reqdel")) { /* delete request header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6052 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6053 | SMP_OPT_DIR_REQ, ACT_REMOVE, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6054 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6055 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6056 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6057 | } |
| 6058 | 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] | 6059 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6060 | SMP_OPT_DIR_REQ, ACT_DENY, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6061 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6062 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6063 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6064 | } |
| 6065 | 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] | 6066 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6067 | SMP_OPT_DIR_REQ, ACT_PASS, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6068 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6069 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6070 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6071 | } |
| 6072 | 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] | 6073 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6074 | SMP_OPT_DIR_REQ, ACT_ALLOW, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6075 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6076 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6077 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6078 | } |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6079 | 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] | 6080 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6081 | SMP_OPT_DIR_REQ, ACT_TARPIT, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6082 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6083 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6084 | goto out; |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6085 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6086 | 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] | 6087 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6088 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6089 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6090 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6091 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6092 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6093 | |
| 6094 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6095 | SMP_OPT_DIR_REQ, ACT_REPLACE, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6096 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6097 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6098 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6099 | } |
| 6100 | 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] | 6101 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6102 | SMP_OPT_DIR_REQ, ACT_REMOVE, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6103 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6104 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6105 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6106 | } |
| 6107 | 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] | 6108 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6109 | SMP_OPT_DIR_REQ, ACT_DENY, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6110 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6111 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6112 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6113 | } |
| 6114 | 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] | 6115 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6116 | SMP_OPT_DIR_REQ, ACT_PASS, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6117 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6118 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6119 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6120 | } |
| 6121 | 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] | 6122 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6123 | SMP_OPT_DIR_REQ, ACT_ALLOW, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6124 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6125 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6126 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6127 | } |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6128 | 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] | 6129 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6130 | SMP_OPT_DIR_REQ, ACT_TARPIT, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6131 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6132 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6133 | goto out; |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6134 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6135 | else if (!strcmp(args[0], "reqadd")) { /* add request header */ |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 6136 | struct cond_wordlist *wl; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6137 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6138 | if (curproxy == &defproxy) { |
| 6139 | 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] | 6140 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6141 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6142 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6143 | else if (warnifnotcap(curproxy, PR_CAP_RS, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6144 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6145 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6146 | if (*(args[1]) == 0) { |
| 6147 | 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] | 6148 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6149 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6150 | } |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6151 | |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6152 | if ((strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 6153 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args+2, &errmsg)) == NULL) { |
| 6154 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 6155 | file, linenum, args[0], errmsg); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6156 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6157 | goto out; |
| 6158 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 6159 | err_code |= warnif_cond_conflicts(cond, |
| 6160 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 6161 | file, linenum); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6162 | } |
| 6163 | else if (*args[2]) { |
| 6164 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 6165 | file, linenum, args[0], args[2]); |
| 6166 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6167 | goto out; |
| 6168 | } |
| 6169 | |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6170 | wl = calloc(1, sizeof(*wl)); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6171 | wl->cond = cond; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6172 | wl->s = strdup(args[1]); |
| 6173 | LIST_ADDQ(&curproxy->req_add, &wl->list); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 6174 | warnif_misplaced_reqadd(curproxy, file, linenum, args[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6175 | } |
| 6176 | 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] | 6177 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6178 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6179 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6180 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6181 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6182 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6183 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6184 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6185 | SMP_OPT_DIR_RES, ACT_REPLACE, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6186 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6187 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6188 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6189 | } |
| 6190 | else if (!strcmp(args[0], "rspdel")) { /* delete response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6191 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6192 | SMP_OPT_DIR_RES, ACT_REMOVE, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6193 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6194 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6195 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6196 | } |
| 6197 | else if (!strcmp(args[0], "rspdeny")) { /* block response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6198 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6199 | SMP_OPT_DIR_RES, ACT_DENY, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6200 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6201 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6202 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6203 | } |
| 6204 | 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] | 6205 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6206 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6207 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6208 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6209 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6210 | } |
| 6211 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6212 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6213 | SMP_OPT_DIR_RES, ACT_REPLACE, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6214 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6215 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6216 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6217 | } |
| 6218 | 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] | 6219 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6220 | SMP_OPT_DIR_RES, ACT_REMOVE, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6221 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6222 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6223 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6224 | } |
| 6225 | 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] | 6226 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6227 | SMP_OPT_DIR_RES, ACT_DENY, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6228 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6229 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6230 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6231 | } |
| 6232 | else if (!strcmp(args[0], "rspadd")) { /* add response header */ |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 6233 | struct cond_wordlist *wl; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6234 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6235 | if (curproxy == &defproxy) { |
| 6236 | 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] | 6237 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6238 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6239 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6240 | else if (warnifnotcap(curproxy, PR_CAP_RS, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6241 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6242 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6243 | if (*(args[1]) == 0) { |
| 6244 | 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] | 6245 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6246 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6247 | } |
| 6248 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6249 | if ((strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 6250 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args+2, &errmsg)) == NULL) { |
| 6251 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 6252 | file, linenum, args[0], errmsg); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6253 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6254 | goto out; |
| 6255 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 6256 | err_code |= warnif_cond_conflicts(cond, |
| 6257 | (curproxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 6258 | file, linenum); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6259 | } |
| 6260 | else if (*args[2]) { |
| 6261 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 6262 | file, linenum, args[0], args[2]); |
| 6263 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6264 | goto out; |
| 6265 | } |
| 6266 | |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6267 | wl = calloc(1, sizeof(*wl)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6268 | wl->cond = cond; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6269 | wl->s = strdup(args[1]); |
| 6270 | LIST_ADDQ(&curproxy->rsp_add, &wl->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6271 | } |
| 6272 | else if (!strcmp(args[0], "errorloc") || |
| 6273 | !strcmp(args[0], "errorloc302") || |
| 6274 | !strcmp(args[0], "errorloc303")) { /* error location */ |
| 6275 | int errnum, errlen; |
| 6276 | char *err; |
| 6277 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6278 | 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] | 6279 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6280 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6281 | if (*(args[2]) == 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 6282 | 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] | 6283 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6284 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6285 | } |
| 6286 | |
| 6287 | errnum = atol(args[1]); |
| 6288 | if (!strcmp(args[0], "errorloc303")) { |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 6289 | errlen = strlen(HTTP_303) + strlen(args[2]) + 5; |
| 6290 | err = malloc(errlen); |
| 6291 | 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] | 6292 | } else { |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 6293 | errlen = strlen(HTTP_302) + strlen(args[2]) + 5; |
| 6294 | err = malloc(errlen); |
| 6295 | 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] | 6296 | } |
| 6297 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6298 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) { |
| 6299 | if (http_err_codes[rc] == errnum) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 6300 | chunk_destroy(&curproxy->errmsg[rc]); |
| 6301 | chunk_initlen(&curproxy->errmsg[rc], err, errlen, errlen); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6302 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6303 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6304 | } |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6305 | |
| 6306 | if (rc >= HTTP_ERR_SIZE) { |
| 6307 | Warning("parsing [%s:%d] : status code %d not handled, error relocation will be ignored.\n", |
| 6308 | file, linenum, errnum); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6309 | free(err); |
| 6310 | } |
| 6311 | } |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6312 | else if (!strcmp(args[0], "errorfile")) { /* error message from a file */ |
| 6313 | int errnum, errlen, fd; |
| 6314 | char *err; |
| 6315 | struct stat stat; |
| 6316 | |
| 6317 | 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] | 6318 | err_code |= ERR_WARN; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6319 | |
| 6320 | if (*(args[2]) == 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 6321 | 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] | 6322 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6323 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6324 | } |
| 6325 | |
| 6326 | fd = open(args[2], O_RDONLY); |
| 6327 | if ((fd < 0) || (fstat(fd, &stat) < 0)) { |
| 6328 | Alert("parsing [%s:%d] : error opening file <%s> for custom error message <%s>.\n", |
| 6329 | file, linenum, args[2], args[1]); |
| 6330 | if (fd >= 0) |
| 6331 | close(fd); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6332 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6333 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6334 | } |
| 6335 | |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6336 | if (stat.st_size <= global.tune.bufsize) { |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6337 | errlen = stat.st_size; |
| 6338 | } else { |
| 6339 | 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] | 6340 | file, linenum, args[2], global.tune.bufsize); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6341 | err_code |= ERR_WARN; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6342 | errlen = global.tune.bufsize; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6343 | } |
| 6344 | |
| 6345 | err = malloc(errlen); /* malloc() must succeed during parsing */ |
| 6346 | errnum = read(fd, err, errlen); |
| 6347 | if (errnum != errlen) { |
| 6348 | Alert("parsing [%s:%d] : error reading file <%s> for custom error message <%s>.\n", |
| 6349 | file, linenum, args[2], args[1]); |
| 6350 | close(fd); |
| 6351 | free(err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6352 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6353 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6354 | } |
| 6355 | close(fd); |
| 6356 | |
| 6357 | errnum = atol(args[1]); |
| 6358 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) { |
| 6359 | if (http_err_codes[rc] == errnum) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 6360 | chunk_destroy(&curproxy->errmsg[rc]); |
| 6361 | chunk_initlen(&curproxy->errmsg[rc], err, errlen, errlen); |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6362 | break; |
| 6363 | } |
| 6364 | } |
| 6365 | |
| 6366 | if (rc >= HTTP_ERR_SIZE) { |
| 6367 | Warning("parsing [%s:%d] : status code %d not handled, error customization will be ignored.\n", |
| 6368 | file, linenum, errnum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6369 | err_code |= ERR_WARN; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6370 | free(err); |
| 6371 | } |
| 6372 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6373 | else if (!strcmp(args[0], "compression")) { |
| 6374 | struct comp *comp; |
| 6375 | if (curproxy->comp == NULL) { |
| 6376 | comp = calloc(1, sizeof(struct comp)); |
| 6377 | curproxy->comp = comp; |
| 6378 | } else { |
| 6379 | comp = curproxy->comp; |
| 6380 | } |
| 6381 | |
| 6382 | if (!strcmp(args[1], "algo")) { |
| 6383 | int cur_arg; |
William Lallemand | 8b52bb3 | 2012-11-16 18:06:41 +0100 | [diff] [blame] | 6384 | struct comp_ctx *ctx; |
William Lallemand | 552df67 | 2012-11-07 13:21:47 +0100 | [diff] [blame] | 6385 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6386 | cur_arg = 2; |
| 6387 | if (!*args[cur_arg]) { |
| 6388 | Alert("parsing [%s:%d] : '%s' expects <algorithm>\n", |
| 6389 | file, linenum, args[0]); |
| 6390 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6391 | goto out; |
| 6392 | } |
| 6393 | while (*(args[cur_arg])) { |
| 6394 | if (comp_append_algo(comp, args[cur_arg]) < 0) { |
| 6395 | Alert("parsing [%s:%d] : '%s' : '%s' is not a supported algorithm.\n", |
| 6396 | file, linenum, args[0], args[cur_arg]); |
| 6397 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6398 | goto out; |
| 6399 | } |
William Lallemand | 552df67 | 2012-11-07 13:21:47 +0100 | [diff] [blame] | 6400 | if (curproxy->comp->algos->init(&ctx, 9) == 0) { |
| 6401 | curproxy->comp->algos->end(&ctx); |
| 6402 | } else { |
| 6403 | Alert("parsing [%s:%d] : '%s' : Can't init '%s' algorithm.\n", |
| 6404 | file, linenum, args[0], args[cur_arg]); |
| 6405 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6406 | goto out; |
| 6407 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6408 | cur_arg ++; |
| 6409 | continue; |
| 6410 | } |
| 6411 | } |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 6412 | else if (!strcmp(args[1], "offload")) { |
| 6413 | comp->offload = 1; |
| 6414 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6415 | else if (!strcmp(args[1], "type")) { |
| 6416 | int cur_arg; |
| 6417 | cur_arg = 2; |
| 6418 | if (!*args[cur_arg]) { |
| 6419 | Alert("parsing [%s:%d] : '%s' expects <type>\n", |
| 6420 | file, linenum, args[0]); |
| 6421 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6422 | goto out; |
| 6423 | } |
| 6424 | while (*(args[cur_arg])) { |
| 6425 | comp_append_type(comp, args[cur_arg]); |
| 6426 | cur_arg ++; |
| 6427 | continue; |
| 6428 | } |
| 6429 | } |
| 6430 | else { |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 6431 | Alert("parsing [%s:%d] : '%s' expects 'algo', 'type' or 'offload'\n", |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6432 | file, linenum, args[0]); |
| 6433 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6434 | goto out; |
| 6435 | } |
| 6436 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6437 | else { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6438 | struct cfg_kw_list *kwl; |
| 6439 | int index; |
| 6440 | |
| 6441 | list_for_each_entry(kwl, &cfg_keywords.list, list) { |
| 6442 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 6443 | if (kwl->kw[index].section != CFG_LISTEN) |
| 6444 | continue; |
| 6445 | if (strcmp(kwl->kw[index].kw, args[0]) == 0) { |
| 6446 | /* prepare error message just in case */ |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 6447 | 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] | 6448 | if (rc < 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 6449 | Alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6450 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6451 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6452 | } |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6453 | else if (rc > 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 6454 | Warning("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6455 | err_code |= ERR_WARN; |
| 6456 | goto out; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6457 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6458 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6459 | } |
| 6460 | } |
| 6461 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6462 | |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 6463 | 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] | 6464 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6465 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6466 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6467 | out: |
Willy Tarreau | f4068b6 | 2012-05-08 17:37:49 +0200 | [diff] [blame] | 6468 | free(errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6469 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6470 | } |
| 6471 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6472 | int |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 6473 | cfg_parse_netns(const char *file, int linenum, char **args, int kwm) |
| 6474 | { |
| 6475 | #ifdef CONFIG_HAP_NS |
| 6476 | const char *err; |
| 6477 | const char *item = args[0]; |
| 6478 | |
| 6479 | if (!strcmp(item, "namespace_list")) { |
| 6480 | return 0; |
| 6481 | } |
| 6482 | else if (!strcmp(item, "namespace")) { |
| 6483 | size_t idx = 1; |
| 6484 | const char *current; |
| 6485 | while (*(current = args[idx++])) { |
| 6486 | err = invalid_char(current); |
| 6487 | if (err) { |
| 6488 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6489 | file, linenum, *err, item, current); |
| 6490 | return ERR_ALERT | ERR_FATAL; |
| 6491 | } |
| 6492 | |
| 6493 | if (netns_store_lookup(current, strlen(current))) { |
| 6494 | Alert("parsing [%s:%d]: Namespace '%s' is already added.\n", |
| 6495 | file, linenum, current); |
| 6496 | return ERR_ALERT | ERR_FATAL; |
| 6497 | } |
| 6498 | if (!netns_store_insert(current)) { |
| 6499 | Alert("parsing [%s:%d]: Cannot open namespace '%s'.\n", |
| 6500 | file, linenum, current); |
| 6501 | return ERR_ALERT | ERR_FATAL; |
| 6502 | } |
| 6503 | } |
| 6504 | } |
| 6505 | |
| 6506 | return 0; |
| 6507 | #else |
| 6508 | Alert("parsing [%s:%d]: namespace support is not compiled in.", |
| 6509 | file, linenum); |
| 6510 | return ERR_ALERT | ERR_FATAL; |
| 6511 | #endif |
| 6512 | } |
| 6513 | |
| 6514 | int |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6515 | cfg_parse_users(const char *file, int linenum, char **args, int kwm) |
| 6516 | { |
| 6517 | |
| 6518 | int err_code = 0; |
| 6519 | const char *err; |
| 6520 | |
| 6521 | if (!strcmp(args[0], "userlist")) { /* new userlist */ |
| 6522 | struct userlist *newul; |
| 6523 | |
| 6524 | if (!*args[1]) { |
| 6525 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6526 | file, linenum, args[0]); |
| 6527 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6528 | goto out; |
| 6529 | } |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 6530 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 6531 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6532 | |
| 6533 | err = invalid_char(args[1]); |
| 6534 | if (err) { |
| 6535 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6536 | file, linenum, *err, args[0], args[1]); |
| 6537 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6538 | goto out; |
| 6539 | } |
| 6540 | |
| 6541 | for (newul = userlist; newul; newul = newul->next) |
| 6542 | if (!strcmp(newul->name, args[1])) { |
| 6543 | Warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n", |
| 6544 | file, linenum, args[1]); |
| 6545 | err_code |= ERR_WARN; |
| 6546 | goto out; |
| 6547 | } |
| 6548 | |
| 6549 | newul = (struct userlist *)calloc(1, sizeof(struct userlist)); |
| 6550 | if (!newul) { |
| 6551 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6552 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6553 | goto out; |
| 6554 | } |
| 6555 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6556 | newul->name = strdup(args[1]); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6557 | if (!newul->name) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6558 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6559 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6560 | goto out; |
| 6561 | } |
| 6562 | |
| 6563 | newul->next = userlist; |
| 6564 | userlist = newul; |
| 6565 | |
| 6566 | } else if (!strcmp(args[0], "group")) { /* new group */ |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6567 | int cur_arg; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6568 | const char *err; |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6569 | struct auth_groups *ag; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6570 | |
| 6571 | if (!*args[1]) { |
| 6572 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6573 | file, linenum, args[0]); |
| 6574 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6575 | goto out; |
| 6576 | } |
| 6577 | |
| 6578 | err = invalid_char(args[1]); |
| 6579 | if (err) { |
| 6580 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6581 | file, linenum, *err, args[0], args[1]); |
| 6582 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6583 | goto out; |
| 6584 | } |
| 6585 | |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 6586 | if (!userlist) |
| 6587 | goto out; |
| 6588 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6589 | for (ag = userlist->groups; ag; ag = ag->next) |
| 6590 | if (!strcmp(ag->name, args[1])) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6591 | Warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n", |
| 6592 | file, linenum, args[1], userlist->name); |
| 6593 | err_code |= ERR_ALERT; |
| 6594 | goto out; |
| 6595 | } |
| 6596 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6597 | ag = calloc(1, sizeof(*ag)); |
| 6598 | if (!ag) { |
| 6599 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6600 | err_code |= ERR_ALERT | ERR_ABORT; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6601 | goto out; |
| 6602 | } |
| 6603 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6604 | ag->name = strdup(args[1]); |
| 6605 | if (!ag) { |
| 6606 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6607 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6608 | goto out; |
| 6609 | } |
| 6610 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6611 | cur_arg = 2; |
| 6612 | |
| 6613 | while (*args[cur_arg]) { |
| 6614 | if (!strcmp(args[cur_arg], "users")) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6615 | ag->groupusers = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6616 | cur_arg += 2; |
| 6617 | continue; |
| 6618 | } else { |
| 6619 | Alert("parsing [%s:%d]: '%s' only supports 'users' option.\n", |
| 6620 | file, linenum, args[0]); |
| 6621 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6622 | goto out; |
| 6623 | } |
| 6624 | } |
| 6625 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6626 | ag->next = userlist->groups; |
| 6627 | userlist->groups = ag; |
| 6628 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6629 | } else if (!strcmp(args[0], "user")) { /* new user */ |
| 6630 | struct auth_users *newuser; |
| 6631 | int cur_arg; |
| 6632 | |
| 6633 | if (!*args[1]) { |
| 6634 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6635 | file, linenum, args[0]); |
| 6636 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6637 | goto out; |
| 6638 | } |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 6639 | if (!userlist) |
| 6640 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6641 | |
| 6642 | for (newuser = userlist->users; newuser; newuser = newuser->next) |
| 6643 | if (!strcmp(newuser->user, args[1])) { |
| 6644 | Warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n", |
| 6645 | file, linenum, args[1], userlist->name); |
| 6646 | err_code |= ERR_ALERT; |
| 6647 | goto out; |
| 6648 | } |
| 6649 | |
| 6650 | newuser = (struct auth_users *)calloc(1, sizeof(struct auth_users)); |
| 6651 | if (!newuser) { |
| 6652 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6653 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6654 | goto out; |
| 6655 | } |
| 6656 | |
| 6657 | newuser->user = strdup(args[1]); |
| 6658 | |
| 6659 | newuser->next = userlist->users; |
| 6660 | userlist->users = newuser; |
| 6661 | |
| 6662 | cur_arg = 2; |
| 6663 | |
| 6664 | while (*args[cur_arg]) { |
| 6665 | if (!strcmp(args[cur_arg], "password")) { |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 6666 | #ifdef CONFIG_HAP_CRYPT |
| 6667 | if (!crypt("", args[cur_arg + 1])) { |
| 6668 | Alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n", |
| 6669 | file, linenum, newuser->user); |
| 6670 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6671 | goto out; |
| 6672 | } |
| 6673 | #else |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6674 | Warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n", |
| 6675 | file, linenum); |
| 6676 | err_code |= ERR_ALERT; |
| 6677 | #endif |
| 6678 | newuser->pass = strdup(args[cur_arg + 1]); |
| 6679 | cur_arg += 2; |
| 6680 | continue; |
| 6681 | } else if (!strcmp(args[cur_arg], "insecure-password")) { |
| 6682 | newuser->pass = strdup(args[cur_arg + 1]); |
| 6683 | newuser->flags |= AU_O_INSECURE; |
| 6684 | cur_arg += 2; |
| 6685 | continue; |
| 6686 | } else if (!strcmp(args[cur_arg], "groups")) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6687 | newuser->u.groups_names = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6688 | cur_arg += 2; |
| 6689 | continue; |
| 6690 | } else { |
| 6691 | Alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n", |
| 6692 | file, linenum, args[0]); |
| 6693 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6694 | goto out; |
| 6695 | } |
| 6696 | } |
| 6697 | } else { |
| 6698 | Alert("parsing [%s:%d]: unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "users"); |
| 6699 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6700 | } |
| 6701 | |
| 6702 | out: |
| 6703 | return err_code; |
| 6704 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6705 | |
| 6706 | /* |
| 6707 | * This function reads and parses the configuration file given in the argument. |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 6708 | * Returns the error code, 0 if OK, or any combination of : |
| 6709 | * - ERR_ABORT: must abort ASAP |
| 6710 | * - ERR_FATAL: we can continue parsing but not start the service |
| 6711 | * - ERR_WARN: a warning has been emitted |
| 6712 | * - ERR_ALERT: an alert has been emitted |
| 6713 | * Only the two first ones can stop processing, the two others are just |
| 6714 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6715 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 6716 | int readcfgfile(const char *file) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6717 | { |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6718 | char *thisline; |
| 6719 | int linesize = LINESIZE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6720 | FILE *f; |
| 6721 | int linenum = 0; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 6722 | int err_code = 0; |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 6723 | struct cfg_section *cs = NULL; |
| 6724 | struct cfg_section *ics; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6725 | int readbytes = 0; |
| 6726 | |
| 6727 | if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) { |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 6728 | Alert("parsing [%s] : out of memory.\n", file); |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6729 | return -1; |
| 6730 | } |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 6731 | |
| 6732 | /* Register internal sections */ |
| 6733 | if (!cfg_register_section("listen", cfg_parse_listen) || |
| 6734 | !cfg_register_section("frontend", cfg_parse_listen) || |
| 6735 | !cfg_register_section("backend", cfg_parse_listen) || |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 6736 | !cfg_register_section("defaults", cfg_parse_listen) || |
| 6737 | !cfg_register_section("global", cfg_parse_global) || |
| 6738 | !cfg_register_section("userlist", cfg_parse_users) || |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 6739 | !cfg_register_section("peers", cfg_parse_peers) || |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 6740 | !cfg_register_section("mailers", cfg_parse_mailers) || |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 6741 | !cfg_register_section("namespace_list", cfg_parse_netns) || |
| 6742 | !cfg_register_section("resolvers", cfg_parse_resolvers)) |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 6743 | return -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6744 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6745 | if ((f=fopen(file,"r")) == NULL) |
| 6746 | return -1; |
| 6747 | |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 6748 | next_line: |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6749 | while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) { |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 6750 | int arg, kwm = KWM_STD; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 6751 | char *end; |
| 6752 | char *args[MAX_LINE_ARGS + 1]; |
| 6753 | char *line = thisline; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6754 | int dquote = 0; /* double quote */ |
| 6755 | int squote = 0; /* simple quote */ |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 6756 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6757 | linenum++; |
| 6758 | |
| 6759 | end = line + strlen(line); |
| 6760 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6761 | if (end-line == linesize-1 && *(end-1) != '\n') { |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 6762 | /* Check if we reached the limit and the last char is not \n. |
| 6763 | * Watch out for the last line without the terminating '\n'! |
| 6764 | */ |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6765 | char *newline; |
| 6766 | int newlinesize = linesize * 2; |
| 6767 | |
| 6768 | newline = realloc(thisline, sizeof(*thisline) * newlinesize); |
| 6769 | if (newline == NULL) { |
| 6770 | Alert("parsing [%s:%d]: line too long, cannot allocate memory.\n", |
| 6771 | file, linenum); |
| 6772 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6773 | continue; |
| 6774 | } |
| 6775 | |
| 6776 | readbytes = linesize - 1; |
| 6777 | linesize = newlinesize; |
| 6778 | thisline = newline; |
| 6779 | continue; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 6780 | } |
| 6781 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6782 | readbytes = 0; |
| 6783 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6784 | /* skip leading spaces */ |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 6785 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6786 | line++; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6787 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6788 | arg = 0; |
| 6789 | args[arg] = line; |
| 6790 | |
| 6791 | while (*line && arg < MAX_LINE_ARGS) { |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6792 | if (*line == '"' && !squote) { /* double quote outside single quotes */ |
| 6793 | if (dquote) |
| 6794 | dquote = 0; |
| 6795 | else |
| 6796 | dquote = 1; |
William Lallemand | 3f41560 | 2015-05-12 14:01:09 +0200 | [diff] [blame] | 6797 | memmove(line, line + 1, end - line); |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6798 | end--; |
| 6799 | } |
| 6800 | else if (*line == '\'' && !dquote) { /* single quote outside double quotes */ |
| 6801 | if (squote) |
| 6802 | squote = 0; |
| 6803 | else |
| 6804 | squote = 1; |
William Lallemand | 3f41560 | 2015-05-12 14:01:09 +0200 | [diff] [blame] | 6805 | memmove(line, line + 1, end - line); |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6806 | end--; |
| 6807 | } |
| 6808 | else if (*line == '\\' && !squote) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6809 | /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their |
| 6810 | * C equivalent value. Other combinations left unchanged (eg: \1). |
| 6811 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6812 | int skip = 0; |
| 6813 | if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') { |
| 6814 | *line = line[1]; |
| 6815 | skip = 1; |
| 6816 | } |
| 6817 | else if (line[1] == 'r') { |
| 6818 | *line = '\r'; |
| 6819 | skip = 1; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6820 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6821 | else if (line[1] == 'n') { |
| 6822 | *line = '\n'; |
| 6823 | skip = 1; |
| 6824 | } |
| 6825 | else if (line[1] == 't') { |
| 6826 | *line = '\t'; |
| 6827 | skip = 1; |
| 6828 | } |
| 6829 | else if (line[1] == 'x') { |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 6830 | if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6831 | unsigned char hex1, hex2; |
| 6832 | hex1 = toupper(line[2]) - '0'; |
| 6833 | hex2 = toupper(line[3]) - '0'; |
| 6834 | if (hex1 > 9) hex1 -= 'A' - '9' - 1; |
| 6835 | if (hex2 > 9) hex2 -= 'A' - '9' - 1; |
| 6836 | *line = (hex1<<4) + hex2; |
| 6837 | skip = 3; |
| 6838 | } |
| 6839 | else { |
| 6840 | 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] | 6841 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6842 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6843 | } else if (line[1] == '"') { |
| 6844 | *line = '"'; |
| 6845 | skip = 1; |
| 6846 | } else if (line[1] == '\'') { |
| 6847 | *line = '\''; |
| 6848 | skip = 1; |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 6849 | } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */ |
| 6850 | *line = '$'; |
| 6851 | skip = 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6852 | } |
| 6853 | if (skip) { |
Cyril Bonté | dd1b01d | 2009-12-06 13:43:42 +0100 | [diff] [blame] | 6854 | memmove(line + 1, line + 1 + skip, end - (line + skip)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6855 | end -= skip; |
| 6856 | } |
| 6857 | line++; |
| 6858 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6859 | else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6860 | /* end of string, end of loop */ |
| 6861 | *line = 0; |
| 6862 | break; |
| 6863 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6864 | else if (!squote && !dquote && isspace((unsigned char)*line)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6865 | /* a non-escaped space is an argument separator */ |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 6866 | *line++ = '\0'; |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 6867 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6868 | line++; |
| 6869 | args[++arg] = line; |
| 6870 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 6871 | else if (dquote && *line == '$') { |
| 6872 | /* environment variables are evaluated inside double quotes */ |
| 6873 | char *var_beg; |
| 6874 | char *var_end; |
| 6875 | char save_char; |
| 6876 | char *value; |
| 6877 | int val_len; |
| 6878 | int newlinesize; |
| 6879 | int braces = 0; |
| 6880 | |
| 6881 | var_beg = line + 1; |
| 6882 | var_end = var_beg; |
| 6883 | |
| 6884 | if (*var_beg == '{') { |
| 6885 | var_beg++; |
| 6886 | var_end++; |
| 6887 | braces = 1; |
| 6888 | } |
| 6889 | |
| 6890 | if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') { |
| 6891 | Alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg); |
| 6892 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6893 | goto next_line; /* skip current line */ |
| 6894 | } |
| 6895 | |
| 6896 | while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') |
| 6897 | var_end++; |
| 6898 | |
| 6899 | save_char = *var_end; |
| 6900 | *var_end = '\0'; |
| 6901 | value = getenv(var_beg); |
| 6902 | *var_end = save_char; |
| 6903 | val_len = value ? strlen(value) : 0; |
| 6904 | |
| 6905 | if (braces) { |
| 6906 | if (*var_end == '}') { |
| 6907 | var_end++; |
| 6908 | braces = 0; |
| 6909 | } else { |
| 6910 | Alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum); |
| 6911 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6912 | goto next_line; /* skip current line */ |
| 6913 | } |
| 6914 | } |
| 6915 | |
| 6916 | newlinesize = (end - thisline) - (var_end - line) + val_len + 1; |
| 6917 | |
| 6918 | /* if not enough space in thisline */ |
| 6919 | if (newlinesize > linesize) { |
| 6920 | char *newline; |
| 6921 | |
| 6922 | newline = realloc(thisline, newlinesize * sizeof(*thisline)); |
| 6923 | if (newline == NULL) { |
| 6924 | Alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum); |
| 6925 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6926 | goto next_line; /* slip current line */ |
| 6927 | } |
| 6928 | /* recompute pointers if realloc returns a new pointer */ |
| 6929 | if (newline != thisline) { |
| 6930 | int i; |
| 6931 | int diff; |
| 6932 | |
| 6933 | for (i = 0; i <= arg; i++) { |
| 6934 | diff = args[i] - thisline; |
| 6935 | args[i] = newline + diff; |
| 6936 | } |
| 6937 | |
| 6938 | diff = var_end - thisline; |
| 6939 | var_end = newline + diff; |
| 6940 | diff = end - thisline; |
| 6941 | end = newline + diff; |
| 6942 | diff = line - thisline; |
| 6943 | line = newline + diff; |
| 6944 | thisline = newline; |
| 6945 | } |
| 6946 | linesize = newlinesize; |
| 6947 | } |
| 6948 | |
| 6949 | /* insert value inside the line */ |
| 6950 | memmove(line + val_len, var_end, end - var_end + 1); |
| 6951 | memcpy(line, value, val_len); |
| 6952 | end += val_len - (var_end - line); |
| 6953 | line += val_len; |
| 6954 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6955 | else { |
| 6956 | line++; |
| 6957 | } |
| 6958 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 6959 | |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 6960 | if (dquote) { |
| 6961 | Alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum); |
| 6962 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6963 | } |
| 6964 | |
| 6965 | if (squote) { |
| 6966 | Alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum); |
| 6967 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6968 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6969 | |
| 6970 | /* empty line */ |
| 6971 | if (!**args) |
| 6972 | continue; |
| 6973 | |
Willy Tarreau | 7bb651e | 2009-11-09 21:16:53 +0100 | [diff] [blame] | 6974 | if (*line) { |
| 6975 | /* we had to stop due to too many args. |
| 6976 | * Let's terminate the string, print the offending part then cut the |
| 6977 | * last arg. |
| 6978 | */ |
| 6979 | while (*line && *line != '#' && *line != '\n' && *line != '\r') |
| 6980 | line++; |
| 6981 | *line = '\0'; |
| 6982 | |
Krzysztof Piotr Oledzki | 500b8f0 | 2009-12-15 22:34:51 +0100 | [diff] [blame] | 6983 | 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] | 6984 | file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]); |
Willy Tarreau | 7bb651e | 2009-11-09 21:16:53 +0100 | [diff] [blame] | 6985 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6986 | args[arg] = line; |
| 6987 | } |
| 6988 | |
Willy Tarreau | 540abe4 | 2007-05-02 20:50:16 +0200 | [diff] [blame] | 6989 | /* zero out remaining args and ensure that at least one entry |
| 6990 | * is zeroed out. |
| 6991 | */ |
| 6992 | while (++arg <= MAX_LINE_ARGS) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6993 | args[arg] = line; |
| 6994 | } |
| 6995 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 6996 | /* check for keyword modifiers "no" and "default" */ |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 6997 | if (!strcmp(args[0], "no")) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6998 | char *tmp; |
| 6999 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7000 | kwm = KWM_NO; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7001 | tmp = args[0]; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7002 | for (arg=0; *args[arg+1]; arg++) |
| 7003 | args[arg] = args[arg+1]; // shift args after inversion |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7004 | *tmp = '\0'; // fix the next arg to \0 |
| 7005 | args[arg] = tmp; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7006 | } |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7007 | else if (!strcmp(args[0], "default")) { |
| 7008 | kwm = KWM_DEF; |
| 7009 | for (arg=0; *args[arg+1]; arg++) |
| 7010 | args[arg] = args[arg+1]; // shift args after inversion |
| 7011 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7012 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7013 | if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \ |
| 7014 | strcmp(args[0], "log") != 0) { |
| 7015 | 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] | 7016 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7017 | } |
| 7018 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7019 | /* detect section start */ |
| 7020 | list_for_each_entry(ics, §ions, list) { |
| 7021 | if (strcmp(args[0], ics->section_name) == 0) { |
| 7022 | cursection = ics->section_name; |
| 7023 | cs = ics; |
| 7024 | break; |
| 7025 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7026 | } |
| 7027 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7028 | /* else it's a section keyword */ |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7029 | if (cs) |
| 7030 | err_code |= cs->section_parser(file, linenum, args, kwm); |
| 7031 | else { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 7032 | 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] | 7033 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7034 | } |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7035 | |
| 7036 | if (err_code & ERR_ABORT) |
| 7037 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7038 | } |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 7039 | cursection = NULL; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7040 | free(thisline); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7041 | fclose(f); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7042 | return err_code; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7043 | } |
| 7044 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7045 | /* This function propagates processes from frontend <from> to backend <to> so |
| 7046 | * that it is always guaranteed that a backend pointed to by a frontend is |
| 7047 | * bound to all of its processes. After that, if the target is a "listen" |
| 7048 | * instance, the function recursively descends the target's own targets along |
Willy Tarreau | 98d0485 | 2015-05-26 12:18:29 +0200 | [diff] [blame] | 7049 | * default_backend and use_backend rules. Since the bits are |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7050 | * checked first to ensure that <to> is already bound to all processes of |
| 7051 | * <from>, there is no risk of looping and we ensure to follow the shortest |
| 7052 | * path to the destination. |
| 7053 | * |
| 7054 | * It is possible to set <to> to NULL for the first call so that the function |
| 7055 | * takes care of visiting the initial frontend in <from>. |
| 7056 | * |
| 7057 | * It is important to note that the function relies on the fact that all names |
| 7058 | * have already been resolved. |
| 7059 | */ |
| 7060 | void propagate_processes(struct proxy *from, struct proxy *to) |
| 7061 | { |
| 7062 | struct switching_rule *rule; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7063 | |
| 7064 | if (to) { |
| 7065 | /* check whether we need to go down */ |
| 7066 | if (from->bind_proc && |
| 7067 | (from->bind_proc & to->bind_proc) == from->bind_proc) |
| 7068 | return; |
| 7069 | |
| 7070 | if (!from->bind_proc && !to->bind_proc) |
| 7071 | return; |
| 7072 | |
| 7073 | to->bind_proc = from->bind_proc ? |
| 7074 | (to->bind_proc | from->bind_proc) : 0; |
| 7075 | |
| 7076 | /* now propagate down */ |
| 7077 | from = to; |
| 7078 | } |
| 7079 | |
Willy Tarreau | 8a95d8c | 2014-12-18 13:56:26 +0100 | [diff] [blame] | 7080 | if (!(from->cap & PR_CAP_FE)) |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7081 | return; |
| 7082 | |
Willy Tarreau | f6b7001 | 2014-12-18 14:00:43 +0100 | [diff] [blame] | 7083 | if (from->state == PR_STSTOPPED) |
| 7084 | return; |
| 7085 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7086 | /* default_backend */ |
| 7087 | if (from->defbe.be) |
| 7088 | propagate_processes(from, from->defbe.be); |
| 7089 | |
| 7090 | /* use_backend */ |
| 7091 | list_for_each_entry(rule, &from->switching_rules, list) { |
Cyril Bonté | 5163969 | 2014-10-02 19:56:25 +0200 | [diff] [blame] | 7092 | if (rule->dynamic) |
| 7093 | continue; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7094 | to = rule->be.backend; |
| 7095 | propagate_processes(from, to); |
| 7096 | } |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7097 | } |
| 7098 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7099 | /* |
| 7100 | * Returns the error code, 0 if OK, or any combination of : |
| 7101 | * - ERR_ABORT: must abort ASAP |
| 7102 | * - ERR_FATAL: we can continue parsing but not start the service |
| 7103 | * - ERR_WARN: a warning has been emitted |
| 7104 | * - ERR_ALERT: an alert has been emitted |
| 7105 | * Only the two first ones can stop processing, the two others are just |
| 7106 | * indicators. |
| 7107 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7108 | int check_config_validity() |
| 7109 | { |
| 7110 | int cfgerr = 0; |
| 7111 | struct proxy *curproxy = NULL; |
| 7112 | struct server *newsrv = NULL; |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7113 | int err_code = 0; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7114 | unsigned int next_pxid = 1; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 7115 | struct bind_conf *bind_conf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7116 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 7117 | bind_conf = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7118 | /* |
| 7119 | * Now, check for the integrity of all that we have collected. |
| 7120 | */ |
| 7121 | |
| 7122 | /* will be needed further to delay some tasks */ |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 7123 | tv_update_date(0,1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7124 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 7125 | if (!global.tune.max_http_hdr) |
| 7126 | global.tune.max_http_hdr = MAX_HTTP_HDR; |
| 7127 | |
| 7128 | if (!global.tune.cookie_len) |
| 7129 | global.tune.cookie_len = CAPTURE_LEN; |
| 7130 | |
| 7131 | pool2_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED); |
| 7132 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 7133 | /* Post initialisation of the users and groups lists. */ |
| 7134 | err_code = userlist_postinit(); |
| 7135 | if (err_code != ERR_NONE) |
| 7136 | goto out; |
| 7137 | |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 7138 | /* first, we will invert the proxy list order */ |
| 7139 | curproxy = NULL; |
| 7140 | while (proxy) { |
| 7141 | struct proxy *next; |
| 7142 | |
| 7143 | next = proxy->next; |
| 7144 | proxy->next = curproxy; |
| 7145 | curproxy = proxy; |
| 7146 | if (!next) |
| 7147 | break; |
| 7148 | proxy = next; |
| 7149 | } |
| 7150 | |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 7151 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7152 | struct switching_rule *rule; |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7153 | struct server_rule *srule; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7154 | struct sticking_rule *mrule; |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7155 | struct tcp_rule *trule; |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 7156 | struct http_req_rule *hrqrule; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7157 | unsigned int next_id; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 7158 | int nbproc; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7159 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 7160 | if (curproxy->uuid < 0) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7161 | /* proxy ID not set, use automatic numbering with first |
| 7162 | * spare entry starting with next_pxid. |
| 7163 | */ |
| 7164 | next_pxid = get_next_id(&used_proxy_id, next_pxid); |
| 7165 | curproxy->conf.id.key = curproxy->uuid = next_pxid; |
| 7166 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7167 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 7168 | next_pxid++; |
| 7169 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7170 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7171 | if (curproxy->state == PR_STSTOPPED) { |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 7172 | /* ensure we don't keep listeners uselessly bound */ |
| 7173 | stop_proxy(curproxy); |
Willy Tarreau | 02df774 | 2015-05-01 19:59:56 +0200 | [diff] [blame] | 7174 | free((void *)curproxy->table.peers.name); |
| 7175 | curproxy->table.peers.p = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7176 | continue; |
| 7177 | } |
| 7178 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 7179 | /* Check multi-process mode compatibility for the current proxy */ |
| 7180 | |
| 7181 | if (curproxy->bind_proc) { |
| 7182 | /* an explicit bind-process was specified, let's check how many |
| 7183 | * processes remain. |
| 7184 | */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 7185 | nbproc = my_popcountl(curproxy->bind_proc); |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 7186 | |
| 7187 | curproxy->bind_proc &= nbits(global.nbproc); |
| 7188 | if (!curproxy->bind_proc && nbproc == 1) { |
| 7189 | 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); |
| 7190 | curproxy->bind_proc = 1; |
| 7191 | } |
| 7192 | else if (!curproxy->bind_proc && nbproc > 1) { |
| 7193 | 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); |
| 7194 | curproxy->bind_proc = 0; |
| 7195 | } |
| 7196 | } |
| 7197 | |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 7198 | /* check and reduce the bind-proc of each listener */ |
| 7199 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 7200 | unsigned long mask; |
| 7201 | |
| 7202 | if (!bind_conf->bind_proc) |
| 7203 | continue; |
| 7204 | |
| 7205 | mask = nbits(global.nbproc); |
| 7206 | if (curproxy->bind_proc) |
| 7207 | mask &= curproxy->bind_proc; |
| 7208 | /* mask cannot be null here thanks to the previous checks */ |
| 7209 | |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 7210 | nbproc = my_popcountl(bind_conf->bind_proc); |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 7211 | bind_conf->bind_proc &= mask; |
| 7212 | |
| 7213 | if (!bind_conf->bind_proc && nbproc == 1) { |
| 7214 | 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", |
| 7215 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 7216 | bind_conf->bind_proc = mask & ~(mask - 1); |
| 7217 | } |
| 7218 | else if (!bind_conf->bind_proc && nbproc > 1) { |
| 7219 | 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", |
| 7220 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 7221 | bind_conf->bind_proc = 0; |
| 7222 | } |
| 7223 | } |
| 7224 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7225 | switch (curproxy->mode) { |
| 7226 | case PR_MODE_HEALTH: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7227 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7228 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7229 | Alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n", |
| 7230 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7231 | cfgerr++; |
| 7232 | } |
| 7233 | |
| 7234 | if (curproxy->srv != NULL) |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7235 | Warning("config : servers will be ignored for %s '%s'.\n", |
| 7236 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7237 | break; |
| 7238 | |
| 7239 | case PR_MODE_TCP: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7240 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7241 | break; |
| 7242 | |
| 7243 | case PR_MODE_HTTP: |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 7244 | curproxy->http_needed = 1; |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7245 | break; |
| 7246 | } |
| 7247 | |
Willy Tarreau | f3934b8 | 2015-08-11 11:36:45 +0200 | [diff] [blame] | 7248 | if ((curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) { |
| 7249 | Warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n", |
| 7250 | proxy_type_str(curproxy), curproxy->id); |
| 7251 | err_code |= ERR_WARN; |
| 7252 | } |
| 7253 | |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7254 | if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) { |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 7255 | if (curproxy->lbprm.algo & BE_LB_KIND) { |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7256 | if (curproxy->options & PR_O_TRANSP) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7257 | Alert("config : %s '%s' cannot use both transparent and balance mode.\n", |
| 7258 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7259 | cfgerr++; |
| 7260 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7261 | #ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7262 | else if (curproxy->srv == NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7263 | Alert("config : %s '%s' needs at least 1 server in balance mode.\n", |
| 7264 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7265 | cfgerr++; |
| 7266 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7267 | #endif |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7268 | else if (curproxy->options & PR_O_DISPATCH) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7269 | Warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n", |
| 7270 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7271 | err_code |= ERR_WARN; |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7272 | } |
| 7273 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7274 | 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] | 7275 | /* If no LB algo is set in a backend, and we're not in |
| 7276 | * transparent mode, dispatch mode nor proxy mode, we |
| 7277 | * want to use balance roundrobin by default. |
| 7278 | */ |
| 7279 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 7280 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7281 | } |
| 7282 | } |
Willy Tarreau | 193cf93 | 2007-09-17 10:17:23 +0200 | [diff] [blame] | 7283 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7284 | if (curproxy->options & PR_O_DISPATCH) |
| 7285 | curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY); |
| 7286 | else if (curproxy->options & PR_O_HTTP_PROXY) |
| 7287 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP); |
| 7288 | else if (curproxy->options & PR_O_TRANSP) |
| 7289 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY); |
Willy Tarreau | 8293658 | 2007-11-30 15:20:09 +0100 | [diff] [blame] | 7290 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7291 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) { |
| 7292 | if (curproxy->options & PR_O_DISABLE404) { |
| 7293 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 7294 | "disable-on-404", proxy_type_str(curproxy), curproxy->id); |
| 7295 | err_code |= ERR_WARN; |
| 7296 | curproxy->options &= ~PR_O_DISABLE404; |
| 7297 | } |
| 7298 | if (curproxy->options2 & PR_O2_CHK_SNDST) { |
| 7299 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 7300 | "send-state", proxy_type_str(curproxy), curproxy->id); |
| 7301 | err_code |= ERR_WARN; |
| 7302 | curproxy->options &= ~PR_O2_CHK_SNDST; |
| 7303 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 7304 | } |
| 7305 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7306 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 7307 | if (!global.external_check) { |
| 7308 | Alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n", |
| 7309 | curproxy->id, "option external-check"); |
| 7310 | cfgerr++; |
| 7311 | } |
| 7312 | if (!curproxy->check_command) { |
| 7313 | Alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n", |
| 7314 | curproxy->id, "option external-check"); |
| 7315 | cfgerr++; |
| 7316 | } |
| 7317 | } |
| 7318 | |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 7319 | if (curproxy->email_alert.set) { |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 7320 | if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) { |
| 7321 | Warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of " |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 7322 | "'email-alert from', 'email-alert level' 'email-alert mailer', " |
| 7323 | "'email-alert hostname', or 'email-alert to' " |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 7324 | "requrires each of 'email-alert from', 'email-alert mailer' and 'email-alert' " |
| 7325 | "to be present).\n", |
| 7326 | proxy_type_str(curproxy), curproxy->id); |
| 7327 | err_code |= ERR_WARN; |
| 7328 | free_email_alert(curproxy); |
| 7329 | } |
| 7330 | if (!curproxy->email_alert.myhostname) |
| 7331 | curproxy->email_alert.myhostname = hostname; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 7332 | } |
| 7333 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7334 | if (curproxy->check_command) { |
| 7335 | int clear = 0; |
| 7336 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
| 7337 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 7338 | "external-check command", proxy_type_str(curproxy), curproxy->id); |
| 7339 | err_code |= ERR_WARN; |
| 7340 | clear = 1; |
| 7341 | } |
| 7342 | if (curproxy->check_command[0] != '/' && !curproxy->check_path) { |
| 7343 | Alert("Proxy '%s': '%s' does not have a leading '/' and 'external-command path' is not set.\n", |
| 7344 | curproxy->id, "external-check command"); |
| 7345 | cfgerr++; |
| 7346 | } |
| 7347 | if (clear) { |
| 7348 | free(curproxy->check_command); |
| 7349 | curproxy->check_command = NULL; |
| 7350 | } |
| 7351 | } |
| 7352 | |
| 7353 | if (curproxy->check_path) { |
| 7354 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
| 7355 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 7356 | "external-check path", proxy_type_str(curproxy), curproxy->id); |
| 7357 | err_code |= ERR_WARN; |
| 7358 | free(curproxy->check_path); |
| 7359 | curproxy->check_path = NULL; |
| 7360 | } |
| 7361 | } |
| 7362 | |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7363 | /* if a default backend was specified, let's find it */ |
| 7364 | if (curproxy->defbe.name) { |
| 7365 | struct proxy *target; |
| 7366 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7367 | target = proxy_be_by_name(curproxy->defbe.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7368 | if (!target) { |
| 7369 | Alert("Proxy '%s': unable to find required default_backend: '%s'.\n", |
| 7370 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7371 | cfgerr++; |
| 7372 | } else if (target == curproxy) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7373 | Alert("Proxy '%s': loop detected for default_backend: '%s'.\n", |
| 7374 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7375 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7376 | } else if (target->mode != curproxy->mode && |
| 7377 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 7378 | |
| 7379 | Alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n", |
| 7380 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 7381 | curproxy->conf.file, curproxy->conf.line, |
| 7382 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 7383 | target->conf.file, target->conf.line); |
| 7384 | cfgerr++; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7385 | } else { |
| 7386 | free(curproxy->defbe.name); |
| 7387 | curproxy->defbe.be = target; |
Willy Tarreau | ff67813 | 2012-02-13 14:32:34 +0100 | [diff] [blame] | 7388 | |
| 7389 | /* Emit a warning if this proxy also has some servers */ |
| 7390 | if (curproxy->srv) { |
| 7391 | Warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n", |
| 7392 | curproxy->id); |
| 7393 | err_code |= ERR_WARN; |
| 7394 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7395 | } |
| 7396 | } |
| 7397 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7398 | /* find the target proxy for 'use_backend' rules */ |
| 7399 | list_for_each_entry(rule, &curproxy->switching_rules, list) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7400 | struct proxy *target; |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 7401 | struct logformat_node *node; |
| 7402 | char *pxname; |
| 7403 | |
| 7404 | /* Try to parse the string as a log format expression. If the result |
| 7405 | * of the parsing is only one entry containing a simple string, then |
| 7406 | * it's a standard string corresponding to a static rule, thus the |
| 7407 | * parsing is cancelled and be.name is restored to be resolved. |
| 7408 | */ |
| 7409 | pxname = rule->be.name; |
| 7410 | LIST_INIT(&rule->be.expr); |
| 7411 | parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, |
| 7412 | curproxy->conf.args.file, curproxy->conf.args.line); |
| 7413 | node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list); |
| 7414 | |
| 7415 | if (!LIST_ISEMPTY(&rule->be.expr)) { |
| 7416 | if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) { |
| 7417 | rule->dynamic = 1; |
| 7418 | free(pxname); |
| 7419 | continue; |
| 7420 | } |
| 7421 | /* simple string: free the expression and fall back to static rule */ |
| 7422 | free(node->arg); |
| 7423 | free(node); |
| 7424 | } |
| 7425 | |
| 7426 | rule->dynamic = 0; |
| 7427 | rule->be.name = pxname; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7428 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7429 | target = proxy_be_by_name(rule->be.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7430 | if (!target) { |
| 7431 | Alert("Proxy '%s': unable to find required use_backend: '%s'.\n", |
| 7432 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7433 | cfgerr++; |
| 7434 | } else if (target == curproxy) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7435 | Alert("Proxy '%s': loop detected for use_backend: '%s'.\n", |
| 7436 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7437 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7438 | } else if (target->mode != curproxy->mode && |
| 7439 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 7440 | |
| 7441 | Alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n", |
| 7442 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 7443 | curproxy->conf.file, curproxy->conf.line, |
| 7444 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 7445 | target->conf.file, target->conf.line); |
| 7446 | cfgerr++; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7447 | } else { |
| 7448 | free((void *)rule->be.name); |
| 7449 | rule->be.backend = target; |
| 7450 | } |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7451 | } |
| 7452 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7453 | /* find the target server for 'use_server' rules */ |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7454 | list_for_each_entry(srule, &curproxy->server_rules, list) { |
| 7455 | struct server *target = findserver(curproxy, srule->srv.name); |
| 7456 | |
| 7457 | if (!target) { |
| 7458 | Alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n", |
| 7459 | proxy_type_str(curproxy), curproxy->id, srule->srv.name); |
| 7460 | cfgerr++; |
| 7461 | continue; |
| 7462 | } |
| 7463 | free((void *)srule->srv.name); |
| 7464 | srule->srv.ptr = target; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7465 | } |
| 7466 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7467 | /* find the target table for 'stick' rules */ |
| 7468 | list_for_each_entry(mrule, &curproxy->sticking_rules, list) { |
| 7469 | struct proxy *target; |
| 7470 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 7471 | curproxy->be_req_ana |= AN_REQ_STICKING_RULES; |
| 7472 | if (mrule->flags & STK_IS_STORE) |
| 7473 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 7474 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7475 | if (mrule->table.name) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7476 | target = proxy_tbl_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7477 | else |
| 7478 | target = curproxy; |
| 7479 | |
| 7480 | if (!target) { |
| 7481 | Alert("Proxy '%s': unable to find stick-table '%s'.\n", |
| 7482 | curproxy->id, mrule->table.name); |
| 7483 | cfgerr++; |
| 7484 | } |
| 7485 | else if (target->table.size == 0) { |
| 7486 | Alert("Proxy '%s': stick-table '%s' used but not configured.\n", |
| 7487 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7488 | cfgerr++; |
| 7489 | } |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 7490 | else if (!stktable_compatible_sample(mrule->expr, target->table.type)) { |
| 7491 | 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] | 7492 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7493 | cfgerr++; |
| 7494 | } |
| 7495 | else { |
| 7496 | free((void *)mrule->table.name); |
| 7497 | mrule->table.t = &(target->table); |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 7498 | stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7499 | } |
| 7500 | } |
| 7501 | |
| 7502 | /* find the target table for 'store response' rules */ |
| 7503 | list_for_each_entry(mrule, &curproxy->storersp_rules, list) { |
| 7504 | struct proxy *target; |
| 7505 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 7506 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 7507 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7508 | if (mrule->table.name) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7509 | target = proxy_tbl_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7510 | else |
| 7511 | target = curproxy; |
| 7512 | |
| 7513 | if (!target) { |
| 7514 | Alert("Proxy '%s': unable to find store table '%s'.\n", |
| 7515 | curproxy->id, mrule->table.name); |
| 7516 | cfgerr++; |
| 7517 | } |
| 7518 | else if (target->table.size == 0) { |
| 7519 | Alert("Proxy '%s': stick-table '%s' used but not configured.\n", |
| 7520 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7521 | cfgerr++; |
| 7522 | } |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 7523 | else if (!stktable_compatible_sample(mrule->expr, target->table.type)) { |
| 7524 | 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] | 7525 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7526 | cfgerr++; |
| 7527 | } |
| 7528 | else { |
| 7529 | free((void *)mrule->table.name); |
| 7530 | mrule->table.t = &(target->table); |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 7531 | stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7532 | } |
| 7533 | } |
| 7534 | |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7535 | /* find the target table for 'tcp-request' layer 4 rules */ |
| 7536 | list_for_each_entry(trule, &curproxy->tcp_req.l4_rules, list) { |
| 7537 | struct proxy *target; |
| 7538 | |
Willy Tarreau | b4c8493 | 2013-07-23 19:15:30 +0200 | [diff] [blame] | 7539 | if (trule->action < TCP_ACT_TRK_SC0 || trule->action > TCP_ACT_TRK_SCMAX) |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7540 | continue; |
| 7541 | |
| 7542 | if (trule->act_prm.trk_ctr.table.n) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7543 | target = proxy_tbl_by_name(trule->act_prm.trk_ctr.table.n); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7544 | else |
| 7545 | target = curproxy; |
| 7546 | |
| 7547 | if (!target) { |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7548 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 7549 | curproxy->id, trule->act_prm.trk_ctr.table.n, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7550 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7551 | cfgerr++; |
| 7552 | } |
| 7553 | else if (target->table.size == 0) { |
| 7554 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 7555 | curproxy->id, trule->act_prm.trk_ctr.table.n ? trule->act_prm.trk_ctr.table.n : curproxy->id); |
| 7556 | cfgerr++; |
| 7557 | } |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7558 | else if (!stktable_compatible_sample(trule->act_prm.trk_ctr.expr, target->table.type)) { |
| 7559 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 7560 | curproxy->id, trule->act_prm.trk_ctr.table.n ? trule->act_prm.trk_ctr.table.n : curproxy->id, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7561 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7562 | cfgerr++; |
| 7563 | } |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7564 | else { |
| 7565 | free(trule->act_prm.trk_ctr.table.n); |
| 7566 | trule->act_prm.trk_ctr.table.t = &target->table; |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7567 | /* 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] | 7568 | * to pass a list of counters to track and allocate them right here using |
| 7569 | * stktable_alloc_data_type(). |
| 7570 | */ |
| 7571 | } |
| 7572 | } |
| 7573 | |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7574 | /* find the target table for 'tcp-request' layer 6 rules */ |
| 7575 | list_for_each_entry(trule, &curproxy->tcp_req.inspect_rules, list) { |
| 7576 | struct proxy *target; |
| 7577 | |
Willy Tarreau | b4c8493 | 2013-07-23 19:15:30 +0200 | [diff] [blame] | 7578 | if (trule->action < TCP_ACT_TRK_SC0 || trule->action > TCP_ACT_TRK_SCMAX) |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7579 | continue; |
| 7580 | |
| 7581 | if (trule->act_prm.trk_ctr.table.n) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7582 | target = proxy_tbl_by_name(trule->act_prm.trk_ctr.table.n); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7583 | else |
| 7584 | target = curproxy; |
| 7585 | |
| 7586 | if (!target) { |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7587 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 7588 | curproxy->id, trule->act_prm.trk_ctr.table.n, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7589 | tcp_trk_idx(trule->action)); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7590 | cfgerr++; |
| 7591 | } |
| 7592 | else if (target->table.size == 0) { |
| 7593 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 7594 | curproxy->id, trule->act_prm.trk_ctr.table.n ? trule->act_prm.trk_ctr.table.n : curproxy->id); |
| 7595 | cfgerr++; |
| 7596 | } |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7597 | else if (!stktable_compatible_sample(trule->act_prm.trk_ctr.expr, target->table.type)) { |
| 7598 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 7599 | curproxy->id, trule->act_prm.trk_ctr.table.n ? trule->act_prm.trk_ctr.table.n : curproxy->id, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7600 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7601 | cfgerr++; |
| 7602 | } |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7603 | else { |
| 7604 | free(trule->act_prm.trk_ctr.table.n); |
| 7605 | trule->act_prm.trk_ctr.table.t = &target->table; |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7606 | /* 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] | 7607 | * to pass a list of counters to track and allocate them right here using |
| 7608 | * stktable_alloc_data_type(). |
| 7609 | */ |
| 7610 | } |
| 7611 | } |
| 7612 | |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 7613 | /* find the target table for 'http-request' layer 7 rules */ |
| 7614 | list_for_each_entry(hrqrule, &curproxy->http_req_rules, list) { |
| 7615 | struct proxy *target; |
| 7616 | |
| 7617 | if (hrqrule->action < HTTP_REQ_ACT_TRK_SC0 || hrqrule->action > HTTP_REQ_ACT_TRK_SCMAX) |
| 7618 | continue; |
| 7619 | |
| 7620 | if (hrqrule->act_prm.trk_ctr.table.n) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7621 | target = proxy_tbl_by_name(hrqrule->act_prm.trk_ctr.table.n); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 7622 | else |
| 7623 | target = curproxy; |
| 7624 | |
| 7625 | if (!target) { |
| 7626 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 7627 | curproxy->id, hrqrule->act_prm.trk_ctr.table.n, |
| 7628 | http_req_trk_idx(hrqrule->action)); |
| 7629 | cfgerr++; |
| 7630 | } |
| 7631 | else if (target->table.size == 0) { |
| 7632 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 7633 | curproxy->id, hrqrule->act_prm.trk_ctr.table.n ? hrqrule->act_prm.trk_ctr.table.n : curproxy->id); |
| 7634 | cfgerr++; |
| 7635 | } |
| 7636 | else if (!stktable_compatible_sample(hrqrule->act_prm.trk_ctr.expr, target->table.type)) { |
| 7637 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 7638 | curproxy->id, hrqrule->act_prm.trk_ctr.table.n ? hrqrule->act_prm.trk_ctr.table.n : curproxy->id, |
| 7639 | http_req_trk_idx(hrqrule->action)); |
| 7640 | cfgerr++; |
| 7641 | } |
| 7642 | else { |
| 7643 | free(hrqrule->act_prm.trk_ctr.table.n); |
| 7644 | hrqrule->act_prm.trk_ctr.table.t = &target->table; |
| 7645 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 7646 | * to pass a list of counters to track and allocate them right here using |
| 7647 | * stktable_alloc_data_type(). |
| 7648 | */ |
| 7649 | } |
| 7650 | } |
| 7651 | |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 7652 | /* move any "block" rules at the beginning of the http-request rules */ |
| 7653 | if (!LIST_ISEMPTY(&curproxy->block_rules)) { |
| 7654 | /* insert block_rules into http_req_rules at the beginning */ |
| 7655 | curproxy->block_rules.p->n = curproxy->http_req_rules.n; |
| 7656 | curproxy->http_req_rules.n->p = curproxy->block_rules.p; |
| 7657 | curproxy->block_rules.n->p = &curproxy->http_req_rules; |
| 7658 | curproxy->http_req_rules.n = curproxy->block_rules.n; |
| 7659 | LIST_INIT(&curproxy->block_rules); |
| 7660 | } |
| 7661 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7662 | if (curproxy->table.peers.name) { |
| 7663 | struct peers *curpeers = peers; |
| 7664 | |
| 7665 | for (curpeers = peers; curpeers; curpeers = curpeers->next) { |
| 7666 | if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) { |
| 7667 | free((void *)curproxy->table.peers.name); |
Willy Tarreau | 973ca49 | 2013-01-17 21:34:52 +0100 | [diff] [blame] | 7668 | curproxy->table.peers.p = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7669 | break; |
| 7670 | } |
| 7671 | } |
| 7672 | |
| 7673 | if (!curpeers) { |
| 7674 | Alert("Proxy '%s': unable to find sync peers '%s'.\n", |
| 7675 | curproxy->id, curproxy->table.peers.name); |
Willy Tarreau | d66bf96 | 2011-10-28 14:16:49 +0200 | [diff] [blame] | 7676 | free((void *)curproxy->table.peers.name); |
| 7677 | curproxy->table.peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7678 | cfgerr++; |
| 7679 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 7680 | else if (curpeers->state == PR_STSTOPPED) { |
| 7681 | /* silently disable this peers section */ |
| 7682 | curproxy->table.peers.p = NULL; |
| 7683 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7684 | else if (!curpeers->peers_fe) { |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 7685 | Alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n", |
| 7686 | curproxy->id, localpeer, curpeers->id); |
Willy Tarreau | d66bf96 | 2011-10-28 14:16:49 +0200 | [diff] [blame] | 7687 | curproxy->table.peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7688 | cfgerr++; |
| 7689 | } |
| 7690 | } |
| 7691 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 7692 | |
| 7693 | if (curproxy->email_alert.mailers.name) { |
| 7694 | struct mailers *curmailers = mailers; |
| 7695 | |
| 7696 | for (curmailers = mailers; curmailers; curmailers = curmailers->next) { |
| 7697 | if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0) { |
| 7698 | free(curproxy->email_alert.mailers.name); |
| 7699 | curproxy->email_alert.mailers.m = curmailers; |
| 7700 | curmailers->users++; |
| 7701 | break; |
| 7702 | } |
| 7703 | } |
| 7704 | |
| 7705 | if (!curmailers) { |
| 7706 | Alert("Proxy '%s': unable to find mailers '%s'.\n", |
| 7707 | curproxy->id, curproxy->email_alert.mailers.name); |
| 7708 | free_email_alert(curproxy); |
| 7709 | cfgerr++; |
| 7710 | } |
| 7711 | } |
| 7712 | |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 7713 | if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) && |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 7714 | !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7715 | (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) { |
| 7716 | Alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n", |
| 7717 | "proxy", curproxy->id); |
| 7718 | cfgerr++; |
| 7719 | goto out_uri_auth_compat; |
| 7720 | } |
| 7721 | |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 7722 | 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] | 7723 | const char *uri_auth_compat_req[10]; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 7724 | struct http_req_rule *rule; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 7725 | int i = 0; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7726 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 7727 | /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */ |
| 7728 | uri_auth_compat_req[i++] = "auth"; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7729 | |
| 7730 | if (curproxy->uri_auth->auth_realm) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 7731 | uri_auth_compat_req[i++] = "realm"; |
| 7732 | uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm; |
| 7733 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7734 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 7735 | uri_auth_compat_req[i++] = "unless"; |
| 7736 | uri_auth_compat_req[i++] = "{"; |
| 7737 | uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)"; |
| 7738 | uri_auth_compat_req[i++] = "}"; |
| 7739 | uri_auth_compat_req[i++] = ""; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7740 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 7741 | rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy); |
| 7742 | if (!rule) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 7743 | cfgerr++; |
| 7744 | break; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7745 | } |
| 7746 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 7747 | LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 7748 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7749 | if (curproxy->uri_auth->auth_realm) { |
| 7750 | free(curproxy->uri_auth->auth_realm); |
| 7751 | curproxy->uri_auth->auth_realm = NULL; |
| 7752 | } |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 7753 | |
| 7754 | curproxy->uri_auth->flags |= ST_CONVDONE; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 7755 | } |
| 7756 | out_uri_auth_compat: |
| 7757 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 7758 | /* compile the log format */ |
| 7759 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 7760 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 7761 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 7762 | curproxy->conf.logformat_string != clf_http_log_format) |
| 7763 | free(curproxy->conf.logformat_string); |
| 7764 | curproxy->conf.logformat_string = NULL; |
| 7765 | free(curproxy->conf.lfs_file); |
| 7766 | curproxy->conf.lfs_file = NULL; |
| 7767 | curproxy->conf.lfs_line = 0; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 7768 | } |
| 7769 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 7770 | if (curproxy->conf.logformat_string) { |
| 7771 | curproxy->conf.args.ctx = ARGC_LOG; |
| 7772 | curproxy->conf.args.file = curproxy->conf.lfs_file; |
| 7773 | curproxy->conf.args.line = curproxy->conf.lfs_line; |
| 7774 | parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY, |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 7775 | SMP_VAL_FE_LOG_END, curproxy->conf.lfs_file, curproxy->conf.lfs_line); |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 7776 | curproxy->conf.args.file = NULL; |
| 7777 | curproxy->conf.args.line = 0; |
| 7778 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 7779 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 7780 | if (curproxy->conf.uniqueid_format_string) { |
| 7781 | curproxy->conf.args.ctx = ARGC_UIF; |
| 7782 | curproxy->conf.args.file = curproxy->conf.uif_file; |
| 7783 | curproxy->conf.args.line = curproxy->conf.uif_line; |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 7784 | parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id, LOG_OPT_HTTP, |
Godbach | d972203 | 2014-12-18 15:44:58 +0800 | [diff] [blame] | 7785 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 7786 | curproxy->conf.uif_file, curproxy->conf.uif_line); |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 7787 | curproxy->conf.args.file = NULL; |
| 7788 | curproxy->conf.args.line = 0; |
| 7789 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 7790 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 7791 | /* only now we can check if some args remain unresolved. |
| 7792 | * This must be done after the users and groups resolution. |
| 7793 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 7794 | cfgerr += smp_resolve_args(curproxy); |
| 7795 | if (!cfgerr) |
| 7796 | cfgerr += acl_find_targets(curproxy); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 7797 | |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 7798 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7799 | (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) || |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 7800 | ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) && |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 7801 | (!curproxy->timeout.connect || |
| 7802 | (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7803 | Warning("config : missing timeouts for %s '%s'.\n" |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 7804 | " | While not properly invalid, you will certainly encounter various problems\n" |
| 7805 | " | 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] | 7806 | " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n", |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7807 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7808 | err_code |= ERR_WARN; |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 7809 | } |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 7810 | |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7811 | /* Historically, the tarpit and queue timeouts were inherited from contimeout. |
| 7812 | * We must still support older configurations, so let's find out whether those |
| 7813 | * parameters have been set or must be copied from contimeouts. |
| 7814 | */ |
| 7815 | if (curproxy != &defproxy) { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7816 | if (!curproxy->timeout.tarpit || |
| 7817 | curproxy->timeout.tarpit == defproxy.timeout.tarpit) { |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7818 | /* tarpit timeout not set. We search in the following order: |
| 7819 | * default.tarpit, curr.connect, default.connect. |
| 7820 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7821 | if (defproxy.timeout.tarpit) |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7822 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7823 | else if (curproxy->timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 7824 | curproxy->timeout.tarpit = curproxy->timeout.connect; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7825 | else if (defproxy.timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 7826 | curproxy->timeout.tarpit = defproxy.timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7827 | } |
| 7828 | if ((curproxy->cap & PR_CAP_BE) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7829 | (!curproxy->timeout.queue || |
| 7830 | curproxy->timeout.queue == defproxy.timeout.queue)) { |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7831 | /* queue timeout not set. We search in the following order: |
| 7832 | * default.queue, curr.connect, default.connect. |
| 7833 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7834 | if (defproxy.timeout.queue) |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7835 | curproxy->timeout.queue = defproxy.timeout.queue; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7836 | else if (curproxy->timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 7837 | curproxy->timeout.queue = curproxy->timeout.connect; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 7838 | else if (defproxy.timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 7839 | curproxy->timeout.queue = defproxy.timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 7840 | } |
| 7841 | } |
| 7842 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7843 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) { |
Willy Tarreau | 137325d | 2010-02-01 16:38:17 +0100 | [diff] [blame] | 7844 | curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1; |
| 7845 | curproxy->check_req = (char *)malloc(curproxy->check_len); |
| 7846 | memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len); |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 7847 | } |
| 7848 | |
Willy Tarreau | 215663d | 2014-06-13 18:30:23 +0200 | [diff] [blame] | 7849 | if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) && |
| 7850 | (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) { |
| 7851 | Warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n", |
| 7852 | proxy_type_str(curproxy), curproxy->id); |
| 7853 | err_code |= ERR_WARN; |
| 7854 | } |
| 7855 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 7856 | /* ensure that cookie capture length is not too large */ |
| 7857 | if (curproxy->capture_len >= global.tune.cookie_len) { |
| 7858 | Warning("config : truncating capture length to %d bytes for %s '%s'.\n", |
| 7859 | global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id); |
| 7860 | err_code |= ERR_WARN; |
| 7861 | curproxy->capture_len = global.tune.cookie_len - 1; |
| 7862 | } |
| 7863 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 7864 | /* The small pools required for the capture lists */ |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 7865 | if (curproxy->nb_req_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 7866 | curproxy->req_cap_pool = create_pool("ptrcap", |
| 7867 | curproxy->nb_req_cap * sizeof(char *), |
| 7868 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 7869 | } |
| 7870 | |
| 7871 | if (curproxy->nb_rsp_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 7872 | curproxy->rsp_cap_pool = create_pool("ptrcap", |
| 7873 | curproxy->nb_rsp_cap * sizeof(char *), |
| 7874 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 7875 | } |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 7876 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7877 | /* first, we will invert the servers list order */ |
| 7878 | newsrv = NULL; |
| 7879 | while (curproxy->srv) { |
| 7880 | struct server *next; |
| 7881 | |
| 7882 | next = curproxy->srv->next; |
| 7883 | curproxy->srv->next = newsrv; |
| 7884 | newsrv = curproxy->srv; |
| 7885 | if (!next) |
| 7886 | break; |
| 7887 | curproxy->srv = next; |
| 7888 | } |
| 7889 | |
Willy Tarreau | 17edc81 | 2014-01-03 12:14:34 +0100 | [diff] [blame] | 7890 | /* Check that no server name conflicts. This causes trouble in the stats. |
| 7891 | * We only emit a warning for the first conflict affecting each server, |
| 7892 | * in order to avoid combinatory explosion if all servers have the same |
| 7893 | * name. We do that only for servers which do not have an explicit ID, |
| 7894 | * because these IDs were made also for distinguishing them and we don't |
| 7895 | * want to annoy people who correctly manage them. |
| 7896 | */ |
| 7897 | for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) { |
| 7898 | struct server *other_srv; |
| 7899 | |
| 7900 | if (newsrv->puid) |
| 7901 | continue; |
| 7902 | |
| 7903 | for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) { |
| 7904 | if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) { |
| 7905 | Warning("parsing [%s:%d] : %s '%s', another server named '%s' was defined without an explicit ID at line %d, this is not recommended.\n", |
| 7906 | newsrv->conf.file, newsrv->conf.line, |
| 7907 | proxy_type_str(curproxy), curproxy->id, |
| 7908 | newsrv->id, other_srv->conf.line); |
| 7909 | break; |
| 7910 | } |
| 7911 | } |
| 7912 | } |
| 7913 | |
Willy Tarreau | dd70165 | 2010-05-25 23:03:02 +0200 | [diff] [blame] | 7914 | /* assign automatic UIDs to servers which don't have one yet */ |
| 7915 | next_id = 1; |
| 7916 | newsrv = curproxy->srv; |
| 7917 | while (newsrv != NULL) { |
| 7918 | if (!newsrv->puid) { |
| 7919 | /* server ID not set, use automatic numbering with first |
| 7920 | * spare entry starting with next_svid. |
| 7921 | */ |
| 7922 | next_id = get_next_id(&curproxy->conf.used_server_id, next_id); |
| 7923 | newsrv->conf.id.key = newsrv->puid = next_id; |
| 7924 | eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id); |
| 7925 | } |
| 7926 | next_id++; |
| 7927 | newsrv = newsrv->next; |
| 7928 | } |
| 7929 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 7930 | curproxy->lbprm.wmult = 1; /* default weight multiplier */ |
Willy Tarreau | 5dc2fa6 | 2007-11-19 19:10:18 +0100 | [diff] [blame] | 7931 | curproxy->lbprm.wdiv = 1; /* default weight divider */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7932 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 7933 | /* |
| 7934 | * If this server supports a maxconn parameter, it needs a dedicated |
| 7935 | * tasks to fill the emptied slots when a connection leaves. |
| 7936 | * Also, resolve deferred tracking dependency if needed. |
| 7937 | */ |
| 7938 | newsrv = curproxy->srv; |
| 7939 | while (newsrv != NULL) { |
| 7940 | if (newsrv->minconn > newsrv->maxconn) { |
| 7941 | /* Only 'minconn' was specified, or it was higher than or equal |
| 7942 | * to 'maxconn'. Let's turn this into maxconn and clean it, as |
| 7943 | * this will avoid further useless expensive computations. |
| 7944 | */ |
| 7945 | newsrv->maxconn = newsrv->minconn; |
| 7946 | } else if (newsrv->maxconn && !newsrv->minconn) { |
| 7947 | /* minconn was not specified, so we set it to maxconn */ |
| 7948 | newsrv->minconn = newsrv->maxconn; |
| 7949 | } |
| 7950 | |
Emeric Brun | 01f8e2f | 2012-05-18 16:02:00 +0200 | [diff] [blame] | 7951 | #ifdef USE_OPENSSL |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 7952 | if (newsrv->use_ssl || newsrv->check.use_ssl) |
| 7953 | cfgerr += ssl_sock_prepare_srv_ctx(newsrv, curproxy); |
Emeric Brun | 01f8e2f | 2012-05-18 16:02:00 +0200 | [diff] [blame] | 7954 | #endif /* USE_OPENSSL */ |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 7955 | |
Willy Tarreau | 2f075e9 | 2013-12-03 11:11:34 +0100 | [diff] [blame] | 7956 | /* set the check type on the server */ |
| 7957 | newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY; |
| 7958 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 7959 | if (newsrv->trackit) { |
| 7960 | struct proxy *px; |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 7961 | struct server *srv, *loop; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 7962 | char *pname, *sname; |
| 7963 | |
| 7964 | pname = newsrv->trackit; |
| 7965 | sname = strrchr(pname, '/'); |
| 7966 | |
| 7967 | if (sname) |
| 7968 | *sname++ = '\0'; |
| 7969 | else { |
| 7970 | sname = pname; |
| 7971 | pname = NULL; |
| 7972 | } |
| 7973 | |
| 7974 | if (pname) { |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7975 | px = proxy_be_by_name(pname); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 7976 | if (!px) { |
| 7977 | Alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n", |
| 7978 | proxy_type_str(curproxy), curproxy->id, |
| 7979 | newsrv->id, pname); |
| 7980 | cfgerr++; |
| 7981 | goto next_srv; |
| 7982 | } |
| 7983 | } else |
| 7984 | px = curproxy; |
| 7985 | |
| 7986 | srv = findserver(px, sname); |
| 7987 | if (!srv) { |
| 7988 | Alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n", |
| 7989 | proxy_type_str(curproxy), curproxy->id, |
| 7990 | newsrv->id, sname); |
| 7991 | cfgerr++; |
| 7992 | goto next_srv; |
| 7993 | } |
| 7994 | |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 7995 | if (!(srv->check.state & CHK_ST_CONFIGURED) && |
| 7996 | !(srv->agent.state & CHK_ST_CONFIGURED) && |
| 7997 | !srv->track && !srv->trackit) { |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 7998 | Alert("config : %s '%s', server '%s': unable to use %s/%s for " |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 7999 | "tracking as it does not have any check nor agent enabled.\n", |
| 8000 | proxy_type_str(curproxy), curproxy->id, |
| 8001 | newsrv->id, px->id, srv->id); |
| 8002 | cfgerr++; |
| 8003 | goto next_srv; |
| 8004 | } |
| 8005 | |
| 8006 | for (loop = srv->track; loop && loop != newsrv; loop = loop->track); |
| 8007 | |
| 8008 | if (loop) { |
| 8009 | Alert("config : %s '%s', server '%s': unable to track %s/%s as it " |
| 8010 | "belongs to a tracking chain looping back to %s/%s.\n", |
| 8011 | proxy_type_str(curproxy), curproxy->id, |
| 8012 | newsrv->id, px->id, srv->id, px->id, loop->id); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8013 | cfgerr++; |
| 8014 | goto next_srv; |
| 8015 | } |
| 8016 | |
| 8017 | if (curproxy != px && |
| 8018 | (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) { |
| 8019 | Alert("config : %s '%s', server '%s': unable to use %s/%s for" |
| 8020 | "tracking: disable-on-404 option inconsistency.\n", |
| 8021 | proxy_type_str(curproxy), curproxy->id, |
| 8022 | newsrv->id, px->id, srv->id); |
| 8023 | cfgerr++; |
| 8024 | goto next_srv; |
| 8025 | } |
| 8026 | |
| 8027 | /* if the other server is forced disabled, we have to do the same here */ |
Willy Tarreau | 2012521 | 2014-05-13 19:44:56 +0200 | [diff] [blame] | 8028 | if (srv->admin & SRV_ADMF_MAINT) { |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 8029 | newsrv->admin |= SRV_ADMF_IMAINT; |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 8030 | newsrv->state = SRV_ST_STOPPED; |
Simon Horman | 125d099 | 2013-02-24 17:23:38 +0900 | [diff] [blame] | 8031 | newsrv->check.health = 0; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8032 | } |
| 8033 | |
| 8034 | newsrv->track = srv; |
Willy Tarreau | 1a53a3a | 2013-12-11 15:27:05 +0100 | [diff] [blame] | 8035 | newsrv->tracknext = srv->trackers; |
| 8036 | srv->trackers = newsrv; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8037 | |
| 8038 | free(newsrv->trackit); |
| 8039 | newsrv->trackit = NULL; |
| 8040 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 8041 | |
| 8042 | /* |
| 8043 | * resolve server's resolvers name and update the resolvers pointer |
| 8044 | * accordingly |
| 8045 | */ |
| 8046 | if (newsrv->resolvers_id) { |
| 8047 | struct dns_resolvers *curr_resolvers; |
| 8048 | int found; |
| 8049 | |
| 8050 | found = 0; |
| 8051 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 8052 | if (!strcmp(curr_resolvers->id, newsrv->resolvers_id)) { |
| 8053 | found = 1; |
| 8054 | break; |
| 8055 | } |
| 8056 | } |
| 8057 | |
| 8058 | if (!found) { |
| 8059 | Alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n", |
| 8060 | proxy_type_str(curproxy), curproxy->id, |
| 8061 | newsrv->id, newsrv->resolvers_id); |
| 8062 | cfgerr++; |
| 8063 | } else { |
| 8064 | free(newsrv->resolvers_id); |
| 8065 | newsrv->resolvers_id = NULL; |
| 8066 | if (newsrv->resolution) |
| 8067 | newsrv->resolution->resolvers = curr_resolvers; |
| 8068 | } |
| 8069 | } |
| 8070 | else { |
| 8071 | /* if no resolvers section associated to this server |
| 8072 | * we can clean up the associated resolution structure |
| 8073 | */ |
| 8074 | if (newsrv->resolution) { |
| 8075 | free(newsrv->resolution->hostname_dn); |
| 8076 | newsrv->resolution->hostname_dn = NULL; |
| 8077 | free(newsrv->resolution); |
| 8078 | newsrv->resolution = NULL; |
| 8079 | } |
| 8080 | } |
| 8081 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8082 | next_srv: |
| 8083 | newsrv = newsrv->next; |
| 8084 | } |
| 8085 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8086 | /* We have to initialize the server lookup mechanism depending |
| 8087 | * on what LB algorithm was choosen. |
| 8088 | */ |
| 8089 | |
| 8090 | curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN); |
| 8091 | switch (curproxy->lbprm.algo & BE_LB_KIND) { |
| 8092 | case BE_LB_KIND_RR: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 8093 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) { |
| 8094 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 8095 | init_server_map(curproxy); |
| 8096 | } else { |
| 8097 | curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN; |
| 8098 | fwrr_init_server_groups(curproxy); |
| 8099 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8100 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8101 | |
Willy Tarreau | 3ebb116 | 2012-02-13 16:57:44 +0100 | [diff] [blame] | 8102 | case BE_LB_KIND_CB: |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 8103 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) { |
| 8104 | curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN; |
| 8105 | fwlc_init_server_tree(curproxy); |
| 8106 | } else { |
| 8107 | curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN; |
| 8108 | fas_init_server_tree(curproxy); |
| 8109 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8110 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8111 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8112 | case BE_LB_KIND_HI: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8113 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) { |
| 8114 | curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN; |
| 8115 | chash_init_server_tree(curproxy); |
| 8116 | } else { |
| 8117 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 8118 | init_server_map(curproxy); |
| 8119 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8120 | break; |
| 8121 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8122 | |
| 8123 | if (curproxy->options & PR_O_LOGASAP) |
| 8124 | curproxy->to_log &= ~LW_BYTES; |
| 8125 | |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 8126 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Willy Tarreau | d79a3b2 | 2012-12-28 09:40:16 +0100 | [diff] [blame] | 8127 | (curproxy->cap & PR_CAP_FE) && !LIST_ISEMPTY(&curproxy->logformat) && LIST_ISEMPTY(&curproxy->logsrvs)) { |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 8128 | Warning("config : log format ignored for %s '%s' since it has no log address.\n", |
| 8129 | proxy_type_str(curproxy), curproxy->id); |
| 8130 | err_code |= ERR_WARN; |
| 8131 | } |
| 8132 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8133 | if (curproxy->mode != PR_MODE_HTTP) { |
| 8134 | int optnum; |
| 8135 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8136 | if (curproxy->uri_auth) { |
| 8137 | Warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 8138 | proxy_type_str(curproxy), curproxy->id); |
| 8139 | err_code |= ERR_WARN; |
| 8140 | curproxy->uri_auth = NULL; |
| 8141 | } |
| 8142 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 8143 | if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8144 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8145 | "forwardfor", proxy_type_str(curproxy), curproxy->id); |
| 8146 | err_code |= ERR_WARN; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 8147 | curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8148 | } |
| 8149 | |
| 8150 | if (curproxy->options & PR_O_ORGTO) { |
| 8151 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8152 | "originalto", proxy_type_str(curproxy), curproxy->id); |
| 8153 | err_code |= ERR_WARN; |
| 8154 | curproxy->options &= ~PR_O_ORGTO; |
| 8155 | } |
| 8156 | |
| 8157 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 8158 | if (cfg_opts[optnum].mode == PR_MODE_HTTP && |
| 8159 | (curproxy->cap & cfg_opts[optnum].cap) && |
| 8160 | (curproxy->options & cfg_opts[optnum].val)) { |
| 8161 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8162 | cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id); |
| 8163 | err_code |= ERR_WARN; |
| 8164 | curproxy->options &= ~cfg_opts[optnum].val; |
| 8165 | } |
| 8166 | } |
| 8167 | |
| 8168 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 8169 | if (cfg_opts2[optnum].mode == PR_MODE_HTTP && |
| 8170 | (curproxy->cap & cfg_opts2[optnum].cap) && |
| 8171 | (curproxy->options2 & cfg_opts2[optnum].val)) { |
| 8172 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8173 | cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id); |
| 8174 | err_code |= ERR_WARN; |
| 8175 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 8176 | } |
| 8177 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8178 | |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 8179 | #if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8180 | if (curproxy->conn_src.bind_hdr_occ) { |
| 8181 | curproxy->conn_src.bind_hdr_occ = 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8182 | 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] | 8183 | proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8184 | err_code |= ERR_WARN; |
| 8185 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 8186 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8187 | } |
| 8188 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8189 | /* |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8190 | * ensure that we're not cross-dressing a TCP server into HTTP. |
| 8191 | */ |
| 8192 | newsrv = curproxy->srv; |
| 8193 | while (newsrv != NULL) { |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 8194 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8195 | Alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n", |
| 8196 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 8197 | cfgerr++; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8198 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8199 | |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 8200 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) { |
| 8201 | Warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n", |
| 8202 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8203 | err_code |= ERR_WARN; |
| 8204 | } |
| 8205 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 8206 | if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) { |
Willy Tarreau | 82ffa39 | 2013-08-13 17:19:08 +0200 | [diff] [blame] | 8207 | Warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n", |
| 8208 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8209 | err_code |= ERR_WARN; |
| 8210 | } |
| 8211 | |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 8212 | #if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8213 | if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) { |
| 8214 | newsrv->conn_src.bind_hdr_occ = 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8215 | 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] | 8216 | 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] | 8217 | err_code |= ERR_WARN; |
| 8218 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 8219 | #endif |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8220 | newsrv = newsrv->next; |
| 8221 | } |
| 8222 | |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8223 | /* check if we have a frontend with "tcp-request content" looking at L7 |
| 8224 | * with no inspect-delay |
| 8225 | */ |
| 8226 | if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) { |
| 8227 | list_for_each_entry(trule, &curproxy->tcp_req.inspect_rules, list) { |
| 8228 | if (trule->action == TCP_ACT_CAPTURE && |
| 8229 | !(trule->act_prm.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC)) |
| 8230 | break; |
| 8231 | if ((trule->action >= TCP_ACT_TRK_SC0 && trule->action <= TCP_ACT_TRK_SCMAX) && |
| 8232 | !(trule->act_prm.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) |
| 8233 | break; |
| 8234 | } |
| 8235 | |
| 8236 | if (&trule->list != &curproxy->tcp_req.inspect_rules) { |
| 8237 | Warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request" |
| 8238 | " contents were found in a frontend without any 'tcp-request inspect-delay' setting." |
| 8239 | " This means that these rules will randomly find their contents. This can be fixed by" |
| 8240 | " setting the tcp-request inspect-delay.\n", |
| 8241 | proxy_type_str(curproxy), curproxy->id); |
| 8242 | err_code |= ERR_WARN; |
| 8243 | } |
| 8244 | } |
| 8245 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8246 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 8247 | if (!curproxy->accept) |
| 8248 | curproxy->accept = frontend_accept; |
Willy Tarreau | 81f9aa3 | 2010-06-01 17:45:26 +0200 | [diff] [blame] | 8249 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8250 | if (curproxy->tcp_req.inspect_delay || |
| 8251 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 8252 | curproxy->fe_req_ana |= AN_REQ_INSPECT_FE; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8253 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 8254 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8255 | 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] | 8256 | 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] | 8257 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8258 | |
| 8259 | /* both TCP and HTTP must check switching rules */ |
| 8260 | curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES; |
| 8261 | } |
| 8262 | |
| 8263 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 8264 | if (curproxy->tcp_req.inspect_delay || |
| 8265 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
| 8266 | curproxy->be_req_ana |= AN_REQ_INSPECT_BE; |
| 8267 | |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 8268 | if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules)) |
| 8269 | curproxy->be_rsp_ana |= AN_RES_INSPECT; |
| 8270 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 8271 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8272 | 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] | 8273 | 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] | 8274 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8275 | |
| 8276 | /* If the backend does requires RDP cookie persistence, we have to |
| 8277 | * enable the corresponding analyser. |
| 8278 | */ |
| 8279 | if (curproxy->options2 & PR_O2_RDPC_PRST) |
| 8280 | curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE; |
| 8281 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8282 | } |
| 8283 | |
| 8284 | /***********************************************************/ |
| 8285 | /* At this point, target names have already been resolved. */ |
| 8286 | /***********************************************************/ |
| 8287 | |
| 8288 | /* Check multi-process mode compatibility */ |
| 8289 | |
| 8290 | if (global.nbproc > 1 && global.stats_fe) { |
| 8291 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 8292 | unsigned long mask; |
| 8293 | |
| 8294 | mask = nbits(global.nbproc); |
| 8295 | if (global.stats_fe->bind_proc) |
| 8296 | mask &= global.stats_fe->bind_proc; |
| 8297 | |
| 8298 | if (bind_conf->bind_proc) |
| 8299 | mask &= bind_conf->bind_proc; |
| 8300 | |
| 8301 | /* stop here if more than one process is used */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8302 | if (my_popcountl(mask) > 1) |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8303 | break; |
| 8304 | } |
| 8305 | if (&bind_conf->by_fe != &global.stats_fe->conf.bind) { |
| 8306 | 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"); |
| 8307 | } |
| 8308 | } |
| 8309 | |
| 8310 | /* Make each frontend inherit bind-process from its listeners when not specified. */ |
| 8311 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8312 | if (curproxy->bind_proc) |
| 8313 | continue; |
| 8314 | |
| 8315 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 8316 | unsigned long mask; |
| 8317 | |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8318 | mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8319 | curproxy->bind_proc |= mask; |
| 8320 | } |
| 8321 | |
| 8322 | if (!curproxy->bind_proc) |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8323 | curproxy->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8324 | } |
| 8325 | |
| 8326 | if (global.stats_fe) { |
| 8327 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 8328 | unsigned long mask; |
| 8329 | |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8330 | mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8331 | global.stats_fe->bind_proc |= mask; |
| 8332 | } |
| 8333 | if (!global.stats_fe->bind_proc) |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8334 | global.stats_fe->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8335 | } |
| 8336 | |
Willy Tarreau | acbe8ab | 2014-10-01 20:50:17 +0200 | [diff] [blame] | 8337 | /* propagate bindings from frontends to backends. Don't do it if there |
| 8338 | * are any fatal errors as we must not call it with unresolved proxies. |
| 8339 | */ |
| 8340 | if (!cfgerr) { |
| 8341 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8342 | if (curproxy->cap & PR_CAP_FE) |
| 8343 | propagate_processes(curproxy, NULL); |
| 8344 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8345 | } |
| 8346 | |
| 8347 | /* Bind each unbound backend to all processes when not specified. */ |
| 8348 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8349 | if (curproxy->bind_proc) |
| 8350 | continue; |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8351 | curproxy->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8352 | } |
| 8353 | |
| 8354 | /*******************************************************/ |
| 8355 | /* At this step, all proxies have a non-null bind_proc */ |
| 8356 | /*******************************************************/ |
| 8357 | |
| 8358 | /* perform the final checks before creating tasks */ |
| 8359 | |
| 8360 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8361 | struct listener *listener; |
| 8362 | unsigned int next_id; |
| 8363 | int nbproc; |
| 8364 | |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8365 | nbproc = my_popcountl(curproxy->bind_proc & nbits(global.nbproc)); |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8366 | |
Emeric Brun | c52962f | 2012-11-15 18:28:02 +0100 | [diff] [blame] | 8367 | #ifdef USE_OPENSSL |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8368 | /* Configure SSL for each bind line. |
| 8369 | * Note: if configuration fails at some point, the ->ctx member |
| 8370 | * remains NULL so that listeners can later detach. |
| 8371 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8372 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 8373 | int alloc_ctx; |
| 8374 | |
Emeric Brun | c52962f | 2012-11-15 18:28:02 +0100 | [diff] [blame] | 8375 | if (!bind_conf->is_ssl) { |
| 8376 | if (bind_conf->default_ctx) { |
| 8377 | Warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 8378 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 8379 | } |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8380 | continue; |
Emeric Brun | c52962f | 2012-11-15 18:28:02 +0100 | [diff] [blame] | 8381 | } |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8382 | if (!bind_conf->default_ctx) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 8383 | Alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8384 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8385 | cfgerr++; |
| 8386 | continue; |
| 8387 | } |
| 8388 | |
Emeric Brun | 8dc6039 | 2014-05-09 13:52:00 +0200 | [diff] [blame] | 8389 | alloc_ctx = shared_context_init(global.tune.sslcachesize, (!global.tune.sslprivatecache && (global.nbproc > 1)) ? 1 : 0); |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 8390 | if (alloc_ctx < 0) { |
Emeric Brun | 93ee249 | 2014-05-09 14:01:48 +0200 | [diff] [blame] | 8391 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 8392 | Alert("Unable to initialize the lock for the shared SSL session cache. You can retry using the global statement 'tune.ssl.force-private-cache' but it could increase CPU usage due to renegotiations if nbproc > 1.\n"); |
| 8393 | else |
Emeric Brun | caa19cc | 2014-05-07 16:10:18 +0200 | [diff] [blame] | 8394 | Alert("Unable to allocate SSL session cache.\n"); |
Emeric Brun | 93ee249 | 2014-05-09 14:01:48 +0200 | [diff] [blame] | 8395 | cfgerr++; |
| 8396 | continue; |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8397 | } |
| 8398 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 8399 | /* initialize all certificate contexts */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8400 | cfgerr += ssl_sock_prepare_all_ctx(bind_conf, curproxy); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8401 | |
| 8402 | /* initialize CA variables if the certificates generation is enabled */ |
| 8403 | cfgerr += ssl_sock_load_ca(bind_conf, curproxy); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8404 | } |
Emeric Brun | c52962f | 2012-11-15 18:28:02 +0100 | [diff] [blame] | 8405 | #endif /* USE_OPENSSL */ |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8406 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 8407 | /* adjust this proxy's listeners */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8408 | next_id = 1; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8409 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8410 | if (!listener->luid) { |
| 8411 | /* listener ID not set, use automatic numbering with first |
| 8412 | * spare entry starting with next_luid. |
| 8413 | */ |
| 8414 | next_id = get_next_id(&curproxy->conf.used_listener_id, next_id); |
| 8415 | listener->conf.id.key = listener->luid = next_id; |
| 8416 | eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8417 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 8418 | next_id++; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8419 | |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 8420 | /* enable separate counters */ |
| 8421 | if (curproxy->options2 & PR_O2_SOCKSTAT) { |
| 8422 | listener->counters = (struct licounters *)calloc(1, sizeof(struct licounters)); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8423 | if (!listener->name) |
| 8424 | memprintf(&listener->name, "sock-%d", listener->luid); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 8425 | } |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 8426 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 8427 | if (curproxy->options & PR_O_TCP_NOLING) |
| 8428 | listener->options |= LI_O_NOLINGER; |
Willy Tarreau | 32368ce | 2012-09-06 11:10:55 +0200 | [diff] [blame] | 8429 | if (!listener->maxconn) |
| 8430 | listener->maxconn = curproxy->maxconn; |
| 8431 | if (!listener->backlog) |
| 8432 | listener->backlog = curproxy->backlog; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 8433 | if (!listener->maxaccept) |
| 8434 | listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64; |
| 8435 | |
| 8436 | /* we want to have an optimal behaviour on single process mode to |
| 8437 | * maximize the work at once, but in multi-process we want to keep |
| 8438 | * some fairness between processes, so we target half of the max |
| 8439 | * number of events to be balanced over all the processes the proxy |
| 8440 | * is bound to. Rememeber that maxaccept = -1 must be kept as it is |
| 8441 | * used to disable the limit. |
| 8442 | */ |
| 8443 | if (listener->maxaccept > 0) { |
| 8444 | if (nbproc > 1) |
| 8445 | listener->maxaccept = (listener->maxaccept + 1) / 2; |
| 8446 | listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc; |
| 8447 | } |
| 8448 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 8449 | listener->accept = session_accept_fd; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 8450 | listener->handler = process_stream; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8451 | listener->analysers |= curproxy->fe_req_ana; |
Willy Tarreau | 10b688f | 2015-03-13 16:43:12 +0100 | [diff] [blame] | 8452 | listener->default_target = curproxy->default_target; |
Willy Tarreau | 3bc1377 | 2008-12-07 11:50:35 +0100 | [diff] [blame] | 8453 | |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 8454 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules)) |
| 8455 | listener->options |= LI_O_TCP_RULES; |
| 8456 | |
Willy Tarreau | de3041d | 2010-05-31 10:56:17 +0200 | [diff] [blame] | 8457 | if (curproxy->mon_mask.s_addr) |
| 8458 | listener->options |= LI_O_CHK_MONNET; |
| 8459 | |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 8460 | /* smart accept mode is automatic in HTTP mode */ |
| 8461 | if ((curproxy->options2 & PR_O2_SMARTACC) || |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8462 | ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) && |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 8463 | !(curproxy->no_options2 & PR_O2_SMARTACC))) |
| 8464 | listener->options |= LI_O_NOQUICKACK; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 8465 | } |
| 8466 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8467 | /* Release unused SSL configs */ |
| 8468 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 8469 | if (bind_conf->is_ssl) |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8470 | continue; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8471 | #ifdef USE_OPENSSL |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8472 | ssl_sock_free_ca(bind_conf); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8473 | ssl_sock_free_all_ctx(bind_conf); |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 8474 | free(bind_conf->ca_file); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8475 | free(bind_conf->ca_sign_file); |
| 8476 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8477 | free(bind_conf->ciphers); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 8478 | free(bind_conf->ecdhe); |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 8479 | free(bind_conf->crl_file); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8480 | if(bind_conf->keys_ref) { |
| 8481 | free(bind_conf->keys_ref->filename); |
| 8482 | free(bind_conf->keys_ref->tlskeys); |
| 8483 | free(bind_conf->keys_ref); |
| 8484 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8485 | #endif /* USE_OPENSSL */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8486 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8487 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 8488 | if (nbproc > 1) { |
| 8489 | if (curproxy->uri_auth) { |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 8490 | int count, maxproc = 0; |
| 8491 | |
| 8492 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8493 | count = my_popcountl(bind_conf->bind_proc); |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 8494 | if (count > maxproc) |
| 8495 | maxproc = count; |
| 8496 | } |
| 8497 | /* backends have 0, frontends have 1 or more */ |
| 8498 | if (maxproc != 1) |
| 8499 | Warning("Proxy '%s': in multi-process mode, stats will be" |
| 8500 | " limited to process assigned to the current request.\n", |
| 8501 | curproxy->id); |
| 8502 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 8503 | if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) { |
| 8504 | Warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n", |
| 8505 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 8506 | } |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 8507 | } |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 8508 | if (!LIST_ISEMPTY(&curproxy->sticking_rules)) { |
| 8509 | Warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n", |
| 8510 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 8511 | } |
| 8512 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 8513 | |
| 8514 | /* create the task associated with the proxy */ |
| 8515 | curproxy->task = task_new(); |
| 8516 | if (curproxy->task) { |
| 8517 | curproxy->task->context = curproxy; |
| 8518 | curproxy->task->process = manage_proxy; |
| 8519 | /* no need to queue, it will be done automatically if some |
| 8520 | * listener gets limited. |
| 8521 | */ |
| 8522 | curproxy->task->expire = TICK_ETERNITY; |
| 8523 | } else { |
| 8524 | Alert("Proxy '%s': no more memory when trying to allocate the management task\n", |
| 8525 | curproxy->id); |
| 8526 | cfgerr++; |
| 8527 | } |
Willy Tarreau | b369a04 | 2014-09-16 13:21:03 +0200 | [diff] [blame] | 8528 | } |
| 8529 | |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8530 | /* automatically compute fullconn if not set. We must not do it in the |
| 8531 | * loop above because cross-references are not yet fully resolved. |
| 8532 | */ |
| 8533 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8534 | /* If <fullconn> is not set, let's set it to 10% of the sum of |
| 8535 | * the possible incoming frontend's maxconns. |
| 8536 | */ |
| 8537 | if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) { |
| 8538 | struct proxy *fe; |
| 8539 | int total = 0; |
| 8540 | |
| 8541 | /* sum up the number of maxconns of frontends which |
| 8542 | * reference this backend at least once or which are |
| 8543 | * the same one ('listen'). |
| 8544 | */ |
| 8545 | for (fe = proxy; fe; fe = fe->next) { |
| 8546 | struct switching_rule *rule; |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8547 | int found = 0; |
| 8548 | |
| 8549 | if (!(fe->cap & PR_CAP_FE)) |
| 8550 | continue; |
| 8551 | |
| 8552 | if (fe == curproxy) /* we're on a "listen" instance */ |
| 8553 | found = 1; |
| 8554 | |
| 8555 | if (fe->defbe.be == curproxy) /* "default_backend" */ |
| 8556 | found = 1; |
| 8557 | |
| 8558 | /* check if a "use_backend" rule matches */ |
| 8559 | if (!found) { |
| 8560 | list_for_each_entry(rule, &fe->switching_rules, list) { |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 8561 | if (!rule->dynamic && rule->be.backend == curproxy) { |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8562 | found = 1; |
| 8563 | break; |
| 8564 | } |
| 8565 | } |
| 8566 | } |
| 8567 | |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8568 | /* now we've checked all possible ways to reference a backend |
| 8569 | * from a frontend. |
| 8570 | */ |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8571 | if (!found) |
| 8572 | continue; |
| 8573 | total += fe->maxconn; |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8574 | } |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 8575 | /* we have the sum of the maxconns in <total>. We only |
| 8576 | * keep 10% of that sum to set the default fullconn, with |
| 8577 | * a hard minimum of 1 (to avoid a divide by zero). |
| 8578 | */ |
| 8579 | curproxy->fullconn = (total + 9) / 10; |
| 8580 | if (!curproxy->fullconn) |
| 8581 | curproxy->fullconn = 1; |
| 8582 | } |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 8583 | } |
| 8584 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 8585 | /* |
| 8586 | * Recount currently required checks. |
| 8587 | */ |
| 8588 | |
| 8589 | for (curproxy=proxy; curproxy; curproxy=curproxy->next) { |
| 8590 | int optnum; |
| 8591 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 8592 | for (optnum = 0; cfg_opts[optnum].name; optnum++) |
| 8593 | if (curproxy->options & cfg_opts[optnum].val) |
| 8594 | global.last_checks |= cfg_opts[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 8595 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 8596 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) |
| 8597 | if (curproxy->options2 & cfg_opts2[optnum].val) |
| 8598 | global.last_checks |= cfg_opts2[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 8599 | } |
| 8600 | |
Willy Tarreau | 0fca483 | 2015-05-01 19:12:05 +0200 | [diff] [blame] | 8601 | /* compute the required process bindings for the peers */ |
| 8602 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) |
| 8603 | if (curproxy->table.peers.p) |
| 8604 | curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc; |
| 8605 | |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 8606 | if (peers) { |
| 8607 | struct peers *curpeers = peers, **last; |
| 8608 | struct peer *p, *pb; |
| 8609 | |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 8610 | /* Remove all peers sections which don't have a valid listener, |
| 8611 | * which are not used by any table, or which are bound to more |
| 8612 | * than one process. |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 8613 | */ |
| 8614 | last = &peers; |
| 8615 | while (*last) { |
| 8616 | curpeers = *last; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 8617 | |
| 8618 | if (curpeers->state == PR_STSTOPPED) { |
| 8619 | /* the "disabled" keyword was present */ |
| 8620 | if (curpeers->peers_fe) |
| 8621 | stop_proxy(curpeers->peers_fe); |
| 8622 | curpeers->peers_fe = NULL; |
| 8623 | } |
| 8624 | else if (!curpeers->peers_fe) { |
| 8625 | Warning("Removing incomplete section 'peers %s' (no peer named '%s').\n", |
| 8626 | curpeers->id, localpeer); |
| 8627 | } |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8628 | else if (my_popcountl(curpeers->peers_fe->bind_proc) != 1) { |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 8629 | /* either it's totally stopped or too much used */ |
| 8630 | if (curpeers->peers_fe->bind_proc) { |
| 8631 | Alert("Peers section '%s': peers referenced by sections " |
Willy Tarreau | 64c5722 | 2015-05-04 21:48:51 +0200 | [diff] [blame] | 8632 | "running in different processes (%d different ones). " |
| 8633 | "Check global.nbproc and all tables' bind-process " |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8634 | "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc)); |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 8635 | cfgerr++; |
| 8636 | } |
| 8637 | stop_proxy(curpeers->peers_fe); |
| 8638 | curpeers->peers_fe = NULL; |
| 8639 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 8640 | else { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 8641 | peers_init_sync(curpeers); |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 8642 | last = &curpeers->next; |
| 8643 | continue; |
| 8644 | } |
| 8645 | |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 8646 | /* clean what has been detected above */ |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 8647 | p = curpeers->remote; |
| 8648 | while (p) { |
| 8649 | pb = p->next; |
| 8650 | free(p->id); |
| 8651 | free(p); |
| 8652 | p = pb; |
| 8653 | } |
| 8654 | |
| 8655 | /* Destroy and unlink this curpeers section. |
| 8656 | * Note: curpeers is backed up into *last. |
| 8657 | */ |
| 8658 | free(curpeers->id); |
| 8659 | curpeers = curpeers->next; |
| 8660 | free(*last); |
| 8661 | *last = curpeers; |
| 8662 | } |
| 8663 | } |
| 8664 | |
Willy Tarreau | 6866f3f | 2015-05-01 19:09:08 +0200 | [diff] [blame] | 8665 | /* initialize stick-tables on backend capable proxies. This must not |
| 8666 | * be done earlier because the data size may be discovered while parsing |
| 8667 | * other proxies. |
| 8668 | */ |
| 8669 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8670 | if (curproxy->state == PR_STSTOPPED) |
| 8671 | continue; |
| 8672 | |
| 8673 | if (!stktable_init(&curproxy->table)) { |
| 8674 | Alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id); |
| 8675 | cfgerr++; |
| 8676 | } |
| 8677 | } |
| 8678 | |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 8679 | if (mailers) { |
| 8680 | struct mailers *curmailers = mailers, **last; |
| 8681 | struct mailer *m, *mb; |
| 8682 | |
| 8683 | /* Remove all mailers sections which don't have a valid listener. |
| 8684 | * This can happen when a mailers section is never referenced. |
| 8685 | */ |
| 8686 | last = &mailers; |
| 8687 | while (*last) { |
| 8688 | curmailers = *last; |
| 8689 | if (curmailers->users) { |
| 8690 | last = &curmailers->next; |
| 8691 | continue; |
| 8692 | } |
| 8693 | |
| 8694 | Warning("Removing incomplete section 'mailers %s'.\n", |
| 8695 | curmailers->id); |
| 8696 | |
| 8697 | m = curmailers->mailer_list; |
| 8698 | while (m) { |
| 8699 | mb = m->next; |
| 8700 | free(m->id); |
| 8701 | free(m); |
| 8702 | m = mb; |
| 8703 | } |
| 8704 | |
| 8705 | /* Destroy and unlink this curmailers section. |
| 8706 | * Note: curmailers is backed up into *last. |
| 8707 | */ |
| 8708 | free(curmailers->id); |
| 8709 | curmailers = curmailers->next; |
| 8710 | free(*last); |
| 8711 | *last = curmailers; |
| 8712 | } |
| 8713 | } |
| 8714 | |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 8715 | pool2_hdr_idx = create_pool("hdr_idx", |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 8716 | global.tune.max_http_hdr * sizeof(struct hdr_idx_elem), |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 8717 | MEM_F_SHARED); |
| 8718 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 8719 | if (cfgerr > 0) |
| 8720 | err_code |= ERR_ALERT | ERR_FATAL; |
| 8721 | out: |
| 8722 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8723 | } |
| 8724 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 8725 | /* |
| 8726 | * Registers the CFG keyword list <kwl> as a list of valid keywords for next |
| 8727 | * parsing sessions. |
| 8728 | */ |
| 8729 | void cfg_register_keywords(struct cfg_kw_list *kwl) |
| 8730 | { |
| 8731 | LIST_ADDQ(&cfg_keywords.list, &kwl->list); |
| 8732 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8733 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 8734 | /* |
| 8735 | * Unregisters the CFG keyword list <kwl> from the list of valid keywords. |
| 8736 | */ |
| 8737 | void cfg_unregister_keywords(struct cfg_kw_list *kwl) |
| 8738 | { |
| 8739 | LIST_DEL(&kwl->list); |
| 8740 | LIST_INIT(&kwl->list); |
| 8741 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8742 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 8743 | /* this function register new section in the haproxy configuration file. |
| 8744 | * <section_name> is the name of this new section and <section_parser> |
| 8745 | * is the called parser. If two section declaration have the same name, |
| 8746 | * only the first declared is used. |
| 8747 | */ |
| 8748 | int cfg_register_section(char *section_name, |
| 8749 | int (*section_parser)(const char *, int, char **, int)) |
| 8750 | { |
| 8751 | struct cfg_section *cs; |
| 8752 | |
| 8753 | cs = calloc(1, sizeof(*cs)); |
| 8754 | if (!cs) { |
| 8755 | Alert("register section '%s': out of memory.\n", section_name); |
| 8756 | return 0; |
| 8757 | } |
| 8758 | |
| 8759 | cs->section_name = section_name; |
| 8760 | cs->section_parser = section_parser; |
| 8761 | |
| 8762 | LIST_ADDQ(§ions, &cs->list); |
| 8763 | |
| 8764 | return 1; |
| 8765 | } |
| 8766 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8767 | /* |
| 8768 | * Local variables: |
| 8769 | * c-indent-level: 8 |
| 8770 | * c-basic-offset: 8 |
| 8771 | * End: |
| 8772 | */ |