Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Configuration parser |
| 3 | * |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4 | * Copyright 2000-2011 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 13 | #ifdef CONFIG_HAP_CRYPT |
| 14 | /* This is to have crypt() defined on Linux */ |
| 15 | #define _GNU_SOURCE |
| 16 | |
| 17 | #ifdef NEED_CRYPT_H |
| 18 | /* some platforms such as Solaris need this */ |
| 19 | #include <crypt.h> |
| 20 | #endif |
| 21 | #endif /* CONFIG_HAP_CRYPT */ |
| 22 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <netdb.h> |
| 27 | #include <ctype.h> |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 28 | #include <pwd.h> |
| 29 | #include <grp.h> |
Willy Tarreau | 0b4ed90 | 2007-03-26 00:18:40 +0200 | [diff] [blame] | 30 | #include <errno.h> |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 31 | #include <sys/types.h> |
| 32 | #include <sys/stat.h> |
| 33 | #include <fcntl.h> |
| 34 | #include <unistd.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 35 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 36 | #include <common/cfgparse.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 37 | #include <common/chunk.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 38 | #include <common/config.h> |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 39 | #include <common/errors.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 40 | #include <common/memory.h> |
| 41 | #include <common/standard.h> |
| 42 | #include <common/time.h> |
| 43 | #include <common/uri_auth.h> |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 44 | #include <common/namespace.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | |
| 46 | #include <types/capture.h> |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 47 | #include <types/compression.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 48 | #include <types/filters.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 49 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 50 | #include <types/obj_type.h> |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 51 | #include <types/peers.h> |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 52 | #include <types/mailers.h> |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 53 | #include <types/dns.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 54 | #include <types/stats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 55 | |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 56 | #include <proto/acl.h> |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 57 | #include <proto/auth.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 58 | #include <proto/backend.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 59 | #include <proto/channel.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 60 | #include <proto/checks.h> |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 61 | #include <proto/compression.h> |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 62 | #include <proto/dns.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 63 | #include <proto/stats.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 64 | #include <proto/filters.h> |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 65 | #include <proto/frontend.h> |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 66 | #include <proto/hdr_idx.h> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 67 | #include <proto/lb_chash.h> |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 68 | #include <proto/lb_fas.h> |
Willy Tarreau | f89c187 | 2009-10-01 11:19:37 +0200 | [diff] [blame] | 69 | #include <proto/lb_fwlc.h> |
| 70 | #include <proto/lb_fwrr.h> |
| 71 | #include <proto/lb_map.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 72 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 73 | #include <proto/log.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 74 | #include <proto/protocol.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 75 | #include <proto/proto_tcp.h> |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 76 | #include <proto/proto_uxst.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 77 | #include <proto/proto_http.h> |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 78 | #include <proto/proxy.h> |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 79 | #include <proto/peers.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 80 | #include <proto/sample.h> |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 81 | #include <proto/session.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 82 | #include <proto/server.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 83 | #include <proto/stream.h> |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 84 | #include <proto/stick_table.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 85 | #include <proto/task.h> |
| 86 | #include <proto/tcp_rules.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 87 | |
| 88 | |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 89 | /* This is the SSLv3 CLIENT HELLO packet used in conjunction with the |
| 90 | * ssl-hello-chk option to ensure that the remote server speaks SSL. |
| 91 | * |
| 92 | * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details. |
| 93 | */ |
| 94 | const char sslv3_client_hello_pkt[] = { |
| 95 | "\x16" /* ContentType : 0x16 = Hanshake */ |
| 96 | "\x03\x00" /* ProtocolVersion : 0x0300 = SSLv3 */ |
| 97 | "\x00\x79" /* ContentLength : 0x79 bytes after this one */ |
| 98 | "\x01" /* HanshakeType : 0x01 = CLIENT HELLO */ |
| 99 | "\x00\x00\x75" /* HandshakeLength : 0x75 bytes after this one */ |
| 100 | "\x03\x00" /* Hello Version : 0x0300 = v3 */ |
| 101 | "\x00\x00\x00\x00" /* Unix GMT Time (s) : filled with <now> (@0x0B) */ |
| 102 | "HAPROXYSSLCHK\nHAPROXYSSLCHK\n" /* Random : must be exactly 28 bytes */ |
| 103 | "\x00" /* Session ID length : empty (no session ID) */ |
| 104 | "\x00\x4E" /* Cipher Suite Length : 78 bytes after this one */ |
| 105 | "\x00\x01" "\x00\x02" "\x00\x03" "\x00\x04" /* 39 most common ciphers : */ |
| 106 | "\x00\x05" "\x00\x06" "\x00\x07" "\x00\x08" /* 0x01...0x1B, 0x2F...0x3A */ |
| 107 | "\x00\x09" "\x00\x0A" "\x00\x0B" "\x00\x0C" /* This covers RSA/DH, */ |
| 108 | "\x00\x0D" "\x00\x0E" "\x00\x0F" "\x00\x10" /* various bit lengths, */ |
| 109 | "\x00\x11" "\x00\x12" "\x00\x13" "\x00\x14" /* SHA1/MD5, DES/3DES/AES... */ |
| 110 | "\x00\x15" "\x00\x16" "\x00\x17" "\x00\x18" |
| 111 | "\x00\x19" "\x00\x1A" "\x00\x1B" "\x00\x2F" |
| 112 | "\x00\x30" "\x00\x31" "\x00\x32" "\x00\x33" |
| 113 | "\x00\x34" "\x00\x35" "\x00\x36" "\x00\x37" |
| 114 | "\x00\x38" "\x00\x39" "\x00\x3A" |
| 115 | "\x01" /* Compression Length : 0x01 = 1 byte for types */ |
| 116 | "\x00" /* Compression Type : 0x00 = NULL compression */ |
| 117 | }; |
| 118 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 119 | /* various keyword modifiers */ |
| 120 | enum kw_mod { |
| 121 | KWM_STD = 0, /* normal */ |
| 122 | KWM_NO, /* "no" prefixed before the keyword */ |
| 123 | KWM_DEF, /* "default" prefixed before the keyword */ |
| 124 | }; |
| 125 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 126 | /* permit to store configuration section */ |
| 127 | struct cfg_section { |
| 128 | struct list list; |
| 129 | char *section_name; |
| 130 | int (*section_parser)(const char *, int, char **, int); |
| 131 | }; |
| 132 | |
| 133 | /* Used to chain configuration sections definitions. This list |
| 134 | * stores struct cfg_section |
| 135 | */ |
| 136 | struct list sections = LIST_HEAD_INIT(sections); |
| 137 | |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 138 | /* some of the most common options which are also the easiest to handle */ |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 139 | struct cfg_opt { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 140 | const char *name; |
| 141 | unsigned int val; |
| 142 | unsigned int cap; |
Willy Tarreau | 4fee4e9 | 2007-01-06 21:09:17 +0100 | [diff] [blame] | 143 | unsigned int checks; |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 144 | unsigned int mode; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 145 | }; |
| 146 | |
| 147 | /* proxy->options */ |
| 148 | static const struct cfg_opt cfg_opts[] = |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 149 | { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 150 | { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 }, |
| 151 | { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 }, |
| 152 | { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 153 | { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 }, |
| 154 | { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 }, |
| 155 | { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 156 | { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 157 | { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 0f228a0 | 2015-05-01 15:37:53 +0200 | [diff] [blame] | 158 | { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 9420b12 | 2013-12-15 18:58:25 +0100 | [diff] [blame] | 159 | { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 160 | { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 }, |
| 161 | { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 }, |
| 162 | { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 163 | { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 }, |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 164 | #ifdef TPROXY |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 165 | { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 }, |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 166 | #else |
| 167 | { "transparent", 0, 0, 0, 0 }, |
Willy Tarreau | 8f922fc | 2007-01-06 21:11:49 +0100 | [diff] [blame] | 168 | #endif |
| 169 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 170 | { NULL, 0, 0, 0, 0 } |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 171 | }; |
| 172 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 173 | /* proxy->options2 */ |
| 174 | static const struct cfg_opt cfg_opts2[] = |
| 175 | { |
| 176 | #ifdef CONFIG_HAP_LINUX_SPLICE |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 177 | { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 178 | { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 179 | { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 180 | #else |
| 181 | { "splice-request", 0, 0, 0, 0 }, |
| 182 | { "splice-response", 0, 0, 0, 0 }, |
| 183 | { "splice-auto", 0, 0, 0, 0 }, |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 184 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 185 | { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 186 | { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 187 | { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 }, |
| 188 | { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 }, |
| 189 | { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 }, |
| 190 | { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 }, |
| 191 | { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 }, |
| 192 | { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 }, |
| 193 | { "independant-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Jamie Gloudon | 801a0a3 | 2012-08-25 00:18:33 -0400 | [diff] [blame] | 194 | { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 195 | { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP }, |
Willy Tarreau | e52564c | 2010-04-27 22:19:14 +0200 | [diff] [blame] | 196 | { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 197 | { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP }, |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 198 | { NULL, 0, 0, 0 } |
| 199 | }; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 200 | |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 201 | static char *cursection = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 202 | static struct proxy defproxy; /* fake proxy used to assign default values on all instances */ |
| 203 | int cfg_maxpconn = DEFAULT_MAXCONN; /* # of simultaneous connections per proxy (-N) */ |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 204 | int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */ |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 205 | char *cfg_scope = NULL; /* the current scope during the configuration parsing */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 206 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 207 | /* List head of all known configuration keywords */ |
| 208 | static struct cfg_kw_list cfg_keywords = { |
| 209 | .list = LIST_HEAD_INIT(cfg_keywords.list) |
| 210 | }; |
| 211 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 212 | /* |
| 213 | * converts <str> to a list of listeners which are dynamically allocated. |
| 214 | * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where : |
| 215 | * - <addr> can be empty or "*" to indicate INADDR_ANY ; |
| 216 | * - <port> is a numerical port from 1 to 65535 ; |
| 217 | * - <end> indicates to use the range from <port> to <end> instead (inclusive). |
| 218 | * This can be repeated as many times as necessary, separated by a coma. |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 219 | * Function returns 1 for success or 0 if error. In case of errors, if <err> is |
| 220 | * not NULL, it must be a valid pointer to either NULL or a freeable area that |
| 221 | * will be replaced with an error message. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 222 | */ |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 223 | int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 224 | { |
| 225 | struct listener *l; |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 226 | char *next, *dupstr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 227 | int port, end; |
| 228 | |
| 229 | next = dupstr = strdup(str); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 230 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 231 | while (next && *next) { |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 232 | struct sockaddr_storage ss, *ss2; |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 233 | int fd = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 234 | |
| 235 | str = next; |
| 236 | /* 1) look for the end of the first address */ |
Krzysztof Piotr Oledzki | 52d522b | 2009-01-27 16:57:08 +0100 | [diff] [blame] | 237 | if ((next = strchr(str, ',')) != NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 238 | *next++ = 0; |
| 239 | } |
| 240 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 241 | ss2 = str2sa_range(str, NULL, &port, &end, err, |
Willy Tarreau | 72b8c1f | 2015-09-08 15:50:19 +0200 | [diff] [blame] | 242 | curproxy == global.stats_fe ? NULL : global.unix_bind.prefix, |
Thierry FOURNIER | 7fe3be7 | 2015-09-26 20:03:36 +0200 | [diff] [blame] | 243 | NULL, 1); |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 244 | if (!ss2) |
| 245 | goto fail; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 246 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 247 | if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 248 | if (!port && !end) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 249 | memprintf(err, "missing port number: '%s'\n", str); |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 250 | goto fail; |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 251 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 252 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 253 | if (!port || !end) { |
| 254 | memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str); |
| 255 | goto fail; |
| 256 | } |
| 257 | |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 258 | if (port < 1 || port > 65535) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 259 | memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str); |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 260 | goto fail; |
| 261 | } |
| 262 | |
| 263 | if (end < 1 || end > 65535) { |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 264 | memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str); |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 265 | goto fail; |
| 266 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 267 | } |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 268 | else if (ss2->ss_family == AF_UNSPEC) { |
| 269 | socklen_t addr_len; |
| 270 | |
| 271 | /* We want to attach to an already bound fd whose number |
| 272 | * is in the addr part of ss2 when cast to sockaddr_in. |
| 273 | * Note that by definition there is a single listener. |
| 274 | * We still have to determine the address family to |
| 275 | * register the correct protocol. |
| 276 | */ |
| 277 | fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr; |
| 278 | addr_len = sizeof(*ss2); |
| 279 | if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) { |
| 280 | memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno)); |
| 281 | goto fail; |
| 282 | } |
| 283 | |
| 284 | port = end = get_host_port(ss2); |
| 285 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 286 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 287 | /* OK the address looks correct */ |
Vincent Bernat | 6e61589 | 2016-05-18 16:17:44 +0200 | [diff] [blame] | 288 | memcpy(&ss, ss2, sizeof(ss)); |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 289 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 290 | for (; port <= end; port++) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 291 | l = calloc(1, sizeof(*l)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 292 | l->obj_type = OBJ_TYPE_LISTENER; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 293 | LIST_ADDQ(&curproxy->conf.listeners, &l->by_fe); |
| 294 | LIST_ADDQ(&bind_conf->listeners, &l->by_bind); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 295 | l->bind_conf = bind_conf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 296 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 297 | l->fd = fd; |
Vincent Bernat | 6e46ff1 | 2016-05-19 11:29:43 +0200 | [diff] [blame] | 298 | memcpy(&l->addr, &ss, sizeof(ss)); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 299 | l->state = LI_INIT; |
| 300 | |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 301 | if (ss.ss_family == AF_INET) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 302 | ((struct sockaddr_in *)(&l->addr))->sin_port = htons(port); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 303 | tcpv4_add_listener(l); |
| 304 | } |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 305 | else if (ss.ss_family == AF_INET6) { |
| 306 | ((struct sockaddr_in6 *)(&l->addr))->sin6_port = htons(port); |
| 307 | tcpv6_add_listener(l); |
| 308 | } |
| 309 | else { |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 310 | uxst_add_listener(l); |
| 311 | } |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 312 | |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 313 | jobs++; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 314 | listeners++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 315 | } /* end for(port) */ |
| 316 | } /* end while(next) */ |
| 317 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 318 | return 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 319 | fail: |
| 320 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 321 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 322 | } |
| 323 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 324 | /* |
Willy Tarreau | ece9b07 | 2016-12-21 22:41:44 +0100 | [diff] [blame] | 325 | * Report an error in <msg> when there are too many arguments. This version is |
| 326 | * intended to be used by keyword parsers so that the message will be included |
| 327 | * into the general error message. The index is the current keyword in args. |
| 328 | * Return 0 if the number of argument is correct, otherwise build a message and |
| 329 | * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The |
| 330 | * message may also be null, it will simply not be produced (useful to check only). |
| 331 | * <msg> and <err_code> are only affected on error. |
| 332 | */ |
| 333 | int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code) |
| 334 | { |
| 335 | int i; |
| 336 | |
| 337 | if (!*args[index + maxarg + 1]) |
| 338 | return 0; |
| 339 | |
| 340 | if (msg) { |
| 341 | *msg = NULL; |
| 342 | memprintf(msg, "%s", args[0]); |
| 343 | for (i = 1; i <= index; i++) |
| 344 | memprintf(msg, "%s %s", *msg, args[i]); |
| 345 | |
| 346 | memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]); |
| 347 | } |
| 348 | if (err_code) |
| 349 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 350 | |
| 351 | return 1; |
| 352 | } |
| 353 | |
| 354 | /* |
| 355 | * same as too_many_args_idx with a 0 index |
| 356 | */ |
| 357 | int too_many_args(int maxarg, char **args, char **msg, int *err_code) |
| 358 | { |
| 359 | return too_many_args_idx(maxarg, 0, args, msg, err_code); |
| 360 | } |
| 361 | |
| 362 | /* |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 363 | * Report a fatal Alert when there is too much arguments |
| 364 | * The index is the current keyword in args |
| 365 | * Return 0 if the number of argument is correct, otherwise emit an alert and return 1 |
| 366 | * Fill err_code with an ERR_ALERT and an ERR_FATAL |
| 367 | */ |
| 368 | int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code) |
| 369 | { |
| 370 | char *kw = NULL; |
| 371 | int i; |
| 372 | |
| 373 | if (!*args[index + maxarg + 1]) |
| 374 | return 0; |
| 375 | |
| 376 | memprintf(&kw, "%s", args[0]); |
| 377 | for (i = 1; i <= index; i++) { |
| 378 | memprintf(&kw, "%s %s", kw, args[i]); |
| 379 | } |
| 380 | |
| 381 | Alert("parsing [%s:%d] : '%s' cannot handle unexpected argument '%s'.\n", file, linenum, kw, args[index + maxarg + 1]); |
| 382 | free(kw); |
| 383 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 384 | return 1; |
| 385 | } |
| 386 | |
| 387 | /* |
| 388 | * same as alertif_too_many_args_idx with a 0 index |
| 389 | */ |
| 390 | int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code) |
| 391 | { |
| 392 | return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code); |
| 393 | } |
| 394 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 395 | /* Report a warning if a rule is placed after a 'tcp-request session' rule. |
| 396 | * Return 1 if the warning has been emitted, otherwise 0. |
| 397 | */ |
| 398 | int warnif_rule_after_tcp_sess(struct proxy *proxy, const char *file, int line, const char *arg) |
| 399 | { |
| 400 | if (!LIST_ISEMPTY(&proxy->tcp_req.l5_rules)) { |
| 401 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'tcp-request session' rule will still be processed before.\n", |
| 402 | file, line, arg); |
| 403 | return 1; |
| 404 | } |
| 405 | return 0; |
| 406 | } |
| 407 | |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 408 | /* Report a warning if a rule is placed after a 'tcp-request content' rule. |
| 409 | * Return 1 if the warning has been emitted, otherwise 0. |
| 410 | */ |
| 411 | int warnif_rule_after_tcp_cont(struct proxy *proxy, const char *file, int line, const char *arg) |
| 412 | { |
| 413 | if (!LIST_ISEMPTY(&proxy->tcp_req.inspect_rules)) { |
| 414 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'tcp-request content' rule will still be processed before.\n", |
| 415 | file, line, arg); |
| 416 | return 1; |
| 417 | } |
| 418 | return 0; |
| 419 | } |
| 420 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 421 | /* Report a warning if a rule is placed after a 'block' rule. |
| 422 | * Return 1 if the warning has been emitted, otherwise 0. |
| 423 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 424 | int warnif_rule_after_block(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 425 | { |
Willy Tarreau | 353bc9f | 2014-04-28 22:05:31 +0200 | [diff] [blame] | 426 | if (!LIST_ISEMPTY(&proxy->block_rules)) { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 427 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'block' rule will still be processed before.\n", |
| 428 | file, line, arg); |
| 429 | return 1; |
| 430 | } |
| 431 | return 0; |
| 432 | } |
| 433 | |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 434 | /* Report a warning if a rule is placed after an 'http_request' rule. |
| 435 | * Return 1 if the warning has been emitted, otherwise 0. |
| 436 | */ |
| 437 | int warnif_rule_after_http_req(struct proxy *proxy, const char *file, int line, const char *arg) |
| 438 | { |
| 439 | if (!LIST_ISEMPTY(&proxy->http_req_rules)) { |
| 440 | Warning("parsing [%s:%d] : a '%s' rule placed after an 'http-request' rule will still be processed before.\n", |
| 441 | file, line, arg); |
| 442 | return 1; |
| 443 | } |
| 444 | return 0; |
| 445 | } |
| 446 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 447 | /* Report a warning if a rule is placed after a reqrewrite rule. |
| 448 | * Return 1 if the warning has been emitted, otherwise 0. |
| 449 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 450 | int warnif_rule_after_reqxxx(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 451 | { |
| 452 | if (proxy->req_exp) { |
| 453 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'reqxxx' rule will still be processed before.\n", |
| 454 | file, line, arg); |
| 455 | return 1; |
| 456 | } |
| 457 | return 0; |
| 458 | } |
| 459 | |
| 460 | /* Report a warning if a rule is placed after a reqadd rule. |
| 461 | * Return 1 if the warning has been emitted, otherwise 0. |
| 462 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 463 | int warnif_rule_after_reqadd(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 464 | { |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 465 | if (!LIST_ISEMPTY(&proxy->req_add)) { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 466 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'reqadd' rule will still be processed before.\n", |
| 467 | file, line, arg); |
| 468 | return 1; |
| 469 | } |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | /* Report a warning if a rule is placed after a redirect rule. |
| 474 | * Return 1 if the warning has been emitted, otherwise 0. |
| 475 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 476 | int warnif_rule_after_redirect(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 477 | { |
| 478 | if (!LIST_ISEMPTY(&proxy->redirect_rules)) { |
| 479 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'redirect' rule will still be processed before.\n", |
| 480 | file, line, arg); |
| 481 | return 1; |
| 482 | } |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | /* Report a warning if a rule is placed after a 'use_backend' rule. |
| 487 | * Return 1 if the warning has been emitted, otherwise 0. |
| 488 | */ |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 489 | int warnif_rule_after_use_backend(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 490 | { |
| 491 | if (!LIST_ISEMPTY(&proxy->switching_rules)) { |
| 492 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'use_backend' rule will still be processed before.\n", |
| 493 | file, line, arg); |
| 494 | return 1; |
| 495 | } |
| 496 | return 0; |
| 497 | } |
| 498 | |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 499 | /* Report a warning if a rule is placed after a 'use-server' rule. |
| 500 | * Return 1 if the warning has been emitted, otherwise 0. |
| 501 | */ |
| 502 | int warnif_rule_after_use_server(struct proxy *proxy, const char *file, int line, const char *arg) |
| 503 | { |
| 504 | if (!LIST_ISEMPTY(&proxy->server_rules)) { |
| 505 | Warning("parsing [%s:%d] : a '%s' rule placed after a 'use-server' rule will still be processed before.\n", |
| 506 | file, line, arg); |
| 507 | return 1; |
| 508 | } |
| 509 | return 0; |
| 510 | } |
| 511 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 512 | /* report a warning if a redirect rule is dangerously placed */ |
| 513 | int warnif_misplaced_redirect(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 514 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 515 | return warnif_rule_after_use_backend(proxy, file, line, arg) || |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 516 | warnif_rule_after_use_server(proxy, file, line, arg); |
| 517 | } |
| 518 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 519 | /* report a warning if a reqadd rule is dangerously placed */ |
| 520 | int warnif_misplaced_reqadd(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 521 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 522 | return warnif_rule_after_redirect(proxy, file, line, arg) || |
| 523 | warnif_misplaced_redirect(proxy, file, line, arg); |
Willy Tarreau | 3986b9c | 2014-09-16 15:39:51 +0200 | [diff] [blame] | 524 | } |
| 525 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 526 | /* report a warning if a reqxxx rule is dangerously placed */ |
| 527 | int warnif_misplaced_reqxxx(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 528 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 529 | return warnif_rule_after_reqadd(proxy, file, line, arg) || |
| 530 | warnif_misplaced_reqadd(proxy, file, line, arg); |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | /* report a warning if an http-request rule is dangerously placed */ |
| 534 | int warnif_misplaced_http_req(struct proxy *proxy, const char *file, int line, const char *arg) |
| 535 | { |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 536 | return warnif_rule_after_reqxxx(proxy, file, line, arg) || |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 537 | warnif_misplaced_reqxxx(proxy, file, line, arg);; |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 538 | } |
| 539 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 540 | /* report a warning if a block rule is dangerously placed */ |
| 541 | int warnif_misplaced_block(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 542 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 543 | return warnif_rule_after_http_req(proxy, file, line, arg) || |
| 544 | warnif_misplaced_http_req(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 545 | } |
| 546 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 547 | /* report a warning if a "tcp request content" rule is dangerously placed */ |
| 548 | int warnif_misplaced_tcp_cont(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 549 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 550 | return warnif_rule_after_block(proxy, file, line, arg) || |
| 551 | warnif_misplaced_block(proxy, file, line, arg); |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 552 | } |
| 553 | |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 554 | /* report a warning if a "tcp request session" rule is dangerously placed */ |
| 555 | int warnif_misplaced_tcp_sess(struct proxy *proxy, const char *file, int line, const char *arg) |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 556 | { |
Willy Tarreau | d39ad44 | 2016-11-25 15:16:12 +0100 | [diff] [blame] | 557 | return warnif_rule_after_tcp_cont(proxy, file, line, arg) || |
| 558 | warnif_misplaced_tcp_cont(proxy, file, line, arg); |
| 559 | } |
| 560 | |
| 561 | /* report a warning if a "tcp request connection" rule is dangerously placed */ |
| 562 | int warnif_misplaced_tcp_conn(struct proxy *proxy, const char *file, int line, const char *arg) |
| 563 | { |
| 564 | return warnif_rule_after_tcp_sess(proxy, file, line, arg) || |
| 565 | warnif_misplaced_tcp_sess(proxy, file, line, arg); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 566 | } |
| 567 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 568 | /* Report it if a request ACL condition uses some keywords that are incompatible |
| 569 | * with the place where the ACL is used. It returns either 0 or ERR_WARN so that |
| 570 | * its result can be or'ed with err_code. Note that <cond> may be NULL and then |
| 571 | * will be ignored. |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 572 | */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 573 | static int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line) |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 574 | { |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 575 | const struct acl *acl; |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 576 | const char *kw; |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 577 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 578 | if (!cond) |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 579 | return 0; |
| 580 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 581 | acl = acl_cond_conflicts(cond, where); |
| 582 | if (acl) { |
| 583 | if (acl->name && *acl->name) |
| 584 | Warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n", |
| 585 | file, line, acl->name, sample_ckp_names(where)); |
| 586 | else |
| 587 | Warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 588 | file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 589 | return ERR_WARN; |
| 590 | } |
| 591 | if (!acl_cond_kw_conflicts(cond, where, &acl, &kw)) |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 592 | return 0; |
| 593 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 594 | if (acl->name && *acl->name) |
| 595 | Warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 596 | file, line, acl->name, kw, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 597 | else |
| 598 | Warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 599 | file, line, kw, sample_ckp_names(where)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 600 | return ERR_WARN; |
| 601 | } |
| 602 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 603 | /* |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 604 | * parse a line in a <global> section. Returns the error code, 0 if OK, or |
| 605 | * any combination of : |
| 606 | * - ERR_ABORT: must abort ASAP |
| 607 | * - ERR_FATAL: we can continue parsing but not start the service |
| 608 | * - ERR_WARN: a warning has been emitted |
| 609 | * - ERR_ALERT: an alert has been emitted |
| 610 | * Only the two first ones can stop processing, the two others are just |
| 611 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 612 | */ |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 613 | int cfg_parse_global(const char *file, int linenum, char **args, int kwm) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 614 | { |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 615 | int err_code = 0; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 616 | char *errmsg = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 617 | |
| 618 | if (!strcmp(args[0], "global")) { /* new section */ |
| 619 | /* no option, nothing special to do */ |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 620 | alertif_too_many_args(0, file, linenum, args, &err_code); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 621 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 622 | } |
| 623 | else if (!strcmp(args[0], "daemon")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 624 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 625 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 626 | global.mode |= MODE_DAEMON; |
| 627 | } |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 628 | else if (!strcmp(args[0], "master-worker")) { |
William Lallemand | 69f9b3b | 2017-06-01 17:38:54 +0200 | [diff] [blame] | 629 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 630 | goto out; |
William Lallemand | 69f9b3b | 2017-06-01 17:38:54 +0200 | [diff] [blame] | 631 | if (*args[1]) { |
| 632 | if (!strcmp(args[1], "exit-on-failure")) { |
| 633 | global.tune.options |= GTUNE_EXIT_ONFAILURE; |
| 634 | } else { |
| 635 | Alert("parsing [%s:%d] : '%s' only supports 'exit-on-failure' option.\n", file, linenum, args[0]); |
| 636 | err_code |= ERR_ALERT | ERR_FATAL; |
| 637 | goto out; |
| 638 | } |
| 639 | } |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 640 | global.mode |= MODE_MWORKER; |
| 641 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 642 | else if (!strcmp(args[0], "debug")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 643 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 644 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 645 | global.mode |= MODE_DEBUG; |
| 646 | } |
| 647 | else if (!strcmp(args[0], "noepoll")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 648 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 649 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 650 | global.tune.options &= ~GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 651 | } |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 652 | else if (!strcmp(args[0], "nokqueue")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 653 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 654 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 655 | global.tune.options &= ~GTUNE_USE_KQUEUE; |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 656 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 657 | else if (!strcmp(args[0], "nopoll")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 658 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 659 | goto out; |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 660 | global.tune.options &= ~GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 661 | } |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 662 | else if (!strcmp(args[0], "nosplice")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 663 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 664 | goto out; |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 665 | global.tune.options &= ~GTUNE_USE_SPLICE; |
| 666 | } |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 667 | else if (!strcmp(args[0], "nogetaddrinfo")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 668 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 669 | goto out; |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 670 | global.tune.options &= ~GTUNE_USE_GAI; |
| 671 | } |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 672 | else if (!strcmp(args[0], "noreuseport")) { |
| 673 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 674 | goto out; |
| 675 | global.tune.options &= ~GTUNE_USE_REUSEPORT; |
| 676 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 677 | else if (!strcmp(args[0], "quiet")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 678 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 679 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 680 | global.mode |= MODE_QUIET; |
| 681 | } |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 682 | else if (!strcmp(args[0], "tune.maxpollevents")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 683 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 684 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 685 | if (global.tune.maxpollevents != 0) { |
| 686 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 687 | err_code |= ERR_ALERT; |
| 688 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 689 | } |
| 690 | if (*(args[1]) == 0) { |
| 691 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 692 | err_code |= ERR_ALERT | ERR_FATAL; |
| 693 | goto out; |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 694 | } |
| 695 | global.tune.maxpollevents = atol(args[1]); |
| 696 | } |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 697 | else if (!strcmp(args[0], "tune.maxaccept")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 698 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 699 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 700 | if (global.tune.maxaccept != 0) { |
| 701 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 702 | err_code |= ERR_ALERT; |
| 703 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 704 | } |
| 705 | if (*(args[1]) == 0) { |
| 706 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 707 | err_code |= ERR_ALERT | ERR_FATAL; |
| 708 | goto out; |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 709 | } |
| 710 | global.tune.maxaccept = atol(args[1]); |
| 711 | } |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 712 | else if (!strcmp(args[0], "tune.chksize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 713 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 714 | goto out; |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 715 | if (*(args[1]) == 0) { |
| 716 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 717 | err_code |= ERR_ALERT | ERR_FATAL; |
| 718 | goto out; |
| 719 | } |
| 720 | global.tune.chksize = atol(args[1]); |
| 721 | } |
Willy Tarreau | b22fc30 | 2015-12-14 12:04:35 +0100 | [diff] [blame] | 722 | else if (!strcmp(args[0], "tune.recv_enough")) { |
| 723 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 724 | goto out; |
| 725 | if (*(args[1]) == 0) { |
| 726 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 727 | err_code |= ERR_ALERT | ERR_FATAL; |
| 728 | goto out; |
| 729 | } |
| 730 | global.tune.recv_enough = atol(args[1]); |
| 731 | } |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 732 | else if (!strcmp(args[0], "tune.buffers.limit")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 733 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 734 | goto out; |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 735 | if (*(args[1]) == 0) { |
| 736 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 737 | err_code |= ERR_ALERT | ERR_FATAL; |
| 738 | goto out; |
| 739 | } |
| 740 | global.tune.buf_limit = atol(args[1]); |
| 741 | if (global.tune.buf_limit) { |
| 742 | if (global.tune.buf_limit < 3) |
| 743 | global.tune.buf_limit = 3; |
| 744 | if (global.tune.buf_limit <= global.tune.reserved_bufs) |
| 745 | global.tune.buf_limit = global.tune.reserved_bufs + 1; |
| 746 | } |
| 747 | } |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 748 | else if (!strcmp(args[0], "tune.buffers.reserve")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 749 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 750 | goto out; |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 751 | if (*(args[1]) == 0) { |
| 752 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 753 | err_code |= ERR_ALERT | ERR_FATAL; |
| 754 | goto out; |
| 755 | } |
| 756 | global.tune.reserved_bufs = atol(args[1]); |
| 757 | if (global.tune.reserved_bufs < 2) |
| 758 | global.tune.reserved_bufs = 2; |
Willy Tarreau | 33cb065 | 2014-12-23 22:52:37 +0100 | [diff] [blame] | 759 | if (global.tune.buf_limit && global.tune.buf_limit <= global.tune.reserved_bufs) |
| 760 | global.tune.buf_limit = global.tune.reserved_bufs + 1; |
Willy Tarreau | 1058ae7 | 2014-12-23 22:40:40 +0100 | [diff] [blame] | 761 | } |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 762 | else if (!strcmp(args[0], "tune.bufsize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 763 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 764 | goto out; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 765 | if (*(args[1]) == 0) { |
| 766 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 767 | err_code |= ERR_ALERT | ERR_FATAL; |
| 768 | goto out; |
| 769 | } |
| 770 | global.tune.bufsize = atol(args[1]); |
Willy Tarreau | 9b69454 | 2015-09-28 13:49:53 +0200 | [diff] [blame] | 771 | if (global.tune.bufsize <= 0) { |
| 772 | Alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", file, linenum, args[0]); |
| 773 | err_code |= ERR_ALERT | ERR_FATAL; |
| 774 | goto out; |
| 775 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 776 | chunk_init(&trash, realloc(trash.str, global.tune.bufsize), global.tune.bufsize); |
Willy Tarreau | 2819e99 | 2013-12-13 14:41:10 +0100 | [diff] [blame] | 777 | alloc_trash_buffers(global.tune.bufsize); |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 778 | } |
| 779 | else if (!strcmp(args[0], "tune.maxrewrite")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 780 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 781 | goto out; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 782 | if (*(args[1]) == 0) { |
| 783 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 784 | err_code |= ERR_ALERT | ERR_FATAL; |
| 785 | goto out; |
| 786 | } |
| 787 | global.tune.maxrewrite = atol(args[1]); |
Willy Tarreau | 2709784 | 2015-09-28 13:53:23 +0200 | [diff] [blame] | 788 | if (global.tune.maxrewrite < 0) { |
| 789 | Alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", file, linenum, args[0]); |
| 790 | err_code |= ERR_ALERT | ERR_FATAL; |
| 791 | goto out; |
| 792 | } |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 793 | } |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 794 | else if (!strcmp(args[0], "tune.idletimer")) { |
| 795 | unsigned int idle; |
| 796 | const char *res; |
| 797 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 798 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 799 | goto out; |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 800 | if (*(args[1]) == 0) { |
| 801 | Alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]); |
| 802 | err_code |= ERR_ALERT | ERR_FATAL; |
| 803 | goto out; |
| 804 | } |
| 805 | |
| 806 | res = parse_time_err(args[1], &idle, TIME_UNIT_MS); |
| 807 | if (res) { |
| 808 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 809 | file, linenum, *res, args[0]); |
| 810 | err_code |= ERR_ALERT | ERR_FATAL; |
| 811 | goto out; |
| 812 | } |
| 813 | |
| 814 | if (idle > 65535) { |
| 815 | Alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]); |
| 816 | err_code |= ERR_ALERT | ERR_FATAL; |
| 817 | goto out; |
| 818 | } |
| 819 | global.tune.idle_timer = idle; |
| 820 | } |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 821 | else if (!strcmp(args[0], "tune.rcvbuf.client")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 822 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 823 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 824 | if (global.tune.client_rcvbuf != 0) { |
| 825 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 826 | err_code |= ERR_ALERT; |
| 827 | goto out; |
| 828 | } |
| 829 | if (*(args[1]) == 0) { |
| 830 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 831 | err_code |= ERR_ALERT | ERR_FATAL; |
| 832 | goto out; |
| 833 | } |
| 834 | global.tune.client_rcvbuf = atol(args[1]); |
| 835 | } |
| 836 | else if (!strcmp(args[0], "tune.rcvbuf.server")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 837 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 838 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 839 | if (global.tune.server_rcvbuf != 0) { |
| 840 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 841 | err_code |= ERR_ALERT; |
| 842 | goto out; |
| 843 | } |
| 844 | if (*(args[1]) == 0) { |
| 845 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 846 | err_code |= ERR_ALERT | ERR_FATAL; |
| 847 | goto out; |
| 848 | } |
| 849 | global.tune.server_rcvbuf = atol(args[1]); |
| 850 | } |
| 851 | else if (!strcmp(args[0], "tune.sndbuf.client")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 852 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 853 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 854 | if (global.tune.client_sndbuf != 0) { |
| 855 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 856 | err_code |= ERR_ALERT; |
| 857 | goto out; |
| 858 | } |
| 859 | if (*(args[1]) == 0) { |
| 860 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 861 | err_code |= ERR_ALERT | ERR_FATAL; |
| 862 | goto out; |
| 863 | } |
| 864 | global.tune.client_sndbuf = atol(args[1]); |
| 865 | } |
| 866 | else if (!strcmp(args[0], "tune.sndbuf.server")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 867 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 868 | goto out; |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 869 | if (global.tune.server_sndbuf != 0) { |
| 870 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 871 | err_code |= ERR_ALERT; |
| 872 | goto out; |
| 873 | } |
| 874 | if (*(args[1]) == 0) { |
| 875 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 876 | err_code |= ERR_ALERT | ERR_FATAL; |
| 877 | goto out; |
| 878 | } |
| 879 | global.tune.server_sndbuf = atol(args[1]); |
| 880 | } |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 881 | else if (!strcmp(args[0], "tune.pipesize")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 882 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 883 | goto out; |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 884 | if (*(args[1]) == 0) { |
| 885 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 886 | err_code |= ERR_ALERT | ERR_FATAL; |
| 887 | goto out; |
| 888 | } |
| 889 | global.tune.pipesize = atol(args[1]); |
| 890 | } |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 891 | else if (!strcmp(args[0], "tune.http.cookielen")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 892 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 893 | goto out; |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 894 | if (*(args[1]) == 0) { |
| 895 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 896 | err_code |= ERR_ALERT | ERR_FATAL; |
| 897 | goto out; |
| 898 | } |
| 899 | global.tune.cookie_len = atol(args[1]) + 1; |
| 900 | } |
Stéphane Cottin | 23e9e93 | 2017-05-18 08:58:41 +0200 | [diff] [blame] | 901 | else if (!strcmp(args[0], "tune.http.logurilen")) { |
| 902 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 903 | goto out; |
| 904 | if (*(args[1]) == 0) { |
| 905 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 906 | err_code |= ERR_ALERT | ERR_FATAL; |
| 907 | goto out; |
| 908 | } |
| 909 | global.tune.requri_len = atol(args[1]) + 1; |
| 910 | } |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 911 | else if (!strcmp(args[0], "tune.http.maxhdr")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 912 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 913 | goto out; |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 914 | if (*(args[1]) == 0) { |
| 915 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 916 | err_code |= ERR_ALERT | ERR_FATAL; |
| 917 | goto out; |
| 918 | } |
Christopher Faulet | 50174f3 | 2017-06-21 16:31:35 +0200 | [diff] [blame] | 919 | global.tune.max_http_hdr = atoi(args[1]); |
| 920 | if (global.tune.max_http_hdr < 1 || global.tune.max_http_hdr > 32767) { |
| 921 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 32767\n", |
| 922 | file, linenum, args[0]); |
| 923 | err_code |= ERR_ALERT | ERR_FATAL; |
| 924 | goto out; |
| 925 | } |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 926 | } |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 927 | else if (!strcmp(args[0], "tune.comp.maxlevel")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 928 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 929 | goto out; |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 930 | if (*args[1]) { |
| 931 | global.tune.comp_maxlevel = atoi(args[1]); |
| 932 | if (global.tune.comp_maxlevel < 1 || global.tune.comp_maxlevel > 9) { |
| 933 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 934 | file, linenum, args[0]); |
| 935 | err_code |= ERR_ALERT | ERR_FATAL; |
| 936 | goto out; |
| 937 | } |
| 938 | } else { |
| 939 | Alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n", |
| 940 | file, linenum, args[0]); |
| 941 | err_code |= ERR_ALERT | ERR_FATAL; |
| 942 | goto out; |
| 943 | } |
| 944 | } |
Willy Tarreau | f3045d2 | 2015-04-29 16:24:50 +0200 | [diff] [blame] | 945 | else if (!strcmp(args[0], "tune.pattern.cache-size")) { |
| 946 | if (*args[1]) { |
| 947 | global.tune.pattern_cache = atoi(args[1]); |
| 948 | if (global.tune.pattern_cache < 0) { |
| 949 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 950 | file, linenum, args[0]); |
| 951 | err_code |= ERR_ALERT | ERR_FATAL; |
| 952 | goto out; |
| 953 | } |
| 954 | } else { |
| 955 | Alert("parsing [%s:%d] : '%s' expects a positive numeric value\n", |
| 956 | file, linenum, args[0]); |
| 957 | err_code |= ERR_ALERT | ERR_FATAL; |
| 958 | goto out; |
| 959 | } |
| 960 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 961 | else if (!strcmp(args[0], "uid")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 962 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 963 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 964 | if (global.uid != 0) { |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 965 | Alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 966 | err_code |= ERR_ALERT; |
| 967 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 968 | } |
| 969 | if (*(args[1]) == 0) { |
| 970 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 971 | err_code |= ERR_ALERT | ERR_FATAL; |
| 972 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 973 | } |
Baptiste Assmann | 79fee6a | 2016-03-11 17:10:04 +0100 | [diff] [blame] | 974 | if (strl2irc(args[1], strlen(args[1]), &global.uid) != 0) { |
| 975 | Warning("parsing [%s:%d] : uid: string '%s' is not a number.\n | You might want to use the 'user' parameter to use a system user name.\n", file, linenum, args[1]); |
| 976 | err_code |= ERR_WARN; |
| 977 | goto out; |
| 978 | } |
| 979 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 980 | } |
| 981 | else if (!strcmp(args[0], "gid")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 982 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 983 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 984 | if (global.gid != 0) { |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 985 | Alert("parsing [%s:%d] : group/gid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 986 | err_code |= ERR_ALERT; |
| 987 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 988 | } |
| 989 | if (*(args[1]) == 0) { |
| 990 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 991 | err_code |= ERR_ALERT | ERR_FATAL; |
| 992 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 993 | } |
Baptiste Assmann | 776e518 | 2016-03-11 17:21:15 +0100 | [diff] [blame] | 994 | if (strl2irc(args[1], strlen(args[1]), &global.gid) != 0) { |
| 995 | Warning("parsing [%s:%d] : gid: string '%s' is not a number.\n | You might want to use the 'group' parameter to use a system group name.\n", file, linenum, args[1]); |
| 996 | err_code |= ERR_WARN; |
| 997 | goto out; |
| 998 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 999 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1000 | else if (!strcmp(args[0], "external-check")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1001 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 1002 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1003 | global.external_check = 1; |
| 1004 | } |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1005 | /* user/group name handling */ |
| 1006 | else if (!strcmp(args[0], "user")) { |
| 1007 | struct passwd *ha_user; |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1008 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1009 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1010 | if (global.uid != 0) { |
| 1011 | Alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1012 | err_code |= ERR_ALERT; |
| 1013 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1014 | } |
| 1015 | errno = 0; |
| 1016 | ha_user = getpwnam(args[1]); |
| 1017 | if (ha_user != NULL) { |
| 1018 | global.uid = (int)ha_user->pw_uid; |
| 1019 | } |
| 1020 | else { |
| 1021 | Alert("parsing [%s:%d] : cannot find user id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno)); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1022 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1023 | } |
| 1024 | } |
| 1025 | else if (!strcmp(args[0], "group")) { |
| 1026 | struct group *ha_group; |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1027 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1028 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1029 | if (global.gid != 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 1030 | Alert("parsing [%s:%d] : gid/group was already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1031 | err_code |= ERR_ALERT; |
| 1032 | goto out; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1033 | } |
| 1034 | errno = 0; |
| 1035 | ha_group = getgrnam(args[1]); |
| 1036 | if (ha_group != NULL) { |
| 1037 | global.gid = (int)ha_group->gr_gid; |
| 1038 | } |
| 1039 | else { |
| 1040 | Alert("parsing [%s:%d] : cannot find group id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno)); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1041 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | /* end of user/group name handling*/ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1045 | else if (!strcmp(args[0], "nbproc")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1046 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1047 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1048 | if (*(args[1]) == 0) { |
| 1049 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1050 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1051 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1052 | } |
| 1053 | global.nbproc = atol(args[1]); |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1054 | if (global.nbproc < 1 || global.nbproc > LONGBITS) { |
| 1055 | Alert("parsing [%s:%d] : '%s' must be between 1 and %d (was %d).\n", |
| 1056 | file, linenum, args[0], LONGBITS, global.nbproc); |
| 1057 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1058 | goto out; |
| 1059 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1060 | } |
| 1061 | else if (!strcmp(args[0], "maxconn")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1062 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1063 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1064 | if (global.maxconn != 0) { |
| 1065 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1066 | err_code |= ERR_ALERT; |
| 1067 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1068 | } |
| 1069 | if (*(args[1]) == 0) { |
| 1070 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1071 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1072 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1073 | } |
| 1074 | global.maxconn = atol(args[1]); |
| 1075 | #ifdef SYSTEM_MAXCONN |
| 1076 | if (global.maxconn > DEFAULT_MAXCONN && cfg_maxconn <= DEFAULT_MAXCONN) { |
| 1077 | Alert("parsing [%s:%d] : maxconn value %d too high for this system.\nLimiting to %d. Please use '-n' to force the value.\n", file, linenum, global.maxconn, DEFAULT_MAXCONN); |
| 1078 | global.maxconn = DEFAULT_MAXCONN; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1079 | err_code |= ERR_ALERT; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1080 | } |
| 1081 | #endif /* SYSTEM_MAXCONN */ |
| 1082 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1083 | else if (!strcmp(args[0], "ssl-server-verify")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1084 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1085 | goto out; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1086 | if (*(args[1]) == 0) { |
| 1087 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1088 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1089 | goto out; |
| 1090 | } |
| 1091 | if (strcmp(args[1],"none") == 0) |
| 1092 | global.ssl_server_verify = SSL_SERVER_VERIFY_NONE; |
| 1093 | else if (strcmp(args[1],"required") == 0) |
| 1094 | global.ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED; |
| 1095 | else { |
| 1096 | Alert("parsing [%s:%d] : '%s' expects 'none' or 'required' as argument.\n", file, linenum, args[0]); |
| 1097 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1098 | goto out; |
| 1099 | } |
| 1100 | } |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 1101 | else if (!strcmp(args[0], "maxconnrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1102 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1103 | goto out; |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 1104 | if (global.cps_lim != 0) { |
| 1105 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1106 | err_code |= ERR_ALERT; |
| 1107 | goto out; |
| 1108 | } |
| 1109 | if (*(args[1]) == 0) { |
| 1110 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1111 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1112 | goto out; |
| 1113 | } |
| 1114 | global.cps_lim = atol(args[1]); |
| 1115 | } |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1116 | else if (!strcmp(args[0], "maxsessrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1117 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1118 | goto out; |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1119 | if (global.sps_lim != 0) { |
| 1120 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1121 | err_code |= ERR_ALERT; |
| 1122 | goto out; |
| 1123 | } |
| 1124 | if (*(args[1]) == 0) { |
| 1125 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1126 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1127 | goto out; |
| 1128 | } |
| 1129 | global.sps_lim = atol(args[1]); |
| 1130 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1131 | else if (!strcmp(args[0], "maxsslrate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1132 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1133 | goto out; |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1134 | if (global.ssl_lim != 0) { |
| 1135 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1136 | err_code |= ERR_ALERT; |
| 1137 | goto out; |
| 1138 | } |
| 1139 | if (*(args[1]) == 0) { |
| 1140 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1141 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1142 | goto out; |
| 1143 | } |
| 1144 | global.ssl_lim = atol(args[1]); |
| 1145 | } |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 1146 | else if (!strcmp(args[0], "maxcomprate")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1147 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1148 | goto out; |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 1149 | if (*(args[1]) == 0) { |
| 1150 | Alert("parsing [%s:%d] : '%s' expects an integer argument in kb/s.\n", file, linenum, args[0]); |
| 1151 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1152 | goto out; |
| 1153 | } |
| 1154 | global.comp_rate_lim = atoi(args[1]) * 1024; |
| 1155 | } |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1156 | else if (!strcmp(args[0], "maxpipes")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1157 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1158 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1159 | if (global.maxpipes != 0) { |
| 1160 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1161 | err_code |= ERR_ALERT; |
| 1162 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1163 | } |
| 1164 | if (*(args[1]) == 0) { |
| 1165 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1166 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1167 | goto out; |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 1168 | } |
| 1169 | global.maxpipes = atol(args[1]); |
| 1170 | } |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1171 | else if (!strcmp(args[0], "maxzlibmem")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1172 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1173 | goto out; |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1174 | if (*(args[1]) == 0) { |
| 1175 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 1176 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1177 | goto out; |
| 1178 | } |
William Lallemand | e3a7d99 | 2012-11-20 11:25:20 +0100 | [diff] [blame] | 1179 | global.maxzlibmem = atol(args[1]) * 1024L * 1024L; |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 1180 | } |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1181 | else if (!strcmp(args[0], "maxcompcpuusage")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1182 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1183 | goto out; |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1184 | if (*(args[1]) == 0) { |
| 1185 | Alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]); |
| 1186 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1187 | goto out; |
| 1188 | } |
| 1189 | compress_min_idle = 100 - atoi(args[1]); |
Willy Tarreau | cb2699a | 2013-01-24 16:25:38 +0100 | [diff] [blame] | 1190 | if (compress_min_idle > 100) { |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1191 | Alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]); |
| 1192 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1193 | goto out; |
| 1194 | } |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1195 | } |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 1196 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1197 | else if (!strcmp(args[0], "ulimit-n")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1198 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1199 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1200 | if (global.rlimit_nofile != 0) { |
| 1201 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1202 | err_code |= ERR_ALERT; |
| 1203 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1204 | } |
| 1205 | if (*(args[1]) == 0) { |
| 1206 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1207 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1208 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1209 | } |
| 1210 | global.rlimit_nofile = atol(args[1]); |
| 1211 | } |
| 1212 | else if (!strcmp(args[0], "chroot")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1213 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1214 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1215 | if (global.chroot != NULL) { |
| 1216 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1217 | err_code |= ERR_ALERT; |
| 1218 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1219 | } |
| 1220 | if (*(args[1]) == 0) { |
| 1221 | Alert("parsing [%s:%d] : '%s' expects a directory as an argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1222 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1223 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1224 | } |
| 1225 | global.chroot = strdup(args[1]); |
| 1226 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1227 | else if (!strcmp(args[0], "description")) { |
| 1228 | int i, len=0; |
| 1229 | char *d; |
| 1230 | |
| 1231 | if (!*args[1]) { |
| 1232 | Alert("parsing [%s:%d]: '%s' expects a string argument.\n", |
| 1233 | file, linenum, args[0]); |
| 1234 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1235 | goto out; |
| 1236 | } |
| 1237 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 1238 | for (i = 1; *args[i]; i++) |
| 1239 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1240 | |
| 1241 | if (global.desc) |
| 1242 | free(global.desc); |
| 1243 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1244 | global.desc = d = calloc(1, len); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1245 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 1246 | d += snprintf(d, global.desc + len - d, "%s", args[1]); |
| 1247 | for (i = 2; *args[i]; i++) |
| 1248 | d += snprintf(d, global.desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1249 | } |
| 1250 | else if (!strcmp(args[0], "node")) { |
| 1251 | int i; |
| 1252 | char c; |
| 1253 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1254 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1255 | goto out; |
| 1256 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1257 | for (i=0; args[1][i]; i++) { |
| 1258 | c = args[1][i]; |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 1259 | if (!isupper((unsigned char)c) && !islower((unsigned char)c) && |
| 1260 | !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.') |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1261 | break; |
| 1262 | } |
| 1263 | |
| 1264 | if (!i || args[1][i]) { |
| 1265 | Alert("parsing [%s:%d]: '%s' requires valid node name - non-empty string" |
| 1266 | " with digits(0-9), letters(A-Z, a-z), dot(.), hyphen(-) or underscode(_).\n", |
| 1267 | file, linenum, args[0]); |
| 1268 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1269 | goto out; |
| 1270 | } |
| 1271 | |
| 1272 | if (global.node) |
| 1273 | free(global.node); |
| 1274 | |
| 1275 | global.node = strdup(args[1]); |
| 1276 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1277 | else if (!strcmp(args[0], "pidfile")) { |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1278 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1279 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1280 | if (global.pidfile != NULL) { |
| 1281 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1282 | err_code |= ERR_ALERT; |
| 1283 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1284 | } |
| 1285 | if (*(args[1]) == 0) { |
| 1286 | Alert("parsing [%s:%d] : '%s' expects a file name as an argument.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1287 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1288 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1289 | } |
| 1290 | global.pidfile = strdup(args[1]); |
| 1291 | } |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 1292 | else if (!strcmp(args[0], "unix-bind")) { |
| 1293 | int cur_arg = 1; |
| 1294 | while (*(args[cur_arg])) { |
| 1295 | if (!strcmp(args[cur_arg], "prefix")) { |
| 1296 | if (global.unix_bind.prefix != NULL) { |
| 1297 | Alert("parsing [%s:%d] : unix-bind '%s' already specified. Continuing.\n", file, linenum, args[cur_arg]); |
| 1298 | err_code |= ERR_ALERT; |
| 1299 | cur_arg += 2; |
| 1300 | continue; |
| 1301 | } |
| 1302 | |
| 1303 | if (*(args[cur_arg+1]) == 0) { |
| 1304 | Alert("parsing [%s:%d] : unix_bind '%s' expects a path as an argument.\n", file, linenum, args[cur_arg]); |
| 1305 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1306 | goto out; |
| 1307 | } |
| 1308 | global.unix_bind.prefix = strdup(args[cur_arg+1]); |
| 1309 | cur_arg += 2; |
| 1310 | continue; |
| 1311 | } |
| 1312 | |
| 1313 | if (!strcmp(args[cur_arg], "mode")) { |
| 1314 | |
| 1315 | global.unix_bind.ux.mode = strtol(args[cur_arg + 1], NULL, 8); |
| 1316 | cur_arg += 2; |
| 1317 | continue; |
| 1318 | } |
| 1319 | |
| 1320 | if (!strcmp(args[cur_arg], "uid")) { |
| 1321 | |
| 1322 | global.unix_bind.ux.uid = atol(args[cur_arg + 1 ]); |
| 1323 | cur_arg += 2; |
| 1324 | continue; |
| 1325 | } |
| 1326 | |
| 1327 | if (!strcmp(args[cur_arg], "gid")) { |
| 1328 | |
| 1329 | global.unix_bind.ux.gid = atol(args[cur_arg + 1 ]); |
| 1330 | cur_arg += 2; |
| 1331 | continue; |
| 1332 | } |
| 1333 | |
| 1334 | if (!strcmp(args[cur_arg], "user")) { |
| 1335 | struct passwd *user; |
| 1336 | |
| 1337 | user = getpwnam(args[cur_arg + 1]); |
| 1338 | if (!user) { |
| 1339 | Alert("parsing [%s:%d] : '%s' : '%s' unknown user.\n", |
| 1340 | file, linenum, args[0], args[cur_arg + 1 ]); |
| 1341 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1342 | goto out; |
| 1343 | } |
| 1344 | |
| 1345 | global.unix_bind.ux.uid = user->pw_uid; |
| 1346 | cur_arg += 2; |
| 1347 | continue; |
| 1348 | } |
| 1349 | |
| 1350 | if (!strcmp(args[cur_arg], "group")) { |
| 1351 | struct group *group; |
| 1352 | |
| 1353 | group = getgrnam(args[cur_arg + 1]); |
| 1354 | if (!group) { |
| 1355 | Alert("parsing [%s:%d] : '%s' : '%s' unknown group.\n", |
| 1356 | file, linenum, args[0], args[cur_arg + 1 ]); |
| 1357 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1358 | goto out; |
| 1359 | } |
| 1360 | |
| 1361 | global.unix_bind.ux.gid = group->gr_gid; |
| 1362 | cur_arg += 2; |
| 1363 | continue; |
| 1364 | } |
| 1365 | |
Willy Tarreau | b48f958 | 2011-09-05 01:17:06 +0200 | [diff] [blame] | 1366 | Alert("parsing [%s:%d] : '%s' only supports the 'prefix', 'mode', 'uid', 'gid', 'user' and 'group' options.\n", |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 1367 | file, linenum, args[0]); |
| 1368 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1369 | goto out; |
| 1370 | } |
| 1371 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1372 | else if (!strcmp(args[0], "log") && kwm == KWM_NO) { /* no log */ |
| 1373 | /* delete previous herited or defined syslog servers */ |
| 1374 | struct logsrv *back; |
| 1375 | struct logsrv *tmp; |
| 1376 | |
| 1377 | if (*(args[1]) != 0) { |
| 1378 | Alert("parsing [%s:%d]:%s : 'no log' does not expect arguments.\n", file, linenum, args[1]); |
| 1379 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1380 | goto out; |
| 1381 | } |
| 1382 | |
| 1383 | list_for_each_entry_safe(tmp, back, &global.logsrvs, list) { |
| 1384 | LIST_DEL(&tmp->list); |
| 1385 | free(tmp); |
| 1386 | } |
| 1387 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1388 | else if (!strcmp(args[0], "log")) { /* syslog server address */ |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1389 | struct sockaddr_storage *sk; |
| 1390 | int port1, port2; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1391 | struct logsrv *logsrv; |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1392 | int arg = 0; |
| 1393 | int len = 0; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1394 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1395 | if (alertif_too_many_args(8, file, linenum, args, &err_code)) /* does not strictly check optional arguments */ |
| 1396 | goto out; |
| 1397 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1398 | if (*(args[1]) == 0 || *(args[2]) == 0) { |
| 1399 | Alert("parsing [%s:%d] : '%s' expects <address> and <facility> as arguments.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1400 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1401 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1402 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1403 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1404 | logsrv = calloc(1, sizeof(*logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1405 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1406 | /* just after the address, a length may be specified */ |
| 1407 | if (strcmp(args[arg+2], "len") == 0) { |
| 1408 | len = atoi(args[arg+3]); |
| 1409 | if (len < 80 || len > 65535) { |
| 1410 | Alert("parsing [%s:%d] : invalid log length '%s', must be between 80 and 65535.\n", |
| 1411 | file, linenum, args[arg+3]); |
| 1412 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1413 | goto out; |
| 1414 | } |
| 1415 | logsrv->maxlen = len; |
| 1416 | |
| 1417 | /* skip these two args */ |
| 1418 | arg += 2; |
| 1419 | } |
| 1420 | else |
| 1421 | logsrv->maxlen = MAX_SYSLOG_LEN; |
| 1422 | |
| 1423 | if (logsrv->maxlen > global.max_syslog_len) { |
| 1424 | global.max_syslog_len = logsrv->maxlen; |
Hubert Verstraete | 831962e | 2016-06-28 22:44:26 +0200 | [diff] [blame] | 1425 | logheader = my_realloc2(logheader, global.max_syslog_len + 1); |
| 1426 | logheader_rfc5424 = my_realloc2(logheader_rfc5424, global.max_syslog_len + 1); |
| 1427 | logline = my_realloc2(logline, global.max_syslog_len + 1); |
| 1428 | logline_rfc5424 = my_realloc2(logline_rfc5424, global.max_syslog_len + 1); |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1429 | } |
| 1430 | |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 1431 | /* after the length, a format may be specified */ |
| 1432 | if (strcmp(args[arg+2], "format") == 0) { |
| 1433 | logsrv->format = get_log_format(args[arg+3]); |
| 1434 | if (logsrv->format < 0) { |
| 1435 | Alert("parsing [%s:%d] : unknown log format '%s'\n", file, linenum, args[arg+3]); |
| 1436 | err_code |= ERR_ALERT | ERR_FATAL; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 1437 | free(logsrv); |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 1438 | goto out; |
| 1439 | } |
| 1440 | |
| 1441 | /* skip these two args */ |
| 1442 | arg += 2; |
| 1443 | } |
| 1444 | |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 1445 | if (alertif_too_many_args_idx(3, arg + 1, file, linenum, args, &err_code)) { |
| 1446 | free(logsrv); |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1447 | goto out; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 1448 | } |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1449 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1450 | logsrv->facility = get_log_facility(args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1451 | if (logsrv->facility < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1452 | Alert("parsing [%s:%d] : unknown log facility '%s'\n", file, linenum, args[arg+2]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1453 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1454 | logsrv->facility = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1455 | } |
| 1456 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1457 | logsrv->level = 7; /* max syslog level = debug */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1458 | if (*(args[arg+3])) { |
| 1459 | logsrv->level = get_log_level(args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1460 | if (logsrv->level < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1461 | Alert("parsing [%s:%d] : unknown optional log level '%s'\n", file, linenum, args[arg+3]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1462 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1463 | logsrv->level = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1464 | } |
| 1465 | } |
| 1466 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1467 | logsrv->minlvl = 0; /* limit syslog level to this level (emerg) */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1468 | if (*(args[arg+4])) { |
| 1469 | logsrv->minlvl = get_log_level(args[arg+4]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1470 | if (logsrv->minlvl < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 1471 | Alert("parsing [%s:%d] : unknown optional minimum log level '%s'\n", file, linenum, args[arg+4]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1472 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1473 | logsrv->minlvl = 0; |
Willy Tarreau | f7edefa | 2009-05-10 17:20:05 +0200 | [diff] [blame] | 1474 | } |
| 1475 | } |
| 1476 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 1477 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1478 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1479 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1480 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1481 | free(logsrv); |
| 1482 | goto out; |
| 1483 | } |
| 1484 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1485 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 1486 | if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1487 | if (port1 != port2) { |
| 1488 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 1489 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1490 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1491 | free(logsrv); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 1492 | goto out; |
| 1493 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1494 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1495 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 1496 | if (!port1) |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1497 | set_host_port(&logsrv->addr, SYSLOG_PORT); |
Robert Tsai | 81ae195 | 2007-12-05 10:47:29 +0100 | [diff] [blame] | 1498 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1499 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 1500 | LIST_ADDQ(&global.logsrvs, &logsrv->list); |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1501 | } |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1502 | else if (!strcmp(args[0], "log-send-hostname")) { /* set the hostname in syslog header */ |
| 1503 | char *name; |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1504 | |
| 1505 | if (global.log_send_hostname != NULL) { |
| 1506 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1507 | err_code |= ERR_ALERT; |
| 1508 | goto out; |
| 1509 | } |
| 1510 | |
| 1511 | if (*(args[1])) |
| 1512 | name = args[1]; |
| 1513 | else |
| 1514 | name = hostname; |
| 1515 | |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1516 | free(global.log_send_hostname); |
Dragan Dosen | c8cfa7b | 2015-09-28 13:28:21 +0200 | [diff] [blame] | 1517 | global.log_send_hostname = strdup(name); |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 1518 | } |
Baptiste Assmann | 6bc8936 | 2015-08-23 09:22:25 +0200 | [diff] [blame] | 1519 | else if (!strcmp(args[0], "server-state-base")) { /* path base where HAProxy can find server state files */ |
| 1520 | if (global.server_state_base != NULL) { |
| 1521 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1522 | err_code |= ERR_ALERT; |
| 1523 | goto out; |
| 1524 | } |
| 1525 | |
| 1526 | if (!*(args[1])) { |
| 1527 | Alert("parsing [%s:%d] : '%s' expects one argument: a directory path.\n", file, linenum, args[0]); |
| 1528 | err_code |= ERR_FATAL; |
| 1529 | goto out; |
| 1530 | } |
| 1531 | |
| 1532 | global.server_state_base = strdup(args[1]); |
| 1533 | } |
Baptiste Assmann | e088226 | 2015-08-23 09:54:31 +0200 | [diff] [blame] | 1534 | else if (!strcmp(args[0], "server-state-file")) { /* path to the file where HAProxy can load the server states */ |
| 1535 | if (global.server_state_file != NULL) { |
| 1536 | Alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]); |
| 1537 | err_code |= ERR_ALERT; |
| 1538 | goto out; |
| 1539 | } |
| 1540 | |
| 1541 | if (!*(args[1])) { |
| 1542 | Alert("parsing [%s:%d] : '%s' expect one argument: a file path.\n", file, linenum, args[0]); |
| 1543 | err_code |= ERR_FATAL; |
| 1544 | goto out; |
| 1545 | } |
| 1546 | |
| 1547 | global.server_state_file = strdup(args[1]); |
| 1548 | } |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1549 | else if (!strcmp(args[0], "log-tag")) { /* tag to report to syslog */ |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1550 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1551 | goto out; |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1552 | if (*(args[1]) == 0) { |
| 1553 | Alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]); |
| 1554 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1555 | goto out; |
| 1556 | } |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 1557 | chunk_destroy(&global.log_tag); |
| 1558 | chunk_initstr(&global.log_tag, strdup(args[1])); |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1559 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1560 | else if (!strcmp(args[0], "spread-checks")) { /* random time between checks (0-50) */ |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1561 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1562 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1563 | if (global.spread_checks != 0) { |
| 1564 | Alert("parsing [%s:%d]: spread-checks already specified. Continuing.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1565 | err_code |= ERR_ALERT; |
| 1566 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1567 | } |
| 1568 | if (*(args[1]) == 0) { |
| 1569 | Alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1570 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1571 | goto out; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1572 | } |
| 1573 | global.spread_checks = atol(args[1]); |
| 1574 | if (global.spread_checks < 0 || global.spread_checks > 50) { |
| 1575 | Alert("parsing [%s:%d]: 'spread-checks' needs a positive value in range 0..50.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1576 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1577 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1578 | } |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 1579 | else if (!strcmp(args[0], "max-spread-checks")) { /* maximum time between first and last check */ |
| 1580 | const char *err; |
| 1581 | unsigned int val; |
| 1582 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 1583 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1584 | goto out; |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 1585 | if (*(args[1]) == 0) { |
| 1586 | Alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]); |
| 1587 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1588 | goto out; |
| 1589 | } |
| 1590 | |
| 1591 | err = parse_time_err(args[1], &val, TIME_UNIT_MS); |
| 1592 | if (err) { |
| 1593 | Alert("parsing [%s:%d]: unsupported character '%c' in '%s' (wants an integer delay).\n", file, linenum, *err, args[0]); |
| 1594 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1595 | } |
| 1596 | global.max_spread_checks = val; |
| 1597 | if (global.max_spread_checks < 0) { |
| 1598 | Alert("parsing [%s:%d]: '%s' needs a positive delay in milliseconds.\n",file, linenum, args[0]); |
| 1599 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1600 | } |
| 1601 | } |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1602 | else if (strcmp(args[0], "cpu-map") == 0) { /* map a process list to a CPU set */ |
| 1603 | #ifdef USE_CPU_AFFINITY |
| 1604 | int cur_arg, i; |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1605 | unsigned long proc = 0; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1606 | unsigned long cpus = 0; |
| 1607 | |
| 1608 | if (strcmp(args[1], "all") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1609 | proc = ~0UL; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1610 | else if (strcmp(args[1], "odd") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1611 | proc = ~0UL/3UL; /* 0x555....555 */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1612 | else if (strcmp(args[1], "even") == 0) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1613 | proc = (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1614 | else { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1615 | proc = atol(args[1]); |
| 1616 | if (proc >= 1 && proc <= LONGBITS) |
| 1617 | proc = 1UL << (proc - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1618 | } |
| 1619 | |
| 1620 | if (!proc || !*args[2]) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1621 | Alert("parsing [%s:%d]: %s expects a process number including 'all', 'odd', 'even', or a number from 1 to %d, followed by a list of CPU ranges with numbers from 0 to %d.\n", |
| 1622 | file, linenum, args[0], LONGBITS, LONGBITS - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1623 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1624 | goto out; |
| 1625 | } |
| 1626 | |
| 1627 | cur_arg = 2; |
| 1628 | while (*args[cur_arg]) { |
| 1629 | unsigned int low, high; |
| 1630 | |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 1631 | if (isdigit((int)*args[cur_arg])) { |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1632 | char *dash = strchr(args[cur_arg], '-'); |
| 1633 | |
| 1634 | low = high = str2uic(args[cur_arg]); |
| 1635 | if (dash) |
| 1636 | high = str2uic(dash + 1); |
| 1637 | |
| 1638 | if (high < low) { |
| 1639 | unsigned int swap = low; |
| 1640 | low = high; |
| 1641 | high = swap; |
| 1642 | } |
| 1643 | |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1644 | if (high >= LONGBITS) { |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1645 | Alert("parsing [%s:%d]: %s supports CPU numbers from 0 to %d.\n", |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1646 | file, linenum, args[0], LONGBITS - 1); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1647 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1648 | goto out; |
| 1649 | } |
| 1650 | |
| 1651 | while (low <= high) |
| 1652 | cpus |= 1UL << low++; |
| 1653 | } |
| 1654 | else { |
| 1655 | Alert("parsing [%s:%d]: %s : '%s' is not a CPU range.\n", |
| 1656 | file, linenum, args[0], args[cur_arg]); |
| 1657 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1658 | goto out; |
| 1659 | } |
| 1660 | cur_arg++; |
| 1661 | } |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 1662 | for (i = 0; i < LONGBITS; i++) |
| 1663 | if (proc & (1UL << i)) |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 1664 | global.cpu_map[i] = cpus; |
| 1665 | #else |
| 1666 | Alert("parsing [%s:%d] : '%s' is not enabled, please check build options for USE_CPU_AFFINITY.\n", file, linenum, args[0]); |
| 1667 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1668 | goto out; |
| 1669 | #endif |
| 1670 | } |
Willy Tarreau | 1d54972 | 2016-02-16 12:41:57 +0100 | [diff] [blame] | 1671 | else if (strcmp(args[0], "setenv") == 0 || strcmp(args[0], "presetenv") == 0) { |
| 1672 | if (alertif_too_many_args(3, file, linenum, args, &err_code)) |
| 1673 | goto out; |
| 1674 | |
| 1675 | if (*(args[2]) == 0) { |
| 1676 | Alert("parsing [%s:%d]: '%s' expects a name and a value.\n", file, linenum, args[0]); |
| 1677 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1678 | goto out; |
| 1679 | } |
| 1680 | |
| 1681 | /* "setenv" overwrites, "presetenv" only sets if not yet set */ |
| 1682 | if (setenv(args[1], args[2], (args[0][0] == 's')) != 0) { |
| 1683 | Alert("parsing [%s:%d]: '%s' failed on variable '%s' : %s.\n", file, linenum, args[0], args[1], strerror(errno)); |
| 1684 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1685 | goto out; |
| 1686 | } |
| 1687 | } |
| 1688 | else if (!strcmp(args[0], "unsetenv")) { |
| 1689 | int arg; |
| 1690 | |
| 1691 | if (*(args[1]) == 0) { |
| 1692 | Alert("parsing [%s:%d]: '%s' expects at least one variable name.\n", file, linenum, args[0]); |
| 1693 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1694 | goto out; |
| 1695 | } |
| 1696 | |
| 1697 | for (arg = 1; *args[arg]; arg++) { |
| 1698 | if (unsetenv(args[arg]) != 0) { |
| 1699 | Alert("parsing [%s:%d]: '%s' failed on variable '%s' : %s.\n", file, linenum, args[0], args[arg], strerror(errno)); |
| 1700 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1701 | goto out; |
| 1702 | } |
| 1703 | } |
| 1704 | } |
| 1705 | else if (!strcmp(args[0], "resetenv")) { |
| 1706 | extern char **environ; |
| 1707 | char **env = environ; |
| 1708 | |
| 1709 | /* args contain variable names to keep, one per argument */ |
| 1710 | while (*env) { |
| 1711 | int arg; |
| 1712 | |
| 1713 | /* look for current variable in among all those we want to keep */ |
| 1714 | for (arg = 1; *args[arg]; arg++) { |
| 1715 | if (strncmp(*env, args[arg], strlen(args[arg])) == 0 && |
| 1716 | (*env)[strlen(args[arg])] == '=') |
| 1717 | break; |
| 1718 | } |
| 1719 | |
| 1720 | /* delete this variable */ |
| 1721 | if (!*args[arg]) { |
| 1722 | char *delim = strchr(*env, '='); |
| 1723 | |
| 1724 | if (!delim || delim - *env >= trash.size) { |
| 1725 | Alert("parsing [%s:%d]: '%s' failed to unset invalid variable '%s'.\n", file, linenum, args[0], *env); |
| 1726 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1727 | goto out; |
| 1728 | } |
| 1729 | |
| 1730 | memcpy(trash.str, *env, delim - *env); |
| 1731 | trash.str[delim - *env] = 0; |
| 1732 | |
| 1733 | if (unsetenv(trash.str) != 0) { |
| 1734 | Alert("parsing [%s:%d]: '%s' failed to unset variable '%s' : %s.\n", file, linenum, args[0], *env, strerror(errno)); |
| 1735 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1736 | goto out; |
| 1737 | } |
| 1738 | } |
| 1739 | else |
| 1740 | env++; |
| 1741 | } |
| 1742 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1743 | else { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1744 | struct cfg_kw_list *kwl; |
| 1745 | int index; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1746 | int rc; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1747 | |
| 1748 | list_for_each_entry(kwl, &cfg_keywords.list, list) { |
| 1749 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1750 | if (kwl->kw[index].section != CFG_GLOBAL) |
| 1751 | continue; |
| 1752 | if (strcmp(kwl->kw[index].kw, args[0]) == 0) { |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 1753 | rc = kwl->kw[index].parse(args, CFG_GLOBAL, NULL, NULL, file, linenum, &errmsg); |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1754 | if (rc < 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1755 | Alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1756 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1757 | } |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1758 | else if (rc > 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1759 | Warning("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1760 | err_code |= ERR_WARN; |
| 1761 | goto out; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 1762 | } |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1763 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 1764 | } |
| 1765 | } |
| 1766 | } |
| 1767 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1768 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "global"); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1769 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1770 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 1771 | |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1772 | out: |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 1773 | free(errmsg); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1774 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1775 | } |
| 1776 | |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1777 | void init_default_instance() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1778 | { |
Willy Tarreau | 97cb780 | 2010-01-03 20:23:58 +0100 | [diff] [blame] | 1779 | init_new_proxy(&defproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1780 | defproxy.mode = PR_MODE_TCP; |
| 1781 | defproxy.state = PR_STNEW; |
| 1782 | defproxy.maxconn = cfg_maxpconn; |
| 1783 | defproxy.conn_retries = CONN_RETRIES; |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 1784 | defproxy.redispatch_after = 0; |
Andrew Rodland | b1f48e3 | 2016-10-25 12:49:05 -0400 | [diff] [blame] | 1785 | defproxy.lbprm.chash.balance_factor = 0; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 1786 | |
Simon Horman | 6618300 | 2013-02-23 10:16:43 +0900 | [diff] [blame] | 1787 | defproxy.defsrv.check.inter = DEF_CHKINTR; |
| 1788 | defproxy.defsrv.check.fastinter = 0; |
| 1789 | defproxy.defsrv.check.downinter = 0; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 1790 | defproxy.defsrv.agent.inter = DEF_CHKINTR; |
| 1791 | defproxy.defsrv.agent.fastinter = 0; |
| 1792 | defproxy.defsrv.agent.downinter = 0; |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 1793 | defproxy.defsrv.check.rise = DEF_RISETIME; |
| 1794 | defproxy.defsrv.check.fall = DEF_FALLTIME; |
| 1795 | defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME; |
| 1796 | defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME; |
Willy Tarreau | 5b3a202 | 2012-09-28 15:01:02 +0200 | [diff] [blame] | 1797 | defproxy.defsrv.check.port = 0; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 1798 | defproxy.defsrv.agent.port = 0; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 1799 | defproxy.defsrv.maxqueue = 0; |
| 1800 | defproxy.defsrv.minconn = 0; |
| 1801 | defproxy.defsrv.maxconn = 0; |
| 1802 | defproxy.defsrv.slowstart = 0; |
| 1803 | defproxy.defsrv.onerror = DEF_HANA_ONERR; |
| 1804 | defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT; |
| 1805 | defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1; |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 1806 | |
| 1807 | defproxy.email_alert.level = LOG_ALERT; |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 1808 | defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1809 | } |
| 1810 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1811 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1812 | /* This function createss a new req* or rsp* rule to the proxy. It compiles the |
| 1813 | * regex and may return the ERR_WARN bit, and error bits such as ERR_ALERT and |
| 1814 | * ERR_FATAL in case of error. |
| 1815 | */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1816 | static int create_cond_regex_rule(const char *file, int line, |
| 1817 | struct proxy *px, int dir, int action, int flags, |
| 1818 | const char *cmd, const char *reg, const char *repl, |
| 1819 | const char **cond_start) |
| 1820 | { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1821 | struct my_regex *preg = NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1822 | char *errmsg = NULL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1823 | const char *err; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1824 | char *error; |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1825 | int ret_code = 0; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1826 | struct acl_cond *cond = NULL; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1827 | int cs; |
| 1828 | int cap; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1829 | |
| 1830 | if (px == &defproxy) { |
| 1831 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, line, cmd); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1832 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1833 | goto err; |
| 1834 | } |
| 1835 | |
| 1836 | if (*reg == 0) { |
| 1837 | Alert("parsing [%s:%d] : '%s' expects <regex> as an argument.\n", file, line, cmd); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1838 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1839 | goto err; |
| 1840 | } |
| 1841 | |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 1842 | if (warnifnotcap(px, PR_CAP_FE | PR_CAP_BE, file, line, cmd, NULL)) |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1843 | ret_code |= ERR_WARN; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1844 | |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1845 | if (cond_start && |
| 1846 | (strcmp(*cond_start, "if") == 0 || strcmp(*cond_start, "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1847 | if ((cond = build_acl_cond(file, line, px, cond_start, &errmsg)) == NULL) { |
| 1848 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 1849 | file, line, cmd, errmsg); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1850 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1851 | goto err; |
| 1852 | } |
| 1853 | } |
| 1854 | else if (cond_start && **cond_start) { |
| 1855 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 1856 | file, line, cmd, *cond_start); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1857 | ret_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1858 | goto err; |
| 1859 | } |
| 1860 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1861 | ret_code |= warnif_cond_conflicts(cond, |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1862 | (dir == SMP_OPT_DIR_REQ) ? |
| 1863 | ((px->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR) : |
| 1864 | ((px->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR), |
| 1865 | file, line); |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1866 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1867 | preg = calloc(1, sizeof(*preg)); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1868 | if (!preg) { |
| 1869 | Alert("parsing [%s:%d] : '%s' : not enough memory to build regex.\n", file, line, cmd); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1870 | ret_code = ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1871 | goto err; |
| 1872 | } |
| 1873 | |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1874 | cs = !(flags & REG_ICASE); |
| 1875 | cap = !(flags & REG_NOSUB); |
| 1876 | error = NULL; |
| 1877 | if (!regex_comp(reg, preg, cs, cap, &error)) { |
| 1878 | Alert("parsing [%s:%d] : '%s' : regular expression '%s' : %s\n", file, line, cmd, reg, error); |
| 1879 | free(error); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1880 | ret_code = ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1881 | goto err; |
| 1882 | } |
| 1883 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1884 | err = chain_regex((dir == SMP_OPT_DIR_REQ) ? &px->req_exp : &px->rsp_exp, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 1885 | preg, action, repl ? strdup(repl) : NULL, cond); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1886 | if (repl && err) { |
| 1887 | Alert("parsing [%s:%d] : '%s' : invalid character or unterminated sequence in replacement string near '%c'.\n", |
| 1888 | file, line, cmd, *err); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1889 | ret_code |= ERR_ALERT | ERR_FATAL; |
| 1890 | goto err_free; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1891 | } |
| 1892 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1893 | if (dir == SMP_OPT_DIR_REQ && warnif_misplaced_reqxxx(px, file, line, cmd)) |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1894 | ret_code |= ERR_WARN; |
| 1895 | |
| 1896 | return ret_code; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1897 | |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1898 | err_free: |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 1899 | regex_free(preg); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1900 | err: |
| 1901 | free(preg); |
Willy Tarreau | 63af98d | 2014-05-18 08:11:41 +0200 | [diff] [blame] | 1902 | free(errmsg); |
| 1903 | return ret_code; |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 1904 | } |
| 1905 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1906 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 1907 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 1908 | * Returns the error code, 0 if OK, or any combination of : |
| 1909 | * - ERR_ABORT: must abort ASAP |
| 1910 | * - ERR_FATAL: we can continue parsing but not start the service |
| 1911 | * - ERR_WARN: a warning has been emitted |
| 1912 | * - ERR_ALERT: an alert has been emitted |
| 1913 | * Only the two first ones can stop processing, the two others are just |
| 1914 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1915 | */ |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1916 | int cfg_parse_peers(const char *file, int linenum, char **args, int kwm) |
| 1917 | { |
| 1918 | static struct peers *curpeers = NULL; |
| 1919 | struct peer *newpeer = NULL; |
| 1920 | const char *err; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1921 | struct bind_conf *bind_conf; |
| 1922 | struct listener *l; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1923 | int err_code = 0; |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1924 | char *errmsg = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1925 | |
| 1926 | if (strcmp(args[0], "peers") == 0) { /* new peers section */ |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1927 | if (!*args[1]) { |
| 1928 | Alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 1929 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1930 | goto out; |
| 1931 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1932 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 1933 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1934 | goto out; |
| 1935 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1936 | err = invalid_char(args[1]); |
| 1937 | if (err) { |
| 1938 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 1939 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 1940 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 1941 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1942 | } |
| 1943 | |
| 1944 | for (curpeers = peers; curpeers != NULL; curpeers = curpeers->next) { |
| 1945 | /* |
| 1946 | * If there are two proxies with the same name only following |
| 1947 | * combinations are allowed: |
| 1948 | */ |
| 1949 | if (strcmp(curpeers->id, args[1]) == 0) { |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1950 | Alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n", |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1951 | file, linenum, args[1], curpeers->conf.file, curpeers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1952 | err_code |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1953 | } |
| 1954 | } |
| 1955 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1956 | if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1957 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 1958 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1959 | goto out; |
| 1960 | } |
| 1961 | |
| 1962 | curpeers->next = peers; |
| 1963 | peers = curpeers; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 1964 | curpeers->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1965 | curpeers->conf.line = linenum; |
| 1966 | curpeers->last_change = now.tv_sec; |
| 1967 | curpeers->id = strdup(args[1]); |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 1968 | curpeers->state = PR_STNEW; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1969 | } |
| 1970 | else if (strcmp(args[0], "peer") == 0) { /* peer definition */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 1971 | struct sockaddr_storage *sk; |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 1972 | int port1, port2; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 1973 | struct protocol *proto; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1974 | |
| 1975 | if (!*args[2]) { |
| 1976 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 1977 | file, linenum, args[0]); |
| 1978 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1979 | goto out; |
| 1980 | } |
| 1981 | |
| 1982 | err = invalid_char(args[1]); |
| 1983 | if (err) { |
| 1984 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 1985 | file, linenum, *err, args[1]); |
| 1986 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1987 | goto out; |
| 1988 | } |
| 1989 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1990 | if ((newpeer = calloc(1, sizeof(*newpeer))) == NULL) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1991 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 1992 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1993 | goto out; |
| 1994 | } |
| 1995 | |
| 1996 | /* the peers are linked backwards first */ |
| 1997 | curpeers->count++; |
| 1998 | newpeer->next = curpeers->remote; |
| 1999 | curpeers->remote = newpeer; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 2000 | newpeer->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2001 | newpeer->conf.line = linenum; |
| 2002 | |
| 2003 | newpeer->last_change = now.tv_sec; |
| 2004 | newpeer->id = strdup(args[1]); |
| 2005 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2006 | sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2007 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2008 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2009 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2010 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2011 | } |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 2012 | |
| 2013 | proto = protocol_by_family(sk->ss_family); |
| 2014 | if (!proto || !proto->connect) { |
| 2015 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 2016 | file, linenum, args[0], args[1]); |
| 2017 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2018 | goto out; |
| 2019 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2020 | |
| 2021 | if (port1 != port2) { |
| 2022 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2023 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2024 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2025 | goto out; |
| 2026 | } |
| 2027 | |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2028 | if (!port1) { |
| 2029 | Alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n", |
| 2030 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2031 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2032 | goto out; |
| 2033 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 2034 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2035 | newpeer->addr = *sk; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 2036 | newpeer->proto = proto; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2037 | newpeer->xprt = xprt_get(XPRT_RAW); |
Willy Tarreau | d02394b | 2012-05-11 18:32:18 +0200 | [diff] [blame] | 2038 | newpeer->sock_init_arg = NULL; |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 2039 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2040 | if (strcmp(newpeer->id, localpeer) == 0) { |
| 2041 | /* Current is local peer, it define a frontend */ |
| 2042 | newpeer->local = 1; |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 2043 | peers->local = newpeer; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2044 | |
| 2045 | if (!curpeers->peers_fe) { |
| 2046 | if ((curpeers->peers_fe = calloc(1, sizeof(struct proxy))) == NULL) { |
| 2047 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2048 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2049 | goto out; |
| 2050 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2051 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 2052 | init_new_proxy(curpeers->peers_fe); |
| 2053 | curpeers->peers_fe->parent = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2054 | curpeers->peers_fe->id = strdup(args[1]); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2055 | curpeers->peers_fe->conf.args.file = curpeers->peers_fe->conf.file = strdup(file); |
| 2056 | curpeers->peers_fe->conf.args.line = curpeers->peers_fe->conf.line = linenum; |
Willy Tarreau | 91d9628 | 2015-03-13 15:47:26 +0100 | [diff] [blame] | 2057 | peers_setup_frontend(curpeers->peers_fe); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2058 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2059 | bind_conf = bind_conf_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW)); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2060 | |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2061 | if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) { |
| 2062 | if (errmsg && *errmsg) { |
| 2063 | indent_msg(&errmsg, 2); |
| 2064 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 2065 | } |
| 2066 | else |
| 2067 | Alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n", |
| 2068 | file, linenum, args[0], args[1], args[2]); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2069 | err_code |= ERR_FATAL; |
| 2070 | goto out; |
| 2071 | } |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2072 | |
| 2073 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | acf3bf9 | 2013-01-18 10:51:07 +0100 | [diff] [blame] | 2074 | l->maxaccept = 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2075 | l->maxconn = curpeers->peers_fe->maxconn; |
| 2076 | l->backlog = curpeers->peers_fe->backlog; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 2077 | l->accept = session_accept_fd; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2078 | l->handler = process_stream; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2079 | l->analysers |= curpeers->peers_fe->fe_req_ana; |
| 2080 | l->default_target = curpeers->peers_fe->default_target; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2081 | l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */ |
| 2082 | global.maxsock += l->maxconn; |
| 2083 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2084 | } |
Willy Tarreau | 8b8fd56 | 2013-01-18 11:12:27 +0100 | [diff] [blame] | 2085 | else { |
| 2086 | Alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d.\n", |
| 2087 | file, linenum, args[0], args[1], |
| 2088 | curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line); |
| 2089 | err_code |= ERR_FATAL; |
| 2090 | goto out; |
| 2091 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2092 | } |
| 2093 | } /* neither "peer" nor "peers" */ |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 2094 | else if (!strcmp(args[0], "disabled")) { /* disables this peers section */ |
| 2095 | curpeers->state = PR_STSTOPPED; |
| 2096 | } |
| 2097 | else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */ |
| 2098 | curpeers->state = PR_STNEW; |
| 2099 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2100 | else if (*args[0] != 0) { |
| 2101 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2102 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2103 | goto out; |
| 2104 | } |
| 2105 | |
| 2106 | out: |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2107 | free(errmsg); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2108 | return err_code; |
| 2109 | } |
| 2110 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2111 | /* |
| 2112 | * Parse a <resolvers> section. |
| 2113 | * Returns the error code, 0 if OK, or any combination of : |
| 2114 | * - ERR_ABORT: must abort ASAP |
| 2115 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2116 | * - ERR_WARN: a warning has been emitted |
| 2117 | * - ERR_ALERT: an alert has been emitted |
| 2118 | * Only the two first ones can stop processing, the two others are just |
| 2119 | * indicators. |
| 2120 | */ |
| 2121 | int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm) |
| 2122 | { |
| 2123 | static struct dns_resolvers *curr_resolvers = NULL; |
| 2124 | struct dns_nameserver *newnameserver = NULL; |
| 2125 | const char *err; |
| 2126 | int err_code = 0; |
| 2127 | char *errmsg = NULL; |
| 2128 | |
| 2129 | if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */ |
| 2130 | if (!*args[1]) { |
| 2131 | Alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum); |
| 2132 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2133 | goto out; |
| 2134 | } |
| 2135 | |
| 2136 | err = invalid_char(args[1]); |
| 2137 | if (err) { |
| 2138 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2139 | file, linenum, *err, args[0], args[1]); |
| 2140 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2141 | goto out; |
| 2142 | } |
| 2143 | |
| 2144 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 2145 | /* Error if two resolvers owns the same name */ |
| 2146 | if (strcmp(curr_resolvers->id, args[1]) == 0) { |
| 2147 | Alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n", |
| 2148 | file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line); |
| 2149 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2150 | } |
| 2151 | } |
| 2152 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2153 | if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) { |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2154 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2155 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2156 | goto out; |
| 2157 | } |
| 2158 | |
| 2159 | /* default values */ |
| 2160 | LIST_ADDQ(&dns_resolvers, &curr_resolvers->list); |
| 2161 | curr_resolvers->conf.file = strdup(file); |
| 2162 | curr_resolvers->conf.line = linenum; |
| 2163 | curr_resolvers->id = strdup(args[1]); |
| 2164 | curr_resolvers->query_ids = EB_ROOT; |
Baptiste Assmann | 987e16d | 2016-11-02 22:23:31 +0100 | [diff] [blame] | 2165 | /* default hold period for nx, other, refuse and timeout is 30s */ |
| 2166 | curr_resolvers->hold.nx = 30000; |
| 2167 | curr_resolvers->hold.other = 30000; |
| 2168 | curr_resolvers->hold.refused = 30000; |
| 2169 | curr_resolvers->hold.timeout = 30000; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2170 | /* default hold period for valid is 10s */ |
Baptiste Assmann | 4c5490a | 2015-07-14 21:42:49 +0200 | [diff] [blame] | 2171 | curr_resolvers->hold.valid = 10000; |
| 2172 | curr_resolvers->timeout.retry = 1000; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2173 | curr_resolvers->resolve_retries = 3; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2174 | /* default resolution pool size */ |
| 2175 | curr_resolvers->resolution_pool_size = DNS_DEFAULT_RESOLUTION_POOL_SIZE; |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2176 | LIST_INIT(&curr_resolvers->nameserver_list); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2177 | LIST_INIT(&curr_resolvers->resolution.curr); |
| 2178 | LIST_INIT(&curr_resolvers->resolution.wait); |
| 2179 | LIST_INIT(&curr_resolvers->resolution.pool); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2180 | } |
| 2181 | else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */ |
| 2182 | struct sockaddr_storage *sk; |
| 2183 | int port1, port2; |
| 2184 | struct protocol *proto; |
| 2185 | |
| 2186 | if (!*args[2]) { |
| 2187 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2188 | file, linenum, args[0]); |
| 2189 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2190 | goto out; |
| 2191 | } |
| 2192 | |
| 2193 | err = invalid_char(args[1]); |
| 2194 | if (err) { |
| 2195 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2196 | file, linenum, *err, args[1]); |
| 2197 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2198 | goto out; |
| 2199 | } |
| 2200 | |
Baptiste Assmann | a315c55 | 2015-11-02 22:55:49 +0100 | [diff] [blame] | 2201 | list_for_each_entry(newnameserver, &curr_resolvers->nameserver_list, list) { |
| 2202 | /* Error if two resolvers owns the same name */ |
| 2203 | if (strcmp(newnameserver->id, args[1]) == 0) { |
| 2204 | Alert("Parsing [%s:%d]: nameserver '%s' has same name as another nameserver (declared at %s:%d).\n", |
| 2205 | file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line); |
| 2206 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2207 | } |
| 2208 | } |
| 2209 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2210 | if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) { |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2211 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2212 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2213 | goto out; |
| 2214 | } |
| 2215 | |
| 2216 | /* the nameservers are linked backward first */ |
| 2217 | LIST_ADDQ(&curr_resolvers->nameserver_list, &newnameserver->list); |
| 2218 | curr_resolvers->count_nameservers++; |
| 2219 | newnameserver->resolvers = curr_resolvers; |
| 2220 | newnameserver->conf.file = strdup(file); |
| 2221 | newnameserver->conf.line = linenum; |
| 2222 | newnameserver->id = strdup(args[1]); |
| 2223 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2224 | sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2225 | if (!sk) { |
| 2226 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 2227 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2228 | goto out; |
| 2229 | } |
| 2230 | |
| 2231 | proto = protocol_by_family(sk->ss_family); |
| 2232 | if (!proto || !proto->connect) { |
| 2233 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 2234 | file, linenum, args[0], args[1]); |
| 2235 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2236 | goto out; |
| 2237 | } |
| 2238 | |
| 2239 | if (port1 != port2) { |
| 2240 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2241 | file, linenum, args[0], args[1], args[2]); |
| 2242 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2243 | goto out; |
| 2244 | } |
| 2245 | |
Baptiste Assmann | 7f43fa9 | 2016-01-21 00:59:46 +0100 | [diff] [blame] | 2246 | if (!port1 && !port2) { |
| 2247 | Alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n", |
| 2248 | file, linenum, args[0], args[1]); |
| 2249 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2250 | goto out; |
| 2251 | } |
| 2252 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2253 | newnameserver->addr = *sk; |
| 2254 | } |
| 2255 | else if (strcmp(args[0], "hold") == 0) { /* hold periods */ |
| 2256 | const char *res; |
| 2257 | unsigned int time; |
| 2258 | |
| 2259 | if (!*args[2]) { |
| 2260 | Alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n", |
| 2261 | file, linenum, args[0]); |
| 2262 | Alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n"); |
| 2263 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2264 | goto out; |
| 2265 | } |
| 2266 | res = parse_time_err(args[2], &time, TIME_UNIT_MS); |
| 2267 | if (res) { |
| 2268 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 2269 | file, linenum, *res, args[0]); |
| 2270 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2271 | goto out; |
| 2272 | } |
Baptiste Assmann | 987e16d | 2016-11-02 22:23:31 +0100 | [diff] [blame] | 2273 | if (strcmp(args[1], "nx") == 0) |
| 2274 | curr_resolvers->hold.nx = time; |
| 2275 | else if (strcmp(args[1], "other") == 0) |
| 2276 | curr_resolvers->hold.other = time; |
| 2277 | else if (strcmp(args[1], "refused") == 0) |
| 2278 | curr_resolvers->hold.refused = time; |
| 2279 | else if (strcmp(args[1], "timeout") == 0) |
| 2280 | curr_resolvers->hold.timeout = time; |
| 2281 | else if (strcmp(args[1], "valid") == 0) |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2282 | curr_resolvers->hold.valid = time; |
| 2283 | else { |
Baptiste Assmann | 987e16d | 2016-11-02 22:23:31 +0100 | [diff] [blame] | 2284 | Alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', or 'other'.\n", |
| 2285 | file, linenum, args[0], args[1]); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2286 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2287 | goto out; |
| 2288 | } |
| 2289 | |
| 2290 | } |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2291 | else if (strcmp(args[0], "resolution_pool_size") == 0) { |
| 2292 | if (!*args[1]) { |
| 2293 | Alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n", |
| 2294 | file, linenum, args[0]); |
| 2295 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2296 | goto out; |
| 2297 | } |
| 2298 | curr_resolvers->resolution_pool_size = atoi(args[1]); |
| 2299 | } |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2300 | else if (strcmp(args[0], "resolve_retries") == 0) { |
| 2301 | if (!*args[1]) { |
| 2302 | Alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n", |
| 2303 | file, linenum, args[0]); |
| 2304 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2305 | goto out; |
| 2306 | } |
| 2307 | curr_resolvers->resolve_retries = atoi(args[1]); |
| 2308 | } |
| 2309 | else if (strcmp(args[0], "timeout") == 0) { |
Pieter Baauw | 7a91a0e | 2016-02-13 15:51:58 +0100 | [diff] [blame] | 2310 | if (!*args[1]) { |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2311 | Alert("parsing [%s:%d] : '%s' expects 'retry' and <time> as arguments.\n", |
| 2312 | file, linenum, args[0]); |
| 2313 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2314 | goto out; |
| 2315 | } |
Pieter Baauw | 7a91a0e | 2016-02-13 15:51:58 +0100 | [diff] [blame] | 2316 | else if (strcmp(args[1], "retry") == 0) { |
| 2317 | const char *res; |
| 2318 | unsigned int timeout_retry; |
| 2319 | |
| 2320 | if (!*args[2]) { |
| 2321 | Alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n", |
| 2322 | file, linenum, args[0], args[1]); |
| 2323 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2324 | goto out; |
| 2325 | } |
| 2326 | res = parse_time_err(args[2], &timeout_retry, TIME_UNIT_MS); |
| 2327 | if (res) { |
| 2328 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n", |
| 2329 | file, linenum, *res, args[0], args[1]); |
| 2330 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2331 | goto out; |
| 2332 | } |
| 2333 | curr_resolvers->timeout.retry = timeout_retry; |
| 2334 | } |
| 2335 | else { |
| 2336 | Alert("parsing [%s:%d] : '%s' expects 'retry' and <time> as arguments got '%s'.\n", |
| 2337 | file, linenum, args[0], args[1]); |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2338 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2339 | goto out; |
| 2340 | } |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 2341 | } /* neither "nameserver" nor "resolvers" */ |
| 2342 | else if (*args[0] != 0) { |
| 2343 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2344 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2345 | goto out; |
| 2346 | } |
| 2347 | |
| 2348 | out: |
| 2349 | free(errmsg); |
| 2350 | return err_code; |
| 2351 | } |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2352 | |
| 2353 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 2354 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2355 | * Returns the error code, 0 if OK, or any combination of : |
| 2356 | * - ERR_ABORT: must abort ASAP |
| 2357 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2358 | * - ERR_WARN: a warning has been emitted |
| 2359 | * - ERR_ALERT: an alert has been emitted |
| 2360 | * Only the two first ones can stop processing, the two others are just |
| 2361 | * indicators. |
| 2362 | */ |
| 2363 | int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm) |
| 2364 | { |
| 2365 | static struct mailers *curmailers = NULL; |
| 2366 | struct mailer *newmailer = NULL; |
| 2367 | const char *err; |
| 2368 | int err_code = 0; |
| 2369 | char *errmsg = NULL; |
| 2370 | |
| 2371 | if (strcmp(args[0], "mailers") == 0) { /* new mailers section */ |
| 2372 | if (!*args[1]) { |
| 2373 | Alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum); |
| 2374 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2375 | goto out; |
| 2376 | } |
| 2377 | |
| 2378 | err = invalid_char(args[1]); |
| 2379 | if (err) { |
| 2380 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2381 | file, linenum, *err, args[0], args[1]); |
| 2382 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2383 | goto out; |
| 2384 | } |
| 2385 | |
| 2386 | for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) { |
| 2387 | /* |
| 2388 | * If there are two proxies with the same name only following |
| 2389 | * combinations are allowed: |
| 2390 | */ |
| 2391 | if (strcmp(curmailers->id, args[1]) == 0) { |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2392 | 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] | 2393 | file, linenum, args[1], curmailers->conf.file, curmailers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2394 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2395 | } |
| 2396 | } |
| 2397 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2398 | if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) { |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2399 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2400 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2401 | goto out; |
| 2402 | } |
| 2403 | |
| 2404 | curmailers->next = mailers; |
| 2405 | mailers = curmailers; |
| 2406 | curmailers->conf.file = strdup(file); |
| 2407 | curmailers->conf.line = linenum; |
| 2408 | curmailers->id = strdup(args[1]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 2409 | curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP. |
| 2410 | * But need enough time so that timeouts don't occur |
| 2411 | * during tcp procssing. For now just us an arbitrary default. */ |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2412 | } |
| 2413 | else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */ |
| 2414 | struct sockaddr_storage *sk; |
| 2415 | int port1, port2; |
| 2416 | struct protocol *proto; |
| 2417 | |
| 2418 | if (!*args[2]) { |
| 2419 | Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 2420 | file, linenum, args[0]); |
| 2421 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2422 | goto out; |
| 2423 | } |
| 2424 | |
| 2425 | err = invalid_char(args[1]); |
| 2426 | if (err) { |
| 2427 | Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 2428 | file, linenum, *err, args[1]); |
| 2429 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2430 | goto out; |
| 2431 | } |
| 2432 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2433 | if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) { |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2434 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 2435 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2436 | goto out; |
| 2437 | } |
| 2438 | |
| 2439 | /* the mailers are linked backwards first */ |
| 2440 | curmailers->count++; |
| 2441 | newmailer->next = curmailers->mailer_list; |
| 2442 | curmailers->mailer_list = newmailer; |
| 2443 | newmailer->mailers = curmailers; |
| 2444 | newmailer->conf.file = strdup(file); |
| 2445 | newmailer->conf.line = linenum; |
| 2446 | |
| 2447 | newmailer->id = strdup(args[1]); |
| 2448 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 2449 | sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2450 | if (!sk) { |
| 2451 | Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 2452 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2453 | goto out; |
| 2454 | } |
| 2455 | |
| 2456 | proto = protocol_by_family(sk->ss_family); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 2457 | if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) { |
| 2458 | 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] | 2459 | file, linenum, args[0], args[1]); |
| 2460 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2461 | goto out; |
| 2462 | } |
| 2463 | |
| 2464 | if (port1 != port2) { |
| 2465 | Alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n", |
| 2466 | file, linenum, args[0], args[1], args[2]); |
| 2467 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2468 | goto out; |
| 2469 | } |
| 2470 | |
| 2471 | if (!port1) { |
| 2472 | Alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n", |
| 2473 | file, linenum, args[0], args[1], args[2]); |
| 2474 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2475 | goto out; |
| 2476 | } |
| 2477 | |
| 2478 | newmailer->addr = *sk; |
| 2479 | newmailer->proto = proto; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2480 | newmailer->xprt = xprt_get(XPRT_RAW); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2481 | newmailer->sock_init_arg = NULL; |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 2482 | } |
| 2483 | else if (strcmp(args[0], "timeout") == 0) { |
| 2484 | if (!*args[1]) { |
| 2485 | Alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n", |
| 2486 | file, linenum, args[0]); |
| 2487 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2488 | goto out; |
| 2489 | } |
| 2490 | else if (strcmp(args[1], "mail") == 0) { |
| 2491 | const char *res; |
| 2492 | unsigned int timeout_mail; |
| 2493 | if (!*args[2]) { |
| 2494 | Alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n", |
| 2495 | file, linenum, args[0], args[1]); |
| 2496 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2497 | goto out; |
| 2498 | } |
| 2499 | res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS); |
| 2500 | if (res) { |
| 2501 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 2502 | file, linenum, *res, args[0]); |
| 2503 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2504 | goto out; |
| 2505 | } |
| 2506 | if (timeout_mail <= 0) { |
| 2507 | Alert("parsing [%s:%d] : '%s %s' expects a positive <time> argument.\n", file, linenum, args[0], args[1]); |
| 2508 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2509 | goto out; |
| 2510 | } |
| 2511 | curmailers->timeout.mail = timeout_mail; |
| 2512 | } else { |
| 2513 | Alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n", |
| 2514 | file, linenum, args[0], args[1]); |
| 2515 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2516 | goto out; |
| 2517 | } |
| 2518 | } |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 2519 | else if (*args[0] != 0) { |
| 2520 | Alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
| 2521 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2522 | goto out; |
| 2523 | } |
| 2524 | |
| 2525 | out: |
| 2526 | free(errmsg); |
| 2527 | return err_code; |
| 2528 | } |
| 2529 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2530 | static void free_email_alert(struct proxy *p) |
| 2531 | { |
| 2532 | free(p->email_alert.mailers.name); |
| 2533 | p->email_alert.mailers.name = NULL; |
| 2534 | free(p->email_alert.from); |
| 2535 | p->email_alert.from = NULL; |
| 2536 | free(p->email_alert.to); |
| 2537 | p->email_alert.to = NULL; |
| 2538 | free(p->email_alert.myhostname); |
| 2539 | p->email_alert.myhostname = NULL; |
| 2540 | } |
| 2541 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 2542 | 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] | 2543 | { |
| 2544 | static struct proxy *curproxy = NULL; |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 2545 | const char *err; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2546 | char *error; |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 2547 | int rc; |
| 2548 | unsigned val; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2549 | int err_code = 0; |
Willy Tarreau | 3ec18a0 | 2010-01-28 19:01:34 +0100 | [diff] [blame] | 2550 | struct acl_cond *cond = NULL; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2551 | struct logsrv *tmplogsrv; |
Willy Tarreau | f4068b6 | 2012-05-08 17:37:49 +0200 | [diff] [blame] | 2552 | char *errmsg = NULL; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2553 | struct bind_conf *bind_conf; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2554 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2555 | if (!strcmp(args[0], "listen")) |
| 2556 | rc = PR_CAP_LISTEN; |
| 2557 | else if (!strcmp(args[0], "frontend")) |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 2558 | rc = PR_CAP_FE; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2559 | else if (!strcmp(args[0], "backend")) |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 2560 | rc = PR_CAP_BE; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2561 | else |
| 2562 | rc = PR_CAP_NONE; |
| 2563 | |
| 2564 | if (rc != PR_CAP_NONE) { /* new proxy */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2565 | if (!*args[1]) { |
| 2566 | Alert("parsing [%s:%d] : '%s' expects an <id> argument and\n" |
Ian Miell | 71c432e | 2015-08-18 19:32:08 +0100 | [diff] [blame] | 2567 | " optionally supports [addr1]:port1[-end1]{,[addr]:port[-end]}...\n", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2568 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2569 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2570 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2571 | } |
Krzysztof Oledzki | 365d1cd | 2007-10-21 02:55:17 +0200 | [diff] [blame] | 2572 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 2573 | err = invalid_char(args[1]); |
| 2574 | if (err) { |
| 2575 | Alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 2576 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2577 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 2578 | } |
| 2579 | |
Willy Tarreau | 8f50b68 | 2015-05-26 11:45:02 +0200 | [diff] [blame] | 2580 | curproxy = (rc & PR_CAP_FE) ? proxy_fe_by_name(args[1]) : proxy_be_by_name(args[1]); |
| 2581 | if (curproxy) { |
| 2582 | Alert("Parsing [%s:%d]: %s '%s' has the same name as %s '%s' declared at %s:%d.\n", |
| 2583 | file, linenum, proxy_cap_str(rc), args[1], proxy_type_str(curproxy), |
| 2584 | curproxy->id, curproxy->conf.file, curproxy->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 2585 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | 365d1cd | 2007-10-21 02:55:17 +0200 | [diff] [blame] | 2586 | } |
| 2587 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2588 | if ((curproxy = calloc(1, sizeof(*curproxy))) == NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2589 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2590 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2591 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2592 | } |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 2593 | |
Willy Tarreau | 97cb780 | 2010-01-03 20:23:58 +0100 | [diff] [blame] | 2594 | init_new_proxy(curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2595 | curproxy->next = proxy; |
| 2596 | proxy = curproxy; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2597 | curproxy->conf.args.file = curproxy->conf.file = strdup(file); |
| 2598 | curproxy->conf.args.line = curproxy->conf.line = linenum; |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 2599 | curproxy->last_change = now.tv_sec; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2600 | curproxy->id = strdup(args[1]); |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2601 | curproxy->cap = rc; |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 2602 | proxy_store_name(curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2603 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 2604 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2605 | if (curproxy->cap & PR_CAP_FE) |
| 2606 | Alert("parsing [%s:%d] : please use the 'bind' keyword for listening addresses.\n", file, linenum); |
| 2607 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2608 | } |
| 2609 | |
| 2610 | /* set default values */ |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 2611 | memcpy(&curproxy->defsrv, &defproxy.defsrv, sizeof(curproxy->defsrv)); |
Willy Tarreau | 7016020 | 2010-04-07 16:06:40 +0200 | [diff] [blame] | 2612 | curproxy->defsrv.id = "default-server"; |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 2613 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2614 | curproxy->state = defproxy.state; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2615 | curproxy->options = defproxy.options; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 2616 | curproxy->options2 = defproxy.options2; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 2617 | curproxy->no_options = defproxy.no_options; |
| 2618 | curproxy->no_options2 = defproxy.no_options2; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 2619 | curproxy->bind_proc = defproxy.bind_proc; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 2620 | curproxy->except_net = defproxy.except_net; |
| 2621 | curproxy->except_mask = defproxy.except_mask; |
Maik Broemme | 36db02e | 2009-05-08 17:02:07 +0200 | [diff] [blame] | 2622 | curproxy->except_to = defproxy.except_to; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 2623 | curproxy->except_mask_to = defproxy.except_mask_to; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2624 | |
Willy Tarreau | 79f5fe8 | 2008-08-23 08:18:21 +0200 | [diff] [blame] | 2625 | if (defproxy.fwdfor_hdr_len) { |
| 2626 | curproxy->fwdfor_hdr_len = defproxy.fwdfor_hdr_len; |
| 2627 | curproxy->fwdfor_hdr_name = strdup(defproxy.fwdfor_hdr_name); |
| 2628 | } |
| 2629 | |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 2630 | if (defproxy.orgto_hdr_len) { |
| 2631 | curproxy->orgto_hdr_len = defproxy.orgto_hdr_len; |
| 2632 | curproxy->orgto_hdr_name = strdup(defproxy.orgto_hdr_name); |
| 2633 | } |
| 2634 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 2635 | if (defproxy.server_id_hdr_len) { |
| 2636 | curproxy->server_id_hdr_len = defproxy.server_id_hdr_len; |
| 2637 | curproxy->server_id_hdr_name = strdup(defproxy.server_id_hdr_name); |
| 2638 | } |
| 2639 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2640 | if (curproxy->cap & PR_CAP_FE) { |
| 2641 | curproxy->maxconn = defproxy.maxconn; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 2642 | curproxy->backlog = defproxy.backlog; |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 2643 | curproxy->fe_sps_lim = defproxy.fe_sps_lim; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2644 | |
| 2645 | /* initialize error relocations */ |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 2646 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) |
| 2647 | chunk_dup(&curproxy->errmsg[rc], &defproxy.errmsg[rc]); |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2648 | |
| 2649 | curproxy->to_log = defproxy.to_log & ~LW_COOKIE & ~LW_REQHDR & ~ LW_RSPHDR; |
| 2650 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2651 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2652 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | 743c128 | 2014-11-18 15:04:29 +0100 | [diff] [blame] | 2653 | curproxy->lbprm.algo = defproxy.lbprm.algo; |
Andrew Rodland | b1f48e3 | 2016-10-25 12:49:05 -0400 | [diff] [blame] | 2654 | curproxy->lbprm.chash.balance_factor = defproxy.lbprm.chash.balance_factor; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2655 | curproxy->fullconn = defproxy.fullconn; |
| 2656 | curproxy->conn_retries = defproxy.conn_retries; |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 2657 | curproxy->redispatch_after = defproxy.redispatch_after; |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 2658 | curproxy->max_ka_queue = defproxy.max_ka_queue; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2659 | |
Willy Tarreau | aa2f389 | 2010-10-22 16:15:31 +0200 | [diff] [blame] | 2660 | if (defproxy.check_req) { |
| 2661 | curproxy->check_req = calloc(1, defproxy.check_len); |
| 2662 | memcpy(curproxy->check_req, defproxy.check_req, defproxy.check_len); |
| 2663 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2664 | curproxy->check_len = defproxy.check_len; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2665 | |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2666 | if (defproxy.expect_str) { |
| 2667 | curproxy->expect_str = strdup(defproxy.expect_str); |
| 2668 | if (defproxy.expect_regex) { |
| 2669 | /* note: this regex is known to be valid */ |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2670 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 2671 | regex_comp(defproxy.expect_str, curproxy->expect_regex, 1, 1, NULL); |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2672 | } |
| 2673 | } |
| 2674 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 2675 | curproxy->ck_opts = defproxy.ck_opts; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2676 | if (defproxy.cookie_name) |
| 2677 | curproxy->cookie_name = strdup(defproxy.cookie_name); |
| 2678 | curproxy->cookie_len = defproxy.cookie_len; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 2679 | |
| 2680 | if (defproxy.dyncookie_key) |
| 2681 | curproxy->dyncookie_key = strdup(defproxy.dyncookie_key); |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 2682 | if (defproxy.cookie_domain) |
| 2683 | curproxy->cookie_domain = strdup(defproxy.cookie_domain); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2684 | |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 2685 | if (defproxy.cookie_maxidle) |
| 2686 | curproxy->cookie_maxidle = defproxy.cookie_maxidle; |
| 2687 | |
| 2688 | if (defproxy.cookie_maxlife) |
| 2689 | curproxy->cookie_maxlife = defproxy.cookie_maxlife; |
| 2690 | |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 2691 | if (defproxy.rdp_cookie_name) |
| 2692 | curproxy->rdp_cookie_name = strdup(defproxy.rdp_cookie_name); |
| 2693 | curproxy->rdp_cookie_len = defproxy.rdp_cookie_len; |
| 2694 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2695 | if (defproxy.url_param_name) |
| 2696 | curproxy->url_param_name = strdup(defproxy.url_param_name); |
| 2697 | curproxy->url_param_len = defproxy.url_param_len; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 2698 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2699 | if (defproxy.hh_name) |
| 2700 | curproxy->hh_name = strdup(defproxy.hh_name); |
| 2701 | curproxy->hh_len = defproxy.hh_len; |
| 2702 | curproxy->hh_match_domain = defproxy.hh_match_domain; |
| 2703 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2704 | if (defproxy.conn_src.iface_name) |
| 2705 | curproxy->conn_src.iface_name = strdup(defproxy.conn_src.iface_name); |
| 2706 | curproxy->conn_src.iface_len = defproxy.conn_src.iface_len; |
Godbach | 9f04853 | 2013-04-23 15:27:57 +0800 | [diff] [blame] | 2707 | curproxy->conn_src.opts = defproxy.conn_src.opts; |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 2708 | #if defined(CONFIG_HAP_TRANSPARENT) |
Godbach | 9f04853 | 2013-04-23 15:27:57 +0800 | [diff] [blame] | 2709 | curproxy->conn_src.tproxy_addr = defproxy.conn_src.tproxy_addr; |
Willy Tarreau | c621d36 | 2013-04-25 17:35:22 +0200 | [diff] [blame] | 2710 | #endif |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 2711 | curproxy->load_server_state_from_file = defproxy.load_server_state_from_file; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2712 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2713 | |
Willy Tarreau | 3b6b1a9 | 2009-07-23 13:24:23 +0200 | [diff] [blame] | 2714 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2715 | if (defproxy.capture_name) |
| 2716 | curproxy->capture_name = strdup(defproxy.capture_name); |
| 2717 | curproxy->capture_namelen = defproxy.capture_namelen; |
| 2718 | curproxy->capture_len = defproxy.capture_len; |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2719 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2720 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2721 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 2722 | curproxy->timeout.client = defproxy.timeout.client; |
Simone Gotti | 1b48cc9 | 2014-06-11 12:25:28 +0200 | [diff] [blame] | 2723 | curproxy->timeout.clientfin = defproxy.timeout.clientfin; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 2724 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 2725 | curproxy->timeout.httpreq = defproxy.timeout.httpreq; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2726 | curproxy->timeout.httpka = defproxy.timeout.httpka; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2727 | curproxy->mon_net = defproxy.mon_net; |
| 2728 | curproxy->mon_mask = defproxy.mon_mask; |
| 2729 | if (defproxy.monitor_uri) |
| 2730 | curproxy->monitor_uri = strdup(defproxy.monitor_uri); |
| 2731 | curproxy->monitor_uri_len = defproxy.monitor_uri_len; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2732 | if (defproxy.defbe.name) |
| 2733 | curproxy->defbe.name = strdup(defproxy.defbe.name); |
Willy Tarreau | 99a7ca2 | 2012-05-31 19:39:23 +0200 | [diff] [blame] | 2734 | |
| 2735 | /* 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] | 2736 | curproxy->conf.logformat_string = defproxy.conf.logformat_string; |
| 2737 | if (curproxy->conf.logformat_string && |
| 2738 | curproxy->conf.logformat_string != default_http_log_format && |
| 2739 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 2740 | curproxy->conf.logformat_string != clf_http_log_format) |
| 2741 | curproxy->conf.logformat_string = strdup(curproxy->conf.logformat_string); |
| 2742 | |
| 2743 | if (defproxy.conf.lfs_file) { |
| 2744 | curproxy->conf.lfs_file = strdup(defproxy.conf.lfs_file); |
| 2745 | curproxy->conf.lfs_line = defproxy.conf.lfs_line; |
| 2746 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 2747 | |
| 2748 | /* get either a pointer to the logformat string for RFC5424 structured-data or a copy of it */ |
| 2749 | curproxy->conf.logformat_sd_string = defproxy.conf.logformat_sd_string; |
| 2750 | if (curproxy->conf.logformat_sd_string && |
| 2751 | curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 2752 | curproxy->conf.logformat_sd_string = strdup(curproxy->conf.logformat_sd_string); |
| 2753 | |
| 2754 | if (defproxy.conf.lfsd_file) { |
| 2755 | curproxy->conf.lfsd_file = strdup(defproxy.conf.lfsd_file); |
| 2756 | curproxy->conf.lfsd_line = defproxy.conf.lfsd_line; |
| 2757 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2758 | } |
| 2759 | |
| 2760 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 2761 | curproxy->timeout.connect = defproxy.timeout.connect; |
| 2762 | curproxy->timeout.server = defproxy.timeout.server; |
Simone Gotti | 1b48cc9 | 2014-06-11 12:25:28 +0200 | [diff] [blame] | 2763 | curproxy->timeout.serverfin = defproxy.timeout.serverfin; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2764 | curproxy->timeout.check = defproxy.timeout.check; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 2765 | curproxy->timeout.queue = defproxy.timeout.queue; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 2766 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 2767 | curproxy->timeout.httpreq = defproxy.timeout.httpreq; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2768 | curproxy->timeout.httpka = defproxy.timeout.httpka; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 2769 | curproxy->timeout.tunnel = defproxy.timeout.tunnel; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2770 | curproxy->conn_src.source_addr = defproxy.conn_src.source_addr; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2771 | } |
| 2772 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2773 | curproxy->mode = defproxy.mode; |
Willy Tarreau | ed2119c | 2014-04-24 22:10:39 +0200 | [diff] [blame] | 2774 | curproxy->uri_auth = defproxy.uri_auth; /* for stats */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2775 | |
| 2776 | /* copy default logsrvs to curproxy */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2777 | list_for_each_entry(tmplogsrv, &defproxy.logsrvs, list) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 2778 | struct logsrv *node = malloc(sizeof(*node)); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 2779 | memcpy(node, tmplogsrv, sizeof(struct logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2780 | LIST_INIT(&node->list); |
| 2781 | LIST_ADDQ(&curproxy->logsrvs, &node->list); |
| 2782 | } |
| 2783 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2784 | curproxy->conf.uniqueid_format_string = defproxy.conf.uniqueid_format_string; |
| 2785 | if (curproxy->conf.uniqueid_format_string) |
| 2786 | curproxy->conf.uniqueid_format_string = strdup(curproxy->conf.uniqueid_format_string); |
| 2787 | |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 2788 | chunk_dup(&curproxy->log_tag, &defproxy.log_tag); |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 2789 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2790 | if (defproxy.conf.uif_file) { |
| 2791 | curproxy->conf.uif_file = strdup(defproxy.conf.uif_file); |
| 2792 | curproxy->conf.uif_line = defproxy.conf.uif_line; |
| 2793 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 2794 | |
| 2795 | /* copy default header unique id */ |
| 2796 | if (defproxy.header_unique_id) |
| 2797 | curproxy->header_unique_id = strdup(defproxy.header_unique_id); |
| 2798 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2799 | /* default compression options */ |
| 2800 | if (defproxy.comp != NULL) { |
| 2801 | curproxy->comp = calloc(1, sizeof(struct comp)); |
| 2802 | curproxy->comp->algos = defproxy.comp->algos; |
| 2803 | curproxy->comp->types = defproxy.comp->types; |
| 2804 | } |
| 2805 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2806 | curproxy->grace = defproxy.grace; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2807 | curproxy->conf.used_listener_id = EB_ROOT; |
| 2808 | curproxy->conf.used_server_id = EB_ROOT; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 2809 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2810 | if (defproxy.check_path) |
| 2811 | curproxy->check_path = strdup(defproxy.check_path); |
| 2812 | if (defproxy.check_command) |
| 2813 | curproxy->check_command = strdup(defproxy.check_command); |
| 2814 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2815 | if (defproxy.email_alert.mailers.name) |
| 2816 | curproxy->email_alert.mailers.name = strdup(defproxy.email_alert.mailers.name); |
| 2817 | if (defproxy.email_alert.from) |
| 2818 | curproxy->email_alert.from = strdup(defproxy.email_alert.from); |
| 2819 | if (defproxy.email_alert.to) |
| 2820 | curproxy->email_alert.to = strdup(defproxy.email_alert.to); |
| 2821 | if (defproxy.email_alert.myhostname) |
| 2822 | curproxy->email_alert.myhostname = strdup(defproxy.email_alert.myhostname); |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 2823 | curproxy->email_alert.level = defproxy.email_alert.level; |
Cyril Bonté | 7e08470 | 2015-12-04 03:07:06 +0100 | [diff] [blame] | 2824 | curproxy->email_alert.set = defproxy.email_alert.set; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2825 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2826 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2827 | } |
| 2828 | else if (!strcmp(args[0], "defaults")) { /* use this one to assign default values */ |
| 2829 | /* some variables may have already been initialized earlier */ |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2830 | /* FIXME-20070101: we should do this too at the end of the |
| 2831 | * config parsing to free all default values. |
| 2832 | */ |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 2833 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2834 | err_code |= ERR_ABORT; |
| 2835 | goto out; |
| 2836 | } |
| 2837 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2838 | free(defproxy.check_req); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2839 | free(defproxy.check_command); |
| 2840 | free(defproxy.check_path); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2841 | free(defproxy.cookie_name); |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 2842 | free(defproxy.rdp_cookie_name); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 2843 | free(defproxy.dyncookie_key); |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 2844 | free(defproxy.cookie_domain); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2845 | free(defproxy.url_param_name); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2846 | free(defproxy.hh_name); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2847 | free(defproxy.capture_name); |
| 2848 | free(defproxy.monitor_uri); |
| 2849 | free(defproxy.defbe.name); |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 2850 | free(defproxy.conn_src.iface_name); |
Willy Tarreau | 79f5fe8 | 2008-08-23 08:18:21 +0200 | [diff] [blame] | 2851 | free(defproxy.fwdfor_hdr_name); |
| 2852 | defproxy.fwdfor_hdr_len = 0; |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 2853 | free(defproxy.orgto_hdr_name); |
| 2854 | defproxy.orgto_hdr_len = 0; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 2855 | free(defproxy.server_id_hdr_name); |
| 2856 | defproxy.server_id_hdr_len = 0; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 2857 | free(defproxy.expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 2858 | if (defproxy.expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2859 | regex_free(defproxy.expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 2860 | free(defproxy.expect_regex); |
| 2861 | defproxy.expect_regex = NULL; |
| 2862 | } |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2863 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2864 | if (defproxy.conf.logformat_string != default_http_log_format && |
| 2865 | defproxy.conf.logformat_string != default_tcp_log_format && |
| 2866 | defproxy.conf.logformat_string != clf_http_log_format) |
| 2867 | free(defproxy.conf.logformat_string); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 2868 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 2869 | free(defproxy.conf.uniqueid_format_string); |
| 2870 | free(defproxy.conf.lfs_file); |
| 2871 | free(defproxy.conf.uif_file); |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 2872 | chunk_destroy(&defproxy.log_tag); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2873 | free_email_alert(&defproxy); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 2874 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 2875 | if (defproxy.conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 2876 | free(defproxy.conf.logformat_sd_string); |
| 2877 | free(defproxy.conf.lfsd_file); |
| 2878 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2879 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 2880 | chunk_destroy(&defproxy.errmsg[rc]); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 2881 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2882 | /* we cannot free uri_auth because it might already be used */ |
| 2883 | init_default_instance(); |
| 2884 | curproxy = &defproxy; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2885 | curproxy->conf.args.file = curproxy->conf.file = strdup(file); |
| 2886 | curproxy->conf.args.line = curproxy->conf.line = linenum; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2887 | defproxy.cap = PR_CAP_LISTEN; /* all caps for now */ |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2888 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2889 | } |
| 2890 | else if (curproxy == NULL) { |
| 2891 | Alert("parsing [%s:%d] : 'listen' or 'defaults' expected.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2892 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2893 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2894 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 2895 | |
| 2896 | /* update the current file and line being parsed */ |
| 2897 | curproxy->conf.args.file = curproxy->conf.file; |
| 2898 | curproxy->conf.args.line = linenum; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2899 | |
| 2900 | /* Now let's parse the proxy-specific keywords */ |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2901 | if (!strcmp(args[0], "server") || |
| 2902 | !strcmp(args[0], "default-server") || |
| 2903 | !strcmp(args[0], "server-template")) { |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2904 | err_code |= parse_server(file, linenum, args, curproxy, &defproxy); |
| 2905 | if (err_code & ERR_FATAL) |
| 2906 | goto out; |
| 2907 | } |
| 2908 | else if (!strcmp(args[0], "bind")) { /* new listen addresses */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2909 | struct listener *l; |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2910 | int cur_arg; |
| 2911 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2912 | if (curproxy == &defproxy) { |
| 2913 | 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] | 2914 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2915 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2916 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 2917 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2918 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2919 | |
Willy Tarreau | 2470928 | 2013-03-10 21:32:12 +0100 | [diff] [blame] | 2920 | if (!*(args[1])) { |
Willy Tarreau | d55c3fe | 2010-11-09 09:50:37 +0100 | [diff] [blame] | 2921 | 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] | 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 | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 2926 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2927 | bind_conf = bind_conf_alloc(curproxy, file, linenum, args[1], xprt_get(XPRT_RAW)); |
Willy Tarreau | 8dc21fa | 2013-01-24 15:17:20 +0100 | [diff] [blame] | 2928 | |
| 2929 | /* use default settings for unix sockets */ |
| 2930 | bind_conf->ux.uid = global.unix_bind.ux.uid; |
| 2931 | bind_conf->ux.gid = global.unix_bind.ux.gid; |
| 2932 | bind_conf->ux.mode = global.unix_bind.ux.mode; |
Willy Tarreau | 8a95691 | 2010-10-15 14:27:08 +0200 | [diff] [blame] | 2933 | |
| 2934 | /* NOTE: the following line might create several listeners if there |
| 2935 | * are comma-separated IPs or port ranges. So all further processing |
| 2936 | * will have to be applied to all listeners created after last_listen. |
| 2937 | */ |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 2938 | if (!str2listener(args[1], curproxy, bind_conf, file, linenum, &errmsg)) { |
| 2939 | if (errmsg && *errmsg) { |
| 2940 | indent_msg(&errmsg, 2); |
| 2941 | Alert("parsing [%s:%d] : '%s' : %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 2942 | } |
| 2943 | else |
| 2944 | Alert("parsing [%s:%d] : '%s' : error encountered while parsing listening address '%s'.\n", |
| 2945 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 2946 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2947 | goto out; |
| 2948 | } |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2949 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2950 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
| 2951 | /* Set default global rights and owner for unix bind */ |
Willy Tarreau | c8b1109 | 2011-02-16 11:08:57 +0100 | [diff] [blame] | 2952 | global.maxsock++; |
Willy Tarreau | 90a570f | 2009-10-04 20:54:54 +0200 | [diff] [blame] | 2953 | } |
| 2954 | |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 2955 | cur_arg = 2; |
| 2956 | while (*(args[cur_arg])) { |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2957 | static int bind_dumped; |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2958 | struct bind_kw *kw; |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2959 | char *err; |
| 2960 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2961 | kw = bind_find_kw(args[cur_arg]); |
| 2962 | if (kw) { |
| 2963 | char *err = NULL; |
| 2964 | int code; |
| 2965 | |
| 2966 | if (!kw->parse) { |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2967 | Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n", |
| 2968 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2969 | cur_arg += 1 + kw->skip ; |
| 2970 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2971 | goto out; |
| 2972 | } |
| 2973 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2974 | code = kw->parse(args, cur_arg, curproxy, bind_conf, &err); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2975 | err_code |= code; |
| 2976 | |
| 2977 | if (code) { |
| 2978 | if (err && *err) { |
| 2979 | indent_msg(&err, 2); |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2980 | 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] | 2981 | } |
| 2982 | else |
Willy Tarreau | dda322d | 2012-09-18 16:34:09 +0200 | [diff] [blame] | 2983 | Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n", |
| 2984 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 2985 | if (code & ERR_FATAL) { |
| 2986 | free(err); |
| 2987 | cur_arg += 1 + kw->skip; |
| 2988 | goto out; |
| 2989 | } |
| 2990 | } |
| 2991 | free(err); |
| 2992 | cur_arg += 1 + kw->skip; |
| 2993 | continue; |
| 2994 | } |
| 2995 | |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 2996 | err = NULL; |
| 2997 | if (!bind_dumped) { |
| 2998 | bind_dump_kws(&err); |
| 2999 | indent_msg(&err, 4); |
| 3000 | bind_dumped = 1; |
| 3001 | } |
| 3002 | |
| 3003 | Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n", |
| 3004 | file, linenum, args[0], args[1], args[cur_arg], |
| 3005 | err ? " Registered keywords :" : "", err ? err : ""); |
| 3006 | free(err); |
| 3007 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3008 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3009 | goto out; |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 3010 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3011 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3012 | } |
| 3013 | 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] | 3014 | 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] | 3015 | Alert("parsing [%s:%d] : '%s' expects address[/mask].\n", |
| 3016 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3017 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3018 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3019 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3020 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3021 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3022 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3023 | /* flush useless bits */ |
| 3024 | curproxy->mon_net.s_addr &= curproxy->mon_mask.s_addr; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3025 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3026 | } |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3027 | else if (!strcmp(args[0], "monitor-uri")) { /* set the URI to intercept */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3028 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3029 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3030 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3031 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3032 | goto out; |
| 3033 | |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3034 | if (!*args[1]) { |
| 3035 | Alert("parsing [%s:%d] : '%s' expects an URI.\n", |
| 3036 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3037 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3038 | goto out; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3039 | } |
| 3040 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3041 | free(curproxy->monitor_uri); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 3042 | curproxy->monitor_uri_len = strlen(args[1]); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3043 | curproxy->monitor_uri = calloc(1, curproxy->monitor_uri_len + 1); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 3044 | memcpy(curproxy->monitor_uri, args[1], curproxy->monitor_uri_len); |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3045 | curproxy->monitor_uri[curproxy->monitor_uri_len] = '\0'; |
| 3046 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3047 | goto out; |
Willy Tarreau | 1c47f85 | 2006-07-09 08:22:27 +0200 | [diff] [blame] | 3048 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3049 | else if (!strcmp(args[0], "mode")) { /* sets the proxy mode */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3050 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3051 | goto out; |
| 3052 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3053 | if (!strcmp(args[1], "http")) curproxy->mode = PR_MODE_HTTP; |
| 3054 | else if (!strcmp(args[1], "tcp")) curproxy->mode = PR_MODE_TCP; |
| 3055 | else if (!strcmp(args[1], "health")) curproxy->mode = PR_MODE_HEALTH; |
| 3056 | else { |
| 3057 | 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] | 3058 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3059 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3060 | } |
| 3061 | } |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3062 | else if (!strcmp(args[0], "id")) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3063 | struct eb32_node *node; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3064 | |
| 3065 | if (curproxy == &defproxy) { |
| 3066 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", |
| 3067 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3068 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3069 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3070 | } |
| 3071 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3072 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3073 | goto out; |
| 3074 | |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3075 | if (!*args[1]) { |
| 3076 | Alert("parsing [%s:%d]: '%s' expects an integer argument.\n", |
| 3077 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3078 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3079 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3080 | } |
| 3081 | |
| 3082 | curproxy->uuid = atol(args[1]); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3083 | curproxy->conf.id.key = curproxy->uuid; |
Willy Tarreau | 0d1fdf7 | 2015-05-27 16:44:02 +0200 | [diff] [blame] | 3084 | curproxy->options |= PR_O_FORCED_ID; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3085 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3086 | if (curproxy->uuid <= 0) { |
| 3087 | Alert("parsing [%s:%d]: custom id has to be > 0.\n", |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3088 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3089 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3090 | goto out; |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3091 | } |
| 3092 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 3093 | node = eb32_lookup(&used_proxy_id, curproxy->uuid); |
| 3094 | if (node) { |
| 3095 | struct proxy *target = container_of(node, struct proxy, conf.id); |
| 3096 | Alert("parsing [%s:%d]: %s %s reuses same custom id as %s %s (declared at %s:%d).\n", |
| 3097 | file, linenum, proxy_type_str(curproxy), curproxy->id, |
| 3098 | proxy_type_str(target), target->id, target->conf.file, target->conf.line); |
| 3099 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3100 | goto out; |
| 3101 | } |
| 3102 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Krzysztof Piotr Oledzki | f58a962 | 2008-02-23 01:19:10 +0100 | [diff] [blame] | 3103 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3104 | else if (!strcmp(args[0], "description")) { |
| 3105 | int i, len=0; |
| 3106 | char *d; |
| 3107 | |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3108 | if (curproxy == &defproxy) { |
| 3109 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", |
| 3110 | file, linenum, args[0]); |
| 3111 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3112 | goto out; |
| 3113 | } |
| 3114 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3115 | if (!*args[1]) { |
| 3116 | Alert("parsing [%s:%d]: '%s' expects a string argument.\n", |
| 3117 | file, linenum, args[0]); |
| 3118 | return -1; |
| 3119 | } |
| 3120 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 3121 | for (i = 1; *args[i]; i++) |
| 3122 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3123 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3124 | d = calloc(1, len); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3125 | curproxy->desc = d; |
| 3126 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 3127 | d += snprintf(d, curproxy->desc + len - d, "%s", args[1]); |
| 3128 | for (i = 2; *args[i]; i++) |
| 3129 | d += snprintf(d, curproxy->desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 3130 | |
| 3131 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3132 | else if (!strcmp(args[0], "disabled")) { /* disables this proxy */ |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3133 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 3134 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3135 | curproxy->state = PR_STSTOPPED; |
| 3136 | } |
| 3137 | 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] | 3138 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 3139 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3140 | curproxy->state = PR_STNEW; |
| 3141 | } |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3142 | else if (!strcmp(args[0], "bind-process")) { /* enable this proxy only on some processes */ |
| 3143 | int cur_arg = 1; |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3144 | unsigned long set = 0; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3145 | |
| 3146 | while (*args[cur_arg]) { |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3147 | unsigned int low, high; |
| 3148 | |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3149 | if (strcmp(args[cur_arg], "all") == 0) { |
| 3150 | set = 0; |
| 3151 | break; |
| 3152 | } |
| 3153 | else if (strcmp(args[cur_arg], "odd") == 0) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3154 | set |= ~0UL/3UL; /* 0x555....555 */ |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3155 | } |
| 3156 | else if (strcmp(args[cur_arg], "even") == 0) { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3157 | set |= (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3158 | } |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 3159 | else if (isdigit((int)*args[cur_arg])) { |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3160 | char *dash = strchr(args[cur_arg], '-'); |
| 3161 | |
| 3162 | low = high = str2uic(args[cur_arg]); |
| 3163 | if (dash) |
| 3164 | high = str2uic(dash + 1); |
| 3165 | |
| 3166 | if (high < low) { |
| 3167 | unsigned int swap = low; |
| 3168 | low = high; |
| 3169 | high = swap; |
| 3170 | } |
| 3171 | |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3172 | if (low < 1 || high > LONGBITS) { |
| 3173 | Alert("parsing [%s:%d]: %s supports process numbers from 1 to %d.\n", |
| 3174 | file, linenum, args[0], LONGBITS); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3175 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3176 | goto out; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3177 | } |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3178 | while (low <= high) |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3179 | set |= 1UL << (low++ - 1); |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3180 | } |
| 3181 | else { |
Willy Tarreau | a9db57e | 2013-01-18 11:29:29 +0100 | [diff] [blame] | 3182 | Alert("parsing [%s:%d]: %s expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to %d.\n", |
| 3183 | file, linenum, args[0], LONGBITS); |
Willy Tarreau | 110ecc1 | 2012-11-15 17:50:01 +0100 | [diff] [blame] | 3184 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3185 | goto out; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3186 | } |
| 3187 | cur_arg++; |
| 3188 | } |
| 3189 | curproxy->bind_proc = set; |
| 3190 | } |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3191 | else if (!strcmp(args[0], "acl")) { /* add an ACL */ |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3192 | if (curproxy == &defproxy) { |
| 3193 | 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] | 3194 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3195 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3196 | } |
| 3197 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 3198 | err = invalid_char(args[1]); |
| 3199 | if (err) { |
| 3200 | Alert("parsing [%s:%d] : character '%c' is not permitted in acl name '%s'.\n", |
| 3201 | file, linenum, *err, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3202 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 1822e8c | 2017-04-12 18:54:00 +0200 | [diff] [blame] | 3203 | goto out; |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 3204 | } |
| 3205 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 3206 | 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] | 3207 | Alert("parsing [%s:%d] : error detected while parsing ACL '%s' : %s.\n", |
| 3208 | file, linenum, args[1], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3209 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3210 | goto out; |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3211 | } |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3212 | } |
| 3213 | else if (!strcmp(args[0], "dynamic-cookie-key")) { /* Dynamic cookies secret key */ |
| 3214 | |
| 3215 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3216 | err_code |= ERR_WARN; |
| 3217 | |
| 3218 | if (*(args[1]) == 0) { |
| 3219 | Alert("parsing [%s:%d] : '%s' expects <secret_key> as argument.\n", |
| 3220 | file, linenum, args[0]); |
| 3221 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3222 | goto out; |
| 3223 | } |
| 3224 | free(curproxy->dyncookie_key); |
| 3225 | curproxy->dyncookie_key = strdup(args[1]); |
Willy Tarreau | eb0c614 | 2007-05-07 00:53:22 +0200 | [diff] [blame] | 3226 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3227 | else if (!strcmp(args[0], "cookie")) { /* cookie name */ |
| 3228 | int cur_arg; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3229 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3230 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3231 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3232 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3233 | if (*(args[1]) == 0) { |
| 3234 | Alert("parsing [%s:%d] : '%s' expects <cookie_name> as argument.\n", |
| 3235 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3236 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3237 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3238 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3239 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3240 | curproxy->ck_opts = 0; |
Willy Tarreau | c63d4bb | 2010-10-23 11:37:27 +0200 | [diff] [blame] | 3241 | curproxy->cookie_maxidle = curproxy->cookie_maxlife = 0; |
Willy Tarreau | 4d187ac | 2009-12-03 23:13:06 +0100 | [diff] [blame] | 3242 | free(curproxy->cookie_domain); curproxy->cookie_domain = NULL; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3243 | free(curproxy->cookie_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3244 | curproxy->cookie_name = strdup(args[1]); |
| 3245 | curproxy->cookie_len = strlen(curproxy->cookie_name); |
Willy Tarreau | c63d4bb | 2010-10-23 11:37:27 +0200 | [diff] [blame] | 3246 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3247 | cur_arg = 2; |
| 3248 | while (*(args[cur_arg])) { |
| 3249 | if (!strcmp(args[cur_arg], "rewrite")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3250 | curproxy->ck_opts |= PR_CK_RW; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3251 | } |
| 3252 | else if (!strcmp(args[cur_arg], "indirect")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3253 | curproxy->ck_opts |= PR_CK_IND; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3254 | } |
| 3255 | else if (!strcmp(args[cur_arg], "insert")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3256 | curproxy->ck_opts |= PR_CK_INS; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3257 | } |
| 3258 | else if (!strcmp(args[cur_arg], "nocache")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3259 | curproxy->ck_opts |= PR_CK_NOC; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3260 | } |
| 3261 | else if (!strcmp(args[cur_arg], "postonly")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3262 | curproxy->ck_opts |= PR_CK_POST; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3263 | } |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3264 | else if (!strcmp(args[cur_arg], "preserve")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3265 | curproxy->ck_opts |= PR_CK_PSV; |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3266 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3267 | else if (!strcmp(args[cur_arg], "prefix")) { |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3268 | curproxy->ck_opts |= PR_CK_PFX; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3269 | } |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 3270 | else if (!strcmp(args[cur_arg], "httponly")) { |
| 3271 | curproxy->ck_opts |= PR_CK_HTTPONLY; |
| 3272 | } |
| 3273 | else if (!strcmp(args[cur_arg], "secure")) { |
| 3274 | curproxy->ck_opts |= PR_CK_SECURE; |
| 3275 | } |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3276 | else if (!strcmp(args[cur_arg], "domain")) { |
| 3277 | if (!*args[cur_arg + 1]) { |
| 3278 | Alert("parsing [%s:%d]: '%s' expects <domain> as argument.\n", |
| 3279 | file, linenum, args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3280 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3281 | goto out; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3282 | } |
| 3283 | |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3284 | if (*args[cur_arg + 1] != '.' || !strchr(args[cur_arg + 1] + 1, '.')) { |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3285 | /* rfc2109, 4.3.2 Rejecting Cookies */ |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3286 | Warning("parsing [%s:%d]: domain '%s' contains no embedded" |
| 3287 | " dots nor does not start with a dot." |
| 3288 | " RFC forbids it, this configuration may not work properly.\n", |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3289 | file, linenum, args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 1a8bea9 | 2009-12-15 23:40:47 +0100 | [diff] [blame] | 3290 | err_code |= ERR_WARN; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3291 | } |
| 3292 | |
| 3293 | err = invalid_domainchar(args[cur_arg + 1]); |
| 3294 | if (err) { |
| 3295 | Alert("parsing [%s:%d]: character '%c' is not permitted in domain name '%s'.\n", |
| 3296 | file, linenum, *err, args[cur_arg + 1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3297 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3298 | goto out; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3299 | } |
| 3300 | |
Willy Tarreau | 68a897b | 2009-12-03 23:28:34 +0100 | [diff] [blame] | 3301 | if (!curproxy->cookie_domain) { |
| 3302 | curproxy->cookie_domain = strdup(args[cur_arg + 1]); |
| 3303 | } else { |
| 3304 | /* one domain was already specified, add another one by |
| 3305 | * building the string which will be returned along with |
| 3306 | * the cookie. |
| 3307 | */ |
| 3308 | char *new_ptr; |
| 3309 | int new_len = strlen(curproxy->cookie_domain) + |
| 3310 | strlen("; domain=") + strlen(args[cur_arg + 1]) + 1; |
| 3311 | new_ptr = malloc(new_len); |
| 3312 | snprintf(new_ptr, new_len, "%s; domain=%s", curproxy->cookie_domain, args[cur_arg+1]); |
| 3313 | free(curproxy->cookie_domain); |
| 3314 | curproxy->cookie_domain = new_ptr; |
| 3315 | } |
Willy Tarreau | 3193685 | 2010-10-06 16:59:56 +0200 | [diff] [blame] | 3316 | cur_arg++; |
| 3317 | } |
| 3318 | else if (!strcmp(args[cur_arg], "maxidle")) { |
| 3319 | unsigned int maxidle; |
| 3320 | const char *res; |
| 3321 | |
| 3322 | if (!*args[cur_arg + 1]) { |
| 3323 | Alert("parsing [%s:%d]: '%s' expects <idletime> in seconds as argument.\n", |
| 3324 | file, linenum, args[cur_arg]); |
| 3325 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3326 | goto out; |
| 3327 | } |
| 3328 | |
| 3329 | res = parse_time_err(args[cur_arg + 1], &maxidle, TIME_UNIT_S); |
| 3330 | if (res) { |
| 3331 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 3332 | file, linenum, *res, args[cur_arg]); |
| 3333 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3334 | goto out; |
| 3335 | } |
| 3336 | curproxy->cookie_maxidle = maxidle; |
| 3337 | cur_arg++; |
| 3338 | } |
| 3339 | else if (!strcmp(args[cur_arg], "maxlife")) { |
| 3340 | unsigned int maxlife; |
| 3341 | const char *res; |
| 3342 | |
| 3343 | if (!*args[cur_arg + 1]) { |
| 3344 | Alert("parsing [%s:%d]: '%s' expects <lifetime> in seconds as argument.\n", |
| 3345 | file, linenum, args[cur_arg]); |
| 3346 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3347 | goto out; |
| 3348 | } |
| 3349 | |
| 3350 | res = parse_time_err(args[cur_arg + 1], &maxlife, TIME_UNIT_S); |
| 3351 | if (res) { |
| 3352 | Alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n", |
| 3353 | file, linenum, *res, args[cur_arg]); |
| 3354 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3355 | goto out; |
| 3356 | } |
| 3357 | curproxy->cookie_maxlife = maxlife; |
Krzysztof Piotr Oledzki | efe3b6f | 2008-05-23 23:49:32 +0200 | [diff] [blame] | 3358 | cur_arg++; |
| 3359 | } |
Olivier Houchard | a5938f7 | 2017-03-15 15:12:06 +0100 | [diff] [blame] | 3360 | else if (!strcmp(args[cur_arg], "dynamic")) { /* Dynamic persistent cookies secret key */ |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3361 | |
| 3362 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[cur_arg], NULL)) |
| 3363 | err_code |= ERR_WARN; |
| 3364 | curproxy->ck_opts |= PR_CK_DYNAMIC; |
| 3365 | } |
| 3366 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3367 | else { |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3368 | Alert("parsing [%s:%d] : '%s' supports 'rewrite', 'insert', 'prefix', 'indirect', 'nocache', 'postonly', 'domain', 'maxidle', 'dynamic' and 'maxlife' options.\n", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3369 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3370 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3371 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3372 | } |
| 3373 | cur_arg++; |
| 3374 | } |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3375 | if (!POWEROF2(curproxy->ck_opts & (PR_CK_RW|PR_CK_IND))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3376 | Alert("parsing [%s:%d] : cookie 'rewrite' and 'indirect' modes are incompatible.\n", |
| 3377 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3378 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3379 | } |
| 3380 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3381 | 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] | 3382 | Alert("parsing [%s:%d] : cookie 'rewrite', 'insert' and 'prefix' modes are incompatible.\n", |
| 3383 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3384 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3385 | } |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 3386 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 3387 | 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] | 3388 | Alert("parsing [%s:%d] : cookie 'preserve' requires at least 'insert' or 'indirect'.\n", |
| 3389 | file, linenum); |
| 3390 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3391 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3392 | }/* end else if (!strcmp(args[0], "cookie")) */ |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3393 | else if (!strcmp(args[0], "email-alert")) { |
| 3394 | if (*(args[1]) == 0) { |
| 3395 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3396 | file, linenum, args[0]); |
| 3397 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3398 | goto out; |
| 3399 | } |
| 3400 | |
| 3401 | if (!strcmp(args[1], "from")) { |
| 3402 | if (*(args[1]) == 0) { |
| 3403 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3404 | file, linenum, args[1]); |
| 3405 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3406 | goto out; |
| 3407 | } |
| 3408 | free(curproxy->email_alert.from); |
| 3409 | curproxy->email_alert.from = strdup(args[2]); |
| 3410 | } |
| 3411 | else if (!strcmp(args[1], "mailers")) { |
| 3412 | if (*(args[1]) == 0) { |
| 3413 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3414 | file, linenum, args[1]); |
| 3415 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3416 | goto out; |
| 3417 | } |
| 3418 | free(curproxy->email_alert.mailers.name); |
| 3419 | curproxy->email_alert.mailers.name = strdup(args[2]); |
| 3420 | } |
| 3421 | else if (!strcmp(args[1], "myhostname")) { |
| 3422 | if (*(args[1]) == 0) { |
| 3423 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3424 | file, linenum, args[1]); |
| 3425 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3426 | goto out; |
| 3427 | } |
| 3428 | free(curproxy->email_alert.myhostname); |
| 3429 | curproxy->email_alert.myhostname = strdup(args[2]); |
| 3430 | } |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3431 | else if (!strcmp(args[1], "level")) { |
| 3432 | curproxy->email_alert.level = get_log_level(args[2]); |
| 3433 | if (curproxy->email_alert.level < 0) { |
| 3434 | Alert("parsing [%s:%d] : unknown log level '%s' after '%s'\n", |
| 3435 | file, linenum, args[1], args[2]); |
| 3436 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3437 | goto out; |
| 3438 | } |
| 3439 | } |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3440 | else if (!strcmp(args[1], "to")) { |
| 3441 | if (*(args[1]) == 0) { |
| 3442 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3443 | file, linenum, args[1]); |
| 3444 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3445 | goto out; |
| 3446 | } |
| 3447 | free(curproxy->email_alert.to); |
| 3448 | curproxy->email_alert.to = strdup(args[2]); |
| 3449 | } |
| 3450 | else { |
| 3451 | Alert("parsing [%s:%d] : email-alert: unknown argument '%s'.\n", |
| 3452 | file, linenum, args[1]); |
| 3453 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3454 | goto out; |
| 3455 | } |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3456 | /* Indicate that the email_alert is at least partially configured */ |
| 3457 | curproxy->email_alert.set = 1; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3458 | }/* end else if (!strcmp(args[0], "email-alert")) */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3459 | else if (!strcmp(args[0], "external-check")) { |
| 3460 | if (*(args[1]) == 0) { |
| 3461 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3462 | file, linenum, args[0]); |
| 3463 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3464 | goto out; |
| 3465 | } |
| 3466 | |
| 3467 | if (!strcmp(args[1], "command")) { |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3468 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3469 | goto out; |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3470 | if (*(args[2]) == 0) { |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3471 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3472 | file, linenum, args[1]); |
| 3473 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3474 | goto out; |
| 3475 | } |
| 3476 | free(curproxy->check_command); |
| 3477 | curproxy->check_command = strdup(args[2]); |
| 3478 | } |
| 3479 | else if (!strcmp(args[1], "path")) { |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3480 | if (alertif_too_many_args(2, file, linenum, args, &err_code)) |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3481 | goto out; |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 3482 | if (*(args[2]) == 0) { |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 3483 | Alert("parsing [%s:%d] : missing argument after '%s'.\n", |
| 3484 | file, linenum, args[1]); |
| 3485 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3486 | goto out; |
| 3487 | } |
| 3488 | free(curproxy->check_path); |
| 3489 | curproxy->check_path = strdup(args[2]); |
| 3490 | } |
| 3491 | else { |
| 3492 | Alert("parsing [%s:%d] : external-check: unknown argument '%s'.\n", |
| 3493 | file, linenum, args[1]); |
| 3494 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3495 | goto out; |
| 3496 | } |
| 3497 | }/* end else if (!strcmp(args[0], "external-check")) */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3498 | else if (!strcmp(args[0], "persist")) { /* persist */ |
| 3499 | if (*(args[1]) == 0) { |
| 3500 | Alert("parsing [%s:%d] : missing persist method.\n", |
| 3501 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3502 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3503 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3504 | } |
| 3505 | |
| 3506 | if (!strncmp(args[1], "rdp-cookie", 10)) { |
| 3507 | curproxy->options2 |= PR_O2_RDPC_PRST; |
| 3508 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3509 | if (*(args[1] + 10) == '(') { /* cookie name */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3510 | const char *beg, *end; |
| 3511 | |
| 3512 | beg = args[1] + 11; |
| 3513 | end = strchr(beg, ')'); |
| 3514 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3515 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3516 | goto out; |
| 3517 | |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3518 | if (!end || end == beg) { |
| 3519 | Alert("parsing [%s:%d] : persist rdp-cookie(name)' requires an rdp cookie name.\n", |
| 3520 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3521 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3522 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3523 | } |
| 3524 | |
| 3525 | free(curproxy->rdp_cookie_name); |
| 3526 | curproxy->rdp_cookie_name = my_strndup(beg, end - beg); |
| 3527 | curproxy->rdp_cookie_len = end-beg; |
| 3528 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3529 | else if (*(args[1] + 10) == '\0') { /* default cookie name 'msts' */ |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3530 | free(curproxy->rdp_cookie_name); |
| 3531 | curproxy->rdp_cookie_name = strdup("msts"); |
| 3532 | curproxy->rdp_cookie_len = strlen(curproxy->rdp_cookie_name); |
| 3533 | } |
| 3534 | else { /* syntax */ |
| 3535 | Alert("parsing [%s:%d] : persist rdp-cookie(name)' requires an rdp cookie name.\n", |
| 3536 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3537 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3538 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3539 | } |
| 3540 | } |
| 3541 | else { |
| 3542 | Alert("parsing [%s:%d] : unknown persist method.\n", |
| 3543 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3544 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3545 | goto out; |
Emeric Brun | 647caf1 | 2009-06-30 17:57:00 +0200 | [diff] [blame] | 3546 | } |
| 3547 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3548 | else if (!strcmp(args[0], "appsession")) { /* cookie name */ |
Willy Tarreau | 6db62c5 | 2015-08-10 19:04:29 +0200 | [diff] [blame] | 3549 | Alert("parsing [%s:%d] : '%s' is not supported anymore, please check the documentation.\n", file, linenum, args[0]); |
| 3550 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3551 | goto out; |
| 3552 | } |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 3553 | else if (!strcmp(args[0], "load-server-state-from-file")) { |
| 3554 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3555 | err_code |= ERR_WARN; |
| 3556 | if (!strcmp(args[1], "global")) { /* use the file pointed to by global server-state-file directive */ |
| 3557 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_GLOBAL; |
| 3558 | } |
| 3559 | else if (!strcmp(args[1], "local")) { /* use the server-state-file-name variable to locate the server-state file */ |
| 3560 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_LOCAL; |
| 3561 | } |
| 3562 | else if (!strcmp(args[1], "none")) { /* don't use server-state-file directive for this backend */ |
| 3563 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE; |
| 3564 | } |
| 3565 | else { |
| 3566 | Alert("parsing [%s:%d] : '%s' expects 'global', 'local' or 'none'. Got '%s'\n", |
| 3567 | file, linenum, args[0], args[1]); |
| 3568 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3569 | goto out; |
| 3570 | } |
| 3571 | } |
| 3572 | else if (!strcmp(args[0], "server-state-file-name")) { |
| 3573 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3574 | err_code |= ERR_WARN; |
| 3575 | if (*(args[1]) == 0) { |
| 3576 | Alert("parsing [%s:%d] : '%s' expects 'use-backend-name' or a string. Got no argument\n", |
| 3577 | file, linenum, args[0]); |
| 3578 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3579 | goto out; |
| 3580 | } |
| 3581 | else if (!strcmp(args[1], "use-backend-name")) |
| 3582 | curproxy->server_state_file_name = strdup(curproxy->id); |
| 3583 | else |
| 3584 | curproxy->server_state_file_name = strdup(args[1]); |
| 3585 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3586 | else if (!strcmp(args[0], "capture")) { |
Willy Tarreau | 3b6b1a9 | 2009-07-23 13:24:23 +0200 | [diff] [blame] | 3587 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3588 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3589 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3590 | if (!strcmp(args[1], "cookie")) { /* name of a cookie to capture */ |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3591 | if (curproxy == &defproxy) { |
| 3592 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
| 3593 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3594 | goto out; |
| 3595 | } |
| 3596 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3597 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3598 | goto out; |
| 3599 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3600 | if (*(args[4]) == 0) { |
| 3601 | Alert("parsing [%s:%d] : '%s' expects 'cookie' <cookie_name> 'len' <len>.\n", |
| 3602 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3603 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3604 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3605 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 3606 | free(curproxy->capture_name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3607 | curproxy->capture_name = strdup(args[2]); |
| 3608 | curproxy->capture_namelen = strlen(curproxy->capture_name); |
| 3609 | curproxy->capture_len = atol(args[4]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3610 | curproxy->to_log |= LW_COOKIE; |
| 3611 | } |
| 3612 | else if (!strcmp(args[1], "request") && !strcmp(args[2], "header")) { |
| 3613 | struct cap_hdr *hdr; |
| 3614 | |
| 3615 | if (curproxy == &defproxy) { |
| 3616 | 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] | 3617 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3618 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3619 | } |
| 3620 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3621 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3622 | goto out; |
| 3623 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3624 | if (*(args[3]) == 0 || strcmp(args[4], "len") != 0 || *(args[5]) == 0) { |
| 3625 | Alert("parsing [%s:%d] : '%s %s' expects 'header' <header_name> 'len' <len>.\n", |
| 3626 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3627 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3628 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3629 | } |
| 3630 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 3631 | hdr = calloc(1, sizeof(*hdr)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3632 | hdr->next = curproxy->req_cap; |
| 3633 | hdr->name = strdup(args[3]); |
| 3634 | hdr->namelen = strlen(args[3]); |
| 3635 | hdr->len = atol(args[5]); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3636 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3637 | hdr->index = curproxy->nb_req_cap++; |
| 3638 | curproxy->req_cap = hdr; |
| 3639 | curproxy->to_log |= LW_REQHDR; |
| 3640 | } |
| 3641 | else if (!strcmp(args[1], "response") && !strcmp(args[2], "header")) { |
| 3642 | struct cap_hdr *hdr; |
| 3643 | |
| 3644 | if (curproxy == &defproxy) { |
| 3645 | 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] | 3646 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3647 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3648 | } |
| 3649 | |
William Lallemand | 1a748ae | 2015-05-19 16:37:23 +0200 | [diff] [blame] | 3650 | if (alertif_too_many_args_idx(4, 1, file, linenum, args, &err_code)) |
| 3651 | goto out; |
| 3652 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3653 | if (*(args[3]) == 0 || strcmp(args[4], "len") != 0 || *(args[5]) == 0) { |
| 3654 | Alert("parsing [%s:%d] : '%s %s' expects 'header' <header_name> 'len' <len>.\n", |
| 3655 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3656 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3657 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3658 | } |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 3659 | hdr = calloc(1, sizeof(*hdr)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3660 | hdr->next = curproxy->rsp_cap; |
| 3661 | hdr->name = strdup(args[3]); |
| 3662 | hdr->namelen = strlen(args[3]); |
| 3663 | hdr->len = atol(args[5]); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3664 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3665 | hdr->index = curproxy->nb_rsp_cap++; |
| 3666 | curproxy->rsp_cap = hdr; |
| 3667 | curproxy->to_log |= LW_RSPHDR; |
| 3668 | } |
| 3669 | else { |
| 3670 | Alert("parsing [%s:%d] : '%s' expects 'cookie' or 'request header' or 'response header'.\n", |
| 3671 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3672 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3673 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3674 | } |
| 3675 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3676 | else if (!strcmp(args[0], "retries")) { /* connection retries */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3677 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3678 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 3679 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 3680 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 3681 | goto out; |
| 3682 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3683 | if (*(args[1]) == 0) { |
| 3684 | Alert("parsing [%s:%d] : '%s' expects an integer argument (dispatch counts for one).\n", |
| 3685 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3686 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3687 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3688 | } |
| 3689 | curproxy->conn_retries = atol(args[1]); |
| 3690 | } |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3691 | else if (!strcmp(args[0], "http-request")) { /* request access control: allow/deny/auth */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3692 | struct act_rule *rule; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3693 | |
| 3694 | if (curproxy == &defproxy) { |
| 3695 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3696 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3697 | goto out; |
| 3698 | } |
| 3699 | |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3700 | if (!LIST_ISEMPTY(&curproxy->http_req_rules) && |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3701 | !LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->cond && |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 3702 | (LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_ACTION_ALLOW || |
| 3703 | LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_ACTION_DENY || |
| 3704 | LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_HTTP_REDIR || |
| 3705 | LIST_PREV(&curproxy->http_req_rules, struct act_rule *, list)->action == ACT_HTTP_REQ_AUTH)) { |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3706 | 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] | 3707 | file, linenum, args[0]); |
| 3708 | err_code |= ERR_WARN; |
| 3709 | } |
| 3710 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3711 | 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] | 3712 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3713 | if (!rule) { |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3714 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3715 | goto out; |
| 3716 | } |
| 3717 | |
Willy Tarreau | 5002f57 | 2014-04-23 01:32:02 +0200 | [diff] [blame] | 3718 | err_code |= warnif_misplaced_http_req(curproxy, file, linenum, args[0]); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3719 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3720 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3721 | file, linenum); |
| 3722 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3723 | LIST_ADDQ(&curproxy->http_req_rules, &rule->list); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3724 | } |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3725 | else if (!strcmp(args[0], "http-response")) { /* response access control */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3726 | struct act_rule *rule; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3727 | |
| 3728 | if (curproxy == &defproxy) { |
| 3729 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3730 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3731 | goto out; |
| 3732 | } |
| 3733 | |
| 3734 | if (!LIST_ISEMPTY(&curproxy->http_res_rules) && |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3735 | !LIST_PREV(&curproxy->http_res_rules, struct act_rule *, list)->cond && |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 3736 | (LIST_PREV(&curproxy->http_res_rules, struct act_rule *, list)->action == ACT_ACTION_ALLOW || |
| 3737 | LIST_PREV(&curproxy->http_res_rules, struct act_rule *, list)->action == ACT_ACTION_DENY)) { |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3738 | Warning("parsing [%s:%d]: previous '%s' action is final and has no condition attached, further entries are NOOP.\n", |
| 3739 | file, linenum, args[0]); |
| 3740 | err_code |= ERR_WARN; |
| 3741 | } |
| 3742 | |
| 3743 | rule = parse_http_res_cond((const char **)args + 1, file, linenum, curproxy); |
| 3744 | |
| 3745 | if (!rule) { |
| 3746 | err_code |= ERR_ALERT | ERR_ABORT; |
| 3747 | goto out; |
| 3748 | } |
| 3749 | |
| 3750 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3751 | (curproxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 3752 | file, linenum); |
| 3753 | |
| 3754 | LIST_ADDQ(&curproxy->http_res_rules, &rule->list); |
| 3755 | } |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 3756 | else if (!strcmp(args[0], "http-send-name-header")) { /* send server name in request header */ |
| 3757 | /* set the header name and length into the proxy structure */ |
| 3758 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3759 | err_code |= ERR_WARN; |
| 3760 | |
| 3761 | if (!*args[1]) { |
| 3762 | Alert("parsing [%s:%d] : '%s' requires a header string.\n", |
| 3763 | file, linenum, args[0]); |
| 3764 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3765 | goto out; |
| 3766 | } |
| 3767 | |
| 3768 | /* set the desired header name */ |
| 3769 | free(curproxy->server_id_hdr_name); |
| 3770 | curproxy->server_id_hdr_name = strdup(args[1]); |
| 3771 | curproxy->server_id_hdr_len = strlen(curproxy->server_id_hdr_name); |
| 3772 | } |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3773 | else if (!strcmp(args[0], "block")) { /* early blocking based on ACLs */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3774 | struct act_rule *rule; |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3775 | |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3776 | if (curproxy == &defproxy) { |
| 3777 | 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] | 3778 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3779 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3780 | } |
| 3781 | |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3782 | /* emulate "block" using "http-request block". Since these rules are supposed to |
| 3783 | * be processed before all http-request rules, we put them into their own list |
| 3784 | * and will insert them at the end. |
| 3785 | */ |
| 3786 | rule = parse_http_req_cond((const char **)args, file, linenum, curproxy); |
| 3787 | if (!rule) { |
| 3788 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3789 | goto out; |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3790 | } |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 3791 | err_code |= warnif_misplaced_block(curproxy, file, linenum, args[0]); |
| 3792 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3793 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3794 | file, linenum); |
| 3795 | LIST_ADDQ(&curproxy->block_rules, &rule->list); |
Willy Tarreau | de9d2d7 | 2014-04-28 22:28:02 +0200 | [diff] [blame] | 3796 | |
| 3797 | if (!already_warned(WARN_BLOCK_DEPRECATED)) |
| 3798 | 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]); |
| 3799 | |
Willy Tarreau | 5c8e3e0 | 2007-05-07 00:58:25 +0200 | [diff] [blame] | 3800 | } |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3801 | else if (!strcmp(args[0], "redirect")) { |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3802 | struct redirect_rule *rule; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3803 | |
Cyril Bonté | 99ed327 | 2010-01-24 23:29:44 +0100 | [diff] [blame] | 3804 | if (curproxy == &defproxy) { |
| 3805 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3806 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3807 | goto out; |
| 3808 | } |
| 3809 | |
Willy Tarreau | be4653b | 2015-05-28 15:26:58 +0200 | [diff] [blame] | 3810 | 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] | 3811 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing redirect rule : %s.\n", |
| 3812 | file, linenum, proxy_type_str(curproxy), curproxy->id, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3813 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3814 | goto out; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3815 | } |
| 3816 | |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3817 | LIST_ADDQ(&curproxy->redirect_rules, &rule->list); |
Willy Tarreau | ee445d9 | 2014-04-23 01:39:04 +0200 | [diff] [blame] | 3818 | err_code |= warnif_misplaced_redirect(curproxy, file, linenum, args[0]); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3819 | err_code |= warnif_cond_conflicts(rule->cond, |
| 3820 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 3821 | file, linenum); |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3822 | } |
Krzysztof Piotr Oledzki | 7b723ef | 2009-01-27 21:09:41 +0100 | [diff] [blame] | 3823 | else if (!strcmp(args[0], "use_backend")) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3824 | struct switching_rule *rule; |
| 3825 | |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3826 | if (curproxy == &defproxy) { |
| 3827 | 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] | 3828 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3829 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 3830 | } |
| 3831 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3832 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 3833 | err_code |= ERR_WARN; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3834 | |
| 3835 | if (*(args[1]) == 0) { |
| 3836 | 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] | 3837 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3838 | goto out; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3839 | } |
| 3840 | |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 3841 | if (strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0) { |
| 3842 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 3843 | Alert("parsing [%s:%d] : error detected while parsing switching rule : %s.\n", |
| 3844 | file, linenum, errmsg); |
| 3845 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3846 | goto out; |
| 3847 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3848 | |
Willy Tarreau | f51658d | 2014-04-23 01:21:56 +0200 | [diff] [blame] | 3849 | 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] | 3850 | } |
Willy Tarreau | 4f86264 | 2017-02-28 09:34:39 +0100 | [diff] [blame] | 3851 | else if (*args[2]) { |
| 3852 | Alert("parsing [%s:%d] : unexpected keyword '%s' after switching rule, only 'if' and 'unless' are allowed.\n", |
| 3853 | file, linenum, args[2]); |
| 3854 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3855 | goto out; |
| 3856 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3857 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3858 | rule = calloc(1, sizeof(*rule)); |
Thierry FOURNIER / OZON.IO | 5948b01 | 2016-11-24 23:58:32 +0100 | [diff] [blame] | 3859 | if (!rule) { |
| 3860 | Alert("Out of memory error.\n"); |
| 3861 | goto out; |
| 3862 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3863 | rule->cond = cond; |
| 3864 | rule->be.name = strdup(args[1]); |
Thierry FOURNIER / OZON.IO | 4ed1c95 | 2016-11-24 23:57:54 +0100 | [diff] [blame] | 3865 | rule->line = linenum; |
| 3866 | rule->file = strdup(file); |
| 3867 | if (!rule->file) { |
| 3868 | Alert("Out of memory error.\n"); |
| 3869 | goto out; |
| 3870 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3871 | LIST_INIT(&rule->list); |
| 3872 | LIST_ADDQ(&curproxy->switching_rules, &rule->list); |
| 3873 | } |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3874 | else if (strcmp(args[0], "use-server") == 0) { |
| 3875 | struct server_rule *rule; |
| 3876 | |
| 3877 | if (curproxy == &defproxy) { |
| 3878 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3879 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3880 | goto out; |
| 3881 | } |
| 3882 | |
| 3883 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3884 | err_code |= ERR_WARN; |
| 3885 | |
| 3886 | if (*(args[1]) == 0) { |
| 3887 | Alert("parsing [%s:%d] : '%s' expects a server name.\n", file, linenum, args[0]); |
| 3888 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3889 | goto out; |
| 3890 | } |
| 3891 | |
| 3892 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
| 3893 | Alert("parsing [%s:%d] : '%s' requires either 'if' or 'unless' followed by a condition.\n", |
| 3894 | file, linenum, args[0]); |
| 3895 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3896 | goto out; |
| 3897 | } |
| 3898 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3899 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 3900 | Alert("parsing [%s:%d] : error detected while parsing switching rule : %s.\n", |
| 3901 | file, linenum, errmsg); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3902 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3903 | goto out; |
| 3904 | } |
| 3905 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3906 | 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] | 3907 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3908 | rule = calloc(1, sizeof(*rule)); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3909 | rule->cond = cond; |
| 3910 | rule->srv.name = strdup(args[1]); |
| 3911 | LIST_INIT(&rule->list); |
| 3912 | LIST_ADDQ(&curproxy->server_rules, &rule->list); |
| 3913 | curproxy->be_req_ana |= AN_REQ_SRV_RULES; |
| 3914 | } |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3915 | else if ((!strcmp(args[0], "force-persist")) || |
| 3916 | (!strcmp(args[0], "ignore-persist"))) { |
| 3917 | struct persist_rule *rule; |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3918 | |
| 3919 | if (curproxy == &defproxy) { |
| 3920 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 3921 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3922 | goto out; |
| 3923 | } |
| 3924 | |
| 3925 | if (warnifnotcap(curproxy, PR_CAP_FE|PR_CAP_BE, file, linenum, args[0], NULL)) |
| 3926 | err_code |= ERR_WARN; |
| 3927 | |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 3928 | if (strcmp(args[1], "if") != 0 && strcmp(args[1], "unless") != 0) { |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3929 | Alert("parsing [%s:%d] : '%s' requires either 'if' or 'unless' followed by a condition.\n", |
| 3930 | file, linenum, args[0]); |
| 3931 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3932 | goto out; |
| 3933 | } |
| 3934 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 3935 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 1, &errmsg)) == NULL) { |
| 3936 | Alert("parsing [%s:%d] : error detected while parsing a '%s' rule : %s.\n", |
| 3937 | file, linenum, args[0], errmsg); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3938 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3939 | goto out; |
| 3940 | } |
| 3941 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 3942 | /* note: BE_REQ_CNT is the first one after FE_SET_BCK, which is |
| 3943 | * where force-persist is applied. |
| 3944 | */ |
| 3945 | 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] | 3946 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 3947 | rule = calloc(1, sizeof(*rule)); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3948 | rule->cond = cond; |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3949 | if (!strcmp(args[0], "force-persist")) { |
| 3950 | rule->type = PERSIST_TYPE_FORCE; |
| 3951 | } else { |
| 3952 | rule->type = PERSIST_TYPE_IGNORE; |
| 3953 | } |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3954 | LIST_INIT(&rule->list); |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3955 | LIST_ADDQ(&curproxy->persist_rules, &rule->list); |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 3956 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3957 | else if (!strcmp(args[0], "stick-table")) { |
| 3958 | int myidx = 1; |
Willy Tarreau | e45288c | 2015-05-26 10:49:46 +0200 | [diff] [blame] | 3959 | struct proxy *other; |
| 3960 | |
Willy Tarreau | e2dc1fa | 2015-05-26 12:08:07 +0200 | [diff] [blame] | 3961 | other = proxy_tbl_by_name(curproxy->id); |
Willy Tarreau | e45288c | 2015-05-26 10:49:46 +0200 | [diff] [blame] | 3962 | if (other) { |
| 3963 | Alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n", |
| 3964 | file, linenum, curproxy->id, proxy_type_str(other), other->id, other->conf.file, other->conf.line); |
| 3965 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3966 | goto out; |
| 3967 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3968 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3969 | curproxy->table.id = curproxy->id; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3970 | curproxy->table.type = (unsigned int)-1; |
| 3971 | while (*args[myidx]) { |
| 3972 | const char *err; |
| 3973 | |
| 3974 | if (strcmp(args[myidx], "size") == 0) { |
| 3975 | myidx++; |
| 3976 | if (!*(args[myidx])) { |
| 3977 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 3978 | file, linenum, args[myidx-1]); |
| 3979 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3980 | goto out; |
| 3981 | } |
| 3982 | if ((err = parse_size_err(args[myidx], &curproxy->table.size))) { |
| 3983 | Alert("parsing [%s:%d] : stick-table: unexpected character '%c' in argument of '%s'.\n", |
| 3984 | file, linenum, *err, args[myidx-1]); |
| 3985 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3986 | goto out; |
| 3987 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 3988 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3989 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3990 | else if (strcmp(args[myidx], "peers") == 0) { |
| 3991 | myidx++; |
Godbach | 5052316 | 2013-12-11 19:48:57 +0800 | [diff] [blame] | 3992 | if (!*(args[myidx])) { |
Godbach | ff11554 | 2014-04-21 21:52:23 +0800 | [diff] [blame] | 3993 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 3994 | file, linenum, args[myidx-1]); |
| 3995 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3996 | goto out; |
Godbach | 5052316 | 2013-12-11 19:48:57 +0800 | [diff] [blame] | 3997 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3998 | curproxy->table.peers.name = strdup(args[myidx++]); |
| 3999 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4000 | else if (strcmp(args[myidx], "expire") == 0) { |
| 4001 | myidx++; |
| 4002 | if (!*(args[myidx])) { |
| 4003 | Alert("parsing [%s:%d] : stick-table: missing argument after '%s'.\n", |
| 4004 | file, linenum, args[myidx-1]); |
| 4005 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4006 | goto out; |
| 4007 | } |
| 4008 | err = parse_time_err(args[myidx], &val, TIME_UNIT_MS); |
| 4009 | if (err) { |
| 4010 | Alert("parsing [%s:%d] : stick-table: unexpected character '%c' in argument of '%s'.\n", |
| 4011 | file, linenum, *err, args[myidx-1]); |
| 4012 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4013 | goto out; |
| 4014 | } |
Ben Cabot | 3b90f0a | 2016-01-20 09:44:39 +0000 | [diff] [blame] | 4015 | if (val > INT_MAX) { |
| 4016 | Alert("parsing [%s:%d] : Expire value [%u]ms exceeds maxmimum value of 24.85 days.\n", |
| 4017 | file, linenum, val); |
| 4018 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4019 | goto out; |
| 4020 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4021 | curproxy->table.expire = val; |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4022 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4023 | } |
| 4024 | else if (strcmp(args[myidx], "nopurge") == 0) { |
| 4025 | curproxy->table.nopurge = 1; |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4026 | myidx++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4027 | } |
| 4028 | else if (strcmp(args[myidx], "type") == 0) { |
| 4029 | myidx++; |
| 4030 | if (stktable_parse_type(args, &myidx, &curproxy->table.type, &curproxy->table.key_size) != 0) { |
| 4031 | Alert("parsing [%s:%d] : stick-table: unknown type '%s'.\n", |
| 4032 | file, linenum, args[myidx]); |
| 4033 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4034 | goto out; |
| 4035 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4036 | /* myidx already points to next arg */ |
| 4037 | } |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 4038 | else if (strcmp(args[myidx], "store") == 0) { |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 4039 | int type, err; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 4040 | char *cw, *nw, *sa; |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 4041 | |
| 4042 | myidx++; |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4043 | nw = args[myidx]; |
| 4044 | while (*nw) { |
| 4045 | /* the "store" keyword supports a comma-separated list */ |
| 4046 | cw = nw; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 4047 | sa = NULL; /* store arg */ |
| 4048 | while (*nw && *nw != ',') { |
| 4049 | if (*nw == '(') { |
| 4050 | *nw = 0; |
| 4051 | sa = ++nw; |
| 4052 | while (*nw != ')') { |
| 4053 | if (!*nw) { |
| 4054 | Alert("parsing [%s:%d] : %s: missing closing parenthesis after store option '%s'.\n", |
| 4055 | file, linenum, args[0], cw); |
| 4056 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4057 | goto out; |
| 4058 | } |
| 4059 | nw++; |
| 4060 | } |
| 4061 | *nw = '\0'; |
| 4062 | } |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4063 | nw++; |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 4064 | } |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4065 | if (*nw) |
| 4066 | *nw++ = '\0'; |
| 4067 | type = stktable_get_data_type(cw); |
| 4068 | if (type < 0) { |
| 4069 | Alert("parsing [%s:%d] : %s: unknown store option '%s'.\n", |
| 4070 | file, linenum, args[0], cw); |
| 4071 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4072 | goto out; |
| 4073 | } |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 4074 | |
| 4075 | err = stktable_alloc_data_type(&curproxy->table, type, sa); |
| 4076 | switch (err) { |
| 4077 | case PE_NONE: break; |
| 4078 | case PE_EXIST: |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4079 | Warning("parsing [%s:%d]: %s: store option '%s' already enabled, ignored.\n", |
| 4080 | file, linenum, args[0], cw); |
| 4081 | err_code |= ERR_WARN; |
Willy Tarreau | ac78288 | 2010-06-20 10:41:54 +0200 | [diff] [blame] | 4082 | break; |
| 4083 | |
| 4084 | case PE_ARG_MISSING: |
| 4085 | Alert("parsing [%s:%d] : %s: missing argument to store option '%s'.\n", |
| 4086 | file, linenum, args[0], cw); |
| 4087 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4088 | goto out; |
| 4089 | |
| 4090 | case PE_ARG_NOT_USED: |
| 4091 | Alert("parsing [%s:%d] : %s: unexpected argument to store option '%s'.\n", |
| 4092 | file, linenum, args[0], cw); |
| 4093 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4094 | goto out; |
| 4095 | |
| 4096 | default: |
| 4097 | Alert("parsing [%s:%d] : %s: error when processing store option '%s'.\n", |
| 4098 | file, linenum, args[0], cw); |
| 4099 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4100 | goto out; |
Willy Tarreau | b084e9c | 2010-06-19 07:12:36 +0200 | [diff] [blame] | 4101 | } |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 4102 | } |
| 4103 | myidx++; |
| 4104 | } |
Willy Tarreau | 0c55931 | 2010-01-26 18:36:26 +0100 | [diff] [blame] | 4105 | else { |
| 4106 | Alert("parsing [%s:%d] : stick-table: unknown argument '%s'.\n", |
| 4107 | file, linenum, args[myidx]); |
| 4108 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4109 | goto out; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4110 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4111 | } |
| 4112 | |
| 4113 | if (!curproxy->table.size) { |
| 4114 | Alert("parsing [%s:%d] : stick-table: missing size.\n", |
| 4115 | file, linenum); |
| 4116 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4117 | goto out; |
| 4118 | } |
| 4119 | |
| 4120 | if (curproxy->table.type == (unsigned int)-1) { |
| 4121 | Alert("parsing [%s:%d] : stick-table: missing type.\n", |
| 4122 | file, linenum); |
| 4123 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4124 | goto out; |
| 4125 | } |
| 4126 | } |
| 4127 | else if (!strcmp(args[0], "stick")) { |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4128 | struct sticking_rule *rule; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 4129 | struct sample_expr *expr; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4130 | int myidx = 0; |
| 4131 | const char *name = NULL; |
| 4132 | int flags; |
| 4133 | |
| 4134 | if (curproxy == &defproxy) { |
| 4135 | Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 4136 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4137 | goto out; |
| 4138 | } |
| 4139 | |
| 4140 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) { |
| 4141 | err_code |= ERR_WARN; |
| 4142 | goto out; |
| 4143 | } |
| 4144 | |
| 4145 | myidx++; |
| 4146 | if ((strcmp(args[myidx], "store") == 0) || |
| 4147 | (strcmp(args[myidx], "store-request") == 0)) { |
| 4148 | myidx++; |
| 4149 | flags = STK_IS_STORE; |
| 4150 | } |
| 4151 | else if (strcmp(args[myidx], "store-response") == 0) { |
| 4152 | myidx++; |
| 4153 | flags = STK_IS_STORE | STK_ON_RSP; |
| 4154 | } |
| 4155 | else if (strcmp(args[myidx], "match") == 0) { |
| 4156 | myidx++; |
| 4157 | flags = STK_IS_MATCH; |
| 4158 | } |
| 4159 | else if (strcmp(args[myidx], "on") == 0) { |
| 4160 | myidx++; |
| 4161 | flags = STK_IS_MATCH | STK_IS_STORE; |
| 4162 | } |
| 4163 | else { |
| 4164 | Alert("parsing [%s:%d] : '%s' expects 'on', 'match', or 'store'.\n", file, linenum, args[0]); |
| 4165 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4166 | goto out; |
| 4167 | } |
| 4168 | |
| 4169 | if (*(args[myidx]) == 0) { |
| 4170 | Alert("parsing [%s:%d] : '%s' expects a fetch method.\n", file, linenum, args[0]); |
| 4171 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4172 | goto out; |
| 4173 | } |
| 4174 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 4175 | curproxy->conf.args.ctx = ARGC_STK; |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 4176 | expr = sample_parse_expr(args, &myidx, file, linenum, &errmsg, &curproxy->conf.args); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4177 | if (!expr) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 4178 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4179 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4180 | goto out; |
| 4181 | } |
| 4182 | |
| 4183 | if (flags & STK_ON_RSP) { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 4184 | if (!(expr->fetch->val & SMP_VAL_BE_STO_RUL)) { |
| 4185 | Alert("parsing [%s:%d] : '%s': fetch method '%s' extracts information from '%s', none of which is available for 'store-response'.\n", |
| 4186 | 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] | 4187 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4188 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4189 | goto out; |
| 4190 | } |
| 4191 | } else { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 4192 | if (!(expr->fetch->val & SMP_VAL_BE_SET_SRV)) { |
| 4193 | Alert("parsing [%s:%d] : '%s': fetch method '%s' extracts information from '%s', none of which is available during request.\n", |
| 4194 | 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] | 4195 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4196 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4197 | goto out; |
| 4198 | } |
| 4199 | } |
| 4200 | |
Willy Tarreau | 1b6c00c | 2012-10-05 22:41:26 +0200 | [diff] [blame] | 4201 | /* 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] | 4202 | curproxy->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
Willy Tarreau | 1b6c00c | 2012-10-05 22:41:26 +0200 | [diff] [blame] | 4203 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4204 | if (strcmp(args[myidx], "table") == 0) { |
| 4205 | myidx++; |
| 4206 | name = args[myidx++]; |
| 4207 | } |
| 4208 | |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4209 | if (strcmp(args[myidx], "if") == 0 || strcmp(args[myidx], "unless") == 0) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 4210 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + myidx, &errmsg)) == NULL) { |
| 4211 | Alert("parsing [%s:%d] : '%s': error detected while parsing sticking condition : %s.\n", |
| 4212 | file, linenum, args[0], errmsg); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4213 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4214 | free(expr); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4215 | goto out; |
| 4216 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4217 | } |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4218 | else if (*(args[myidx])) { |
| 4219 | Alert("parsing [%s:%d] : '%s': unknown keyword '%s'.\n", |
| 4220 | file, linenum, args[0], args[myidx]); |
| 4221 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 5e55f5d | 2011-07-15 13:14:07 +0900 | [diff] [blame] | 4222 | free(expr); |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 4223 | goto out; |
| 4224 | } |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 4225 | if (flags & STK_ON_RSP) |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4226 | 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] | 4227 | else |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4228 | 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] | 4229 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4230 | rule = calloc(1, sizeof(*rule)); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 4231 | rule->cond = cond; |
| 4232 | rule->expr = expr; |
| 4233 | rule->flags = flags; |
| 4234 | rule->table.name = name ? strdup(name) : NULL; |
| 4235 | LIST_INIT(&rule->list); |
| 4236 | if (flags & STK_ON_RSP) |
| 4237 | LIST_ADDQ(&curproxy->storersp_rules, &rule->list); |
| 4238 | else |
| 4239 | LIST_ADDQ(&curproxy->sticking_rules, &rule->list); |
| 4240 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4241 | else if (!strcmp(args[0], "stats")) { |
| 4242 | if (curproxy != &defproxy && curproxy->uri_auth == defproxy.uri_auth) |
| 4243 | curproxy->uri_auth = NULL; /* we must detach from the default config */ |
| 4244 | |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4245 | if (!*args[1]) { |
| 4246 | goto stats_error_parsing; |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4247 | } else if (!strcmp(args[1], "admin")) { |
| 4248 | struct stats_admin_rule *rule; |
| 4249 | |
| 4250 | if (curproxy == &defproxy) { |
| 4251 | Alert("parsing [%s:%d]: '%s %s' not allowed in 'defaults' section.\n", file, linenum, args[0], args[1]); |
| 4252 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4253 | goto out; |
| 4254 | } |
| 4255 | |
| 4256 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4257 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4258 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4259 | goto out; |
| 4260 | } |
| 4261 | |
| 4262 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
| 4263 | Alert("parsing [%s:%d] : '%s %s' requires either 'if' or 'unless' followed by a condition.\n", |
| 4264 | file, linenum, args[0], args[1]); |
| 4265 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4266 | goto out; |
| 4267 | } |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 4268 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 4269 | Alert("parsing [%s:%d] : error detected while parsing a '%s %s' rule : %s.\n", |
| 4270 | file, linenum, args[0], args[1], errmsg); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4271 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4272 | goto out; |
| 4273 | } |
| 4274 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4275 | err_code |= warnif_cond_conflicts(cond, |
| 4276 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 4277 | file, linenum); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4278 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4279 | rule = calloc(1, sizeof(*rule)); |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4280 | rule->cond = cond; |
| 4281 | LIST_INIT(&rule->list); |
| 4282 | LIST_ADDQ(&curproxy->uri_auth->admin_rules, &rule->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4283 | } else if (!strcmp(args[1], "uri")) { |
| 4284 | if (*(args[2]) == 0) { |
| 4285 | Alert("parsing [%s:%d] : 'uri' needs an URI prefix.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4286 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4287 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4288 | } else if (!stats_set_uri(&curproxy->uri_auth, args[2])) { |
| 4289 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4290 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4291 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4292 | } |
| 4293 | } else if (!strcmp(args[1], "realm")) { |
| 4294 | if (*(args[2]) == 0) { |
| 4295 | Alert("parsing [%s:%d] : 'realm' needs an realm name.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4296 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4297 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4298 | } else if (!stats_set_realm(&curproxy->uri_auth, args[2])) { |
| 4299 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4300 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4301 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4302 | } |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4303 | } else if (!strcmp(args[1], "refresh")) { |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 4304 | unsigned interval; |
| 4305 | |
| 4306 | err = parse_time_err(args[2], &interval, TIME_UNIT_S); |
| 4307 | if (err) { |
| 4308 | Alert("parsing [%s:%d] : unexpected character '%c' in stats refresh interval.\n", |
| 4309 | file, linenum, *err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4310 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4311 | goto out; |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4312 | } else if (!stats_set_refresh(&curproxy->uri_auth, interval)) { |
| 4313 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4314 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4315 | goto out; |
Willy Tarreau | bbd4212 | 2007-07-25 07:26:38 +0200 | [diff] [blame] | 4316 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4317 | } else if (!strcmp(args[1], "http-request")) { /* request access control: allow/deny/auth */ |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 4318 | struct act_rule *rule; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4319 | |
| 4320 | if (curproxy == &defproxy) { |
| 4321 | Alert("parsing [%s:%d]: '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 4322 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4323 | goto out; |
| 4324 | } |
| 4325 | |
| 4326 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4327 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4328 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4329 | goto out; |
| 4330 | } |
| 4331 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4332 | if (!LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 4333 | !LIST_PREV(&curproxy->uri_auth->http_req_rules, struct act_rule *, list)->cond) { |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4334 | Warning("parsing [%s:%d]: previous '%s' action has no condition attached, further entries are NOOP.\n", |
| 4335 | file, linenum, args[0]); |
| 4336 | err_code |= ERR_WARN; |
| 4337 | } |
| 4338 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4339 | 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] | 4340 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4341 | if (!rule) { |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4342 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4343 | goto out; |
| 4344 | } |
| 4345 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 4346 | err_code |= warnif_cond_conflicts(rule->cond, |
| 4347 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 4348 | file, linenum); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4349 | LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 4350 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4351 | } else if (!strcmp(args[1], "auth")) { |
| 4352 | if (*(args[2]) == 0) { |
| 4353 | 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] | 4354 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4355 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4356 | } else if (!stats_add_auth(&curproxy->uri_auth, args[2])) { |
| 4357 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4358 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4359 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4360 | } |
| 4361 | } else if (!strcmp(args[1], "scope")) { |
| 4362 | if (*(args[2]) == 0) { |
| 4363 | Alert("parsing [%s:%d] : 'scope' needs a proxy name.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4364 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4365 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4366 | } else if (!stats_add_scope(&curproxy->uri_auth, args[2])) { |
| 4367 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4368 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4369 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4370 | } |
| 4371 | } else if (!strcmp(args[1], "enable")) { |
| 4372 | if (!stats_check_init_uri_auth(&curproxy->uri_auth)) { |
| 4373 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4374 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4375 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4376 | } |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 4377 | } else if (!strcmp(args[1], "hide-version")) { |
| 4378 | if (!stats_set_flag(&curproxy->uri_auth, ST_HIDEVER)) { |
| 4379 | Alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4380 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4381 | goto out; |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 4382 | } |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 4383 | } else if (!strcmp(args[1], "show-legends")) { |
| 4384 | if (!stats_set_flag(&curproxy->uri_auth, ST_SHLGNDS)) { |
| 4385 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4386 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4387 | goto out; |
| 4388 | } |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4389 | } else if (!strcmp(args[1], "show-node")) { |
| 4390 | |
| 4391 | if (*args[2]) { |
| 4392 | int i; |
| 4393 | char c; |
| 4394 | |
| 4395 | for (i=0; args[2][i]; i++) { |
| 4396 | c = args[2][i]; |
Willy Tarreau | 88e0581 | 2010-03-03 00:16:00 +0100 | [diff] [blame] | 4397 | if (!isupper((unsigned char)c) && !islower((unsigned char)c) && |
| 4398 | !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.') |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4399 | break; |
| 4400 | } |
| 4401 | |
| 4402 | if (!i || args[2][i]) { |
| 4403 | Alert("parsing [%s:%d]: '%s %s' invalid node name - should be a string" |
| 4404 | "with digits(0-9), letters(A-Z, a-z), hyphen(-) or underscode(_).\n", |
| 4405 | file, linenum, args[0], args[1]); |
| 4406 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4407 | goto out; |
| 4408 | } |
| 4409 | } |
| 4410 | |
| 4411 | if (!stats_set_node(&curproxy->uri_auth, args[2])) { |
| 4412 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4413 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4414 | goto out; |
| 4415 | } |
| 4416 | } else if (!strcmp(args[1], "show-desc")) { |
| 4417 | char *desc = NULL; |
| 4418 | |
| 4419 | if (*args[2]) { |
| 4420 | int i, len=0; |
| 4421 | char *d; |
| 4422 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 4423 | for (i = 2; *args[i]; i++) |
| 4424 | len += strlen(args[i]) + 1; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4425 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4426 | desc = d = calloc(1, len); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4427 | |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 4428 | d += snprintf(d, desc + len - d, "%s", args[2]); |
| 4429 | for (i = 3; *args[i]; i++) |
| 4430 | d += snprintf(d, desc + len - d, " %s", args[i]); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 4431 | } |
| 4432 | |
| 4433 | if (!*args[2] && !global.desc) |
| 4434 | Warning("parsing [%s:%d]: '%s' requires a parameter or 'desc' to be set in the global section.\n", |
| 4435 | file, linenum, args[1]); |
| 4436 | else { |
| 4437 | if (!stats_set_desc(&curproxy->uri_auth, desc)) { |
| 4438 | free(desc); |
| 4439 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 4440 | err_code |= ERR_ALERT | ERR_ABORT; |
| 4441 | goto out; |
| 4442 | } |
| 4443 | free(desc); |
| 4444 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4445 | } else { |
Krzysztof Piotr Oledzki | 260a3bb | 2010-01-06 16:25:05 +0100 | [diff] [blame] | 4446 | stats_error_parsing: |
Cyril Bonté | 474be41 | 2010-10-12 00:14:36 +0200 | [diff] [blame] | 4447 | 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] | 4448 | 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] | 4449 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4450 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4451 | } |
| 4452 | } |
| 4453 | else if (!strcmp(args[0], "option")) { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4454 | int optnum; |
| 4455 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4456 | if (*(args[1]) == '\0') { |
| 4457 | Alert("parsing [%s:%d]: '%s' expects an option name.\n", |
| 4458 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4459 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4460 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4461 | } |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4462 | |
| 4463 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 4464 | if (!strcmp(args[1], cfg_opts[optnum].name)) { |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 4465 | if (cfg_opts[optnum].cap == PR_CAP_NONE) { |
| 4466 | Alert("parsing [%s:%d]: option '%s' is not supported due to build options.\n", |
| 4467 | file, linenum, cfg_opts[optnum].name); |
| 4468 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4469 | goto out; |
| 4470 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4471 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4472 | goto out; |
| 4473 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4474 | if (warnifnotcap(curproxy, cfg_opts[optnum].cap, file, linenum, args[1], NULL)) { |
| 4475 | err_code |= ERR_WARN; |
| 4476 | goto out; |
| 4477 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4478 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4479 | curproxy->no_options &= ~cfg_opts[optnum].val; |
| 4480 | curproxy->options &= ~cfg_opts[optnum].val; |
| 4481 | |
| 4482 | switch (kwm) { |
| 4483 | case KWM_STD: |
| 4484 | curproxy->options |= cfg_opts[optnum].val; |
| 4485 | break; |
| 4486 | case KWM_NO: |
| 4487 | curproxy->no_options |= cfg_opts[optnum].val; |
| 4488 | break; |
| 4489 | case KWM_DEF: /* already cleared */ |
| 4490 | break; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 4491 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4492 | |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4493 | goto out; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4494 | } |
| 4495 | } |
| 4496 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4497 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 4498 | if (!strcmp(args[1], cfg_opts2[optnum].name)) { |
Cyril Bonté | 62846b2 | 2010-11-01 19:26:00 +0100 | [diff] [blame] | 4499 | if (cfg_opts2[optnum].cap == PR_CAP_NONE) { |
| 4500 | Alert("parsing [%s:%d]: option '%s' is not supported due to build options.\n", |
| 4501 | file, linenum, cfg_opts2[optnum].name); |
| 4502 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4503 | goto out; |
| 4504 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4505 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4506 | goto out; |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4507 | if (warnifnotcap(curproxy, cfg_opts2[optnum].cap, file, linenum, args[1], NULL)) { |
| 4508 | err_code |= ERR_WARN; |
| 4509 | goto out; |
| 4510 | } |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4511 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4512 | curproxy->no_options2 &= ~cfg_opts2[optnum].val; |
| 4513 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 4514 | |
| 4515 | switch (kwm) { |
| 4516 | case KWM_STD: |
| 4517 | curproxy->options2 |= cfg_opts2[optnum].val; |
| 4518 | break; |
| 4519 | case KWM_NO: |
| 4520 | curproxy->no_options2 |= cfg_opts2[optnum].val; |
| 4521 | break; |
| 4522 | case KWM_DEF: /* already cleared */ |
| 4523 | break; |
Willy Tarreau | 84b57da | 2009-06-14 11:10:45 +0200 | [diff] [blame] | 4524 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4525 | goto out; |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4526 | } |
| 4527 | } |
| 4528 | |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4529 | /* HTTP options override each other. They can be cancelled using |
| 4530 | * "no option xxx" which only switches to default mode if the mode |
| 4531 | * was this one (useful for cancelling options set in defaults |
| 4532 | * sections). |
| 4533 | */ |
| 4534 | if (strcmp(args[1], "httpclose") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4535 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4536 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4537 | if (kwm == KWM_STD) { |
| 4538 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4539 | curproxy->options |= PR_O_HTTP_PCL; |
| 4540 | goto out; |
| 4541 | } |
| 4542 | else if (kwm == KWM_NO) { |
| 4543 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 4544 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4545 | goto out; |
| 4546 | } |
| 4547 | } |
| 4548 | else if (strcmp(args[1], "forceclose") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4549 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4550 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4551 | if (kwm == KWM_STD) { |
| 4552 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4553 | curproxy->options |= PR_O_HTTP_FCL; |
| 4554 | goto out; |
| 4555 | } |
| 4556 | else if (kwm == KWM_NO) { |
| 4557 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL) |
| 4558 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4559 | goto out; |
| 4560 | } |
| 4561 | } |
| 4562 | else if (strcmp(args[1], "http-server-close") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4563 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4564 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4565 | if (kwm == KWM_STD) { |
| 4566 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4567 | curproxy->options |= PR_O_HTTP_SCL; |
| 4568 | goto out; |
| 4569 | } |
| 4570 | else if (kwm == KWM_NO) { |
| 4571 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) |
| 4572 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4573 | goto out; |
| 4574 | } |
| 4575 | } |
| 4576 | else if (strcmp(args[1], "http-keep-alive") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4577 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4578 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4579 | if (kwm == KWM_STD) { |
| 4580 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4581 | curproxy->options |= PR_O_HTTP_KAL; |
| 4582 | goto out; |
| 4583 | } |
| 4584 | else if (kwm == KWM_NO) { |
| 4585 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_KAL) |
| 4586 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4587 | goto out; |
| 4588 | } |
| 4589 | } |
| 4590 | else if (strcmp(args[1], "http-tunnel") == 0) { |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4591 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4592 | goto out; |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4593 | if (kwm == KWM_STD) { |
| 4594 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4595 | curproxy->options |= PR_O_HTTP_TUN; |
| 4596 | goto out; |
| 4597 | } |
| 4598 | else if (kwm == KWM_NO) { |
| 4599 | if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 4600 | curproxy->options &= ~PR_O_HTTP_MODE; |
| 4601 | goto out; |
| 4602 | } |
| 4603 | } |
| 4604 | |
Joseph Lynch | 726ab71 | 2015-05-11 23:25:34 -0700 | [diff] [blame] | 4605 | /* Redispatch can take an integer argument that control when the |
| 4606 | * resispatch occurs. All values are relative to the retries option. |
| 4607 | * This can be cancelled using "no option xxx". |
| 4608 | */ |
| 4609 | if (strcmp(args[1], "redispatch") == 0) { |
| 4610 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) { |
| 4611 | err_code |= ERR_WARN; |
| 4612 | goto out; |
| 4613 | } |
| 4614 | |
| 4615 | curproxy->no_options &= ~PR_O_REDISP; |
| 4616 | curproxy->options &= ~PR_O_REDISP; |
| 4617 | |
| 4618 | switch (kwm) { |
| 4619 | case KWM_STD: |
| 4620 | curproxy->options |= PR_O_REDISP; |
| 4621 | curproxy->redispatch_after = -1; |
| 4622 | if(*args[2]) { |
| 4623 | curproxy->redispatch_after = atol(args[2]); |
| 4624 | } |
| 4625 | break; |
| 4626 | case KWM_NO: |
| 4627 | curproxy->no_options |= PR_O_REDISP; |
| 4628 | curproxy->redispatch_after = 0; |
| 4629 | break; |
| 4630 | case KWM_DEF: /* already cleared */ |
| 4631 | break; |
| 4632 | } |
| 4633 | goto out; |
| 4634 | } |
| 4635 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 4636 | if (kwm != KWM_STD) { |
| 4637 | 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] | 4638 | file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4639 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4640 | goto out; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4641 | } |
| 4642 | |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4643 | if (!strcmp(args[1], "httplog")) { |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4644 | char *logformat; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4645 | /* generate a complete HTTP log */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4646 | logformat = default_http_log_format; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4647 | if (*(args[2]) != '\0') { |
| 4648 | if (!strcmp(args[2], "clf")) { |
| 4649 | curproxy->options2 |= PR_O2_CLFLOG; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 4650 | logformat = clf_http_log_format; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4651 | } else { |
William Lallemand | 77063bc | 2015-05-28 18:02:48 +0200 | [diff] [blame] | 4652 | 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] | 4653 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4654 | goto out; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4655 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4656 | if (alertif_too_many_args_idx(1, 1, file, linenum, args, &err_code)) |
| 4657 | goto out; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4658 | } |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 4659 | if (curproxy->conf.logformat_string && curproxy == &defproxy) { |
| 4660 | char *oldlogformat = "log-format"; |
| 4661 | char *clflogformat = ""; |
| 4662 | |
| 4663 | if (curproxy->conf.logformat_string == default_http_log_format) |
| 4664 | oldlogformat = "option httplog"; |
| 4665 | else if (curproxy->conf.logformat_string == default_tcp_log_format) |
| 4666 | oldlogformat = "option tcplog"; |
| 4667 | else if (curproxy->conf.logformat_string == clf_http_log_format) |
| 4668 | oldlogformat = "option httplog clf"; |
| 4669 | if (logformat == clf_http_log_format) |
| 4670 | clflogformat = " clf"; |
| 4671 | Warning("parsing [%s:%d]: 'option httplog%s' overrides previous '%s' in 'defaults' section.\n", |
| 4672 | file, linenum, clflogformat, oldlogformat); |
| 4673 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 4674 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 4675 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 4676 | curproxy->conf.logformat_string != clf_http_log_format) |
| 4677 | free(curproxy->conf.logformat_string); |
| 4678 | curproxy->conf.logformat_string = logformat; |
| 4679 | |
| 4680 | free(curproxy->conf.lfs_file); |
| 4681 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 4682 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Emeric Brun | 3a058f3 | 2009-06-30 18:26:00 +0200 | [diff] [blame] | 4683 | } |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 4684 | else if (!strcmp(args[1], "tcplog")) { |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 4685 | if (curproxy->conf.logformat_string && curproxy == &defproxy) { |
| 4686 | char *oldlogformat = "log-format"; |
| 4687 | |
| 4688 | if (curproxy->conf.logformat_string == default_http_log_format) |
| 4689 | oldlogformat = "option httplog"; |
| 4690 | else if (curproxy->conf.logformat_string == default_tcp_log_format) |
| 4691 | oldlogformat = "option tcplog"; |
| 4692 | else if (curproxy->conf.logformat_string == clf_http_log_format) |
| 4693 | oldlogformat = "option httplog clf"; |
| 4694 | Warning("parsing [%s:%d]: 'option tcplog' overrides previous '%s' in 'defaults' section.\n", |
| 4695 | file, linenum, oldlogformat); |
| 4696 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4697 | /* generate a detailed TCP log */ |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 4698 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 4699 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 4700 | curproxy->conf.logformat_string != clf_http_log_format) |
| 4701 | free(curproxy->conf.logformat_string); |
| 4702 | curproxy->conf.logformat_string = default_tcp_log_format; |
| 4703 | |
| 4704 | free(curproxy->conf.lfs_file); |
| 4705 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 4706 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4707 | |
| 4708 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4709 | goto out; |
William Lallemand | bddd4fd | 2012-02-27 11:23:10 +0100 | [diff] [blame] | 4710 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4711 | else if (!strcmp(args[1], "tcpka")) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4712 | /* enable TCP keep-alives on client and server streams */ |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4713 | 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] | 4714 | err_code |= ERR_WARN; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4715 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4716 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4717 | goto out; |
| 4718 | |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4719 | if (curproxy->cap & PR_CAP_FE) |
| 4720 | curproxy->options |= PR_O_TCP_CLI_KA; |
| 4721 | if (curproxy->cap & PR_CAP_BE) |
| 4722 | curproxy->options |= PR_O_TCP_SRV_KA; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4723 | } |
| 4724 | else if (!strcmp(args[1], "httpchk")) { |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4725 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4726 | err_code |= ERR_WARN; |
| 4727 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4728 | /* use HTTP request to check servers' health */ |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4729 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4730 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4731 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4732 | curproxy->options2 |= PR_O2_HTTP_CHK; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4733 | if (!*args[2]) { /* no argument */ |
| 4734 | curproxy->check_req = strdup(DEF_CHECK_REQ); /* default request */ |
| 4735 | curproxy->check_len = strlen(DEF_CHECK_REQ); |
| 4736 | } else if (!*args[3]) { /* one argument : URI */ |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4737 | int reqlen = strlen(args[2]) + strlen("OPTIONS HTTP/1.0\r\n") + 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4738 | curproxy->check_req = malloc(reqlen); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4739 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4740 | "OPTIONS %s HTTP/1.0\r\n", args[2]); /* URI to use */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4741 | } else { /* more arguments : METHOD URI [HTTP_VER] */ |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4742 | int reqlen = strlen(args[2]) + strlen(args[3]) + 3 + strlen("\r\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4743 | if (*args[4]) |
| 4744 | reqlen += strlen(args[4]); |
| 4745 | else |
| 4746 | reqlen += strlen("HTTP/1.0"); |
| 4747 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4748 | curproxy->check_req = malloc(reqlen); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4749 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 4750 | "%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] | 4751 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4752 | if (alertif_too_many_args_idx(3, 1, file, linenum, args, &err_code)) |
| 4753 | goto out; |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 4754 | } |
| 4755 | else if (!strcmp(args[1], "ssl-hello-chk")) { |
| 4756 | /* use SSLv3 CLIENT HELLO to check servers' health */ |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4757 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 4758 | err_code |= ERR_WARN; |
Willy Tarreau | 13943ab | 2006-12-31 00:24:10 +0100 | [diff] [blame] | 4759 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4760 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4761 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4762 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Willy Tarreau | 07a5490 | 2010-03-29 18:33:29 +0200 | [diff] [blame] | 4763 | curproxy->options2 |= PR_O2_SSL3_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4764 | |
| 4765 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4766 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4767 | } |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4768 | else if (!strcmp(args[1], "smtpchk")) { |
| 4769 | /* use SMTP request to check servers' health */ |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 4770 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4771 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4772 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 4773 | curproxy->options2 |= PR_O2_SMTP_CHK; |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4774 | |
| 4775 | if (!*args[2] || !*args[3]) { /* no argument or incomplete EHLO host */ |
| 4776 | curproxy->check_req = strdup(DEF_SMTP_CHECK_REQ); /* default request */ |
| 4777 | curproxy->check_len = strlen(DEF_SMTP_CHECK_REQ); |
| 4778 | } else { /* ESMTP EHLO, or SMTP HELO, and a hostname */ |
| 4779 | if (!strcmp(args[2], "EHLO") || !strcmp(args[2], "HELO")) { |
| 4780 | int reqlen = strlen(args[2]) + strlen(args[3]) + strlen(" \r\n") + 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4781 | curproxy->check_req = malloc(reqlen); |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4782 | curproxy->check_len = snprintf(curproxy->check_req, reqlen, |
| 4783 | "%s %s\r\n", args[2], args[3]); /* HELO hostname */ |
| 4784 | } else { |
| 4785 | /* this just hits the default for now, but you could potentially expand it to allow for other stuff |
| 4786 | though, it's unlikely you'd want to send anything other than an EHLO or HELO */ |
| 4787 | curproxy->check_req = strdup(DEF_SMTP_CHECK_REQ); /* default request */ |
| 4788 | curproxy->check_len = strlen(DEF_SMTP_CHECK_REQ); |
| 4789 | } |
| 4790 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4791 | if (alertif_too_many_args_idx(2, 1, file, linenum, args, &err_code)) |
| 4792 | goto out; |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 4793 | } |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4794 | else if (!strcmp(args[1], "pgsql-check")) { |
| 4795 | /* use PostgreSQL request to check servers' health */ |
| 4796 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4797 | err_code |= ERR_WARN; |
| 4798 | |
| 4799 | free(curproxy->check_req); |
| 4800 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4801 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4802 | curproxy->options2 |= PR_O2_PGSQL_CHK; |
| 4803 | |
| 4804 | if (*(args[2])) { |
| 4805 | int cur_arg = 2; |
| 4806 | |
| 4807 | while (*(args[cur_arg])) { |
| 4808 | if (strcmp(args[cur_arg], "user") == 0) { |
| 4809 | char * packet; |
| 4810 | uint32_t packet_len; |
| 4811 | uint32_t pv; |
| 4812 | |
| 4813 | /* suboption header - needs additional argument for it */ |
| 4814 | if (*(args[cur_arg+1]) == 0) { |
| 4815 | Alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 4816 | file, linenum, args[0], args[1], args[cur_arg]); |
| 4817 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4818 | goto out; |
| 4819 | } |
| 4820 | |
| 4821 | /* uint32_t + uint32_t + strlen("user")+1 + strlen(username)+1 + 1 */ |
| 4822 | packet_len = 4 + 4 + 5 + strlen(args[cur_arg + 1])+1 +1; |
| 4823 | pv = htonl(0x30000); /* protocol version 3.0 */ |
| 4824 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4825 | packet = calloc(1, packet_len); |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4826 | |
| 4827 | memcpy(packet + 4, &pv, 4); |
| 4828 | |
| 4829 | /* copy "user" */ |
| 4830 | memcpy(packet + 8, "user", 4); |
| 4831 | |
| 4832 | /* copy username */ |
| 4833 | memcpy(packet + 13, args[cur_arg+1], strlen(args[cur_arg+1])); |
| 4834 | |
| 4835 | free(curproxy->check_req); |
| 4836 | curproxy->check_req = packet; |
| 4837 | curproxy->check_len = packet_len; |
| 4838 | |
| 4839 | packet_len = htonl(packet_len); |
| 4840 | memcpy(packet, &packet_len, 4); |
| 4841 | cur_arg += 2; |
| 4842 | } else { |
| 4843 | /* unknown suboption - catchall */ |
| 4844 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 4845 | file, linenum, args[0], args[1]); |
| 4846 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4847 | goto out; |
| 4848 | } |
| 4849 | } /* end while loop */ |
| 4850 | } |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4851 | if (alertif_too_many_args_idx(2, 1, file, linenum, args, &err_code)) |
| 4852 | goto out; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 4853 | } |
| 4854 | |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4855 | else if (!strcmp(args[1], "redis-check")) { |
| 4856 | /* use REDIS PING request to check servers' health */ |
| 4857 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4858 | err_code |= ERR_WARN; |
| 4859 | |
| 4860 | free(curproxy->check_req); |
| 4861 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4862 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4863 | curproxy->options2 |= PR_O2_REDIS_CHK; |
| 4864 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4865 | curproxy->check_req = malloc(sizeof(DEF_REDIS_CHECK_REQ) - 1); |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4866 | memcpy(curproxy->check_req, DEF_REDIS_CHECK_REQ, sizeof(DEF_REDIS_CHECK_REQ) - 1); |
| 4867 | curproxy->check_len = sizeof(DEF_REDIS_CHECK_REQ) - 1; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 4868 | |
| 4869 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 4870 | goto out; |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 4871 | } |
| 4872 | |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4873 | else if (!strcmp(args[1], "mysql-check")) { |
| 4874 | /* use MYSQL request to check servers' health */ |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4875 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 4876 | err_code |= ERR_WARN; |
| 4877 | |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4878 | free(curproxy->check_req); |
Willy Tarreau | 54f6a58 | 2010-02-01 16:31:14 +0100 | [diff] [blame] | 4879 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4880 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4881 | curproxy->options2 |= PR_O2_MYSQL_CHK; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4882 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4883 | /* 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] | 4884 | * const char mysql40_client_auth_pkt[] = { |
| 4885 | * "\x0e\x00\x00" // packet length |
| 4886 | * "\x01" // packet number |
| 4887 | * "\x00\x00" // client capabilities |
| 4888 | * "\x00\x00\x01" // max packet |
| 4889 | * "haproxy\x00" // username (null terminated string) |
| 4890 | * "\x00" // filler (always 0x00) |
| 4891 | * "\x01\x00\x00" // packet length |
| 4892 | * "\x00" // packet number |
| 4893 | * "\x01" // COM_QUIT command |
| 4894 | * }; |
| 4895 | */ |
| 4896 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4897 | /* This is an example of a MySQL >=4.1 client Authentication packet provided by Nenad Merdanovic. |
| 4898 | * const char mysql41_client_auth_pkt[] = { |
| 4899 | * "\x0e\x00\x00\" // packet length |
| 4900 | * "\x01" // packet number |
| 4901 | * "\x00\x00\x00\x00" // client capabilities |
| 4902 | * "\x00\x00\x00\x01" // max packet |
| 4903 | * "\x21" // character set (UTF-8) |
| 4904 | * char[23] // All zeroes |
| 4905 | * "haproxy\x00" // username (null terminated string) |
| 4906 | * "\x00" // filler (always 0x00) |
| 4907 | * "\x01\x00\x00" // packet length |
| 4908 | * "\x00" // packet number |
| 4909 | * "\x01" // COM_QUIT command |
| 4910 | * }; |
| 4911 | */ |
| 4912 | |
| 4913 | |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4914 | if (*(args[2])) { |
| 4915 | int cur_arg = 2; |
| 4916 | |
| 4917 | while (*(args[cur_arg])) { |
| 4918 | if (strcmp(args[cur_arg], "user") == 0) { |
| 4919 | char *mysqluser; |
| 4920 | int packetlen, reqlen, userlen; |
| 4921 | |
| 4922 | /* suboption header - needs additional argument for it */ |
| 4923 | if (*(args[cur_arg+1]) == 0) { |
| 4924 | Alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 4925 | file, linenum, args[0], args[1], args[cur_arg]); |
| 4926 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4927 | goto out; |
| 4928 | } |
| 4929 | mysqluser = args[cur_arg + 1]; |
| 4930 | userlen = strlen(mysqluser); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4931 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4932 | if (*(args[cur_arg+2])) { |
| 4933 | if (!strcmp(args[cur_arg+2], "post-41")) { |
| 4934 | packetlen = userlen + 7 + 27; |
| 4935 | reqlen = packetlen + 9; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4936 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4937 | free(curproxy->check_req); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4938 | curproxy->check_req = calloc(1, reqlen); |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4939 | curproxy->check_len = reqlen; |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4940 | |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4941 | snprintf(curproxy->check_req, 4, "%c%c%c", |
| 4942 | ((unsigned char) packetlen & 0xff), |
| 4943 | ((unsigned char) (packetlen >> 8) & 0xff), |
| 4944 | ((unsigned char) (packetlen >> 16) & 0xff)); |
| 4945 | |
| 4946 | curproxy->check_req[3] = 1; |
| 4947 | curproxy->check_req[5] = 130; |
| 4948 | curproxy->check_req[11] = 1; |
| 4949 | curproxy->check_req[12] = 33; |
| 4950 | memcpy(&curproxy->check_req[36], mysqluser, userlen); |
| 4951 | curproxy->check_req[36 + userlen + 1 + 1] = 1; |
| 4952 | curproxy->check_req[36 + userlen + 1 + 1 + 4] = 1; |
| 4953 | cur_arg += 3; |
| 4954 | } else { |
| 4955 | Alert("parsing [%s:%d] : keyword '%s' only supports option 'post-41'.\n", file, linenum, args[cur_arg+2]); |
| 4956 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4957 | goto out; |
| 4958 | } |
| 4959 | } else { |
| 4960 | packetlen = userlen + 7; |
| 4961 | reqlen = packetlen + 9; |
| 4962 | |
| 4963 | free(curproxy->check_req); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4964 | curproxy->check_req = calloc(1, reqlen); |
Nenad Merdanovic | 6639a7c | 2014-05-30 14:26:32 +0200 | [diff] [blame] | 4965 | curproxy->check_len = reqlen; |
| 4966 | |
| 4967 | snprintf(curproxy->check_req, 4, "%c%c%c", |
| 4968 | ((unsigned char) packetlen & 0xff), |
| 4969 | ((unsigned char) (packetlen >> 8) & 0xff), |
| 4970 | ((unsigned char) (packetlen >> 16) & 0xff)); |
| 4971 | |
| 4972 | curproxy->check_req[3] = 1; |
| 4973 | curproxy->check_req[5] = 128; |
| 4974 | curproxy->check_req[8] = 1; |
| 4975 | memcpy(&curproxy->check_req[9], mysqluser, userlen); |
| 4976 | curproxy->check_req[9 + userlen + 1 + 1] = 1; |
| 4977 | curproxy->check_req[9 + userlen + 1 + 1 + 4] = 1; |
| 4978 | cur_arg += 2; |
| 4979 | } |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 4980 | } else { |
| 4981 | /* unknown suboption - catchall */ |
| 4982 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 4983 | file, linenum, args[0], args[1]); |
| 4984 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4985 | goto out; |
| 4986 | } |
| 4987 | } /* end while loop */ |
| 4988 | } |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 4989 | } |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 4990 | else if (!strcmp(args[1], "ldap-check")) { |
| 4991 | /* use LDAP request to check servers' health */ |
| 4992 | free(curproxy->check_req); |
| 4993 | curproxy->check_req = NULL; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 4994 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 4995 | curproxy->options2 |= PR_O2_LDAP_CHK; |
| 4996 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 4997 | curproxy->check_req = malloc(sizeof(DEF_LDAP_CHECK_REQ) - 1); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 4998 | memcpy(curproxy->check_req, DEF_LDAP_CHECK_REQ, sizeof(DEF_LDAP_CHECK_REQ) - 1); |
| 4999 | curproxy->check_len = sizeof(DEF_LDAP_CHECK_REQ) - 1; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5000 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5001 | goto out; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 5002 | } |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 5003 | else if (!strcmp(args[1], "spop-check")) { |
| 5004 | if (curproxy == &defproxy) { |
| 5005 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'defaults' section.\n", |
| 5006 | file, linenum, args[0], args[1]); |
| 5007 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5008 | goto out; |
| 5009 | } |
| 5010 | if (curproxy->cap & PR_CAP_FE) { |
| 5011 | Alert("parsing [%s:%d] : '%s %s' not allowed in 'frontend' and 'listen' sections.\n", |
| 5012 | file, linenum, args[0], args[1]); |
| 5013 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5014 | goto out; |
| 5015 | } |
| 5016 | |
| 5017 | /* use SPOE request to check servers' health */ |
| 5018 | free(curproxy->check_req); |
| 5019 | curproxy->check_req = NULL; |
| 5020 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 5021 | curproxy->options2 |= PR_O2_SPOP_CHK; |
| 5022 | |
Christopher Faulet | 8ef7525 | 2017-02-20 22:56:03 +0100 | [diff] [blame] | 5023 | if (spoe_prepare_healthcheck_request(&curproxy->check_req, &curproxy->check_len)) { |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 5024 | Alert("parsing [%s:%d] : failed to prepare SPOP healthcheck request.\n", file, linenum); |
| 5025 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5026 | goto out; |
| 5027 | } |
| 5028 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5029 | goto out; |
| 5030 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5031 | else if (!strcmp(args[1], "tcp-check")) { |
| 5032 | /* use raw TCPCHK send/expect to check servers' health */ |
| 5033 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[1], NULL)) |
| 5034 | err_code |= ERR_WARN; |
| 5035 | |
| 5036 | free(curproxy->check_req); |
| 5037 | curproxy->check_req = NULL; |
| 5038 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 5039 | curproxy->options2 |= PR_O2_TCPCHK_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5040 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5041 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5042 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 5043 | else if (!strcmp(args[1], "external-check")) { |
| 5044 | /* excute an external command to check servers' health */ |
| 5045 | free(curproxy->check_req); |
| 5046 | curproxy->check_req = NULL; |
| 5047 | curproxy->options2 &= ~PR_O2_CHK_ANY; |
| 5048 | curproxy->options2 |= PR_O2_EXT_CHK; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5049 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5050 | goto out; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 5051 | } |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5052 | else if (!strcmp(args[1], "forwardfor")) { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5053 | int cur_arg; |
| 5054 | |
| 5055 | /* insert x-forwarded-for field, but not for the IP address listed as an except. |
| 5056 | * set default options (ie: bitfield, header name, etc) |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5057 | */ |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5058 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5059 | curproxy->options |= PR_O_FWDFOR | PR_O_FF_ALWAYS; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5060 | |
| 5061 | free(curproxy->fwdfor_hdr_name); |
| 5062 | curproxy->fwdfor_hdr_name = strdup(DEF_XFORWARDFOR_HDR); |
| 5063 | curproxy->fwdfor_hdr_len = strlen(DEF_XFORWARDFOR_HDR); |
| 5064 | |
| 5065 | /* loop to go through arguments - start at 2, since 0+1 = "option" "forwardfor" */ |
| 5066 | cur_arg = 2; |
| 5067 | while (*(args[cur_arg])) { |
| 5068 | if (!strcmp(args[cur_arg], "except")) { |
| 5069 | /* suboption except - needs additional argument for it */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 5070 | 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] | 5071 | Alert("parsing [%s:%d] : '%s %s %s' expects <address>[/mask] as argument.\n", |
| 5072 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5073 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5074 | goto out; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5075 | } |
| 5076 | /* flush useless bits */ |
| 5077 | curproxy->except_net.s_addr &= curproxy->except_mask.s_addr; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5078 | cur_arg += 2; |
| 5079 | } else if (!strcmp(args[cur_arg], "header")) { |
| 5080 | /* suboption header - needs additional argument for it */ |
| 5081 | if (*(args[cur_arg+1]) == 0) { |
| 5082 | Alert("parsing [%s:%d] : '%s %s %s' expects <header_name> as argument.\n", |
| 5083 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5084 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5085 | goto out; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5086 | } |
| 5087 | free(curproxy->fwdfor_hdr_name); |
| 5088 | curproxy->fwdfor_hdr_name = strdup(args[cur_arg+1]); |
| 5089 | curproxy->fwdfor_hdr_len = strlen(curproxy->fwdfor_hdr_name); |
| 5090 | cur_arg += 2; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5091 | } else if (!strcmp(args[cur_arg], "if-none")) { |
| 5092 | curproxy->options &= ~PR_O_FF_ALWAYS; |
| 5093 | cur_arg += 1; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5094 | } else { |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5095 | /* unknown suboption - catchall */ |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5096 | 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] | 5097 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5098 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5099 | goto out; |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5100 | } |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 5101 | } /* end while loop */ |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 5102 | } |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5103 | else if (!strcmp(args[1], "originalto")) { |
| 5104 | int cur_arg; |
| 5105 | |
| 5106 | /* insert x-original-to field, but not for the IP address listed as an except. |
| 5107 | * set default options (ie: bitfield, header name, etc) |
| 5108 | */ |
| 5109 | |
| 5110 | curproxy->options |= PR_O_ORGTO; |
| 5111 | |
| 5112 | free(curproxy->orgto_hdr_name); |
| 5113 | curproxy->orgto_hdr_name = strdup(DEF_XORIGINALTO_HDR); |
| 5114 | curproxy->orgto_hdr_len = strlen(DEF_XORIGINALTO_HDR); |
| 5115 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 5116 | /* 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] | 5117 | cur_arg = 2; |
| 5118 | while (*(args[cur_arg])) { |
| 5119 | if (!strcmp(args[cur_arg], "except")) { |
| 5120 | /* suboption except - needs additional argument for it */ |
Thierry FOURNIER | fc7ac7b | 2014-02-11 15:23:04 +0100 | [diff] [blame] | 5121 | 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] | 5122 | Alert("parsing [%s:%d] : '%s %s %s' expects <address>[/mask] as argument.\n", |
| 5123 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5124 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5125 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5126 | } |
| 5127 | /* flush useless bits */ |
| 5128 | curproxy->except_to.s_addr &= curproxy->except_mask_to.s_addr; |
| 5129 | cur_arg += 2; |
| 5130 | } else if (!strcmp(args[cur_arg], "header")) { |
| 5131 | /* suboption header - needs additional argument for it */ |
| 5132 | if (*(args[cur_arg+1]) == 0) { |
| 5133 | Alert("parsing [%s:%d] : '%s %s %s' expects <header_name> as argument.\n", |
| 5134 | file, linenum, args[0], args[1], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5135 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5136 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5137 | } |
| 5138 | free(curproxy->orgto_hdr_name); |
| 5139 | curproxy->orgto_hdr_name = strdup(args[cur_arg+1]); |
| 5140 | curproxy->orgto_hdr_len = strlen(curproxy->orgto_hdr_name); |
| 5141 | cur_arg += 2; |
| 5142 | } else { |
| 5143 | /* unknown suboption - catchall */ |
| 5144 | Alert("parsing [%s:%d] : '%s %s' only supports optional values: 'except' and 'header'.\n", |
| 5145 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5146 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5147 | goto out; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 5148 | } |
| 5149 | } /* end while loop */ |
| 5150 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5151 | else { |
| 5152 | Alert("parsing [%s:%d] : unknown option '%s'.\n", file, linenum, args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5153 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5154 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5155 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5156 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5157 | } |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5158 | else if (!strcmp(args[0], "default_backend")) { |
| 5159 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5160 | err_code |= ERR_WARN; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5161 | |
| 5162 | if (*(args[1]) == 0) { |
| 5163 | 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] | 5164 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5165 | goto out; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5166 | } |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 5167 | free(curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5168 | curproxy->defbe.name = strdup(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5169 | |
| 5170 | if (alertif_too_many_args_idx(1, 0, file, linenum, args, &err_code)) |
| 5171 | goto out; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 5172 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5173 | else if (!strcmp(args[0], "redispatch") || !strcmp(args[0], "redisp")) { |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5174 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5175 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5176 | |
Willy Tarreau | a3c504c | 2014-04-28 22:37:32 +0200 | [diff] [blame] | 5177 | if (!already_warned(WARN_REDISPATCH_DEPRECATED)) |
| 5178 | 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] | 5179 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5180 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5181 | /* enable reconnections to dispatch */ |
| 5182 | curproxy->options |= PR_O_REDISP; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5183 | |
| 5184 | if (alertif_too_many_args_idx(1, 0, file, linenum, args, &err_code)) |
| 5185 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5186 | } |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 5187 | else if (!strcmp(args[0], "http-reuse")) { |
| 5188 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5189 | err_code |= ERR_WARN; |
| 5190 | |
| 5191 | if (strcmp(args[1], "never") == 0) { |
| 5192 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5193 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5194 | curproxy->options |= PR_O_REUSE_NEVR; |
| 5195 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5196 | goto out; |
| 5197 | } |
Willy Tarreau | 161d45f | 2015-08-05 16:02:46 +0200 | [diff] [blame] | 5198 | else if (strcmp(args[1], "safe") == 0) { |
| 5199 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5200 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5201 | curproxy->options |= PR_O_REUSE_SAFE; |
| 5202 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5203 | goto out; |
| 5204 | } |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 5205 | else if (strcmp(args[1], "aggressive") == 0) { |
| 5206 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5207 | curproxy->options |= PR_O_REUSE_AGGR; |
| 5208 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5209 | goto out; |
| 5210 | } |
Willy Tarreau | d8fecee | 2015-08-05 14:12:31 +0200 | [diff] [blame] | 5211 | else if (strcmp(args[1], "always") == 0) { |
| 5212 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5213 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 5214 | curproxy->options |= PR_O_REUSE_ALWS; |
| 5215 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5216 | goto out; |
| 5217 | } |
| 5218 | else { |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 5219 | 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] | 5220 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5221 | goto out; |
| 5222 | } |
| 5223 | } |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5224 | else if (!strcmp(args[0], "http-check")) { |
| 5225 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5226 | err_code |= ERR_WARN; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5227 | |
| 5228 | if (strcmp(args[1], "disable-on-404") == 0) { |
| 5229 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 5230 | curproxy->options |= PR_O_DISABLE404; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5231 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5232 | goto out; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5233 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 5234 | else if (strcmp(args[1], "send-state") == 0) { |
| 5235 | /* enable emission of the apparent state of a server in HTTP checks */ |
| 5236 | curproxy->options2 |= PR_O2_CHK_SNDST; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5237 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 5238 | goto out; |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 5239 | } |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5240 | else if (strcmp(args[1], "expect") == 0) { |
| 5241 | const char *ptr_arg; |
| 5242 | int cur_arg; |
| 5243 | |
| 5244 | if (curproxy->options2 & PR_O2_EXP_TYPE) { |
| 5245 | Alert("parsing [%s:%d] : '%s %s' already specified.\n", file, linenum, args[0], args[1]); |
| 5246 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5247 | goto out; |
| 5248 | } |
| 5249 | |
| 5250 | cur_arg = 2; |
| 5251 | /* consider exclamation marks, sole or at the beginning of a word */ |
| 5252 | while (*(ptr_arg = args[cur_arg])) { |
| 5253 | while (*ptr_arg == '!') { |
| 5254 | curproxy->options2 ^= PR_O2_EXP_INV; |
| 5255 | ptr_arg++; |
| 5256 | } |
| 5257 | if (*ptr_arg) |
| 5258 | break; |
| 5259 | cur_arg++; |
| 5260 | } |
| 5261 | /* now ptr_arg points to the beginning of a word past any possible |
| 5262 | * exclamation mark, and cur_arg is the argument which holds this word. |
| 5263 | */ |
| 5264 | if (strcmp(ptr_arg, "status") == 0) { |
| 5265 | if (!*(args[cur_arg + 1])) { |
| 5266 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5267 | file, linenum, args[0], args[1], ptr_arg); |
| 5268 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5269 | goto out; |
| 5270 | } |
| 5271 | curproxy->options2 |= PR_O2_EXP_STS; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5272 | free(curproxy->expect_str); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5273 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
| 5274 | } |
| 5275 | else if (strcmp(ptr_arg, "string") == 0) { |
| 5276 | if (!*(args[cur_arg + 1])) { |
| 5277 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5278 | file, linenum, args[0], args[1], ptr_arg); |
| 5279 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5280 | goto out; |
| 5281 | } |
| 5282 | curproxy->options2 |= PR_O2_EXP_STR; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5283 | free(curproxy->expect_str); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5284 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
| 5285 | } |
| 5286 | else if (strcmp(ptr_arg, "rstatus") == 0) { |
| 5287 | if (!*(args[cur_arg + 1])) { |
| 5288 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5289 | file, linenum, args[0], args[1], ptr_arg); |
| 5290 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5291 | goto out; |
| 5292 | } |
| 5293 | curproxy->options2 |= PR_O2_EXP_RSTS; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5294 | free(curproxy->expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5295 | if (curproxy->expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5296 | regex_free(curproxy->expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5297 | free(curproxy->expect_regex); |
| 5298 | curproxy->expect_regex = NULL; |
| 5299 | } |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5300 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5301 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 5302 | error = NULL; |
| 5303 | if (!regex_comp(args[cur_arg + 1], curproxy->expect_regex, 1, 1, &error)) { |
| 5304 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5305 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5306 | free(error); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5307 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5308 | goto out; |
| 5309 | } |
| 5310 | } |
| 5311 | else if (strcmp(ptr_arg, "rstring") == 0) { |
| 5312 | if (!*(args[cur_arg + 1])) { |
| 5313 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5314 | file, linenum, args[0], args[1], ptr_arg); |
| 5315 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5316 | goto out; |
| 5317 | } |
| 5318 | curproxy->options2 |= PR_O2_EXP_RSTR; |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5319 | free(curproxy->expect_str); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5320 | if (curproxy->expect_regex) { |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5321 | regex_free(curproxy->expect_regex); |
Thierry FOURNIER | 148f408 | 2014-06-11 14:45:31 +0200 | [diff] [blame] | 5322 | free(curproxy->expect_regex); |
| 5323 | curproxy->expect_regex = NULL; |
| 5324 | } |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5325 | curproxy->expect_str = strdup(args[cur_arg + 1]); |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5326 | curproxy->expect_regex = calloc(1, sizeof(*curproxy->expect_regex)); |
| 5327 | error = NULL; |
| 5328 | if (!regex_comp(args[cur_arg + 1], curproxy->expect_regex, 1, 1, &error)) { |
| 5329 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5330 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5331 | free(error); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 5332 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5333 | goto out; |
| 5334 | } |
| 5335 | } |
| 5336 | else { |
| 5337 | Alert("parsing [%s:%d] : '%s %s' only supports [!] 'status', 'string', 'rstatus', 'rstring', found '%s'.\n", |
| 5338 | file, linenum, args[0], args[1], ptr_arg); |
| 5339 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5340 | goto out; |
| 5341 | } |
| 5342 | } |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5343 | else { |
Willy Tarreau | 1ee51a6 | 2011-08-19 20:04:17 +0200 | [diff] [blame] | 5344 | 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] | 5345 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5346 | goto out; |
Willy Tarreau | 48494c0 | 2007-11-30 10:41:39 +0100 | [diff] [blame] | 5347 | } |
| 5348 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5349 | else if (!strcmp(args[0], "tcp-check")) { |
| 5350 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5351 | err_code |= ERR_WARN; |
| 5352 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5353 | if (strcmp(args[1], "comment") == 0) { |
| 5354 | int cur_arg; |
| 5355 | struct tcpcheck_rule *tcpcheck; |
| 5356 | |
| 5357 | cur_arg = 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5358 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5359 | tcpcheck->action = TCPCHK_ACT_COMMENT; |
| 5360 | |
| 5361 | if (!*args[cur_arg + 1]) { |
| 5362 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5363 | file, linenum, args[cur_arg]); |
| 5364 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5365 | goto out; |
| 5366 | } |
| 5367 | |
| 5368 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5369 | |
| 5370 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5371 | if (alertif_too_many_args_idx(1, 1, file, linenum, args, &err_code)) |
| 5372 | goto out; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5373 | } |
| 5374 | else if (strcmp(args[1], "connect") == 0) { |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5375 | const char *ptr_arg; |
| 5376 | int cur_arg; |
| 5377 | struct tcpcheck_rule *tcpcheck; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5378 | |
| 5379 | /* check if first rule is also a 'connect' action */ |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 5380 | tcpcheck = LIST_NEXT(&curproxy->tcpcheck_rules, struct tcpcheck_rule *, list); |
| 5381 | while (&tcpcheck->list != &curproxy->tcpcheck_rules && |
| 5382 | tcpcheck->action == TCPCHK_ACT_COMMENT) { |
| 5383 | tcpcheck = LIST_NEXT(&tcpcheck->list, struct tcpcheck_rule *, list); |
| 5384 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5385 | |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 5386 | if (&tcpcheck->list != &curproxy->tcpcheck_rules |
| 5387 | && tcpcheck->action != TCPCHK_ACT_CONNECT) { |
| 5388 | Alert("parsing [%s:%d] : first step MUST also be a 'connect' when there is a 'connect' step in the tcp-check ruleset.\n", |
| 5389 | file, linenum); |
| 5390 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5391 | goto out; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5392 | } |
| 5393 | |
| 5394 | cur_arg = 2; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5395 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5396 | tcpcheck->action = TCPCHK_ACT_CONNECT; |
| 5397 | |
| 5398 | /* parsing each parameters to fill up the rule */ |
| 5399 | while (*(ptr_arg = args[cur_arg])) { |
| 5400 | /* tcp port */ |
| 5401 | if (strcmp(args[cur_arg], "port") == 0) { |
| 5402 | if ( (atol(args[cur_arg + 1]) > 65535) || |
| 5403 | (atol(args[cur_arg + 1]) < 1) ){ |
| 5404 | Alert("parsing [%s:%d] : '%s %s %s' expects a valid TCP port (from range 1 to 65535), got %s.\n", |
| 5405 | file, linenum, args[0], args[1], "port", args[cur_arg + 1]); |
| 5406 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5407 | goto out; |
| 5408 | } |
| 5409 | tcpcheck->port = atol(args[cur_arg + 1]); |
| 5410 | cur_arg += 2; |
| 5411 | } |
| 5412 | /* send proxy protocol */ |
| 5413 | else if (strcmp(args[cur_arg], "send-proxy") == 0) { |
| 5414 | tcpcheck->conn_opts |= TCPCHK_OPT_SEND_PROXY; |
| 5415 | cur_arg++; |
| 5416 | } |
| 5417 | #ifdef USE_OPENSSL |
| 5418 | else if (strcmp(args[cur_arg], "ssl") == 0) { |
| 5419 | curproxy->options |= PR_O_TCPCHK_SSL; |
| 5420 | tcpcheck->conn_opts |= TCPCHK_OPT_SSL; |
| 5421 | cur_arg++; |
| 5422 | } |
| 5423 | #endif /* USE_OPENSSL */ |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5424 | /* comment for this tcpcheck line */ |
| 5425 | else if (strcmp(args[cur_arg], "comment") == 0) { |
| 5426 | if (!*args[cur_arg + 1]) { |
| 5427 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5428 | file, linenum, args[cur_arg]); |
| 5429 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5430 | goto out; |
| 5431 | } |
| 5432 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5433 | cur_arg += 2; |
| 5434 | } |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 5435 | else { |
| 5436 | #ifdef USE_OPENSSL |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5437 | 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] | 5438 | #else /* USE_OPENSSL */ |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5439 | 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] | 5440 | #endif /* USE_OPENSSL */ |
| 5441 | file, linenum, args[0], args[1], args[cur_arg]); |
| 5442 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5443 | goto out; |
| 5444 | } |
| 5445 | |
| 5446 | } |
| 5447 | |
| 5448 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5449 | } |
| 5450 | else if (strcmp(args[1], "send") == 0) { |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5451 | if (! *(args[2]) ) { |
| 5452 | /* SEND string expected */ |
| 5453 | Alert("parsing [%s:%d] : '%s %s %s' expects <STRING> as argument.\n", |
| 5454 | file, linenum, args[0], args[1], args[2]); |
| 5455 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5456 | goto out; |
| 5457 | } else { |
| 5458 | struct tcpcheck_rule *tcpcheck; |
| 5459 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5460 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5461 | |
| 5462 | tcpcheck->action = TCPCHK_ACT_SEND; |
| 5463 | tcpcheck->string_len = strlen(args[2]); |
| 5464 | tcpcheck->string = strdup(args[2]); |
| 5465 | tcpcheck->expect_regex = NULL; |
| 5466 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5467 | /* comment for this tcpcheck line */ |
| 5468 | if (strcmp(args[3], "comment") == 0) { |
| 5469 | if (!*args[4]) { |
| 5470 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5471 | file, linenum, args[3]); |
| 5472 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5473 | goto out; |
| 5474 | } |
| 5475 | tcpcheck->comment = strdup(args[4]); |
| 5476 | } |
| 5477 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5478 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5479 | } |
| 5480 | } |
| 5481 | else if (strcmp(args[1], "send-binary") == 0) { |
| 5482 | if (! *(args[2]) ) { |
| 5483 | /* SEND binary string expected */ |
| 5484 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument.\n", |
| 5485 | file, linenum, args[0], args[1], args[2]); |
| 5486 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5487 | goto out; |
| 5488 | } else { |
| 5489 | struct tcpcheck_rule *tcpcheck; |
| 5490 | char *err = NULL; |
| 5491 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5492 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5493 | |
| 5494 | tcpcheck->action = TCPCHK_ACT_SEND; |
| 5495 | if (parse_binary(args[2], &tcpcheck->string, &tcpcheck->string_len, &err) == 0) { |
| 5496 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument, but %s\n", |
| 5497 | file, linenum, args[0], args[1], args[2], err); |
| 5498 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5499 | goto out; |
| 5500 | } |
| 5501 | tcpcheck->expect_regex = NULL; |
| 5502 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5503 | /* comment for this tcpcheck line */ |
| 5504 | if (strcmp(args[3], "comment") == 0) { |
| 5505 | if (!*args[4]) { |
| 5506 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5507 | file, linenum, args[3]); |
| 5508 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5509 | goto out; |
| 5510 | } |
| 5511 | tcpcheck->comment = strdup(args[4]); |
| 5512 | } |
| 5513 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5514 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5515 | } |
| 5516 | } |
| 5517 | else if (strcmp(args[1], "expect") == 0) { |
| 5518 | const char *ptr_arg; |
| 5519 | int cur_arg; |
| 5520 | int inverse = 0; |
| 5521 | |
| 5522 | if (curproxy->options2 & PR_O2_EXP_TYPE) { |
| 5523 | Alert("parsing [%s:%d] : '%s %s' already specified.\n", file, linenum, args[0], args[1]); |
| 5524 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5525 | goto out; |
| 5526 | } |
| 5527 | |
| 5528 | cur_arg = 2; |
| 5529 | /* consider exclamation marks, sole or at the beginning of a word */ |
| 5530 | while (*(ptr_arg = args[cur_arg])) { |
| 5531 | while (*ptr_arg == '!') { |
| 5532 | inverse = !inverse; |
| 5533 | ptr_arg++; |
| 5534 | } |
| 5535 | if (*ptr_arg) |
| 5536 | break; |
| 5537 | cur_arg++; |
| 5538 | } |
| 5539 | /* now ptr_arg points to the beginning of a word past any possible |
| 5540 | * exclamation mark, and cur_arg is the argument which holds this word. |
| 5541 | */ |
| 5542 | if (strcmp(ptr_arg, "binary") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5543 | struct tcpcheck_rule *tcpcheck; |
| 5544 | char *err = NULL; |
| 5545 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5546 | if (!*(args[cur_arg + 1])) { |
| 5547 | Alert("parsing [%s:%d] : '%s %s %s' expects <binary string> as an argument.\n", |
| 5548 | file, linenum, args[0], args[1], ptr_arg); |
| 5549 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5550 | goto out; |
| 5551 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5552 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5553 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5554 | |
| 5555 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5556 | if (parse_binary(args[cur_arg + 1], &tcpcheck->string, &tcpcheck->string_len, &err) == 0) { |
| 5557 | Alert("parsing [%s:%d] : '%s %s %s' expects <BINARY STRING> as argument, but %s\n", |
| 5558 | file, linenum, args[0], args[1], args[2], err); |
| 5559 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5560 | goto out; |
| 5561 | } |
| 5562 | tcpcheck->expect_regex = NULL; |
| 5563 | tcpcheck->inverse = inverse; |
| 5564 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5565 | /* tcpcheck comment */ |
| 5566 | cur_arg += 2; |
| 5567 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5568 | if (!*args[cur_arg + 1]) { |
| 5569 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5570 | file, linenum, args[cur_arg + 1]); |
| 5571 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5572 | goto out; |
| 5573 | } |
| 5574 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5575 | } |
| 5576 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5577 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5578 | } |
| 5579 | else if (strcmp(ptr_arg, "string") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5580 | struct tcpcheck_rule *tcpcheck; |
| 5581 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5582 | if (!*(args[cur_arg + 1])) { |
| 5583 | Alert("parsing [%s:%d] : '%s %s %s' expects <string> as an argument.\n", |
| 5584 | file, linenum, args[0], args[1], ptr_arg); |
| 5585 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5586 | goto out; |
| 5587 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5588 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5589 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5590 | |
| 5591 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5592 | tcpcheck->string_len = strlen(args[cur_arg + 1]); |
| 5593 | tcpcheck->string = strdup(args[cur_arg + 1]); |
| 5594 | tcpcheck->expect_regex = NULL; |
| 5595 | tcpcheck->inverse = inverse; |
| 5596 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5597 | /* tcpcheck comment */ |
| 5598 | cur_arg += 2; |
| 5599 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5600 | if (!*args[cur_arg + 1]) { |
| 5601 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5602 | file, linenum, args[cur_arg + 1]); |
| 5603 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5604 | goto out; |
| 5605 | } |
| 5606 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5607 | } |
| 5608 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5609 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5610 | } |
| 5611 | else if (strcmp(ptr_arg, "rstring") == 0) { |
Willy Tarreau | e7acee7 | 2015-02-27 16:37:05 +0100 | [diff] [blame] | 5612 | struct tcpcheck_rule *tcpcheck; |
| 5613 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5614 | if (!*(args[cur_arg + 1])) { |
| 5615 | Alert("parsing [%s:%d] : '%s %s %s' expects <regex> as an argument.\n", |
| 5616 | file, linenum, args[0], args[1], ptr_arg); |
| 5617 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5618 | goto out; |
| 5619 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5620 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 5621 | tcpcheck = calloc(1, sizeof(*tcpcheck)); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5622 | |
| 5623 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 5624 | tcpcheck->string_len = 0; |
| 5625 | tcpcheck->string = NULL; |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 5626 | tcpcheck->expect_regex = calloc(1, sizeof(*tcpcheck->expect_regex)); |
| 5627 | error = NULL; |
| 5628 | if (!regex_comp(args[cur_arg + 1], tcpcheck->expect_regex, 1, 1, &error)) { |
| 5629 | Alert("parsing [%s:%d] : '%s %s %s' : bad regular expression '%s': %s.\n", |
| 5630 | file, linenum, args[0], args[1], ptr_arg, args[cur_arg + 1], error); |
| 5631 | free(error); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5632 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5633 | goto out; |
| 5634 | } |
| 5635 | tcpcheck->inverse = inverse; |
| 5636 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5637 | /* tcpcheck comment */ |
| 5638 | cur_arg += 2; |
| 5639 | if (strcmp(args[cur_arg], "comment") == 0) { |
| 5640 | if (!*args[cur_arg + 1]) { |
| 5641 | Alert("parsing [%s:%d] : '%s' expects a comment string.\n", |
| 5642 | file, linenum, args[cur_arg + 1]); |
| 5643 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5644 | goto out; |
| 5645 | } |
| 5646 | tcpcheck->comment = strdup(args[cur_arg + 1]); |
| 5647 | } |
| 5648 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 5649 | LIST_ADDQ(&curproxy->tcpcheck_rules, &tcpcheck->list); |
| 5650 | } |
| 5651 | else { |
| 5652 | Alert("parsing [%s:%d] : '%s %s' only supports [!] 'binary', 'string', 'rstring', found '%s'.\n", |
| 5653 | file, linenum, args[0], args[1], ptr_arg); |
| 5654 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5655 | goto out; |
| 5656 | } |
| 5657 | } |
| 5658 | else { |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 5659 | 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] | 5660 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5661 | goto out; |
| 5662 | } |
| 5663 | } |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5664 | else if (!strcmp(args[0], "monitor")) { |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 5665 | if (curproxy == &defproxy) { |
| 5666 | 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] | 5667 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5668 | goto out; |
Willy Tarreau | b099aca | 2008-10-12 17:26:37 +0200 | [diff] [blame] | 5669 | } |
| 5670 | |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5671 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5672 | err_code |= ERR_WARN; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5673 | |
| 5674 | if (strcmp(args[1], "fail") == 0) { |
| 5675 | /* add a condition to fail monitor requests */ |
Willy Tarreau | ef6494c | 2010-01-28 17:12:36 +0100 | [diff] [blame] | 5676 | if (strcmp(args[2], "if") != 0 && strcmp(args[2], "unless") != 0) { |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5677 | Alert("parsing [%s:%d] : '%s %s' requires either 'if' or 'unless' followed by a condition.\n", |
| 5678 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5679 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5680 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5681 | } |
| 5682 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 5683 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args + 2, &errmsg)) == NULL) { |
| 5684 | Alert("parsing [%s:%d] : error detected while parsing a '%s %s' condition : %s.\n", |
| 5685 | file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5686 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5687 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5688 | } |
| 5689 | LIST_ADDQ(&curproxy->mon_fail_cond, &cond->list); |
| 5690 | } |
| 5691 | else { |
| 5692 | 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] | 5693 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5694 | goto out; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 5695 | } |
| 5696 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5697 | #ifdef TPROXY |
| 5698 | else if (!strcmp(args[0], "transparent")) { |
| 5699 | /* enable transparent proxy connections */ |
| 5700 | curproxy->options |= PR_O_TRANSP; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5701 | if (alertif_too_many_args(0, file, linenum, args, &err_code)) |
| 5702 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5703 | } |
| 5704 | #endif |
| 5705 | else if (!strcmp(args[0], "maxconn")) { /* maxconn */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5706 | 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] | 5707 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5708 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5709 | if (*(args[1]) == 0) { |
| 5710 | 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] | 5711 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5712 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5713 | } |
| 5714 | curproxy->maxconn = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5715 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5716 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5717 | } |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5718 | else if (!strcmp(args[0], "backlog")) { /* backlog */ |
| 5719 | if (warnifnotcap(curproxy, PR_CAP_FE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5720 | err_code |= ERR_WARN; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5721 | |
| 5722 | if (*(args[1]) == 0) { |
| 5723 | 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] | 5724 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5725 | goto out; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5726 | } |
| 5727 | curproxy->backlog = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5728 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5729 | goto out; |
Willy Tarreau | c73ce2b | 2008-01-06 10:55:10 +0100 | [diff] [blame] | 5730 | } |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5731 | else if (!strcmp(args[0], "fullconn")) { /* fullconn */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5732 | 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] | 5733 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5734 | |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5735 | if (*(args[1]) == 0) { |
| 5736 | 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] | 5737 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5738 | goto out; |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5739 | } |
| 5740 | curproxy->fullconn = atol(args[1]); |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5741 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5742 | goto out; |
Willy Tarreau | 8603431 | 2006-12-29 00:10:33 +0100 | [diff] [blame] | 5743 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5744 | else if (!strcmp(args[0], "grace")) { /* grace time (ms) */ |
| 5745 | if (*(args[1]) == 0) { |
| 5746 | 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] | 5747 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5748 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5749 | } |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 5750 | err = parse_time_err(args[1], &val, TIME_UNIT_MS); |
| 5751 | if (err) { |
| 5752 | Alert("parsing [%s:%d] : unexpected character '%c' in grace time.\n", |
| 5753 | file, linenum, *err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5754 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5755 | goto out; |
Willy Tarreau | b3f32f5 | 2007-12-02 22:15:14 +0100 | [diff] [blame] | 5756 | } |
| 5757 | curproxy->grace = val; |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5758 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5759 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5760 | } |
| 5761 | else if (!strcmp(args[0], "dispatch")) { /* dispatch address */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 5762 | struct sockaddr_storage *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5763 | int port1, port2; |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5764 | struct protocol *proto; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5765 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5766 | if (curproxy == &defproxy) { |
| 5767 | 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] | 5768 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5769 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5770 | } |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5771 | else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5772 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5773 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 5774 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5775 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 5776 | Alert("parsing [%s:%d] : '%s' : %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5777 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5778 | goto out; |
| 5779 | } |
Willy Tarreau | f3559bf | 2013-03-06 16:52:04 +0100 | [diff] [blame] | 5780 | |
| 5781 | proto = protocol_by_family(sk->ss_family); |
| 5782 | if (!proto || !proto->connect) { |
| 5783 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 5784 | file, linenum, args[0], args[1]); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5785 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5786 | goto out; |
| 5787 | } |
| 5788 | |
| 5789 | if (port1 != port2) { |
| 5790 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'.\n", |
| 5791 | file, linenum, args[0], args[1]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5792 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5793 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5794 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5795 | |
| 5796 | if (!port1) { |
| 5797 | Alert("parsing [%s:%d] : '%s' : missing port number in '%s', <addr:port> expected.\n", |
| 5798 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5799 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5800 | goto out; |
| 5801 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 5802 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 5803 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 5804 | goto out; |
| 5805 | |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 5806 | curproxy->dispatch_addr = *sk; |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 5807 | curproxy->options |= PR_O_DISPATCH; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5808 | } |
| 5809 | else if (!strcmp(args[0], "balance")) { /* set balancing with optional algorithm */ |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5810 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5811 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 5812 | |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 5813 | if (backend_parse_balance((const char **)args + 1, &errmsg, curproxy) < 0) { |
| 5814 | Alert("parsing [%s:%d] : %s %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 5815 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5816 | goto out; |
Willy Tarreau | 2fcb500 | 2007-05-08 13:35:26 +0200 | [diff] [blame] | 5817 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5818 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5819 | else if (!strcmp(args[0], "hash-type")) { /* set hashing method */ |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5820 | /** |
| 5821 | * The syntax for hash-type config element is |
| 5822 | * hash-type {map-based|consistent} [[<algo>] avalanche] |
| 5823 | * |
| 5824 | * The default hash function is sdbm for map-based and sdbm+avalanche for consistent. |
| 5825 | */ |
| 5826 | 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] | 5827 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5828 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
| 5829 | err_code |= ERR_WARN; |
| 5830 | |
| 5831 | if (strcmp(args[1], "consistent") == 0) { /* use consistent hashing */ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5832 | curproxy->lbprm.algo |= BE_LB_HASH_CONS; |
| 5833 | } |
| 5834 | else if (strcmp(args[1], "map-based") == 0) { /* use map-based hashing */ |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5835 | curproxy->lbprm.algo |= BE_LB_HASH_MAP; |
| 5836 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5837 | else if (strcmp(args[1], "avalanche") == 0) { |
| 5838 | 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]); |
| 5839 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5840 | goto out; |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 5841 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 5842 | else { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5843 | 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] | 5844 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5845 | goto out; |
| 5846 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5847 | |
| 5848 | /* set the hash function to use */ |
| 5849 | if (!*args[2]) { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5850 | /* the default algo is sdbm */ |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5851 | curproxy->lbprm.algo |= BE_LB_HFCN_SDBM; |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5852 | |
| 5853 | /* if consistent with no argument, then avalanche modifier is also applied */ |
| 5854 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) |
| 5855 | curproxy->lbprm.algo |= BE_LB_HMOD_AVAL; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 5856 | } else { |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5857 | /* set the hash function */ |
| 5858 | if (!strcmp(args[2], "sdbm")) { |
| 5859 | curproxy->lbprm.algo |= BE_LB_HFCN_SDBM; |
| 5860 | } |
| 5861 | else if (!strcmp(args[2], "djb2")) { |
| 5862 | curproxy->lbprm.algo |= BE_LB_HFCN_DJB2; |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5863 | } |
| 5864 | else if (!strcmp(args[2], "wt6")) { |
Willy Tarreau | a0f4271 | 2013-11-14 14:30:35 +0100 | [diff] [blame] | 5865 | curproxy->lbprm.algo |= BE_LB_HFCN_WT6; |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5866 | } |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5867 | else if (!strcmp(args[2], "crc32")) { |
| 5868 | curproxy->lbprm.algo |= BE_LB_HFCN_CRC32; |
| 5869 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 5870 | else { |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 5871 | 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] | 5872 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5873 | goto out; |
| 5874 | } |
| 5875 | |
| 5876 | /* set the hash modifier */ |
| 5877 | if (!strcmp(args[3], "avalanche")) { |
| 5878 | curproxy->lbprm.algo |= BE_LB_HMOD_AVAL; |
| 5879 | } |
| 5880 | else if (*args[3]) { |
| 5881 | Alert("parsing [%s:%d] : '%s' only supports 'avalanche' as a modifier for hash functions.\n", file, linenum, args[0]); |
| 5882 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5883 | goto out; |
| 5884 | } |
Krzysztof Piotr Oledzki | c6df066 | 2010-01-05 16:38:49 +0100 | [diff] [blame] | 5885 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5886 | } |
Andrew Rodland | b1f48e3 | 2016-10-25 12:49:05 -0400 | [diff] [blame] | 5887 | else if (strcmp(args[0], "hash-balance-factor") == 0) { |
| 5888 | if (*(args[1]) == 0) { |
| 5889 | Alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]); |
| 5890 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5891 | goto out; |
| 5892 | } |
| 5893 | curproxy->lbprm.chash.balance_factor = atol(args[1]); |
| 5894 | if (curproxy->lbprm.chash.balance_factor != 0 && curproxy->lbprm.chash.balance_factor <= 100) { |
| 5895 | Alert("parsing [%s:%d] : '%s' must be 0 or greater than 100.\n", file, linenum, args[0]); |
| 5896 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5897 | goto out; |
| 5898 | } |
| 5899 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5900 | else if (strcmp(args[0], "unique-id-format") == 0) { |
| 5901 | if (!*(args[1])) { |
| 5902 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5903 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5904 | goto out; |
| 5905 | } |
William Lallemand | 3203ff4 | 2012-11-11 17:30:56 +0100 | [diff] [blame] | 5906 | if (*(args[2])) { |
| 5907 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5908 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5909 | goto out; |
| 5910 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5911 | free(curproxy->conf.uniqueid_format_string); |
| 5912 | curproxy->conf.uniqueid_format_string = strdup(args[1]); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 5913 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5914 | free(curproxy->conf.uif_file); |
| 5915 | curproxy->conf.uif_file = strdup(curproxy->conf.args.file); |
| 5916 | curproxy->conf.uif_line = curproxy->conf.args.line; |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5917 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 5918 | |
| 5919 | else if (strcmp(args[0], "unique-id-header") == 0) { |
| 5920 | if (!*(args[1])) { |
| 5921 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5922 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5923 | goto out; |
| 5924 | } |
| 5925 | free(curproxy->header_unique_id); |
| 5926 | curproxy->header_unique_id = strdup(args[1]); |
| 5927 | } |
| 5928 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 5929 | else if (strcmp(args[0], "log-format") == 0) { |
| 5930 | if (!*(args[1])) { |
| 5931 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5932 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5933 | goto out; |
| 5934 | } |
William Lallemand | 3203ff4 | 2012-11-11 17:30:56 +0100 | [diff] [blame] | 5935 | if (*(args[2])) { |
| 5936 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5937 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5938 | goto out; |
| 5939 | } |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 5940 | if (curproxy->conf.logformat_string && curproxy == &defproxy) { |
| 5941 | char *oldlogformat = "log-format"; |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 5942 | |
Guillaume de Lafond | ea5b0e6 | 2017-03-31 19:54:09 +0200 | [diff] [blame] | 5943 | if (curproxy->conf.logformat_string == default_http_log_format) |
| 5944 | oldlogformat = "option httplog"; |
| 5945 | else if (curproxy->conf.logformat_string == default_tcp_log_format) |
| 5946 | oldlogformat = "option tcplog"; |
| 5947 | else if (curproxy->conf.logformat_string == clf_http_log_format) |
| 5948 | oldlogformat = "option httplog clf"; |
| 5949 | Warning("parsing [%s:%d]: 'log-format' overrides previous '%s' in 'defaults' section.\n", |
| 5950 | file, linenum, oldlogformat); |
| 5951 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 5952 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 5953 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 5954 | curproxy->conf.logformat_string != clf_http_log_format) |
| 5955 | free(curproxy->conf.logformat_string); |
| 5956 | curproxy->conf.logformat_string = strdup(args[1]); |
| 5957 | |
| 5958 | free(curproxy->conf.lfs_file); |
| 5959 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 5960 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 5961 | |
| 5962 | /* get a chance to improve log-format error reporting by |
| 5963 | * reporting the correct line-number when possible. |
| 5964 | */ |
| 5965 | if (curproxy != &defproxy && !(curproxy->cap & PR_CAP_FE)) { |
| 5966 | Warning("parsing [%s:%d] : backend '%s' : 'log-format' directive is ignored in backends.\n", |
| 5967 | file, linenum, curproxy->id); |
| 5968 | err_code |= ERR_WARN; |
| 5969 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5970 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 5971 | else if (!strcmp(args[0], "log-format-sd")) { |
| 5972 | if (!*(args[1])) { |
| 5973 | Alert("parsing [%s:%d] : %s expects an argument.\n", file, linenum, args[0]); |
| 5974 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5975 | goto out; |
| 5976 | } |
| 5977 | if (*(args[2])) { |
| 5978 | Alert("parsing [%s:%d] : %s expects only one argument, don't forget to escape spaces!\n", file, linenum, args[0]); |
| 5979 | err_code |= ERR_ALERT | ERR_FATAL; |
| 5980 | goto out; |
| 5981 | } |
| 5982 | |
| 5983 | if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 5984 | free(curproxy->conf.logformat_sd_string); |
| 5985 | curproxy->conf.logformat_sd_string = strdup(args[1]); |
| 5986 | |
| 5987 | free(curproxy->conf.lfsd_file); |
| 5988 | curproxy->conf.lfsd_file = strdup(curproxy->conf.args.file); |
| 5989 | curproxy->conf.lfsd_line = curproxy->conf.args.line; |
| 5990 | |
| 5991 | /* get a chance to improve log-format-sd error reporting by |
| 5992 | * reporting the correct line-number when possible. |
| 5993 | */ |
| 5994 | if (curproxy != &defproxy && !(curproxy->cap & PR_CAP_FE)) { |
| 5995 | Warning("parsing [%s:%d] : backend '%s' : 'log-format-sd' directive is ignored in backends.\n", |
| 5996 | file, linenum, curproxy->id); |
| 5997 | err_code |= ERR_WARN; |
| 5998 | } |
| 5999 | } |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 6000 | else if (!strcmp(args[0], "log-tag")) { /* tag to report to syslog */ |
| 6001 | if (*(args[1]) == 0) { |
| 6002 | Alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]); |
| 6003 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6004 | goto out; |
| 6005 | } |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 6006 | chunk_destroy(&curproxy->log_tag); |
| 6007 | chunk_initstr(&curproxy->log_tag, strdup(args[1])); |
Willy Tarreau | 094af4e | 2015-01-07 15:03:42 +0100 | [diff] [blame] | 6008 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6009 | else if (!strcmp(args[0], "log") && kwm == KWM_NO) { |
| 6010 | /* delete previous herited or defined syslog servers */ |
| 6011 | struct logsrv *back; |
| 6012 | |
| 6013 | if (*(args[1]) != 0) { |
| 6014 | Alert("parsing [%s:%d]:%s : 'no log' does not expect arguments.\n", file, linenum, args[1]); |
| 6015 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6016 | goto out; |
| 6017 | } |
| 6018 | |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 6019 | list_for_each_entry_safe(tmplogsrv, back, &curproxy->logsrvs, list) { |
| 6020 | LIST_DEL(&tmplogsrv->list); |
| 6021 | free(tmplogsrv); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6022 | } |
| 6023 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6024 | else if (!strcmp(args[0], "log")) { /* syslog server address */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6025 | struct logsrv *logsrv; |
| 6026 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6027 | if (*(args[1]) && *(args[2]) == 0 && !strcmp(args[1], "global")) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6028 | /* copy global.logrsvs linked list to the end of curproxy->logsrvs */ |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 6029 | list_for_each_entry(tmplogsrv, &global.logsrvs, list) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6030 | struct logsrv *node = malloc(sizeof(*node)); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 6031 | memcpy(node, tmplogsrv, sizeof(struct logsrv)); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6032 | LIST_INIT(&node->list); |
| 6033 | LIST_ADDQ(&curproxy->logsrvs, &node->list); |
| 6034 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6035 | } |
| 6036 | else if (*(args[1]) && *(args[2])) { |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6037 | struct sockaddr_storage *sk; |
| 6038 | int port1, port2; |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6039 | int arg = 0; |
| 6040 | int len = 0; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6041 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6042 | logsrv = calloc(1, sizeof(*logsrv)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6043 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6044 | /* just after the address, a length may be specified */ |
| 6045 | if (strcmp(args[arg+2], "len") == 0) { |
| 6046 | len = atoi(args[arg+3]); |
| 6047 | if (len < 80 || len > 65535) { |
| 6048 | Alert("parsing [%s:%d] : invalid log length '%s', must be between 80 and 65535.\n", |
| 6049 | file, linenum, args[arg+3]); |
| 6050 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6051 | goto out; |
| 6052 | } |
| 6053 | logsrv->maxlen = len; |
| 6054 | |
| 6055 | /* skip these two args */ |
| 6056 | arg += 2; |
| 6057 | } |
| 6058 | else |
| 6059 | logsrv->maxlen = MAX_SYSLOG_LEN; |
| 6060 | |
| 6061 | if (logsrv->maxlen > global.max_syslog_len) { |
| 6062 | global.max_syslog_len = logsrv->maxlen; |
Hubert Verstraete | 831962e | 2016-06-28 22:44:26 +0200 | [diff] [blame] | 6063 | logheader = my_realloc2(logheader, global.max_syslog_len + 1); |
| 6064 | logheader_rfc5424 = my_realloc2(logheader_rfc5424, global.max_syslog_len + 1); |
| 6065 | logline = my_realloc2(logline, global.max_syslog_len + 1); |
| 6066 | logline_rfc5424 = my_realloc2(logline_rfc5424, global.max_syslog_len + 1); |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6067 | } |
| 6068 | |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 6069 | /* after the length, a format may be specified */ |
| 6070 | if (strcmp(args[arg+2], "format") == 0) { |
| 6071 | logsrv->format = get_log_format(args[arg+3]); |
| 6072 | if (logsrv->format < 0) { |
| 6073 | Alert("parsing [%s:%d] : unknown log format '%s'\n", file, linenum, args[arg+3]); |
| 6074 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6075 | goto out; |
| 6076 | } |
| 6077 | |
| 6078 | /* skip these two args */ |
| 6079 | arg += 2; |
| 6080 | } |
| 6081 | |
William Lallemand | df1425a | 2015-04-28 20:17:49 +0200 | [diff] [blame] | 6082 | if (alertif_too_many_args_idx(3, arg + 1, file, linenum, args, &err_code)) |
| 6083 | goto out; |
| 6084 | |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6085 | logsrv->facility = get_log_facility(args[arg+2]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6086 | if (logsrv->facility < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6087 | 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] | 6088 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6089 | goto out; |
| 6090 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6091 | } |
| 6092 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6093 | logsrv->level = 7; /* max syslog level = debug */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6094 | if (*(args[arg+3])) { |
| 6095 | logsrv->level = get_log_level(args[arg+3]); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6096 | if (logsrv->level < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6097 | 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] | 6098 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6099 | goto out; |
| 6100 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6101 | } |
| 6102 | } |
| 6103 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6104 | logsrv->minlvl = 0; /* limit syslog level to this level (emerg) */ |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6105 | if (*(args[arg+4])) { |
| 6106 | logsrv->minlvl = get_log_level(args[arg+4]); |
Willy Tarreau | f7f057b | 2013-01-24 00:31:24 +0100 | [diff] [blame] | 6107 | if (logsrv->minlvl < 0) { |
Willy Tarreau | 18324f5 | 2014-06-27 18:10:07 +0200 | [diff] [blame] | 6108 | 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] | 6109 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6110 | goto out; |
| 6111 | |
Willy Tarreau | f7edefa | 2009-05-10 17:20:05 +0200 | [diff] [blame] | 6112 | } |
| 6113 | } |
| 6114 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 6115 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6116 | if (!sk) { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6117 | Alert("parsing [%s:%d] : '%s': %s\n", file, linenum, args[0], errmsg); |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6118 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6119 | goto out; |
| 6120 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6121 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6122 | logsrv->addr = *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6123 | |
Willy Tarreau | 9b435bc | 2013-03-06 15:02:49 +0100 | [diff] [blame] | 6124 | if (sk->ss_family == AF_INET || sk->ss_family == AF_INET6) { |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6125 | if (port1 != port2) { |
| 6126 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 6127 | file, linenum, args[0], args[1]); |
| 6128 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6129 | goto out; |
| 6130 | } |
| 6131 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6132 | if (!port1) |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6133 | set_host_port(&logsrv->addr, SYSLOG_PORT); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6134 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 6135 | |
| 6136 | LIST_ADDQ(&curproxy->logsrvs, &logsrv->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6137 | } |
| 6138 | else { |
| 6139 | Alert("parsing [%s:%d] : 'log' expects either <address[:port]> and <facility> or 'global' as arguments.\n", |
| 6140 | file, linenum); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6141 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6142 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6143 | } |
| 6144 | } |
| 6145 | 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] | 6146 | int cur_arg; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6147 | int port1, port2; |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 6148 | struct sockaddr_storage *sk; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6149 | struct protocol *proto; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6150 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6151 | if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6152 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6153 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6154 | if (!*args[1]) { |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6155 | Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], and optionally '%s' <addr>, and '%s' <name>.\n", |
| 6156 | file, linenum, "source", "usesrc", "interface"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6157 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6158 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6159 | } |
Willy Tarreau | 368480c | 2009-03-01 08:27:21 +0100 | [diff] [blame] | 6160 | |
| 6161 | /* we must first clear any optional default setting */ |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6162 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6163 | free(curproxy->conn_src.iface_name); |
| 6164 | curproxy->conn_src.iface_name = NULL; |
| 6165 | curproxy->conn_src.iface_len = 0; |
Willy Tarreau | 368480c | 2009-03-01 08:27:21 +0100 | [diff] [blame] | 6166 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 6167 | sk = str2sa_range(args[1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6168 | if (!sk) { |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6169 | Alert("parsing [%s:%d] : '%s %s' : %s\n", |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6170 | file, linenum, args[0], args[1], errmsg); |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6171 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6172 | goto out; |
| 6173 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6174 | |
| 6175 | proto = protocol_by_family(sk->ss_family); |
| 6176 | if (!proto || !proto->connect) { |
| 6177 | 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] | 6178 | file, linenum, args[0], args[1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6179 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6180 | goto out; |
| 6181 | } |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6182 | |
| 6183 | if (port1 != port2) { |
| 6184 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 6185 | file, linenum, args[0], args[1]); |
| 6186 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6187 | goto out; |
| 6188 | } |
| 6189 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6190 | curproxy->conn_src.source_addr = *sk; |
| 6191 | curproxy->conn_src.opts |= CO_SRC_BIND; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6192 | |
| 6193 | cur_arg = 2; |
| 6194 | while (*(args[cur_arg])) { |
| 6195 | if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */ |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 6196 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6197 | if (!*args[cur_arg + 1]) { |
| 6198 | Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', or 'clientip' as argument.\n", |
| 6199 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6200 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6201 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6202 | } |
| 6203 | |
| 6204 | if (!strcmp(args[cur_arg + 1], "client")) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6205 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6206 | curproxy->conn_src.opts |= CO_SRC_TPROXY_CLI; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6207 | } else if (!strcmp(args[cur_arg + 1], "clientip")) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6208 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6209 | curproxy->conn_src.opts |= CO_SRC_TPROXY_CIP; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6210 | } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) { |
| 6211 | char *name, *end; |
| 6212 | |
| 6213 | name = args[cur_arg+1] + 7; |
| 6214 | while (isspace(*name)) |
| 6215 | name++; |
| 6216 | |
| 6217 | end = name; |
| 6218 | while (*end && !isspace(*end) && *end != ',' && *end != ')') |
| 6219 | end++; |
| 6220 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6221 | curproxy->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 6222 | curproxy->conn_src.opts |= CO_SRC_TPROXY_DYN; |
| 6223 | curproxy->conn_src.bind_hdr_name = calloc(1, end - name + 1); |
| 6224 | curproxy->conn_src.bind_hdr_len = end - name; |
| 6225 | memcpy(curproxy->conn_src.bind_hdr_name, name, end - name); |
| 6226 | curproxy->conn_src.bind_hdr_name[end-name] = '\0'; |
| 6227 | curproxy->conn_src.bind_hdr_occ = -1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6228 | |
| 6229 | /* now look for an occurrence number */ |
| 6230 | while (isspace(*end)) |
| 6231 | end++; |
| 6232 | if (*end == ',') { |
| 6233 | end++; |
| 6234 | name = end; |
| 6235 | if (*end == '-') |
| 6236 | end++; |
Willy Tarreau | 83d84cf | 2012-11-22 01:04:31 +0100 | [diff] [blame] | 6237 | while (isdigit((int)*end)) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6238 | end++; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6239 | curproxy->conn_src.bind_hdr_occ = strl2ic(name, end-name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6240 | } |
| 6241 | |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6242 | if (curproxy->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) { |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 6243 | Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative" |
| 6244 | " occurrences values smaller than %d.\n", |
| 6245 | file, linenum, MAX_HDR_HISTORY); |
| 6246 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6247 | goto out; |
| 6248 | } |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6249 | } else { |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6250 | struct sockaddr_storage *sk; |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6251 | |
Willy Tarreau | 48ef4c9 | 2017-01-06 18:32:38 +0100 | [diff] [blame] | 6252 | sk = str2sa_range(args[cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6253 | if (!sk) { |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6254 | Alert("parsing [%s:%d] : '%s %s' : %s\n", |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 6255 | file, linenum, args[cur_arg], args[cur_arg+1], errmsg); |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6256 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6257 | goto out; |
| 6258 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6259 | |
| 6260 | proto = protocol_by_family(sk->ss_family); |
| 6261 | if (!proto || !proto->connect) { |
| 6262 | Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n", |
| 6263 | file, linenum, args[cur_arg], args[cur_arg+1]); |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6264 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6265 | goto out; |
| 6266 | } |
Willy Tarreau | 2de5dae | 2013-03-10 18:51:54 +0100 | [diff] [blame] | 6267 | |
Willy Tarreau | 6d03cc3 | 2013-02-20 17:26:02 +0100 | [diff] [blame] | 6268 | if (port1 != port2) { |
| 6269 | Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n", |
| 6270 | file, linenum, args[cur_arg], args[cur_arg + 1]); |
Willy Tarreau | d5191e7 | 2010-02-09 20:50:45 +0100 | [diff] [blame] | 6271 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6272 | goto out; |
| 6273 | } |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6274 | curproxy->conn_src.tproxy_addr = *sk; |
| 6275 | curproxy->conn_src.opts |= CO_SRC_TPROXY_ADDR; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6276 | } |
| 6277 | global.last_checks |= LSTCHK_NETADM; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6278 | #else /* no TPROXY support */ |
| 6279 | 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] | 6280 | file, linenum, "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6281 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6282 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6283 | #endif |
| 6284 | cur_arg += 2; |
| 6285 | continue; |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 6286 | } |
| 6287 | |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6288 | if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */ |
| 6289 | #ifdef SO_BINDTODEVICE |
| 6290 | if (!*args[cur_arg + 1]) { |
| 6291 | Alert("parsing [%s:%d] : '%s' : missing interface name.\n", |
| 6292 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6293 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6294 | goto out; |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6295 | } |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 6296 | free(curproxy->conn_src.iface_name); |
| 6297 | curproxy->conn_src.iface_name = strdup(args[cur_arg + 1]); |
| 6298 | curproxy->conn_src.iface_len = strlen(curproxy->conn_src.iface_name); |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6299 | global.last_checks |= LSTCHK_NETADM; |
| 6300 | #else |
| 6301 | Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n", |
| 6302 | file, linenum, args[0], args[cur_arg]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6303 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6304 | goto out; |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 6305 | #endif |
Willy Tarreau | d53f96b | 2009-02-04 18:46:54 +0100 | [diff] [blame] | 6306 | cur_arg += 2; |
| 6307 | continue; |
| 6308 | } |
| 6309 | 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] | 6310 | file, linenum, args[0], "interface", "usesrc"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6311 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6312 | goto out; |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6313 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6314 | } |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6315 | else if (!strcmp(args[0], "usesrc")) { /* address to use outside: needs "source" first */ |
| 6316 | Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n", |
| 6317 | file, linenum, "usesrc", "source"); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6318 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6319 | goto out; |
Willy Tarreau | 8d9246d | 2007-03-24 12:47:24 +0100 | [diff] [blame] | 6320 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6321 | 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] | 6322 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6323 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6324 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6325 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6326 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6327 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6328 | |
| 6329 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6330 | SMP_OPT_DIR_REQ, ACT_REPLACE, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6331 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6332 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6333 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6334 | } |
| 6335 | else if (!strcmp(args[0], "reqdel")) { /* delete request header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6336 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6337 | SMP_OPT_DIR_REQ, ACT_REMOVE, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6338 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6339 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6340 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6341 | } |
| 6342 | 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] | 6343 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6344 | SMP_OPT_DIR_REQ, ACT_DENY, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6345 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6346 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6347 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6348 | } |
| 6349 | 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] | 6350 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6351 | SMP_OPT_DIR_REQ, ACT_PASS, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6352 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6353 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6354 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6355 | } |
| 6356 | 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] | 6357 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6358 | SMP_OPT_DIR_REQ, ACT_ALLOW, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6359 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6360 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6361 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6362 | } |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6363 | 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] | 6364 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6365 | SMP_OPT_DIR_REQ, ACT_TARPIT, 0, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6366 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6367 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6368 | goto out; |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6369 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6370 | 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] | 6371 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6372 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6373 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6374 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6375 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6376 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6377 | |
| 6378 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6379 | SMP_OPT_DIR_REQ, ACT_REPLACE, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6380 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6381 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6382 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6383 | } |
| 6384 | 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] | 6385 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6386 | SMP_OPT_DIR_REQ, ACT_REMOVE, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6387 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6388 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6389 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6390 | } |
| 6391 | 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] | 6392 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6393 | SMP_OPT_DIR_REQ, ACT_DENY, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6394 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6395 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6396 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6397 | } |
| 6398 | 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] | 6399 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6400 | SMP_OPT_DIR_REQ, ACT_PASS, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6401 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6402 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6403 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6404 | } |
| 6405 | 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] | 6406 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6407 | SMP_OPT_DIR_REQ, ACT_ALLOW, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6408 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6409 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6410 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6411 | } |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6412 | 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] | 6413 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6414 | SMP_OPT_DIR_REQ, ACT_TARPIT, REG_ICASE, |
Willy Tarreau | 5321c42 | 2010-01-28 20:35:13 +0100 | [diff] [blame] | 6415 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6416 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6417 | goto out; |
Willy Tarreau | b8750a8 | 2006-09-03 09:56:00 +0200 | [diff] [blame] | 6418 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6419 | else if (!strcmp(args[0], "reqadd")) { /* add request header */ |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 6420 | struct cond_wordlist *wl; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6421 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6422 | if (curproxy == &defproxy) { |
| 6423 | 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] | 6424 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6425 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6426 | } |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 6427 | else if (warnifnotcap(curproxy, PR_CAP_FE | PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6428 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6429 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6430 | if (*(args[1]) == 0) { |
| 6431 | 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] | 6432 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6433 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6434 | } |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6435 | |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6436 | if ((strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 6437 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args+2, &errmsg)) == NULL) { |
| 6438 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 6439 | file, linenum, args[0], errmsg); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6440 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6441 | goto out; |
| 6442 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 6443 | err_code |= warnif_cond_conflicts(cond, |
| 6444 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 6445 | file, linenum); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6446 | } |
| 6447 | else if (*args[2]) { |
| 6448 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 6449 | file, linenum, args[0], args[2]); |
| 6450 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6451 | goto out; |
| 6452 | } |
| 6453 | |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6454 | wl = calloc(1, sizeof(*wl)); |
Willy Tarreau | 8abd4cd | 2010-01-31 14:30:44 +0100 | [diff] [blame] | 6455 | wl->cond = cond; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6456 | wl->s = strdup(args[1]); |
| 6457 | LIST_ADDQ(&curproxy->req_add, &wl->list); |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 6458 | warnif_misplaced_reqadd(curproxy, file, linenum, args[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6459 | } |
| 6460 | 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] | 6461 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6462 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6463 | file, linenum, args[0]); |
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 | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6467 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6468 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6469 | SMP_OPT_DIR_RES, ACT_REPLACE, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6470 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6471 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6472 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6473 | } |
| 6474 | else if (!strcmp(args[0], "rspdel")) { /* delete response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6475 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6476 | SMP_OPT_DIR_RES, ACT_REMOVE, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6477 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6478 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6479 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6480 | } |
| 6481 | else if (!strcmp(args[0], "rspdeny")) { /* block response header from a regex */ |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6482 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6483 | SMP_OPT_DIR_RES, ACT_DENY, 0, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6484 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6485 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6486 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6487 | } |
| 6488 | 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] | 6489 | if (*(args[2]) == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6490 | Alert("parsing [%s:%d] : '%s' expects <search> and <replace> as arguments.\n", |
| 6491 | file, linenum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6492 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6493 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6494 | } |
| 6495 | |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6496 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6497 | SMP_OPT_DIR_RES, ACT_REPLACE, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6498 | args[0], args[1], args[2], (const char **)args+3); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6499 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6500 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6501 | } |
| 6502 | 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] | 6503 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6504 | SMP_OPT_DIR_RES, ACT_REMOVE, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6505 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6506 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6507 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6508 | } |
| 6509 | 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] | 6510 | err_code |= create_cond_regex_rule(file, linenum, curproxy, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6511 | SMP_OPT_DIR_RES, ACT_DENY, REG_ICASE, |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6512 | args[0], args[1], NULL, (const char **)args+2); |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 6513 | if (err_code & ERR_FATAL) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6514 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6515 | } |
| 6516 | else if (!strcmp(args[0], "rspadd")) { /* add response header */ |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 6517 | struct cond_wordlist *wl; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6518 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6519 | if (curproxy == &defproxy) { |
| 6520 | 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] | 6521 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6522 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6523 | } |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 6524 | else if (warnifnotcap(curproxy, PR_CAP_FE | PR_CAP_BE, file, linenum, args[0], NULL)) |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6525 | err_code |= ERR_WARN; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6526 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6527 | if (*(args[1]) == 0) { |
| 6528 | 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] | 6529 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6530 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6531 | } |
| 6532 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6533 | if ((strcmp(args[2], "if") == 0 || strcmp(args[2], "unless") == 0)) { |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 6534 | if ((cond = build_acl_cond(file, linenum, curproxy, (const char **)args+2, &errmsg)) == NULL) { |
| 6535 | Alert("parsing [%s:%d] : error detected while parsing a '%s' condition : %s.\n", |
| 6536 | file, linenum, args[0], errmsg); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6537 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6538 | goto out; |
| 6539 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 6540 | err_code |= warnif_cond_conflicts(cond, |
| 6541 | (curproxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 6542 | file, linenum); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6543 | } |
| 6544 | else if (*args[2]) { |
| 6545 | Alert("parsing [%s:%d] : '%s' : Expecting nothing, 'if', or 'unless', got '%s'.\n", |
| 6546 | file, linenum, args[0], args[2]); |
| 6547 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6548 | goto out; |
| 6549 | } |
| 6550 | |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6551 | wl = calloc(1, sizeof(*wl)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 6552 | wl->cond = cond; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 6553 | wl->s = strdup(args[1]); |
| 6554 | LIST_ADDQ(&curproxy->rsp_add, &wl->list); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6555 | } |
| 6556 | else if (!strcmp(args[0], "errorloc") || |
| 6557 | !strcmp(args[0], "errorloc302") || |
| 6558 | !strcmp(args[0], "errorloc303")) { /* error location */ |
| 6559 | int errnum, errlen; |
| 6560 | char *err; |
| 6561 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6562 | 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] | 6563 | err_code |= ERR_WARN; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 6564 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6565 | if (*(args[2]) == 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 6566 | 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] | 6567 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6568 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6569 | } |
| 6570 | |
| 6571 | errnum = atol(args[1]); |
| 6572 | if (!strcmp(args[0], "errorloc303")) { |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 6573 | errlen = strlen(HTTP_303) + strlen(args[2]) + 5; |
| 6574 | err = malloc(errlen); |
| 6575 | 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] | 6576 | } else { |
Willy Tarreau | 348acfe | 2014-04-14 15:00:39 +0200 | [diff] [blame] | 6577 | errlen = strlen(HTTP_302) + strlen(args[2]) + 5; |
| 6578 | err = malloc(errlen); |
| 6579 | 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] | 6580 | } |
| 6581 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6582 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) { |
| 6583 | if (http_err_codes[rc] == errnum) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 6584 | chunk_destroy(&curproxy->errmsg[rc]); |
| 6585 | chunk_initlen(&curproxy->errmsg[rc], err, errlen, errlen); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6586 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6587 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6588 | } |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 6589 | |
| 6590 | if (rc >= HTTP_ERR_SIZE) { |
Willy Tarreau | bb3c09a | 2015-09-27 15:13:30 +0200 | [diff] [blame] | 6591 | Warning("parsing [%s:%d] : status code %d not handled by '%s', error relocation will be ignored.\n", |
| 6592 | file, linenum, errnum, args[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6593 | free(err); |
| 6594 | } |
| 6595 | } |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6596 | else if (!strcmp(args[0], "errorfile")) { /* error message from a file */ |
| 6597 | int errnum, errlen, fd; |
| 6598 | char *err; |
| 6599 | struct stat stat; |
| 6600 | |
| 6601 | 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] | 6602 | err_code |= ERR_WARN; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6603 | |
| 6604 | if (*(args[2]) == 0) { |
Willy Tarreau | 1772ece | 2009-04-03 14:49:12 +0200 | [diff] [blame] | 6605 | 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] | 6606 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6607 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6608 | } |
| 6609 | |
| 6610 | fd = open(args[2], O_RDONLY); |
| 6611 | if ((fd < 0) || (fstat(fd, &stat) < 0)) { |
| 6612 | Alert("parsing [%s:%d] : error opening file <%s> for custom error message <%s>.\n", |
| 6613 | file, linenum, args[2], args[1]); |
| 6614 | if (fd >= 0) |
| 6615 | close(fd); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6616 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6617 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6618 | } |
| 6619 | |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6620 | if (stat.st_size <= global.tune.bufsize) { |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6621 | errlen = stat.st_size; |
| 6622 | } else { |
| 6623 | 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] | 6624 | file, linenum, args[2], global.tune.bufsize); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6625 | err_code |= ERR_WARN; |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 6626 | errlen = global.tune.bufsize; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6627 | } |
| 6628 | |
| 6629 | err = malloc(errlen); /* malloc() must succeed during parsing */ |
| 6630 | errnum = read(fd, err, errlen); |
| 6631 | if (errnum != errlen) { |
| 6632 | Alert("parsing [%s:%d] : error reading file <%s> for custom error message <%s>.\n", |
| 6633 | file, linenum, args[2], args[1]); |
| 6634 | close(fd); |
| 6635 | free(err); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6636 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6637 | goto out; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6638 | } |
| 6639 | close(fd); |
| 6640 | |
| 6641 | errnum = atol(args[1]); |
| 6642 | for (rc = 0; rc < HTTP_ERR_SIZE; rc++) { |
| 6643 | if (http_err_codes[rc] == errnum) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 6644 | chunk_destroy(&curproxy->errmsg[rc]); |
| 6645 | chunk_initlen(&curproxy->errmsg[rc], err, errlen, errlen); |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6646 | break; |
| 6647 | } |
| 6648 | } |
| 6649 | |
| 6650 | if (rc >= HTTP_ERR_SIZE) { |
Willy Tarreau | bb3c09a | 2015-09-27 15:13:30 +0200 | [diff] [blame] | 6651 | Warning("parsing [%s:%d] : status code %d not handled by '%s', error customization will be ignored.\n", |
| 6652 | file, linenum, errnum, args[0]); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6653 | err_code |= ERR_WARN; |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 6654 | free(err); |
| 6655 | } |
| 6656 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6657 | else { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6658 | struct cfg_kw_list *kwl; |
| 6659 | int index; |
| 6660 | |
| 6661 | list_for_each_entry(kwl, &cfg_keywords.list, list) { |
| 6662 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 6663 | if (kwl->kw[index].section != CFG_LISTEN) |
| 6664 | continue; |
| 6665 | if (strcmp(kwl->kw[index].kw, args[0]) == 0) { |
| 6666 | /* prepare error message just in case */ |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 6667 | 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] | 6668 | if (rc < 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 6669 | Alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6670 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6671 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6672 | } |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6673 | else if (rc > 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 6674 | Warning("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6675 | err_code |= ERR_WARN; |
| 6676 | goto out; |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 6677 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6678 | goto out; |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 6679 | } |
| 6680 | } |
| 6681 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6682 | |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 6683 | 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] | 6684 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6685 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6686 | } |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6687 | out: |
Willy Tarreau | f4068b6 | 2012-05-08 17:37:49 +0200 | [diff] [blame] | 6688 | free(errmsg); |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 6689 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6690 | } |
| 6691 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6692 | int |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 6693 | cfg_parse_netns(const char *file, int linenum, char **args, int kwm) |
| 6694 | { |
| 6695 | #ifdef CONFIG_HAP_NS |
| 6696 | const char *err; |
| 6697 | const char *item = args[0]; |
| 6698 | |
| 6699 | if (!strcmp(item, "namespace_list")) { |
| 6700 | return 0; |
| 6701 | } |
| 6702 | else if (!strcmp(item, "namespace")) { |
| 6703 | size_t idx = 1; |
| 6704 | const char *current; |
| 6705 | while (*(current = args[idx++])) { |
| 6706 | err = invalid_char(current); |
| 6707 | if (err) { |
| 6708 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6709 | file, linenum, *err, item, current); |
| 6710 | return ERR_ALERT | ERR_FATAL; |
| 6711 | } |
| 6712 | |
| 6713 | if (netns_store_lookup(current, strlen(current))) { |
| 6714 | Alert("parsing [%s:%d]: Namespace '%s' is already added.\n", |
| 6715 | file, linenum, current); |
| 6716 | return ERR_ALERT | ERR_FATAL; |
| 6717 | } |
| 6718 | if (!netns_store_insert(current)) { |
| 6719 | Alert("parsing [%s:%d]: Cannot open namespace '%s'.\n", |
| 6720 | file, linenum, current); |
| 6721 | return ERR_ALERT | ERR_FATAL; |
| 6722 | } |
| 6723 | } |
| 6724 | } |
| 6725 | |
| 6726 | return 0; |
| 6727 | #else |
| 6728 | Alert("parsing [%s:%d]: namespace support is not compiled in.", |
| 6729 | file, linenum); |
| 6730 | return ERR_ALERT | ERR_FATAL; |
| 6731 | #endif |
| 6732 | } |
| 6733 | |
| 6734 | int |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6735 | cfg_parse_users(const char *file, int linenum, char **args, int kwm) |
| 6736 | { |
| 6737 | |
| 6738 | int err_code = 0; |
| 6739 | const char *err; |
| 6740 | |
| 6741 | if (!strcmp(args[0], "userlist")) { /* new userlist */ |
| 6742 | struct userlist *newul; |
| 6743 | |
| 6744 | if (!*args[1]) { |
| 6745 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6746 | file, linenum, args[0]); |
| 6747 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6748 | goto out; |
| 6749 | } |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 6750 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 6751 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6752 | |
| 6753 | err = invalid_char(args[1]); |
| 6754 | if (err) { |
| 6755 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6756 | file, linenum, *err, args[0], args[1]); |
| 6757 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6758 | goto out; |
| 6759 | } |
| 6760 | |
| 6761 | for (newul = userlist; newul; newul = newul->next) |
| 6762 | if (!strcmp(newul->name, args[1])) { |
| 6763 | Warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n", |
| 6764 | file, linenum, args[1]); |
| 6765 | err_code |= ERR_WARN; |
| 6766 | goto out; |
| 6767 | } |
| 6768 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6769 | newul = calloc(1, sizeof(*newul)); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6770 | if (!newul) { |
| 6771 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6772 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6773 | goto out; |
| 6774 | } |
| 6775 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6776 | newul->name = strdup(args[1]); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6777 | if (!newul->name) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6778 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6779 | err_code |= ERR_ALERT | ERR_ABORT; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 6780 | free(newul); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6781 | goto out; |
| 6782 | } |
| 6783 | |
| 6784 | newul->next = userlist; |
| 6785 | userlist = newul; |
| 6786 | |
| 6787 | } else if (!strcmp(args[0], "group")) { /* new group */ |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6788 | int cur_arg; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6789 | const char *err; |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6790 | struct auth_groups *ag; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6791 | |
| 6792 | if (!*args[1]) { |
| 6793 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6794 | file, linenum, args[0]); |
| 6795 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6796 | goto out; |
| 6797 | } |
| 6798 | |
| 6799 | err = invalid_char(args[1]); |
| 6800 | if (err) { |
| 6801 | Alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 6802 | file, linenum, *err, args[0], args[1]); |
| 6803 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6804 | goto out; |
| 6805 | } |
| 6806 | |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 6807 | if (!userlist) |
| 6808 | goto out; |
| 6809 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6810 | for (ag = userlist->groups; ag; ag = ag->next) |
| 6811 | if (!strcmp(ag->name, args[1])) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6812 | Warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n", |
| 6813 | file, linenum, args[1], userlist->name); |
| 6814 | err_code |= ERR_ALERT; |
| 6815 | goto out; |
| 6816 | } |
| 6817 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6818 | ag = calloc(1, sizeof(*ag)); |
| 6819 | if (!ag) { |
| 6820 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6821 | err_code |= ERR_ALERT | ERR_ABORT; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6822 | goto out; |
| 6823 | } |
| 6824 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6825 | ag->name = strdup(args[1]); |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 6826 | if (!ag->name) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6827 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6828 | err_code |= ERR_ALERT | ERR_ABORT; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 6829 | free(ag); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6830 | goto out; |
| 6831 | } |
| 6832 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6833 | cur_arg = 2; |
| 6834 | |
| 6835 | while (*args[cur_arg]) { |
| 6836 | if (!strcmp(args[cur_arg], "users")) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6837 | ag->groupusers = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6838 | cur_arg += 2; |
| 6839 | continue; |
| 6840 | } else { |
| 6841 | Alert("parsing [%s:%d]: '%s' only supports 'users' option.\n", |
| 6842 | file, linenum, args[0]); |
| 6843 | err_code |= ERR_ALERT | ERR_FATAL; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 6844 | free(ag->groupusers); |
| 6845 | free(ag->name); |
| 6846 | free(ag); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6847 | goto out; |
| 6848 | } |
| 6849 | } |
| 6850 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6851 | ag->next = userlist->groups; |
| 6852 | userlist->groups = ag; |
| 6853 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6854 | } else if (!strcmp(args[0], "user")) { /* new user */ |
| 6855 | struct auth_users *newuser; |
| 6856 | int cur_arg; |
| 6857 | |
| 6858 | if (!*args[1]) { |
| 6859 | Alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 6860 | file, linenum, args[0]); |
| 6861 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6862 | goto out; |
| 6863 | } |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 6864 | if (!userlist) |
| 6865 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6866 | |
| 6867 | for (newuser = userlist->users; newuser; newuser = newuser->next) |
| 6868 | if (!strcmp(newuser->user, args[1])) { |
| 6869 | Warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n", |
| 6870 | file, linenum, args[1], userlist->name); |
| 6871 | err_code |= ERR_ALERT; |
| 6872 | goto out; |
| 6873 | } |
| 6874 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 6875 | newuser = calloc(1, sizeof(*newuser)); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6876 | if (!newuser) { |
| 6877 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 6878 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6879 | goto out; |
| 6880 | } |
| 6881 | |
| 6882 | newuser->user = strdup(args[1]); |
| 6883 | |
| 6884 | newuser->next = userlist->users; |
| 6885 | userlist->users = newuser; |
| 6886 | |
| 6887 | cur_arg = 2; |
| 6888 | |
| 6889 | while (*args[cur_arg]) { |
| 6890 | if (!strcmp(args[cur_arg], "password")) { |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 6891 | #ifdef CONFIG_HAP_CRYPT |
| 6892 | if (!crypt("", args[cur_arg + 1])) { |
| 6893 | Alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n", |
| 6894 | file, linenum, newuser->user); |
| 6895 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6896 | goto out; |
| 6897 | } |
| 6898 | #else |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6899 | Warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n", |
| 6900 | file, linenum); |
| 6901 | err_code |= ERR_ALERT; |
| 6902 | #endif |
| 6903 | newuser->pass = strdup(args[cur_arg + 1]); |
| 6904 | cur_arg += 2; |
| 6905 | continue; |
| 6906 | } else if (!strcmp(args[cur_arg], "insecure-password")) { |
| 6907 | newuser->pass = strdup(args[cur_arg + 1]); |
| 6908 | newuser->flags |= AU_O_INSECURE; |
| 6909 | cur_arg += 2; |
| 6910 | continue; |
| 6911 | } else if (!strcmp(args[cur_arg], "groups")) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 6912 | newuser->u.groups_names = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 6913 | cur_arg += 2; |
| 6914 | continue; |
| 6915 | } else { |
| 6916 | Alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n", |
| 6917 | file, linenum, args[0]); |
| 6918 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6919 | goto out; |
| 6920 | } |
| 6921 | } |
| 6922 | } else { |
| 6923 | Alert("parsing [%s:%d]: unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "users"); |
| 6924 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6925 | } |
| 6926 | |
| 6927 | out: |
| 6928 | return err_code; |
| 6929 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6930 | |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 6931 | int |
| 6932 | cfg_parse_scope(const char *file, int linenum, char *line) |
| 6933 | { |
| 6934 | char *beg, *end, *scope = NULL; |
| 6935 | int err_code = 0; |
| 6936 | const char *err; |
| 6937 | |
| 6938 | beg = line + 1; |
| 6939 | end = strchr(beg, ']'); |
| 6940 | |
| 6941 | /* Detect end of scope declaration */ |
| 6942 | if (!end || end == beg) { |
| 6943 | Alert("parsing [%s:%d] : empty scope name is forbidden.\n", |
| 6944 | file, linenum); |
| 6945 | err_code |= ERR_ALERT | ERR_FATAL; |
| 6946 | goto out; |
| 6947 | } |
| 6948 | |
| 6949 | /* Get scope name and check its validity */ |
| 6950 | scope = my_strndup(beg, end-beg); |
| 6951 | err = invalid_char(scope); |
| 6952 | if (err) { |
| 6953 | Alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n", |
| 6954 | file, linenum, *err); |
| 6955 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6956 | goto out; |
| 6957 | } |
| 6958 | |
| 6959 | /* Be sure to have a scope declaration alone on its line */ |
| 6960 | line = end+1; |
| 6961 | while (isspace((unsigned char)*line)) |
| 6962 | line++; |
| 6963 | if (*line && *line != '#' && *line != '\n' && *line != '\r') { |
| 6964 | Alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n", |
| 6965 | file, linenum, *line); |
| 6966 | err_code |= ERR_ALERT | ERR_ABORT; |
| 6967 | goto out; |
| 6968 | } |
| 6969 | |
| 6970 | /* We have a valid scope declaration, save it */ |
| 6971 | free(cfg_scope); |
| 6972 | cfg_scope = scope; |
| 6973 | scope = NULL; |
| 6974 | |
| 6975 | out: |
| 6976 | free(scope); |
| 6977 | return err_code; |
| 6978 | } |
| 6979 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6980 | /* |
| 6981 | * This function reads and parses the configuration file given in the argument. |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 6982 | * Returns the error code, 0 if OK, or any combination of : |
| 6983 | * - ERR_ABORT: must abort ASAP |
| 6984 | * - ERR_FATAL: we can continue parsing but not start the service |
| 6985 | * - ERR_WARN: a warning has been emitted |
| 6986 | * - ERR_ALERT: an alert has been emitted |
| 6987 | * Only the two first ones can stop processing, the two others are just |
| 6988 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6989 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 6990 | int readcfgfile(const char *file) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6991 | { |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6992 | char *thisline; |
| 6993 | int linesize = LINESIZE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6994 | FILE *f; |
| 6995 | int linenum = 0; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 6996 | int err_code = 0; |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 6997 | struct cfg_section *cs = NULL; |
| 6998 | struct cfg_section *ics; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 6999 | int readbytes = 0; |
| 7000 | |
| 7001 | if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) { |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7002 | Alert("parsing [%s] : out of memory.\n", file); |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7003 | return -1; |
| 7004 | } |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7005 | |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 7006 | if ((f=fopen(file,"r")) == NULL) { |
| 7007 | free(thisline); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7008 | return -1; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 7009 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7010 | |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7011 | next_line: |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7012 | while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) { |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7013 | int arg, kwm = KWM_STD; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7014 | char *end; |
| 7015 | char *args[MAX_LINE_ARGS + 1]; |
| 7016 | char *line = thisline; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7017 | int dquote = 0; /* double quote */ |
| 7018 | int squote = 0; /* simple quote */ |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7019 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7020 | linenum++; |
| 7021 | |
| 7022 | end = line + strlen(line); |
| 7023 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7024 | if (end-line == linesize-1 && *(end-1) != '\n') { |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7025 | /* Check if we reached the limit and the last char is not \n. |
| 7026 | * Watch out for the last line without the terminating '\n'! |
| 7027 | */ |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7028 | char *newline; |
| 7029 | int newlinesize = linesize * 2; |
| 7030 | |
| 7031 | newline = realloc(thisline, sizeof(*thisline) * newlinesize); |
| 7032 | if (newline == NULL) { |
| 7033 | Alert("parsing [%s:%d]: line too long, cannot allocate memory.\n", |
| 7034 | file, linenum); |
| 7035 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7036 | continue; |
| 7037 | } |
| 7038 | |
| 7039 | readbytes = linesize - 1; |
| 7040 | linesize = newlinesize; |
| 7041 | thisline = newline; |
| 7042 | continue; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7043 | } |
| 7044 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7045 | readbytes = 0; |
| 7046 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7047 | /* skip leading spaces */ |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 7048 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7049 | line++; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7050 | |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 7051 | |
| 7052 | if (*line == '[') {/* This is the begining if a scope */ |
| 7053 | err_code |= cfg_parse_scope(file, linenum, line); |
| 7054 | goto next_line; |
| 7055 | } |
| 7056 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7057 | arg = 0; |
| 7058 | args[arg] = line; |
| 7059 | |
| 7060 | while (*line && arg < MAX_LINE_ARGS) { |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7061 | if (*line == '"' && !squote) { /* double quote outside single quotes */ |
| 7062 | if (dquote) |
| 7063 | dquote = 0; |
| 7064 | else |
| 7065 | dquote = 1; |
William Lallemand | 3f41560 | 2015-05-12 14:01:09 +0200 | [diff] [blame] | 7066 | memmove(line, line + 1, end - line); |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7067 | end--; |
| 7068 | } |
| 7069 | else if (*line == '\'' && !dquote) { /* single quote outside double quotes */ |
| 7070 | if (squote) |
| 7071 | squote = 0; |
| 7072 | else |
| 7073 | squote = 1; |
William Lallemand | 3f41560 | 2015-05-12 14:01:09 +0200 | [diff] [blame] | 7074 | memmove(line, line + 1, end - line); |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7075 | end--; |
| 7076 | } |
| 7077 | else if (*line == '\\' && !squote) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7078 | /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their |
| 7079 | * C equivalent value. Other combinations left unchanged (eg: \1). |
| 7080 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7081 | int skip = 0; |
| 7082 | if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') { |
| 7083 | *line = line[1]; |
| 7084 | skip = 1; |
| 7085 | } |
| 7086 | else if (line[1] == 'r') { |
| 7087 | *line = '\r'; |
| 7088 | skip = 1; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7089 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7090 | else if (line[1] == 'n') { |
| 7091 | *line = '\n'; |
| 7092 | skip = 1; |
| 7093 | } |
| 7094 | else if (line[1] == 't') { |
| 7095 | *line = '\t'; |
| 7096 | skip = 1; |
| 7097 | } |
| 7098 | else if (line[1] == 'x') { |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7099 | if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7100 | unsigned char hex1, hex2; |
| 7101 | hex1 = toupper(line[2]) - '0'; |
| 7102 | hex2 = toupper(line[3]) - '0'; |
| 7103 | if (hex1 > 9) hex1 -= 'A' - '9' - 1; |
| 7104 | if (hex2 > 9) hex2 -= 'A' - '9' - 1; |
| 7105 | *line = (hex1<<4) + hex2; |
| 7106 | skip = 3; |
| 7107 | } |
| 7108 | else { |
| 7109 | 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] | 7110 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7111 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7112 | } else if (line[1] == '"') { |
| 7113 | *line = '"'; |
| 7114 | skip = 1; |
| 7115 | } else if (line[1] == '\'') { |
| 7116 | *line = '\''; |
| 7117 | skip = 1; |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7118 | } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */ |
| 7119 | *line = '$'; |
| 7120 | skip = 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7121 | } |
| 7122 | if (skip) { |
Cyril Bonté | dd1b01d | 2009-12-06 13:43:42 +0100 | [diff] [blame] | 7123 | memmove(line + 1, line + 1 + skip, end - (line + skip)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7124 | end -= skip; |
| 7125 | } |
| 7126 | line++; |
| 7127 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7128 | else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7129 | /* end of string, end of loop */ |
| 7130 | *line = 0; |
| 7131 | break; |
| 7132 | } |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7133 | else if (!squote && !dquote && isspace((unsigned char)*line)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7134 | /* a non-escaped space is an argument separator */ |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 7135 | *line++ = '\0'; |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 7136 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7137 | line++; |
| 7138 | args[++arg] = line; |
| 7139 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7140 | else if (dquote && *line == '$') { |
| 7141 | /* environment variables are evaluated inside double quotes */ |
| 7142 | char *var_beg; |
| 7143 | char *var_end; |
| 7144 | char save_char; |
| 7145 | char *value; |
| 7146 | int val_len; |
| 7147 | int newlinesize; |
| 7148 | int braces = 0; |
| 7149 | |
| 7150 | var_beg = line + 1; |
| 7151 | var_end = var_beg; |
| 7152 | |
| 7153 | if (*var_beg == '{') { |
| 7154 | var_beg++; |
| 7155 | var_end++; |
| 7156 | braces = 1; |
| 7157 | } |
| 7158 | |
| 7159 | if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') { |
| 7160 | Alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg); |
| 7161 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7162 | goto next_line; /* skip current line */ |
| 7163 | } |
| 7164 | |
| 7165 | while (isalnum((int)(unsigned char)*var_end) || *var_end == '_') |
| 7166 | var_end++; |
| 7167 | |
| 7168 | save_char = *var_end; |
| 7169 | *var_end = '\0'; |
| 7170 | value = getenv(var_beg); |
| 7171 | *var_end = save_char; |
| 7172 | val_len = value ? strlen(value) : 0; |
| 7173 | |
| 7174 | if (braces) { |
| 7175 | if (*var_end == '}') { |
| 7176 | var_end++; |
| 7177 | braces = 0; |
| 7178 | } else { |
| 7179 | Alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum); |
| 7180 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7181 | goto next_line; /* skip current line */ |
| 7182 | } |
| 7183 | } |
| 7184 | |
| 7185 | newlinesize = (end - thisline) - (var_end - line) + val_len + 1; |
| 7186 | |
| 7187 | /* if not enough space in thisline */ |
| 7188 | if (newlinesize > linesize) { |
| 7189 | char *newline; |
| 7190 | |
| 7191 | newline = realloc(thisline, newlinesize * sizeof(*thisline)); |
| 7192 | if (newline == NULL) { |
| 7193 | Alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum); |
| 7194 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7195 | goto next_line; /* slip current line */ |
| 7196 | } |
| 7197 | /* recompute pointers if realloc returns a new pointer */ |
| 7198 | if (newline != thisline) { |
| 7199 | int i; |
| 7200 | int diff; |
| 7201 | |
| 7202 | for (i = 0; i <= arg; i++) { |
| 7203 | diff = args[i] - thisline; |
| 7204 | args[i] = newline + diff; |
| 7205 | } |
| 7206 | |
| 7207 | diff = var_end - thisline; |
| 7208 | var_end = newline + diff; |
| 7209 | diff = end - thisline; |
| 7210 | end = newline + diff; |
| 7211 | diff = line - thisline; |
| 7212 | line = newline + diff; |
| 7213 | thisline = newline; |
| 7214 | } |
| 7215 | linesize = newlinesize; |
| 7216 | } |
| 7217 | |
| 7218 | /* insert value inside the line */ |
| 7219 | memmove(line + val_len, var_end, end - var_end + 1); |
| 7220 | memcpy(line, value, val_len); |
| 7221 | end += val_len - (var_end - line); |
| 7222 | line += val_len; |
| 7223 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7224 | else { |
| 7225 | line++; |
| 7226 | } |
| 7227 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 7228 | |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 7229 | if (dquote) { |
| 7230 | Alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum); |
| 7231 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7232 | } |
| 7233 | |
| 7234 | if (squote) { |
| 7235 | Alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum); |
| 7236 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7237 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7238 | |
| 7239 | /* empty line */ |
| 7240 | if (!**args) |
| 7241 | continue; |
| 7242 | |
Willy Tarreau | 7bb651e | 2009-11-09 21:16:53 +0100 | [diff] [blame] | 7243 | if (*line) { |
| 7244 | /* we had to stop due to too many args. |
| 7245 | * Let's terminate the string, print the offending part then cut the |
| 7246 | * last arg. |
| 7247 | */ |
| 7248 | while (*line && *line != '#' && *line != '\n' && *line != '\r') |
| 7249 | line++; |
| 7250 | *line = '\0'; |
| 7251 | |
Krzysztof Piotr Oledzki | 500b8f0 | 2009-12-15 22:34:51 +0100 | [diff] [blame] | 7252 | 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] | 7253 | file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]); |
Willy Tarreau | 7bb651e | 2009-11-09 21:16:53 +0100 | [diff] [blame] | 7254 | err_code |= ERR_ALERT | ERR_FATAL; |
| 7255 | args[arg] = line; |
| 7256 | } |
| 7257 | |
Willy Tarreau | 540abe4 | 2007-05-02 20:50:16 +0200 | [diff] [blame] | 7258 | /* zero out remaining args and ensure that at least one entry |
| 7259 | * is zeroed out. |
| 7260 | */ |
| 7261 | while (++arg <= MAX_LINE_ARGS) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7262 | args[arg] = line; |
| 7263 | } |
| 7264 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7265 | /* check for keyword modifiers "no" and "default" */ |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7266 | if (!strcmp(args[0], "no")) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7267 | char *tmp; |
| 7268 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7269 | kwm = KWM_NO; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7270 | tmp = args[0]; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7271 | for (arg=0; *args[arg+1]; arg++) |
| 7272 | args[arg] = args[arg+1]; // shift args after inversion |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7273 | *tmp = '\0'; // fix the next arg to \0 |
| 7274 | args[arg] = tmp; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7275 | } |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 7276 | else if (!strcmp(args[0], "default")) { |
| 7277 | kwm = KWM_DEF; |
| 7278 | for (arg=0; *args[arg+1]; arg++) |
| 7279 | args[arg] = args[arg+1]; // shift args after inversion |
| 7280 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7281 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 7282 | if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \ |
| 7283 | strcmp(args[0], "log") != 0) { |
| 7284 | 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] | 7285 | err_code |= ERR_ALERT | ERR_FATAL; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 7286 | } |
| 7287 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7288 | /* detect section start */ |
| 7289 | list_for_each_entry(ics, §ions, list) { |
| 7290 | if (strcmp(args[0], ics->section_name) == 0) { |
| 7291 | cursection = ics->section_name; |
| 7292 | cs = ics; |
| 7293 | break; |
| 7294 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 7295 | } |
| 7296 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7297 | /* else it's a section keyword */ |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 7298 | if (cs) |
| 7299 | err_code |= cs->section_parser(file, linenum, args, kwm); |
| 7300 | else { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 7301 | 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] | 7302 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7303 | } |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7304 | |
| 7305 | if (err_code & ERR_ABORT) |
| 7306 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7307 | } |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 7308 | free(cfg_scope); |
| 7309 | cfg_scope = NULL; |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 7310 | cursection = NULL; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 7311 | free(thisline); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7312 | fclose(f); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 7313 | return err_code; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7314 | } |
| 7315 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7316 | /* This function propagates processes from frontend <from> to backend <to> so |
| 7317 | * that it is always guaranteed that a backend pointed to by a frontend is |
| 7318 | * bound to all of its processes. After that, if the target is a "listen" |
| 7319 | * instance, the function recursively descends the target's own targets along |
Willy Tarreau | 98d0485 | 2015-05-26 12:18:29 +0200 | [diff] [blame] | 7320 | * default_backend and use_backend rules. Since the bits are |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7321 | * checked first to ensure that <to> is already bound to all processes of |
| 7322 | * <from>, there is no risk of looping and we ensure to follow the shortest |
| 7323 | * path to the destination. |
| 7324 | * |
| 7325 | * It is possible to set <to> to NULL for the first call so that the function |
| 7326 | * takes care of visiting the initial frontend in <from>. |
| 7327 | * |
| 7328 | * It is important to note that the function relies on the fact that all names |
| 7329 | * have already been resolved. |
| 7330 | */ |
| 7331 | void propagate_processes(struct proxy *from, struct proxy *to) |
| 7332 | { |
| 7333 | struct switching_rule *rule; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7334 | |
| 7335 | if (to) { |
| 7336 | /* check whether we need to go down */ |
| 7337 | if (from->bind_proc && |
| 7338 | (from->bind_proc & to->bind_proc) == from->bind_proc) |
| 7339 | return; |
| 7340 | |
| 7341 | if (!from->bind_proc && !to->bind_proc) |
| 7342 | return; |
| 7343 | |
| 7344 | to->bind_proc = from->bind_proc ? |
| 7345 | (to->bind_proc | from->bind_proc) : 0; |
| 7346 | |
| 7347 | /* now propagate down */ |
| 7348 | from = to; |
| 7349 | } |
| 7350 | |
Willy Tarreau | 8a95d8c | 2014-12-18 13:56:26 +0100 | [diff] [blame] | 7351 | if (!(from->cap & PR_CAP_FE)) |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7352 | return; |
| 7353 | |
Willy Tarreau | f6b7001 | 2014-12-18 14:00:43 +0100 | [diff] [blame] | 7354 | if (from->state == PR_STSTOPPED) |
| 7355 | return; |
| 7356 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7357 | /* default_backend */ |
| 7358 | if (from->defbe.be) |
| 7359 | propagate_processes(from, from->defbe.be); |
| 7360 | |
| 7361 | /* use_backend */ |
| 7362 | list_for_each_entry(rule, &from->switching_rules, list) { |
Cyril Bonté | 5163969 | 2014-10-02 19:56:25 +0200 | [diff] [blame] | 7363 | if (rule->dynamic) |
| 7364 | continue; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7365 | to = rule->be.backend; |
| 7366 | propagate_processes(from, to); |
| 7367 | } |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7368 | } |
| 7369 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7370 | /* |
| 7371 | * Returns the error code, 0 if OK, or any combination of : |
| 7372 | * - ERR_ABORT: must abort ASAP |
| 7373 | * - ERR_FATAL: we can continue parsing but not start the service |
| 7374 | * - ERR_WARN: a warning has been emitted |
| 7375 | * - ERR_ALERT: an alert has been emitted |
| 7376 | * Only the two first ones can stop processing, the two others are just |
| 7377 | * indicators. |
| 7378 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7379 | int check_config_validity() |
| 7380 | { |
| 7381 | int cfgerr = 0; |
| 7382 | struct proxy *curproxy = NULL; |
| 7383 | struct server *newsrv = NULL; |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7384 | int err_code = 0; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7385 | unsigned int next_pxid = 1; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 7386 | struct bind_conf *bind_conf; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 7387 | char *err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 7388 | struct dns_resolvers *curr_resolvers; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7389 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 7390 | bind_conf = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7391 | /* |
| 7392 | * Now, check for the integrity of all that we have collected. |
| 7393 | */ |
| 7394 | |
| 7395 | /* will be needed further to delay some tasks */ |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 7396 | tv_update_date(0,1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7397 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 7398 | if (!global.tune.max_http_hdr) |
| 7399 | global.tune.max_http_hdr = MAX_HTTP_HDR; |
| 7400 | |
| 7401 | if (!global.tune.cookie_len) |
| 7402 | global.tune.cookie_len = CAPTURE_LEN; |
| 7403 | |
Stéphane Cottin | 23e9e93 | 2017-05-18 08:58:41 +0200 | [diff] [blame] | 7404 | if (!global.tune.requri_len) |
| 7405 | global.tune.requri_len = REQURI_LEN; |
| 7406 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 7407 | pool2_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED); |
| 7408 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 7409 | /* allocate pool of resolution per resolvers */ |
| 7410 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 7411 | if (dns_alloc_resolution_pool(curr_resolvers) != 0) { |
| 7412 | /* error message is already displayed by dns_alloc_resolution_pool() */ |
| 7413 | err_code |= ERR_ALERT | ERR_ABORT; |
| 7414 | goto out; |
| 7415 | } |
| 7416 | } |
| 7417 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 7418 | /* Post initialisation of the users and groups lists. */ |
| 7419 | err_code = userlist_postinit(); |
| 7420 | if (err_code != ERR_NONE) |
| 7421 | goto out; |
| 7422 | |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 7423 | /* first, we will invert the proxy list order */ |
| 7424 | curproxy = NULL; |
| 7425 | while (proxy) { |
| 7426 | struct proxy *next; |
| 7427 | |
| 7428 | next = proxy->next; |
| 7429 | proxy->next = curproxy; |
| 7430 | curproxy = proxy; |
| 7431 | if (!next) |
| 7432 | break; |
| 7433 | proxy = next; |
| 7434 | } |
| 7435 | |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 7436 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7437 | struct switching_rule *rule; |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7438 | struct server_rule *srule; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7439 | struct sticking_rule *mrule; |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 7440 | struct act_rule *trule; |
| 7441 | struct act_rule *hrqrule; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 7442 | struct logsrv *tmplogsrv; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7443 | unsigned int next_id; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 7444 | int nbproc; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7445 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 7446 | if (curproxy->uuid < 0) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7447 | /* proxy ID not set, use automatic numbering with first |
| 7448 | * spare entry starting with next_pxid. |
| 7449 | */ |
| 7450 | next_pxid = get_next_id(&used_proxy_id, next_pxid); |
| 7451 | curproxy->conf.id.key = curproxy->uuid = next_pxid; |
| 7452 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 7453 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 7454 | next_pxid++; |
| 7455 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7456 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7457 | if (curproxy->state == PR_STSTOPPED) { |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 7458 | /* ensure we don't keep listeners uselessly bound */ |
| 7459 | stop_proxy(curproxy); |
Willy Tarreau | 02df774 | 2015-05-01 19:59:56 +0200 | [diff] [blame] | 7460 | free((void *)curproxy->table.peers.name); |
| 7461 | curproxy->table.peers.p = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7462 | continue; |
| 7463 | } |
| 7464 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 7465 | /* Check multi-process mode compatibility for the current proxy */ |
| 7466 | |
| 7467 | if (curproxy->bind_proc) { |
| 7468 | /* an explicit bind-process was specified, let's check how many |
| 7469 | * processes remain. |
| 7470 | */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 7471 | nbproc = my_popcountl(curproxy->bind_proc); |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 7472 | |
| 7473 | curproxy->bind_proc &= nbits(global.nbproc); |
| 7474 | if (!curproxy->bind_proc && nbproc == 1) { |
| 7475 | 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); |
| 7476 | curproxy->bind_proc = 1; |
| 7477 | } |
| 7478 | else if (!curproxy->bind_proc && nbproc > 1) { |
| 7479 | 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); |
| 7480 | curproxy->bind_proc = 0; |
| 7481 | } |
| 7482 | } |
| 7483 | |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 7484 | /* check and reduce the bind-proc of each listener */ |
| 7485 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 7486 | unsigned long mask; |
| 7487 | |
| 7488 | if (!bind_conf->bind_proc) |
| 7489 | continue; |
| 7490 | |
| 7491 | mask = nbits(global.nbproc); |
| 7492 | if (curproxy->bind_proc) |
| 7493 | mask &= curproxy->bind_proc; |
| 7494 | /* mask cannot be null here thanks to the previous checks */ |
| 7495 | |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 7496 | nbproc = my_popcountl(bind_conf->bind_proc); |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 7497 | bind_conf->bind_proc &= mask; |
| 7498 | |
| 7499 | if (!bind_conf->bind_proc && nbproc == 1) { |
| 7500 | 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", |
| 7501 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 7502 | bind_conf->bind_proc = mask & ~(mask - 1); |
| 7503 | } |
| 7504 | else if (!bind_conf->bind_proc && nbproc > 1) { |
| 7505 | 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", |
| 7506 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 7507 | bind_conf->bind_proc = 0; |
| 7508 | } |
| 7509 | } |
| 7510 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7511 | switch (curproxy->mode) { |
| 7512 | case PR_MODE_HEALTH: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7513 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7514 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7515 | Alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n", |
| 7516 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7517 | cfgerr++; |
| 7518 | } |
| 7519 | |
| 7520 | if (curproxy->srv != NULL) |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7521 | Warning("config : servers will be ignored for %s '%s'.\n", |
| 7522 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7523 | break; |
| 7524 | |
| 7525 | case PR_MODE_TCP: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7526 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7527 | break; |
| 7528 | |
| 7529 | case PR_MODE_HTTP: |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 7530 | curproxy->http_needed = 1; |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 7531 | break; |
| 7532 | } |
| 7533 | |
Willy Tarreau | f3934b8 | 2015-08-11 11:36:45 +0200 | [diff] [blame] | 7534 | if ((curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) { |
| 7535 | Warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n", |
| 7536 | proxy_type_str(curproxy), curproxy->id); |
| 7537 | err_code |= ERR_WARN; |
| 7538 | } |
| 7539 | |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7540 | if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) { |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 7541 | if (curproxy->lbprm.algo & BE_LB_KIND) { |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7542 | if (curproxy->options & PR_O_TRANSP) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7543 | Alert("config : %s '%s' cannot use both transparent and balance mode.\n", |
| 7544 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7545 | cfgerr++; |
| 7546 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7547 | #ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7548 | else if (curproxy->srv == NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7549 | Alert("config : %s '%s' needs at least 1 server in balance mode.\n", |
| 7550 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7551 | cfgerr++; |
| 7552 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7553 | #endif |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7554 | else if (curproxy->options & PR_O_DISPATCH) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 7555 | Warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n", |
| 7556 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7557 | err_code |= ERR_WARN; |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 7558 | } |
| 7559 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7560 | 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] | 7561 | /* If no LB algo is set in a backend, and we're not in |
| 7562 | * transparent mode, dispatch mode nor proxy mode, we |
| 7563 | * want to use balance roundrobin by default. |
| 7564 | */ |
| 7565 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 7566 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7567 | } |
| 7568 | } |
Willy Tarreau | 193cf93 | 2007-09-17 10:17:23 +0200 | [diff] [blame] | 7569 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7570 | if (curproxy->options & PR_O_DISPATCH) |
| 7571 | curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY); |
| 7572 | else if (curproxy->options & PR_O_HTTP_PROXY) |
| 7573 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP); |
| 7574 | else if (curproxy->options & PR_O_TRANSP) |
| 7575 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY); |
Willy Tarreau | 8293658 | 2007-11-30 15:20:09 +0100 | [diff] [blame] | 7576 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 7577 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) { |
| 7578 | if (curproxy->options & PR_O_DISABLE404) { |
| 7579 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 7580 | "disable-on-404", proxy_type_str(curproxy), curproxy->id); |
| 7581 | err_code |= ERR_WARN; |
| 7582 | curproxy->options &= ~PR_O_DISABLE404; |
| 7583 | } |
| 7584 | if (curproxy->options2 & PR_O2_CHK_SNDST) { |
| 7585 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 7586 | "send-state", proxy_type_str(curproxy), curproxy->id); |
| 7587 | err_code |= ERR_WARN; |
| 7588 | curproxy->options &= ~PR_O2_CHK_SNDST; |
| 7589 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 7590 | } |
| 7591 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7592 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 7593 | if (!global.external_check) { |
| 7594 | Alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n", |
| 7595 | curproxy->id, "option external-check"); |
| 7596 | cfgerr++; |
| 7597 | } |
| 7598 | if (!curproxy->check_command) { |
| 7599 | Alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n", |
| 7600 | curproxy->id, "option external-check"); |
| 7601 | cfgerr++; |
| 7602 | } |
| 7603 | } |
| 7604 | |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 7605 | if (curproxy->email_alert.set) { |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 7606 | if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) { |
| 7607 | Warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of " |
Pieter Baauw | 8669e97 | 2015-08-17 00:45:05 +0200 | [diff] [blame] | 7608 | "'email-alert from', 'email-alert level' 'email-alert mailers', " |
| 7609 | "'email-alert myhostname', or 'email-alert to' " |
| 7610 | "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' " |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 7611 | "to be present).\n", |
| 7612 | proxy_type_str(curproxy), curproxy->id); |
| 7613 | err_code |= ERR_WARN; |
| 7614 | free_email_alert(curproxy); |
| 7615 | } |
| 7616 | if (!curproxy->email_alert.myhostname) |
Cyril Bonté | e22bfd6 | 2015-12-04 03:07:07 +0100 | [diff] [blame] | 7617 | curproxy->email_alert.myhostname = strdup(hostname); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 7618 | } |
| 7619 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7620 | if (curproxy->check_command) { |
| 7621 | int clear = 0; |
| 7622 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
| 7623 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 7624 | "external-check command", proxy_type_str(curproxy), curproxy->id); |
| 7625 | err_code |= ERR_WARN; |
| 7626 | clear = 1; |
| 7627 | } |
| 7628 | if (curproxy->check_command[0] != '/' && !curproxy->check_path) { |
Ben Cabot | 49795eb | 2015-09-16 12:07:51 +0100 | [diff] [blame] | 7629 | Alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n", |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 7630 | curproxy->id, "external-check command"); |
| 7631 | cfgerr++; |
| 7632 | } |
| 7633 | if (clear) { |
| 7634 | free(curproxy->check_command); |
| 7635 | curproxy->check_command = NULL; |
| 7636 | } |
| 7637 | } |
| 7638 | |
| 7639 | if (curproxy->check_path) { |
| 7640 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
| 7641 | Warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 7642 | "external-check path", proxy_type_str(curproxy), curproxy->id); |
| 7643 | err_code |= ERR_WARN; |
| 7644 | free(curproxy->check_path); |
| 7645 | curproxy->check_path = NULL; |
| 7646 | } |
| 7647 | } |
| 7648 | |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7649 | /* if a default backend was specified, let's find it */ |
| 7650 | if (curproxy->defbe.name) { |
| 7651 | struct proxy *target; |
| 7652 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7653 | target = proxy_be_by_name(curproxy->defbe.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7654 | if (!target) { |
| 7655 | Alert("Proxy '%s': unable to find required default_backend: '%s'.\n", |
| 7656 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7657 | cfgerr++; |
| 7658 | } else if (target == curproxy) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7659 | Alert("Proxy '%s': loop detected for default_backend: '%s'.\n", |
| 7660 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 7661 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7662 | } else if (target->mode != curproxy->mode && |
| 7663 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 7664 | |
| 7665 | Alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n", |
| 7666 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 7667 | curproxy->conf.file, curproxy->conf.line, |
| 7668 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 7669 | target->conf.file, target->conf.line); |
| 7670 | cfgerr++; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 7671 | } else { |
| 7672 | free(curproxy->defbe.name); |
| 7673 | curproxy->defbe.be = target; |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 7674 | /* Update tot_fe_maxconn for a further fullconn's computation */ |
| 7675 | target->tot_fe_maxconn += curproxy->maxconn; |
Willy Tarreau | ff67813 | 2012-02-13 14:32:34 +0100 | [diff] [blame] | 7676 | /* Emit a warning if this proxy also has some servers */ |
| 7677 | if (curproxy->srv) { |
| 7678 | Warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n", |
| 7679 | curproxy->id); |
| 7680 | err_code |= ERR_WARN; |
| 7681 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 7682 | } |
| 7683 | } |
| 7684 | |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 7685 | if (!curproxy->defbe.be && (curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) { |
| 7686 | /* Case of listen without default backend |
| 7687 | * The curproxy will be its own default backend |
| 7688 | * so we update tot_fe_maxconn for a further |
| 7689 | * fullconn's computation */ |
| 7690 | curproxy->tot_fe_maxconn += curproxy->maxconn; |
| 7691 | } |
| 7692 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7693 | /* find the target proxy for 'use_backend' rules */ |
| 7694 | list_for_each_entry(rule, &curproxy->switching_rules, list) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7695 | struct proxy *target; |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 7696 | struct logformat_node *node; |
| 7697 | char *pxname; |
| 7698 | |
| 7699 | /* Try to parse the string as a log format expression. If the result |
| 7700 | * of the parsing is only one entry containing a simple string, then |
| 7701 | * it's a standard string corresponding to a static rule, thus the |
| 7702 | * parsing is cancelled and be.name is restored to be resolved. |
| 7703 | */ |
| 7704 | pxname = rule->be.name; |
| 7705 | LIST_INIT(&rule->be.expr); |
Thierry FOURNIER / OZON.IO | 4ed1c95 | 2016-11-24 23:57:54 +0100 | [diff] [blame] | 7706 | curproxy->conf.args.ctx = ARGC_UBK; |
| 7707 | curproxy->conf.args.file = rule->file; |
| 7708 | curproxy->conf.args.line = rule->line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 7709 | err = NULL; |
| 7710 | if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) { |
| 7711 | Alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n", |
| 7712 | rule->file, rule->line, pxname, err); |
| 7713 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 7714 | cfgerr++; |
| 7715 | continue; |
| 7716 | } |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 7717 | node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list); |
| 7718 | |
| 7719 | if (!LIST_ISEMPTY(&rule->be.expr)) { |
| 7720 | if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) { |
| 7721 | rule->dynamic = 1; |
| 7722 | free(pxname); |
| 7723 | continue; |
| 7724 | } |
| 7725 | /* simple string: free the expression and fall back to static rule */ |
| 7726 | free(node->arg); |
| 7727 | free(node); |
| 7728 | } |
| 7729 | |
| 7730 | rule->dynamic = 0; |
| 7731 | rule->be.name = pxname; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7732 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7733 | target = proxy_be_by_name(rule->be.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7734 | if (!target) { |
| 7735 | Alert("Proxy '%s': unable to find required use_backend: '%s'.\n", |
| 7736 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7737 | cfgerr++; |
| 7738 | } else if (target == curproxy) { |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 7739 | Alert("Proxy '%s': loop detected for use_backend: '%s'.\n", |
| 7740 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7741 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 7742 | } else if (target->mode != curproxy->mode && |
| 7743 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 7744 | |
| 7745 | Alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n", |
| 7746 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 7747 | curproxy->conf.file, curproxy->conf.line, |
| 7748 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 7749 | target->conf.file, target->conf.line); |
| 7750 | cfgerr++; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7751 | } else { |
| 7752 | free((void *)rule->be.name); |
| 7753 | rule->be.backend = target; |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 7754 | /* For each target of switching rules, we update |
| 7755 | * their tot_fe_maxconn, except if a previous rule point |
| 7756 | * on the same backend or on the default backend */ |
| 7757 | if (rule->be.backend != curproxy->defbe.be) { |
| 7758 | struct switching_rule *swrule; |
| 7759 | |
| 7760 | list_for_each_entry(swrule, &curproxy->switching_rules, list) { |
| 7761 | if (rule == swrule) { |
| 7762 | target->tot_fe_maxconn += curproxy->maxconn; |
| 7763 | break; |
| 7764 | } |
| 7765 | else if (!swrule->dynamic && swrule->be.backend == rule->be.backend) { |
| 7766 | /* there is multiple ref of this backend */ |
| 7767 | break; |
| 7768 | } |
| 7769 | } |
| 7770 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7771 | } |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7772 | } |
| 7773 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 7774 | /* find the target server for 'use_server' rules */ |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7775 | list_for_each_entry(srule, &curproxy->server_rules, list) { |
| 7776 | struct server *target = findserver(curproxy, srule->srv.name); |
| 7777 | |
| 7778 | if (!target) { |
| 7779 | Alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n", |
| 7780 | proxy_type_str(curproxy), curproxy->id, srule->srv.name); |
| 7781 | cfgerr++; |
| 7782 | continue; |
| 7783 | } |
| 7784 | free((void *)srule->srv.name); |
| 7785 | srule->srv.ptr = target; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 7786 | } |
| 7787 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7788 | /* find the target table for 'stick' rules */ |
| 7789 | list_for_each_entry(mrule, &curproxy->sticking_rules, list) { |
| 7790 | struct proxy *target; |
| 7791 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 7792 | curproxy->be_req_ana |= AN_REQ_STICKING_RULES; |
| 7793 | if (mrule->flags & STK_IS_STORE) |
| 7794 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 7795 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7796 | if (mrule->table.name) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7797 | target = proxy_tbl_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7798 | else |
| 7799 | target = curproxy; |
| 7800 | |
| 7801 | if (!target) { |
| 7802 | Alert("Proxy '%s': unable to find stick-table '%s'.\n", |
| 7803 | curproxy->id, mrule->table.name); |
| 7804 | cfgerr++; |
| 7805 | } |
| 7806 | else if (target->table.size == 0) { |
| 7807 | Alert("Proxy '%s': stick-table '%s' used but not configured.\n", |
| 7808 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7809 | cfgerr++; |
| 7810 | } |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 7811 | else if (!stktable_compatible_sample(mrule->expr, target->table.type)) { |
| 7812 | 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] | 7813 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7814 | cfgerr++; |
| 7815 | } |
| 7816 | else { |
| 7817 | free((void *)mrule->table.name); |
| 7818 | mrule->table.t = &(target->table); |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 7819 | stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7820 | } |
| 7821 | } |
| 7822 | |
| 7823 | /* find the target table for 'store response' rules */ |
| 7824 | list_for_each_entry(mrule, &curproxy->storersp_rules, list) { |
| 7825 | struct proxy *target; |
| 7826 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 7827 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 7828 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7829 | if (mrule->table.name) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 7830 | target = proxy_tbl_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7831 | else |
| 7832 | target = curproxy; |
| 7833 | |
| 7834 | if (!target) { |
| 7835 | Alert("Proxy '%s': unable to find store table '%s'.\n", |
| 7836 | curproxy->id, mrule->table.name); |
| 7837 | cfgerr++; |
| 7838 | } |
| 7839 | else if (target->table.size == 0) { |
| 7840 | Alert("Proxy '%s': stick-table '%s' used but not configured.\n", |
| 7841 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7842 | cfgerr++; |
| 7843 | } |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 7844 | else if (!stktable_compatible_sample(mrule->expr, target->table.type)) { |
| 7845 | 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] | 7846 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
| 7847 | cfgerr++; |
| 7848 | } |
| 7849 | else { |
| 7850 | free((void *)mrule->table.name); |
| 7851 | mrule->table.t = &(target->table); |
Willy Tarreau | 888617d | 2010-06-20 09:11:39 +0200 | [diff] [blame] | 7852 | stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 7853 | } |
| 7854 | } |
| 7855 | |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7856 | /* find the target table for 'tcp-request' layer 4 rules */ |
| 7857 | list_for_each_entry(trule, &curproxy->tcp_req.l4_rules, list) { |
| 7858 | struct proxy *target; |
| 7859 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 7860 | if (trule->action < ACT_ACTION_TRK_SC0 || trule->action > ACT_ACTION_TRK_SCMAX) |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7861 | continue; |
| 7862 | |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7863 | if (trule->arg.trk_ctr.table.n) |
| 7864 | target = proxy_tbl_by_name(trule->arg.trk_ctr.table.n); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7865 | else |
| 7866 | target = curproxy; |
| 7867 | |
| 7868 | if (!target) { |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7869 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7870 | curproxy->id, trule->arg.trk_ctr.table.n, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7871 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7872 | cfgerr++; |
| 7873 | } |
| 7874 | else if (target->table.size == 0) { |
| 7875 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7876 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7877 | cfgerr++; |
| 7878 | } |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7879 | else if (!stktable_compatible_sample(trule->arg.trk_ctr.expr, target->table.type)) { |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7880 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7881 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7882 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7883 | cfgerr++; |
| 7884 | } |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 7885 | else { |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7886 | free(trule->arg.trk_ctr.table.n); |
| 7887 | trule->arg.trk_ctr.table.t = &target->table; |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7888 | /* 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] | 7889 | * to pass a list of counters to track and allocate them right here using |
| 7890 | * stktable_alloc_data_type(). |
| 7891 | */ |
| 7892 | } |
| 7893 | } |
| 7894 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 7895 | /* find the target table for 'tcp-request' layer 5 rules */ |
| 7896 | list_for_each_entry(trule, &curproxy->tcp_req.l5_rules, list) { |
| 7897 | struct proxy *target; |
| 7898 | |
| 7899 | if (trule->action < ACT_ACTION_TRK_SC0 || trule->action > ACT_ACTION_TRK_SCMAX) |
| 7900 | continue; |
| 7901 | |
| 7902 | if (trule->arg.trk_ctr.table.n) |
| 7903 | target = proxy_tbl_by_name(trule->arg.trk_ctr.table.n); |
| 7904 | else |
| 7905 | target = curproxy; |
| 7906 | |
| 7907 | if (!target) { |
| 7908 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 7909 | curproxy->id, trule->arg.trk_ctr.table.n, |
| 7910 | tcp_trk_idx(trule->action)); |
| 7911 | cfgerr++; |
| 7912 | } |
| 7913 | else if (target->table.size == 0) { |
| 7914 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 7915 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id); |
| 7916 | cfgerr++; |
| 7917 | } |
| 7918 | else if (!stktable_compatible_sample(trule->arg.trk_ctr.expr, target->table.type)) { |
| 7919 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 7920 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id, |
| 7921 | tcp_trk_idx(trule->action)); |
| 7922 | cfgerr++; |
| 7923 | } |
| 7924 | else { |
| 7925 | free(trule->arg.trk_ctr.table.n); |
| 7926 | trule->arg.trk_ctr.table.t = &target->table; |
| 7927 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 7928 | * to pass a list of counters to track and allocate them right here using |
| 7929 | * stktable_alloc_data_type(). |
| 7930 | */ |
| 7931 | } |
| 7932 | } |
| 7933 | |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7934 | /* find the target table for 'tcp-request' layer 6 rules */ |
| 7935 | list_for_each_entry(trule, &curproxy->tcp_req.inspect_rules, list) { |
| 7936 | struct proxy *target; |
| 7937 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 7938 | if (trule->action < ACT_ACTION_TRK_SC0 || trule->action > ACT_ACTION_TRK_SCMAX) |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7939 | continue; |
| 7940 | |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7941 | if (trule->arg.trk_ctr.table.n) |
| 7942 | target = proxy_tbl_by_name(trule->arg.trk_ctr.table.n); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7943 | else |
| 7944 | target = curproxy; |
| 7945 | |
| 7946 | if (!target) { |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7947 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7948 | curproxy->id, trule->arg.trk_ctr.table.n, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7949 | tcp_trk_idx(trule->action)); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7950 | cfgerr++; |
| 7951 | } |
| 7952 | else if (target->table.size == 0) { |
| 7953 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7954 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id); |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7955 | cfgerr++; |
| 7956 | } |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7957 | else if (!stktable_compatible_sample(trule->arg.trk_ctr.expr, target->table.type)) { |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7958 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7959 | curproxy->id, trule->arg.trk_ctr.table.n ? trule->arg.trk_ctr.table.n : curproxy->id, |
Willy Tarreau | 34c2fb6 | 2013-12-02 23:29:05 +0100 | [diff] [blame] | 7960 | tcp_trk_idx(trule->action)); |
Willy Tarreau | 5f53de7 | 2012-12-12 00:25:44 +0100 | [diff] [blame] | 7961 | cfgerr++; |
| 7962 | } |
Willy Tarreau | d1f9652 | 2010-08-03 19:34:32 +0200 | [diff] [blame] | 7963 | else { |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 7964 | free(trule->arg.trk_ctr.table.n); |
| 7965 | trule->arg.trk_ctr.table.t = &target->table; |
Willy Tarreau | 5612328 | 2010-08-06 19:06:56 +0200 | [diff] [blame] | 7966 | /* 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] | 7967 | * to pass a list of counters to track and allocate them right here using |
| 7968 | * stktable_alloc_data_type(). |
| 7969 | */ |
| 7970 | } |
| 7971 | } |
| 7972 | |
Baptiste Assmann | e954493 | 2015-11-03 23:31:35 +0100 | [diff] [blame] | 7973 | /* parse http-request capture rules to ensure id really exists */ |
| 7974 | list_for_each_entry(hrqrule, &curproxy->http_req_rules, list) { |
| 7975 | if (hrqrule->action != ACT_CUSTOM || |
| 7976 | hrqrule->action_ptr != http_action_req_capture_by_id) |
| 7977 | continue; |
| 7978 | |
| 7979 | if (hrqrule->arg.capid.idx >= curproxy->nb_req_cap) { |
| 7980 | Alert("Proxy '%s': unable to find capture id '%d' referenced by http-request capture rule.\n", |
| 7981 | curproxy->id, hrqrule->arg.capid.idx); |
| 7982 | cfgerr++; |
| 7983 | } |
| 7984 | } |
| 7985 | |
| 7986 | /* parse http-response capture rules to ensure id really exists */ |
| 7987 | list_for_each_entry(hrqrule, &curproxy->http_res_rules, list) { |
| 7988 | if (hrqrule->action != ACT_CUSTOM || |
| 7989 | hrqrule->action_ptr != http_action_res_capture_by_id) |
| 7990 | continue; |
| 7991 | |
| 7992 | if (hrqrule->arg.capid.idx >= curproxy->nb_rsp_cap) { |
| 7993 | Alert("Proxy '%s': unable to find capture id '%d' referenced by http-response capture rule.\n", |
| 7994 | curproxy->id, hrqrule->arg.capid.idx); |
| 7995 | cfgerr++; |
| 7996 | } |
| 7997 | } |
| 7998 | |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 7999 | /* find the target table for 'http-request' layer 7 rules */ |
| 8000 | list_for_each_entry(hrqrule, &curproxy->http_req_rules, list) { |
| 8001 | struct proxy *target; |
| 8002 | |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 8003 | if (hrqrule->action < ACT_ACTION_TRK_SC0 || hrqrule->action > ACT_ACTION_TRK_SCMAX) |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8004 | continue; |
| 8005 | |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8006 | if (hrqrule->arg.trk_ctr.table.n) |
| 8007 | target = proxy_tbl_by_name(hrqrule->arg.trk_ctr.table.n); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8008 | else |
| 8009 | target = curproxy; |
| 8010 | |
| 8011 | if (!target) { |
| 8012 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8013 | curproxy->id, hrqrule->arg.trk_ctr.table.n, |
Ruoshan Huang | e4edc6b | 2016-07-14 15:07:45 +0800 | [diff] [blame] | 8014 | http_trk_idx(hrqrule->action)); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8015 | cfgerr++; |
| 8016 | } |
| 8017 | else if (target->table.size == 0) { |
| 8018 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8019 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8020 | cfgerr++; |
| 8021 | } |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8022 | else if (!stktable_compatible_sample(hrqrule->arg.trk_ctr.expr, target->table.type)) { |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8023 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8024 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id, |
Ruoshan Huang | e4edc6b | 2016-07-14 15:07:45 +0800 | [diff] [blame] | 8025 | http_trk_idx(hrqrule->action)); |
| 8026 | cfgerr++; |
| 8027 | } |
| 8028 | else { |
| 8029 | free(hrqrule->arg.trk_ctr.table.n); |
| 8030 | hrqrule->arg.trk_ctr.table.t = &target->table; |
| 8031 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 8032 | * to pass a list of counters to track and allocate them right here using |
| 8033 | * stktable_alloc_data_type(). |
| 8034 | */ |
| 8035 | } |
| 8036 | } |
| 8037 | |
| 8038 | /* find the target table for 'http-response' layer 7 rules */ |
| 8039 | list_for_each_entry(hrqrule, &curproxy->http_res_rules, list) { |
| 8040 | struct proxy *target; |
| 8041 | |
| 8042 | if (hrqrule->action < ACT_ACTION_TRK_SC0 || hrqrule->action > ACT_ACTION_TRK_SCMAX) |
| 8043 | continue; |
| 8044 | |
| 8045 | if (hrqrule->arg.trk_ctr.table.n) |
| 8046 | target = proxy_tbl_by_name(hrqrule->arg.trk_ctr.table.n); |
| 8047 | else |
| 8048 | target = curproxy; |
| 8049 | |
| 8050 | if (!target) { |
| 8051 | Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", |
| 8052 | curproxy->id, hrqrule->arg.trk_ctr.table.n, |
| 8053 | http_trk_idx(hrqrule->action)); |
| 8054 | cfgerr++; |
| 8055 | } |
| 8056 | else if (target->table.size == 0) { |
| 8057 | Alert("Proxy '%s': table '%s' used but not configured.\n", |
| 8058 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id); |
| 8059 | cfgerr++; |
| 8060 | } |
| 8061 | else if (!stktable_compatible_sample(hrqrule->arg.trk_ctr.expr, target->table.type)) { |
| 8062 | Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", |
| 8063 | curproxy->id, hrqrule->arg.trk_ctr.table.n ? hrqrule->arg.trk_ctr.table.n : curproxy->id, |
| 8064 | http_trk_idx(hrqrule->action)); |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8065 | cfgerr++; |
| 8066 | } |
| 8067 | else { |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8068 | free(hrqrule->arg.trk_ctr.table.n); |
| 8069 | hrqrule->arg.trk_ctr.table.t = &target->table; |
Willy Tarreau | 09448f7 | 2014-06-25 18:12:15 +0200 | [diff] [blame] | 8070 | /* Note: if we decide to enhance the track-sc syntax, we may be able |
| 8071 | * to pass a list of counters to track and allocate them right here using |
| 8072 | * stktable_alloc_data_type(). |
| 8073 | */ |
| 8074 | } |
| 8075 | } |
| 8076 | |
Willy Tarreau | b3dc39d | 2014-04-28 22:06:57 +0200 | [diff] [blame] | 8077 | /* move any "block" rules at the beginning of the http-request rules */ |
| 8078 | if (!LIST_ISEMPTY(&curproxy->block_rules)) { |
| 8079 | /* insert block_rules into http_req_rules at the beginning */ |
| 8080 | curproxy->block_rules.p->n = curproxy->http_req_rules.n; |
| 8081 | curproxy->http_req_rules.n->p = curproxy->block_rules.p; |
| 8082 | curproxy->block_rules.n->p = &curproxy->http_req_rules; |
| 8083 | curproxy->http_req_rules.n = curproxy->block_rules.n; |
| 8084 | LIST_INIT(&curproxy->block_rules); |
| 8085 | } |
| 8086 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8087 | if (curproxy->table.peers.name) { |
| 8088 | struct peers *curpeers = peers; |
| 8089 | |
| 8090 | for (curpeers = peers; curpeers; curpeers = curpeers->next) { |
| 8091 | if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) { |
| 8092 | free((void *)curproxy->table.peers.name); |
Willy Tarreau | 973ca49 | 2013-01-17 21:34:52 +0100 | [diff] [blame] | 8093 | curproxy->table.peers.p = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8094 | break; |
| 8095 | } |
| 8096 | } |
| 8097 | |
| 8098 | if (!curpeers) { |
| 8099 | Alert("Proxy '%s': unable to find sync peers '%s'.\n", |
| 8100 | curproxy->id, curproxy->table.peers.name); |
Willy Tarreau | d66bf96 | 2011-10-28 14:16:49 +0200 | [diff] [blame] | 8101 | free((void *)curproxy->table.peers.name); |
| 8102 | curproxy->table.peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8103 | cfgerr++; |
| 8104 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 8105 | else if (curpeers->state == PR_STSTOPPED) { |
| 8106 | /* silently disable this peers section */ |
| 8107 | curproxy->table.peers.p = NULL; |
| 8108 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8109 | else if (!curpeers->peers_fe) { |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 8110 | Alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n", |
| 8111 | curproxy->id, localpeer, curpeers->id); |
Willy Tarreau | d66bf96 | 2011-10-28 14:16:49 +0200 | [diff] [blame] | 8112 | curproxy->table.peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 8113 | cfgerr++; |
| 8114 | } |
| 8115 | } |
| 8116 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 8117 | |
| 8118 | if (curproxy->email_alert.mailers.name) { |
| 8119 | struct mailers *curmailers = mailers; |
| 8120 | |
| 8121 | for (curmailers = mailers; curmailers; curmailers = curmailers->next) { |
| 8122 | if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0) { |
| 8123 | free(curproxy->email_alert.mailers.name); |
| 8124 | curproxy->email_alert.mailers.m = curmailers; |
| 8125 | curmailers->users++; |
| 8126 | break; |
| 8127 | } |
| 8128 | } |
| 8129 | |
| 8130 | if (!curmailers) { |
| 8131 | Alert("Proxy '%s': unable to find mailers '%s'.\n", |
| 8132 | curproxy->id, curproxy->email_alert.mailers.name); |
| 8133 | free_email_alert(curproxy); |
| 8134 | cfgerr++; |
| 8135 | } |
| 8136 | } |
| 8137 | |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 8138 | if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) && |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8139 | !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8140 | (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) { |
| 8141 | Alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n", |
| 8142 | "proxy", curproxy->id); |
| 8143 | cfgerr++; |
| 8144 | goto out_uri_auth_compat; |
| 8145 | } |
| 8146 | |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 8147 | 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] | 8148 | const char *uri_auth_compat_req[10]; |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 8149 | struct act_rule *rule; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8150 | int i = 0; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8151 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8152 | /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */ |
| 8153 | uri_auth_compat_req[i++] = "auth"; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8154 | |
| 8155 | if (curproxy->uri_auth->auth_realm) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8156 | uri_auth_compat_req[i++] = "realm"; |
| 8157 | uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm; |
| 8158 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8159 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8160 | uri_auth_compat_req[i++] = "unless"; |
| 8161 | uri_auth_compat_req[i++] = "{"; |
| 8162 | uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)"; |
| 8163 | uri_auth_compat_req[i++] = "}"; |
| 8164 | uri_auth_compat_req[i++] = ""; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8165 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8166 | rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy); |
| 8167 | if (!rule) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8168 | cfgerr++; |
| 8169 | break; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8170 | } |
| 8171 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8172 | LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 8173 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8174 | if (curproxy->uri_auth->auth_realm) { |
| 8175 | free(curproxy->uri_auth->auth_realm); |
| 8176 | curproxy->uri_auth->auth_realm = NULL; |
| 8177 | } |
Krzysztof Piotr Oledzki | 329f74d | 2010-02-22 20:27:23 +0100 | [diff] [blame] | 8178 | |
| 8179 | curproxy->uri_auth->flags |= ST_CONVDONE; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8180 | } |
| 8181 | out_uri_auth_compat: |
| 8182 | |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 8183 | /* check whether we have a log server that uses RFC5424 log format */ |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8184 | list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) { |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 8185 | if (tmplogsrv->format == LOG_FORMAT_RFC5424) { |
| 8186 | if (!curproxy->conf.logformat_sd_string) { |
| 8187 | /* set the default logformat_sd_string */ |
| 8188 | curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format; |
| 8189 | } |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8190 | break; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8191 | } |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 8192 | } |
Dragan Dosen | 68d2e3a | 2015-09-19 22:35:44 +0200 | [diff] [blame] | 8193 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8194 | /* compile the log format */ |
| 8195 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8196 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 8197 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 8198 | curproxy->conf.logformat_string != clf_http_log_format) |
| 8199 | free(curproxy->conf.logformat_string); |
| 8200 | curproxy->conf.logformat_string = NULL; |
| 8201 | free(curproxy->conf.lfs_file); |
| 8202 | curproxy->conf.lfs_file = NULL; |
| 8203 | curproxy->conf.lfs_line = 0; |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8204 | |
| 8205 | if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 8206 | free(curproxy->conf.logformat_sd_string); |
| 8207 | curproxy->conf.logformat_sd_string = NULL; |
| 8208 | free(curproxy->conf.lfsd_file); |
| 8209 | curproxy->conf.lfsd_file = NULL; |
| 8210 | curproxy->conf.lfsd_line = 0; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8211 | } |
| 8212 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8213 | if (curproxy->conf.logformat_string) { |
| 8214 | curproxy->conf.args.ctx = ARGC_LOG; |
| 8215 | curproxy->conf.args.file = curproxy->conf.lfs_file; |
| 8216 | curproxy->conf.args.line = curproxy->conf.lfs_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8217 | err = NULL; |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8218 | if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY, |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8219 | SMP_VAL_FE_LOG_END, &err)) { |
| 8220 | Alert("Parsing [%s:%d]: failed to parse log-format : %s.\n", |
| 8221 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
| 8222 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8223 | cfgerr++; |
| 8224 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8225 | curproxy->conf.args.file = NULL; |
| 8226 | curproxy->conf.args.line = 0; |
| 8227 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8228 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8229 | if (curproxy->conf.logformat_sd_string) { |
| 8230 | curproxy->conf.args.ctx = ARGC_LOGSD; |
| 8231 | curproxy->conf.args.file = curproxy->conf.lfsd_file; |
| 8232 | curproxy->conf.args.line = curproxy->conf.lfsd_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8233 | err = NULL; |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8234 | if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd, LOG_OPT_MANDATORY, |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8235 | SMP_VAL_FE_LOG_END, &err)) { |
| 8236 | Alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n", |
| 8237 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
| 8238 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8239 | cfgerr++; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8240 | } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) { |
| 8241 | Alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n", |
| 8242 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
| 8243 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8244 | cfgerr++; |
| 8245 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8246 | curproxy->conf.args.file = NULL; |
| 8247 | curproxy->conf.args.line = 0; |
| 8248 | } |
| 8249 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8250 | if (curproxy->conf.uniqueid_format_string) { |
| 8251 | curproxy->conf.args.ctx = ARGC_UIF; |
| 8252 | curproxy->conf.args.file = curproxy->conf.uif_file; |
| 8253 | curproxy->conf.args.line = curproxy->conf.uif_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8254 | err = NULL; |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8255 | if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id, LOG_OPT_HTTP, |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 8256 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) { |
| 8257 | Alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n", |
| 8258 | curproxy->conf.uif_file, curproxy->conf.uif_line, err); |
| 8259 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 8260 | cfgerr++; |
| 8261 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 8262 | curproxy->conf.args.file = NULL; |
| 8263 | curproxy->conf.args.line = 0; |
| 8264 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8265 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 8266 | /* only now we can check if some args remain unresolved. |
| 8267 | * This must be done after the users and groups resolution. |
| 8268 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8269 | cfgerr += smp_resolve_args(curproxy); |
| 8270 | if (!cfgerr) |
| 8271 | cfgerr += acl_find_targets(curproxy); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8272 | |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 8273 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8274 | (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) || |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 8275 | ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) && |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 8276 | (!curproxy->timeout.connect || |
| 8277 | (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8278 | Warning("config : missing timeouts for %s '%s'.\n" |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 8279 | " | While not properly invalid, you will certainly encounter various problems\n" |
| 8280 | " | 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] | 8281 | " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n", |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8282 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 8283 | err_code |= ERR_WARN; |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 8284 | } |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 8285 | |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8286 | /* Historically, the tarpit and queue timeouts were inherited from contimeout. |
| 8287 | * We must still support older configurations, so let's find out whether those |
| 8288 | * parameters have been set or must be copied from contimeouts. |
| 8289 | */ |
| 8290 | if (curproxy != &defproxy) { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8291 | if (!curproxy->timeout.tarpit || |
| 8292 | curproxy->timeout.tarpit == defproxy.timeout.tarpit) { |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8293 | /* tarpit timeout not set. We search in the following order: |
| 8294 | * default.tarpit, curr.connect, default.connect. |
| 8295 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8296 | if (defproxy.timeout.tarpit) |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8297 | curproxy->timeout.tarpit = defproxy.timeout.tarpit; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8298 | else if (curproxy->timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8299 | curproxy->timeout.tarpit = curproxy->timeout.connect; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8300 | else if (defproxy.timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8301 | curproxy->timeout.tarpit = defproxy.timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8302 | } |
| 8303 | if ((curproxy->cap & PR_CAP_BE) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8304 | (!curproxy->timeout.queue || |
| 8305 | curproxy->timeout.queue == defproxy.timeout.queue)) { |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8306 | /* queue timeout not set. We search in the following order: |
| 8307 | * default.queue, curr.connect, default.connect. |
| 8308 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8309 | if (defproxy.timeout.queue) |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8310 | curproxy->timeout.queue = defproxy.timeout.queue; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8311 | else if (curproxy->timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8312 | curproxy->timeout.queue = curproxy->timeout.connect; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 8313 | else if (defproxy.timeout.connect) |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 8314 | curproxy->timeout.queue = defproxy.timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 8315 | } |
| 8316 | } |
| 8317 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 8318 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) { |
Willy Tarreau | 137325d | 2010-02-01 16:38:17 +0100 | [diff] [blame] | 8319 | curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1; |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 8320 | curproxy->check_req = malloc(curproxy->check_len); |
Willy Tarreau | 137325d | 2010-02-01 16:38:17 +0100 | [diff] [blame] | 8321 | memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len); |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 8322 | } |
| 8323 | |
Willy Tarreau | 215663d | 2014-06-13 18:30:23 +0200 | [diff] [blame] | 8324 | if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) && |
| 8325 | (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) { |
| 8326 | Warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n", |
| 8327 | proxy_type_str(curproxy), curproxy->id); |
| 8328 | err_code |= ERR_WARN; |
| 8329 | } |
| 8330 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 8331 | /* ensure that cookie capture length is not too large */ |
| 8332 | if (curproxy->capture_len >= global.tune.cookie_len) { |
| 8333 | Warning("config : truncating capture length to %d bytes for %s '%s'.\n", |
| 8334 | global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id); |
| 8335 | err_code |= ERR_WARN; |
| 8336 | curproxy->capture_len = global.tune.cookie_len - 1; |
| 8337 | } |
| 8338 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 8339 | /* The small pools required for the capture lists */ |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 8340 | if (curproxy->nb_req_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 8341 | curproxy->req_cap_pool = create_pool("ptrcap", |
| 8342 | curproxy->nb_req_cap * sizeof(char *), |
| 8343 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 8344 | } |
| 8345 | |
| 8346 | if (curproxy->nb_rsp_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 8347 | curproxy->rsp_cap_pool = create_pool("ptrcap", |
| 8348 | curproxy->nb_rsp_cap * sizeof(char *), |
| 8349 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 8350 | } |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 8351 | |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 8352 | switch (curproxy->load_server_state_from_file) { |
| 8353 | case PR_SRV_STATE_FILE_UNSPEC: |
| 8354 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE; |
| 8355 | break; |
| 8356 | case PR_SRV_STATE_FILE_GLOBAL: |
| 8357 | if (!global.server_state_file) { |
| 8358 | Warning("config : backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n", |
| 8359 | curproxy->id); |
| 8360 | err_code |= ERR_WARN; |
| 8361 | } |
| 8362 | break; |
| 8363 | } |
| 8364 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8365 | /* first, we will invert the servers list order */ |
| 8366 | newsrv = NULL; |
| 8367 | while (curproxy->srv) { |
| 8368 | struct server *next; |
| 8369 | |
| 8370 | next = curproxy->srv->next; |
| 8371 | curproxy->srv->next = newsrv; |
| 8372 | newsrv = curproxy->srv; |
| 8373 | if (!next) |
| 8374 | break; |
| 8375 | curproxy->srv = next; |
| 8376 | } |
| 8377 | |
Willy Tarreau | 17edc81 | 2014-01-03 12:14:34 +0100 | [diff] [blame] | 8378 | /* Check that no server name conflicts. This causes trouble in the stats. |
| 8379 | * We only emit a warning for the first conflict affecting each server, |
| 8380 | * in order to avoid combinatory explosion if all servers have the same |
| 8381 | * name. We do that only for servers which do not have an explicit ID, |
| 8382 | * because these IDs were made also for distinguishing them and we don't |
| 8383 | * want to annoy people who correctly manage them. |
| 8384 | */ |
| 8385 | for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) { |
| 8386 | struct server *other_srv; |
| 8387 | |
| 8388 | if (newsrv->puid) |
| 8389 | continue; |
| 8390 | |
| 8391 | for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) { |
| 8392 | if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) { |
| 8393 | Warning("parsing [%s:%d] : %s '%s', another server named '%s' was defined without an explicit ID at line %d, this is not recommended.\n", |
| 8394 | newsrv->conf.file, newsrv->conf.line, |
| 8395 | proxy_type_str(curproxy), curproxy->id, |
| 8396 | newsrv->id, other_srv->conf.line); |
| 8397 | break; |
| 8398 | } |
| 8399 | } |
| 8400 | } |
| 8401 | |
Willy Tarreau | dd70165 | 2010-05-25 23:03:02 +0200 | [diff] [blame] | 8402 | /* assign automatic UIDs to servers which don't have one yet */ |
| 8403 | next_id = 1; |
| 8404 | newsrv = curproxy->srv; |
| 8405 | while (newsrv != NULL) { |
| 8406 | if (!newsrv->puid) { |
| 8407 | /* server ID not set, use automatic numbering with first |
| 8408 | * spare entry starting with next_svid. |
| 8409 | */ |
| 8410 | next_id = get_next_id(&curproxy->conf.used_server_id, next_id); |
| 8411 | newsrv->conf.id.key = newsrv->puid = next_id; |
| 8412 | eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id); |
| 8413 | } |
| 8414 | next_id++; |
| 8415 | newsrv = newsrv->next; |
| 8416 | } |
| 8417 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 8418 | curproxy->lbprm.wmult = 1; /* default weight multiplier */ |
Willy Tarreau | 5dc2fa6 | 2007-11-19 19:10:18 +0100 | [diff] [blame] | 8419 | curproxy->lbprm.wdiv = 1; /* default weight divider */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8420 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8421 | /* |
| 8422 | * If this server supports a maxconn parameter, it needs a dedicated |
| 8423 | * tasks to fill the emptied slots when a connection leaves. |
| 8424 | * Also, resolve deferred tracking dependency if needed. |
| 8425 | */ |
| 8426 | newsrv = curproxy->srv; |
| 8427 | while (newsrv != NULL) { |
| 8428 | if (newsrv->minconn > newsrv->maxconn) { |
| 8429 | /* Only 'minconn' was specified, or it was higher than or equal |
| 8430 | * to 'maxconn'. Let's turn this into maxconn and clean it, as |
| 8431 | * this will avoid further useless expensive computations. |
| 8432 | */ |
| 8433 | newsrv->maxconn = newsrv->minconn; |
| 8434 | } else if (newsrv->maxconn && !newsrv->minconn) { |
| 8435 | /* minconn was not specified, so we set it to maxconn */ |
| 8436 | newsrv->minconn = newsrv->maxconn; |
| 8437 | } |
| 8438 | |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 8439 | /* this will also properly set the transport layer for prod and checks */ |
| 8440 | if (newsrv->use_ssl || newsrv->check.use_ssl) { |
| 8441 | if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) |
| 8442 | cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv); |
| 8443 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 8444 | |
Willy Tarreau | 2f075e9 | 2013-12-03 11:11:34 +0100 | [diff] [blame] | 8445 | /* set the check type on the server */ |
| 8446 | newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY; |
| 8447 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8448 | if (newsrv->trackit) { |
| 8449 | struct proxy *px; |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8450 | struct server *srv, *loop; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8451 | char *pname, *sname; |
| 8452 | |
| 8453 | pname = newsrv->trackit; |
| 8454 | sname = strrchr(pname, '/'); |
| 8455 | |
| 8456 | if (sname) |
| 8457 | *sname++ = '\0'; |
| 8458 | else { |
| 8459 | sname = pname; |
| 8460 | pname = NULL; |
| 8461 | } |
| 8462 | |
| 8463 | if (pname) { |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 8464 | px = proxy_be_by_name(pname); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8465 | if (!px) { |
| 8466 | Alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n", |
| 8467 | proxy_type_str(curproxy), curproxy->id, |
| 8468 | newsrv->id, pname); |
| 8469 | cfgerr++; |
| 8470 | goto next_srv; |
| 8471 | } |
| 8472 | } else |
| 8473 | px = curproxy; |
| 8474 | |
| 8475 | srv = findserver(px, sname); |
| 8476 | if (!srv) { |
| 8477 | Alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n", |
| 8478 | proxy_type_str(curproxy), curproxy->id, |
| 8479 | newsrv->id, sname); |
| 8480 | cfgerr++; |
| 8481 | goto next_srv; |
| 8482 | } |
| 8483 | |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8484 | if (!(srv->check.state & CHK_ST_CONFIGURED) && |
| 8485 | !(srv->agent.state & CHK_ST_CONFIGURED) && |
| 8486 | !srv->track && !srv->trackit) { |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8487 | Alert("config : %s '%s', server '%s': unable to use %s/%s for " |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8488 | "tracking as it does not have any check nor agent enabled.\n", |
| 8489 | proxy_type_str(curproxy), curproxy->id, |
| 8490 | newsrv->id, px->id, srv->id); |
| 8491 | cfgerr++; |
| 8492 | goto next_srv; |
| 8493 | } |
| 8494 | |
| 8495 | for (loop = srv->track; loop && loop != newsrv; loop = loop->track); |
| 8496 | |
Frédéric Lécaille | 2efc649 | 2017-03-14 14:32:17 +0100 | [diff] [blame] | 8497 | if (newsrv == srv || loop) { |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 8498 | Alert("config : %s '%s', server '%s': unable to track %s/%s as it " |
| 8499 | "belongs to a tracking chain looping back to %s/%s.\n", |
| 8500 | proxy_type_str(curproxy), curproxy->id, |
Frédéric Lécaille | 2efc649 | 2017-03-14 14:32:17 +0100 | [diff] [blame] | 8501 | newsrv->id, px->id, srv->id, px->id, |
| 8502 | newsrv == srv ? srv->id : loop->id); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8503 | cfgerr++; |
| 8504 | goto next_srv; |
| 8505 | } |
| 8506 | |
| 8507 | if (curproxy != px && |
| 8508 | (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) { |
| 8509 | Alert("config : %s '%s', server '%s': unable to use %s/%s for" |
| 8510 | "tracking: disable-on-404 option inconsistency.\n", |
| 8511 | proxy_type_str(curproxy), curproxy->id, |
| 8512 | newsrv->id, px->id, srv->id); |
| 8513 | cfgerr++; |
| 8514 | goto next_srv; |
| 8515 | } |
| 8516 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8517 | newsrv->track = srv; |
Willy Tarreau | 1a53a3a | 2013-12-11 15:27:05 +0100 | [diff] [blame] | 8518 | newsrv->tracknext = srv->trackers; |
| 8519 | srv->trackers = newsrv; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8520 | |
| 8521 | free(newsrv->trackit); |
| 8522 | newsrv->trackit = NULL; |
| 8523 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 8524 | |
| 8525 | /* |
| 8526 | * resolve server's resolvers name and update the resolvers pointer |
| 8527 | * accordingly |
| 8528 | */ |
| 8529 | if (newsrv->resolvers_id) { |
| 8530 | struct dns_resolvers *curr_resolvers; |
| 8531 | int found; |
| 8532 | |
| 8533 | found = 0; |
| 8534 | list_for_each_entry(curr_resolvers, &dns_resolvers, list) { |
| 8535 | if (!strcmp(curr_resolvers->id, newsrv->resolvers_id)) { |
| 8536 | found = 1; |
| 8537 | break; |
| 8538 | } |
| 8539 | } |
| 8540 | |
| 8541 | if (!found) { |
| 8542 | Alert("config : %s '%s', server '%s': unable to find required resolvers '%s'\n", |
| 8543 | proxy_type_str(curproxy), curproxy->id, |
| 8544 | newsrv->id, newsrv->resolvers_id); |
| 8545 | cfgerr++; |
| 8546 | } else { |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 8547 | if (newsrv->hostname_dn) { |
Baptiste Assmann | 4274637 | 2017-05-03 12:12:02 +0200 | [diff] [blame] | 8548 | newsrv->resolvers = curr_resolvers; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 8549 | if (dns_link_resolution(newsrv, OBJ_TYPE_SERVER, NULL) != 0) { |
| 8550 | Alert("config : %s '%s', server '%s': unable to set DNS resolution\n", |
| 8551 | proxy_type_str(curproxy), curproxy->id, |
| 8552 | newsrv->id); |
| 8553 | cfgerr++; |
| 8554 | } |
| 8555 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 8556 | } |
| 8557 | } |
| 8558 | else { |
| 8559 | /* if no resolvers section associated to this server |
| 8560 | * we can clean up the associated resolution structure |
| 8561 | */ |
| 8562 | if (newsrv->resolution) { |
| 8563 | free(newsrv->resolution->hostname_dn); |
| 8564 | newsrv->resolution->hostname_dn = NULL; |
| 8565 | free(newsrv->resolution); |
| 8566 | newsrv->resolution = NULL; |
| 8567 | } |
| 8568 | } |
| 8569 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 8570 | next_srv: |
| 8571 | newsrv = newsrv->next; |
| 8572 | } |
| 8573 | |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 8574 | /* |
| 8575 | * Try to generate dynamic cookies for servers now. |
| 8576 | * It couldn't be done earlier, since at the time we parsed |
| 8577 | * the server line, we may not have known yet that we |
| 8578 | * should use dynamic cookies, or the secret key may not |
| 8579 | * have been provided yet. |
| 8580 | */ |
| 8581 | if (curproxy->ck_opts & PR_CK_DYNAMIC) { |
| 8582 | newsrv = curproxy->srv; |
| 8583 | while (newsrv != NULL) { |
| 8584 | srv_set_dyncookie(newsrv); |
| 8585 | newsrv = newsrv->next; |
| 8586 | } |
| 8587 | |
| 8588 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8589 | /* We have to initialize the server lookup mechanism depending |
| 8590 | * on what LB algorithm was choosen. |
| 8591 | */ |
| 8592 | |
| 8593 | curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN); |
| 8594 | switch (curproxy->lbprm.algo & BE_LB_KIND) { |
| 8595 | case BE_LB_KIND_RR: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 8596 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) { |
| 8597 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 8598 | init_server_map(curproxy); |
| 8599 | } else { |
| 8600 | curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN; |
| 8601 | fwrr_init_server_groups(curproxy); |
| 8602 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8603 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8604 | |
Willy Tarreau | 3ebb116 | 2012-02-13 16:57:44 +0100 | [diff] [blame] | 8605 | case BE_LB_KIND_CB: |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 8606 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) { |
| 8607 | curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN; |
| 8608 | fwlc_init_server_tree(curproxy); |
| 8609 | } else { |
| 8610 | curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN; |
| 8611 | fas_init_server_tree(curproxy); |
| 8612 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8613 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8614 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8615 | case BE_LB_KIND_HI: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 8616 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) { |
| 8617 | curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN; |
| 8618 | chash_init_server_tree(curproxy); |
| 8619 | } else { |
| 8620 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 8621 | init_server_map(curproxy); |
| 8622 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 8623 | break; |
| 8624 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8625 | |
| 8626 | if (curproxy->options & PR_O_LOGASAP) |
| 8627 | curproxy->to_log &= ~LW_BYTES; |
| 8628 | |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 8629 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 8630 | (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) && |
| 8631 | (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) { |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 8632 | Warning("config : log format ignored for %s '%s' since it has no log address.\n", |
| 8633 | proxy_type_str(curproxy), curproxy->id); |
| 8634 | err_code |= ERR_WARN; |
| 8635 | } |
| 8636 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8637 | if (curproxy->mode != PR_MODE_HTTP) { |
| 8638 | int optnum; |
| 8639 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8640 | if (curproxy->uri_auth) { |
| 8641 | Warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 8642 | proxy_type_str(curproxy), curproxy->id); |
| 8643 | err_code |= ERR_WARN; |
| 8644 | curproxy->uri_auth = NULL; |
| 8645 | } |
| 8646 | |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 8647 | if (curproxy->capture_name) { |
| 8648 | Warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 8649 | proxy_type_str(curproxy), curproxy->id); |
| 8650 | err_code |= ERR_WARN; |
| 8651 | } |
| 8652 | |
| 8653 | if (!LIST_ISEMPTY(&curproxy->http_req_rules)) { |
| 8654 | Warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8655 | proxy_type_str(curproxy), curproxy->id); |
| 8656 | err_code |= ERR_WARN; |
| 8657 | } |
| 8658 | |
| 8659 | if (!LIST_ISEMPTY(&curproxy->http_res_rules)) { |
| 8660 | Warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8661 | proxy_type_str(curproxy), curproxy->id); |
| 8662 | err_code |= ERR_WARN; |
| 8663 | } |
| 8664 | |
| 8665 | if (!LIST_ISEMPTY(&curproxy->block_rules)) { |
| 8666 | Warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8667 | proxy_type_str(curproxy), curproxy->id); |
| 8668 | err_code |= ERR_WARN; |
| 8669 | } |
| 8670 | |
| 8671 | if (!LIST_ISEMPTY(&curproxy->redirect_rules)) { |
| 8672 | Warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 8673 | proxy_type_str(curproxy), curproxy->id); |
| 8674 | err_code |= ERR_WARN; |
| 8675 | } |
| 8676 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 8677 | if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8678 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8679 | "forwardfor", proxy_type_str(curproxy), curproxy->id); |
| 8680 | err_code |= ERR_WARN; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 8681 | curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8682 | } |
| 8683 | |
| 8684 | if (curproxy->options & PR_O_ORGTO) { |
| 8685 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8686 | "originalto", proxy_type_str(curproxy), curproxy->id); |
| 8687 | err_code |= ERR_WARN; |
| 8688 | curproxy->options &= ~PR_O_ORGTO; |
| 8689 | } |
| 8690 | |
| 8691 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 8692 | if (cfg_opts[optnum].mode == PR_MODE_HTTP && |
| 8693 | (curproxy->cap & cfg_opts[optnum].cap) && |
| 8694 | (curproxy->options & cfg_opts[optnum].val)) { |
| 8695 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8696 | cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id); |
| 8697 | err_code |= ERR_WARN; |
| 8698 | curproxy->options &= ~cfg_opts[optnum].val; |
| 8699 | } |
| 8700 | } |
| 8701 | |
| 8702 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 8703 | if (cfg_opts2[optnum].mode == PR_MODE_HTTP && |
| 8704 | (curproxy->cap & cfg_opts2[optnum].cap) && |
| 8705 | (curproxy->options2 & cfg_opts2[optnum].val)) { |
| 8706 | Warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 8707 | cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id); |
| 8708 | err_code |= ERR_WARN; |
| 8709 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 8710 | } |
| 8711 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8712 | |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 8713 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8714 | if (curproxy->conn_src.bind_hdr_occ) { |
| 8715 | curproxy->conn_src.bind_hdr_occ = 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8716 | 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] | 8717 | proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8718 | err_code |= ERR_WARN; |
| 8719 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 8720 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 8721 | } |
| 8722 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8723 | /* |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8724 | * ensure that we're not cross-dressing a TCP server into HTTP. |
| 8725 | */ |
| 8726 | newsrv = curproxy->srv; |
| 8727 | while (newsrv != NULL) { |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 8728 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 8729 | Alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n", |
| 8730 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 8731 | cfgerr++; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8732 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8733 | |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 8734 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) { |
| 8735 | Warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n", |
| 8736 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8737 | err_code |= ERR_WARN; |
| 8738 | } |
| 8739 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 8740 | if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) { |
Willy Tarreau | 82ffa39 | 2013-08-13 17:19:08 +0200 | [diff] [blame] | 8741 | Warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n", |
| 8742 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8743 | err_code |= ERR_WARN; |
| 8744 | } |
| 8745 | |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 8746 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 8747 | if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) { |
| 8748 | newsrv->conn_src.bind_hdr_occ = 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8749 | 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] | 8750 | 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] | 8751 | err_code |= ERR_WARN; |
| 8752 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 8753 | #endif |
Willy Tarreau | 4c18346 | 2017-01-06 12:21:38 +0100 | [diff] [blame] | 8754 | |
| 8755 | if ((curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) { |
| 8756 | if ((curproxy->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CLI || |
| 8757 | (curproxy->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CIP || |
| 8758 | (newsrv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CLI || |
| 8759 | (newsrv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_CIP) { |
| 8760 | Warning("config : %s '%s' : connections to server '%s' use the client's IP address as the source while http-reuse is enabled and allows the same connection to be shared between multiple clients. It is strongly advised to disable 'usesrc' and to use the 'forwardfor' option instead.\n", |
| 8761 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8762 | err_code |= ERR_WARN; |
| 8763 | } |
| 8764 | |
| 8765 | |
| 8766 | if (newsrv->pp_opts & (SRV_PP_V1|SRV_PP_V2)) { |
| 8767 | Warning("config : %s '%s' : connections to server '%s' will have a PROXY protocol header announcing the first client's IP address while http-reuse is enabled and allows the same connection to be shared between multiple clients. It is strongly advised to disable 'send-proxy' and to use the 'forwardfor' option instead.\n", |
| 8768 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
| 8769 | err_code |= ERR_WARN; |
| 8770 | } |
| 8771 | } |
| 8772 | |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 8773 | newsrv = newsrv->next; |
| 8774 | } |
| 8775 | |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8776 | /* check if we have a frontend with "tcp-request content" looking at L7 |
| 8777 | * with no inspect-delay |
| 8778 | */ |
| 8779 | if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) { |
| 8780 | list_for_each_entry(trule, &curproxy->tcp_req.inspect_rules, list) { |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 8781 | if (trule->action == ACT_TCP_CAPTURE && |
Thierry FOURNIER | d0d65ae | 2015-08-04 08:21:12 +0200 | [diff] [blame] | 8782 | !(trule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC)) |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8783 | break; |
Thierry FOURNIER | 0ea5c7f | 2015-08-05 19:05:19 +0200 | [diff] [blame] | 8784 | if ((trule->action >= ACT_ACTION_TRK_SC0 && trule->action <= ACT_ACTION_TRK_SCMAX) && |
Thierry FOURNIER | 5ec63e0 | 2015-08-04 09:09:48 +0200 | [diff] [blame] | 8785 | !(trule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) |
Willy Tarreau | e42bd96 | 2014-09-16 16:21:19 +0200 | [diff] [blame] | 8786 | break; |
| 8787 | } |
| 8788 | |
| 8789 | if (&trule->list != &curproxy->tcp_req.inspect_rules) { |
| 8790 | Warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request" |
| 8791 | " contents were found in a frontend without any 'tcp-request inspect-delay' setting." |
| 8792 | " This means that these rules will randomly find their contents. This can be fixed by" |
| 8793 | " setting the tcp-request inspect-delay.\n", |
| 8794 | proxy_type_str(curproxy), curproxy->id); |
| 8795 | err_code |= ERR_WARN; |
| 8796 | } |
| 8797 | } |
| 8798 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8799 | /* Check filter configuration, if any */ |
| 8800 | cfgerr += flt_check(curproxy); |
| 8801 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8802 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 8803 | if (!curproxy->accept) |
| 8804 | curproxy->accept = frontend_accept; |
Willy Tarreau | 81f9aa3 | 2010-06-01 17:45:26 +0200 | [diff] [blame] | 8805 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8806 | if (curproxy->tcp_req.inspect_delay || |
| 8807 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 8808 | curproxy->fe_req_ana |= AN_REQ_INSPECT_FE; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8809 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 8810 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8811 | 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] | 8812 | 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] | 8813 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8814 | |
| 8815 | /* both TCP and HTTP must check switching rules */ |
| 8816 | curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8817 | |
| 8818 | /* Add filters analyzers if needed */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 8819 | if (!LIST_ISEMPTY(&curproxy->filter_configs)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8820 | curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END; |
| 8821 | curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 8822 | if (curproxy->mode == PR_MODE_HTTP) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8823 | curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS; |
| 8824 | curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 8825 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8826 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8827 | } |
| 8828 | |
| 8829 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 8830 | if (curproxy->tcp_req.inspect_delay || |
| 8831 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
| 8832 | curproxy->be_req_ana |= AN_REQ_INSPECT_BE; |
| 8833 | |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 8834 | if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules)) |
| 8835 | curproxy->be_rsp_ana |= AN_RES_INSPECT; |
| 8836 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 8837 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8838 | 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] | 8839 | 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] | 8840 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8841 | |
| 8842 | /* If the backend does requires RDP cookie persistence, we have to |
| 8843 | * enable the corresponding analyser. |
| 8844 | */ |
| 8845 | if (curproxy->options2 & PR_O2_RDPC_PRST) |
| 8846 | curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8847 | |
| 8848 | /* Add filters analyzers if needed */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 8849 | if (!LIST_ISEMPTY(&curproxy->filter_configs)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8850 | curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END; |
| 8851 | curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 8852 | if (curproxy->mode == PR_MODE_HTTP) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 8853 | curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS; |
| 8854 | curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 8855 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 8856 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8857 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8858 | } |
| 8859 | |
| 8860 | /***********************************************************/ |
| 8861 | /* At this point, target names have already been resolved. */ |
| 8862 | /***********************************************************/ |
| 8863 | |
| 8864 | /* Check multi-process mode compatibility */ |
| 8865 | |
| 8866 | if (global.nbproc > 1 && global.stats_fe) { |
| 8867 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 8868 | unsigned long mask; |
| 8869 | |
| 8870 | mask = nbits(global.nbproc); |
| 8871 | if (global.stats_fe->bind_proc) |
| 8872 | mask &= global.stats_fe->bind_proc; |
| 8873 | |
| 8874 | if (bind_conf->bind_proc) |
| 8875 | mask &= bind_conf->bind_proc; |
| 8876 | |
| 8877 | /* stop here if more than one process is used */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 8878 | if (my_popcountl(mask) > 1) |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8879 | break; |
| 8880 | } |
| 8881 | if (&bind_conf->by_fe != &global.stats_fe->conf.bind) { |
| 8882 | 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"); |
| 8883 | } |
| 8884 | } |
| 8885 | |
| 8886 | /* Make each frontend inherit bind-process from its listeners when not specified. */ |
| 8887 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8888 | if (curproxy->bind_proc) |
| 8889 | continue; |
| 8890 | |
| 8891 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 8892 | unsigned long mask; |
| 8893 | |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8894 | mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8895 | curproxy->bind_proc |= mask; |
| 8896 | } |
| 8897 | |
| 8898 | if (!curproxy->bind_proc) |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8899 | curproxy->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8900 | } |
| 8901 | |
| 8902 | if (global.stats_fe) { |
| 8903 | list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) { |
| 8904 | unsigned long mask; |
| 8905 | |
Cyril Bonté | 0618195 | 2016-02-24 00:14:54 +0100 | [diff] [blame] | 8906 | mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0; |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8907 | global.stats_fe->bind_proc |= mask; |
| 8908 | } |
| 8909 | if (!global.stats_fe->bind_proc) |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8910 | global.stats_fe->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8911 | } |
| 8912 | |
Willy Tarreau | acbe8ab | 2014-10-01 20:50:17 +0200 | [diff] [blame] | 8913 | /* propagate bindings from frontends to backends. Don't do it if there |
| 8914 | * are any fatal errors as we must not call it with unresolved proxies. |
| 8915 | */ |
| 8916 | if (!cfgerr) { |
| 8917 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8918 | if (curproxy->cap & PR_CAP_FE) |
| 8919 | propagate_processes(curproxy, NULL); |
| 8920 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8921 | } |
| 8922 | |
| 8923 | /* Bind each unbound backend to all processes when not specified. */ |
| 8924 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8925 | if (curproxy->bind_proc) |
| 8926 | continue; |
Willy Tarreau | e428b08 | 2015-05-04 21:57:58 +0200 | [diff] [blame] | 8927 | curproxy->bind_proc = nbits(global.nbproc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 8928 | } |
| 8929 | |
| 8930 | /*******************************************************/ |
| 8931 | /* At this step, all proxies have a non-null bind_proc */ |
| 8932 | /*******************************************************/ |
| 8933 | |
| 8934 | /* perform the final checks before creating tasks */ |
| 8935 | |
| 8936 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 8937 | struct listener *listener; |
| 8938 | unsigned int next_id; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 8939 | |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8940 | /* Configure SSL for each bind line. |
| 8941 | * Note: if configuration fails at some point, the ->ctx member |
| 8942 | * remains NULL so that listeners can later detach. |
| 8943 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8944 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 8945 | if (bind_conf->xprt->prepare_bind_conf && |
| 8946 | bind_conf->xprt->prepare_bind_conf(bind_conf) < 0) |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8947 | cfgerr++; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 8948 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 8949 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 8950 | /* adjust this proxy's listeners */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8951 | next_id = 1; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8952 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 8953 | int nbproc; |
| 8954 | |
| 8955 | nbproc = my_popcountl(curproxy->bind_proc & |
Cyril Bonté | 4920d70 | 2016-04-15 07:58:43 +0200 | [diff] [blame] | 8956 | (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) & |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 8957 | nbits(global.nbproc)); |
| 8958 | |
| 8959 | if (!nbproc) /* no intersection between listener and frontend */ |
| 8960 | nbproc = 1; |
| 8961 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8962 | if (!listener->luid) { |
| 8963 | /* listener ID not set, use automatic numbering with first |
| 8964 | * spare entry starting with next_luid. |
| 8965 | */ |
| 8966 | next_id = get_next_id(&curproxy->conf.used_listener_id, next_id); |
| 8967 | listener->conf.id.key = listener->luid = next_id; |
| 8968 | eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8969 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 8970 | next_id++; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 8971 | |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 8972 | /* enable separate counters */ |
| 8973 | if (curproxy->options2 & PR_O2_SOCKSTAT) { |
Willy Tarreau | ae9bea0 | 2016-11-25 14:44:52 +0100 | [diff] [blame] | 8974 | listener->counters = calloc(1, sizeof(*listener->counters)); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8975 | if (!listener->name) |
| 8976 | memprintf(&listener->name, "sock-%d", listener->luid); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 8977 | } |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 8978 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 8979 | if (curproxy->options & PR_O_TCP_NOLING) |
| 8980 | listener->options |= LI_O_NOLINGER; |
Willy Tarreau | 32368ce | 2012-09-06 11:10:55 +0200 | [diff] [blame] | 8981 | if (!listener->maxconn) |
| 8982 | listener->maxconn = curproxy->maxconn; |
| 8983 | if (!listener->backlog) |
| 8984 | listener->backlog = curproxy->backlog; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 8985 | if (!listener->maxaccept) |
| 8986 | listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64; |
| 8987 | |
| 8988 | /* we want to have an optimal behaviour on single process mode to |
| 8989 | * maximize the work at once, but in multi-process we want to keep |
| 8990 | * some fairness between processes, so we target half of the max |
| 8991 | * number of events to be balanced over all the processes the proxy |
| 8992 | * is bound to. Rememeber that maxaccept = -1 must be kept as it is |
| 8993 | * used to disable the limit. |
| 8994 | */ |
| 8995 | if (listener->maxaccept > 0) { |
| 8996 | if (nbproc > 1) |
| 8997 | listener->maxaccept = (listener->maxaccept + 1) / 2; |
| 8998 | listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc; |
| 8999 | } |
| 9000 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 9001 | listener->accept = session_accept_fd; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 9002 | listener->handler = process_stream; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 9003 | listener->analysers |= curproxy->fe_req_ana; |
Willy Tarreau | 10b688f | 2015-03-13 16:43:12 +0100 | [diff] [blame] | 9004 | listener->default_target = curproxy->default_target; |
Willy Tarreau | 3bc1377 | 2008-12-07 11:50:35 +0100 | [diff] [blame] | 9005 | |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 9006 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules)) |
Willy Tarreau | 7d9736f | 2016-10-21 16:34:21 +0200 | [diff] [blame] | 9007 | listener->options |= LI_O_TCP_L4_RULES; |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 9008 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 9009 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules)) |
| 9010 | listener->options |= LI_O_TCP_L5_RULES; |
| 9011 | |
Willy Tarreau | de3041d | 2010-05-31 10:56:17 +0200 | [diff] [blame] | 9012 | if (curproxy->mon_mask.s_addr) |
| 9013 | listener->options |= LI_O_CHK_MONNET; |
| 9014 | |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 9015 | /* smart accept mode is automatic in HTTP mode */ |
| 9016 | if ((curproxy->options2 & PR_O2_SMARTACC) || |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 9017 | ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) && |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 9018 | !(curproxy->no_options2 & PR_O2_SMARTACC))) |
| 9019 | listener->options |= LI_O_NOQUICKACK; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 9020 | } |
| 9021 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 9022 | /* Release unused SSL configs */ |
| 9023 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 9024 | if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf) |
| 9025 | bind_conf->xprt->destroy_bind_conf(bind_conf); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 9026 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 9027 | |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 9028 | if (my_popcountl(curproxy->bind_proc & nbits(global.nbproc)) > 1) { |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 9029 | if (curproxy->uri_auth) { |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 9030 | int count, maxproc = 0; |
| 9031 | |
| 9032 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 9033 | count = my_popcountl(bind_conf->bind_proc); |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 9034 | if (count > maxproc) |
| 9035 | maxproc = count; |
| 9036 | } |
| 9037 | /* backends have 0, frontends have 1 or more */ |
| 9038 | if (maxproc != 1) |
| 9039 | Warning("Proxy '%s': in multi-process mode, stats will be" |
| 9040 | " limited to process assigned to the current request.\n", |
| 9041 | curproxy->id); |
| 9042 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 9043 | if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) { |
| 9044 | Warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n", |
| 9045 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 9046 | } |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 9047 | } |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 9048 | if (!LIST_ISEMPTY(&curproxy->sticking_rules)) { |
| 9049 | Warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n", |
| 9050 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 9051 | } |
| 9052 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 9053 | |
| 9054 | /* create the task associated with the proxy */ |
| 9055 | curproxy->task = task_new(); |
| 9056 | if (curproxy->task) { |
| 9057 | curproxy->task->context = curproxy; |
| 9058 | curproxy->task->process = manage_proxy; |
| 9059 | /* no need to queue, it will be done automatically if some |
| 9060 | * listener gets limited. |
| 9061 | */ |
| 9062 | curproxy->task->expire = TICK_ETERNITY; |
| 9063 | } else { |
| 9064 | Alert("Proxy '%s': no more memory when trying to allocate the management task\n", |
| 9065 | curproxy->id); |
| 9066 | cfgerr++; |
| 9067 | } |
Willy Tarreau | b369a04 | 2014-09-16 13:21:03 +0200 | [diff] [blame] | 9068 | } |
| 9069 | |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 9070 | /* automatically compute fullconn if not set. We must not do it in the |
| 9071 | * loop above because cross-references are not yet fully resolved. |
| 9072 | */ |
| 9073 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 9074 | /* If <fullconn> is not set, let's set it to 10% of the sum of |
| 9075 | * the possible incoming frontend's maxconns. |
| 9076 | */ |
| 9077 | if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) { |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 9078 | /* we have the sum of the maxconns in <total>. We only |
| 9079 | * keep 10% of that sum to set the default fullconn, with |
| 9080 | * a hard minimum of 1 (to avoid a divide by zero). |
| 9081 | */ |
Emeric Brun | 3f78357 | 2017-01-12 11:21:28 +0100 | [diff] [blame] | 9082 | curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10; |
Willy Tarreau | fbb7842 | 2011-06-05 15:38:35 +0200 | [diff] [blame] | 9083 | if (!curproxy->fullconn) |
| 9084 | curproxy->fullconn = 1; |
| 9085 | } |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 9086 | } |
| 9087 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 9088 | /* |
| 9089 | * Recount currently required checks. |
| 9090 | */ |
| 9091 | |
| 9092 | for (curproxy=proxy; curproxy; curproxy=curproxy->next) { |
| 9093 | int optnum; |
| 9094 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 9095 | for (optnum = 0; cfg_opts[optnum].name; optnum++) |
| 9096 | if (curproxy->options & cfg_opts[optnum].val) |
| 9097 | global.last_checks |= cfg_opts[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 9098 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 9099 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) |
| 9100 | if (curproxy->options2 & cfg_opts2[optnum].val) |
| 9101 | global.last_checks |= cfg_opts2[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 9102 | } |
| 9103 | |
Willy Tarreau | 0fca483 | 2015-05-01 19:12:05 +0200 | [diff] [blame] | 9104 | /* compute the required process bindings for the peers */ |
| 9105 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) |
| 9106 | if (curproxy->table.peers.p) |
| 9107 | curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc; |
| 9108 | |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9109 | if (peers) { |
| 9110 | struct peers *curpeers = peers, **last; |
| 9111 | struct peer *p, *pb; |
| 9112 | |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 9113 | /* Remove all peers sections which don't have a valid listener, |
| 9114 | * which are not used by any table, or which are bound to more |
| 9115 | * than one process. |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9116 | */ |
| 9117 | last = &peers; |
| 9118 | while (*last) { |
| 9119 | curpeers = *last; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 9120 | |
| 9121 | if (curpeers->state == PR_STSTOPPED) { |
| 9122 | /* the "disabled" keyword was present */ |
| 9123 | if (curpeers->peers_fe) |
| 9124 | stop_proxy(curpeers->peers_fe); |
| 9125 | curpeers->peers_fe = NULL; |
| 9126 | } |
| 9127 | else if (!curpeers->peers_fe) { |
| 9128 | Warning("Removing incomplete section 'peers %s' (no peer named '%s').\n", |
| 9129 | curpeers->id, localpeer); |
| 9130 | } |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 9131 | else if (my_popcountl(curpeers->peers_fe->bind_proc) != 1) { |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 9132 | /* either it's totally stopped or too much used */ |
| 9133 | if (curpeers->peers_fe->bind_proc) { |
| 9134 | Alert("Peers section '%s': peers referenced by sections " |
Willy Tarreau | 64c5722 | 2015-05-04 21:48:51 +0200 | [diff] [blame] | 9135 | "running in different processes (%d different ones). " |
| 9136 | "Check global.nbproc and all tables' bind-process " |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 9137 | "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc)); |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 9138 | cfgerr++; |
| 9139 | } |
| 9140 | stop_proxy(curpeers->peers_fe); |
| 9141 | curpeers->peers_fe = NULL; |
| 9142 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 9143 | else { |
Emeric Brun | b3971ab | 2015-05-12 18:49:09 +0200 | [diff] [blame] | 9144 | peers_init_sync(curpeers); |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9145 | last = &curpeers->next; |
| 9146 | continue; |
| 9147 | } |
| 9148 | |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 9149 | /* clean what has been detected above */ |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 9150 | p = curpeers->remote; |
| 9151 | while (p) { |
| 9152 | pb = p->next; |
| 9153 | free(p->id); |
| 9154 | free(p); |
| 9155 | p = pb; |
| 9156 | } |
| 9157 | |
| 9158 | /* Destroy and unlink this curpeers section. |
| 9159 | * Note: curpeers is backed up into *last. |
| 9160 | */ |
| 9161 | free(curpeers->id); |
| 9162 | curpeers = curpeers->next; |
| 9163 | free(*last); |
| 9164 | *last = curpeers; |
| 9165 | } |
| 9166 | } |
| 9167 | |
Willy Tarreau | 6866f3f | 2015-05-01 19:09:08 +0200 | [diff] [blame] | 9168 | /* initialize stick-tables on backend capable proxies. This must not |
| 9169 | * be done earlier because the data size may be discovered while parsing |
| 9170 | * other proxies. |
| 9171 | */ |
| 9172 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 9173 | if (curproxy->state == PR_STSTOPPED) |
| 9174 | continue; |
| 9175 | |
| 9176 | if (!stktable_init(&curproxy->table)) { |
| 9177 | Alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id); |
| 9178 | cfgerr++; |
| 9179 | } |
| 9180 | } |
| 9181 | |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 9182 | if (mailers) { |
| 9183 | struct mailers *curmailers = mailers, **last; |
| 9184 | struct mailer *m, *mb; |
| 9185 | |
| 9186 | /* Remove all mailers sections which don't have a valid listener. |
| 9187 | * This can happen when a mailers section is never referenced. |
| 9188 | */ |
| 9189 | last = &mailers; |
| 9190 | while (*last) { |
| 9191 | curmailers = *last; |
| 9192 | if (curmailers->users) { |
| 9193 | last = &curmailers->next; |
| 9194 | continue; |
| 9195 | } |
| 9196 | |
| 9197 | Warning("Removing incomplete section 'mailers %s'.\n", |
| 9198 | curmailers->id); |
| 9199 | |
| 9200 | m = curmailers->mailer_list; |
| 9201 | while (m) { |
| 9202 | mb = m->next; |
| 9203 | free(m->id); |
| 9204 | free(m); |
| 9205 | m = mb; |
| 9206 | } |
| 9207 | |
| 9208 | /* Destroy and unlink this curmailers section. |
| 9209 | * Note: curmailers is backed up into *last. |
| 9210 | */ |
| 9211 | free(curmailers->id); |
| 9212 | curmailers = curmailers->next; |
| 9213 | free(*last); |
| 9214 | *last = curmailers; |
| 9215 | } |
| 9216 | } |
| 9217 | |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 9218 | /* Update server_state_file_name to backend name if backend is supposed to use |
| 9219 | * a server-state file locally defined and none has been provided */ |
| 9220 | for (curproxy = proxy; curproxy; curproxy = curproxy->next) { |
| 9221 | if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL && |
| 9222 | curproxy->server_state_file_name == NULL) |
| 9223 | curproxy->server_state_file_name = strdup(curproxy->id); |
| 9224 | } |
| 9225 | |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 9226 | pool2_hdr_idx = create_pool("hdr_idx", |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 9227 | global.tune.max_http_hdr * sizeof(struct hdr_idx_elem), |
Willy Tarreau | 34eb671 | 2011-10-24 18:15:04 +0200 | [diff] [blame] | 9228 | MEM_F_SHARED); |
| 9229 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 9230 | if (cfgerr > 0) |
| 9231 | err_code |= ERR_ALERT | ERR_FATAL; |
| 9232 | out: |
| 9233 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9234 | } |
| 9235 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 9236 | /* |
| 9237 | * Registers the CFG keyword list <kwl> as a list of valid keywords for next |
| 9238 | * parsing sessions. |
| 9239 | */ |
| 9240 | void cfg_register_keywords(struct cfg_kw_list *kwl) |
| 9241 | { |
| 9242 | LIST_ADDQ(&cfg_keywords.list, &kwl->list); |
| 9243 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9244 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 9245 | /* |
| 9246 | * Unregisters the CFG keyword list <kwl> from the list of valid keywords. |
| 9247 | */ |
| 9248 | void cfg_unregister_keywords(struct cfg_kw_list *kwl) |
| 9249 | { |
| 9250 | LIST_DEL(&kwl->list); |
| 9251 | LIST_INIT(&kwl->list); |
| 9252 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9253 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 9254 | /* this function register new section in the haproxy configuration file. |
| 9255 | * <section_name> is the name of this new section and <section_parser> |
| 9256 | * is the called parser. If two section declaration have the same name, |
| 9257 | * only the first declared is used. |
| 9258 | */ |
| 9259 | int cfg_register_section(char *section_name, |
| 9260 | int (*section_parser)(const char *, int, char **, int)) |
| 9261 | { |
| 9262 | struct cfg_section *cs; |
| 9263 | |
Willy Tarreau | 5e4261b | 2016-05-17 16:16:09 +0200 | [diff] [blame] | 9264 | list_for_each_entry(cs, §ions, list) { |
| 9265 | if (strcmp(cs->section_name, section_name) == 0) { |
| 9266 | Alert("register section '%s': already registered.\n", section_name); |
| 9267 | return 0; |
| 9268 | } |
| 9269 | } |
| 9270 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 9271 | cs = calloc(1, sizeof(*cs)); |
| 9272 | if (!cs) { |
| 9273 | Alert("register section '%s': out of memory.\n", section_name); |
| 9274 | return 0; |
| 9275 | } |
| 9276 | |
| 9277 | cs->section_name = section_name; |
| 9278 | cs->section_parser = section_parser; |
| 9279 | |
| 9280 | LIST_ADDQ(§ions, &cs->list); |
| 9281 | |
| 9282 | return 1; |
| 9283 | } |
| 9284 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9285 | /* |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 9286 | * free all config section entries |
| 9287 | */ |
| 9288 | void cfg_unregister_sections(void) |
| 9289 | { |
| 9290 | struct cfg_section *cs, *ics; |
| 9291 | |
| 9292 | list_for_each_entry_safe(cs, ics, §ions, list) { |
| 9293 | LIST_DEL(&cs->list); |
| 9294 | free(cs); |
| 9295 | } |
| 9296 | } |
| 9297 | |
Christopher Faulet | 7110b40 | 2016-10-26 11:09:44 +0200 | [diff] [blame] | 9298 | void cfg_backup_sections(struct list *backup_sections) |
| 9299 | { |
| 9300 | struct cfg_section *cs, *ics; |
| 9301 | |
| 9302 | list_for_each_entry_safe(cs, ics, §ions, list) { |
| 9303 | LIST_DEL(&cs->list); |
| 9304 | LIST_ADDQ(backup_sections, &cs->list); |
| 9305 | } |
| 9306 | } |
| 9307 | |
| 9308 | void cfg_restore_sections(struct list *backup_sections) |
| 9309 | { |
| 9310 | struct cfg_section *cs, *ics; |
| 9311 | |
| 9312 | list_for_each_entry_safe(cs, ics, backup_sections, list) { |
| 9313 | LIST_DEL(&cs->list); |
| 9314 | LIST_ADDQ(§ions, &cs->list); |
| 9315 | } |
| 9316 | } |
| 9317 | |
Willy Tarreau | 659fbf0 | 2016-05-26 17:55:28 +0200 | [diff] [blame] | 9318 | __attribute__((constructor)) |
| 9319 | static void cfgparse_init(void) |
| 9320 | { |
| 9321 | /* Register internal sections */ |
| 9322 | cfg_register_section("listen", cfg_parse_listen); |
| 9323 | cfg_register_section("frontend", cfg_parse_listen); |
| 9324 | cfg_register_section("backend", cfg_parse_listen); |
| 9325 | cfg_register_section("defaults", cfg_parse_listen); |
| 9326 | cfg_register_section("global", cfg_parse_global); |
| 9327 | cfg_register_section("userlist", cfg_parse_users); |
| 9328 | cfg_register_section("peers", cfg_parse_peers); |
| 9329 | cfg_register_section("mailers", cfg_parse_mailers); |
| 9330 | cfg_register_section("namespace_list", cfg_parse_netns); |
| 9331 | cfg_register_section("resolvers", cfg_parse_resolvers); |
| 9332 | } |
| 9333 | |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 9334 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 9335 | * Local variables: |
| 9336 | * c-indent-level: 8 |
| 9337 | * c-basic-offset: 8 |
| 9338 | * End: |
| 9339 | */ |