blob: ef9630c89d125cb6fb3f1f72acb49b76740e5bba [file] [log] [blame]
Willy Tarreaua84d3742007-05-07 00:36:48 +02001/*
2 * ACL management functions.
3 *
Willy Tarreau0e698542011-09-16 08:32:32 +02004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaua84d3742007-05-07 00:36:48 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreauae8b7962007-06-09 23:10:04 +020013#include <ctype.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020014#include <stdio.h>
15#include <string.h>
16
17#include <common/config.h>
18#include <common/mini-clist.h>
19#include <common/standard.h>
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +010020#include <common/uri_auth.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020021
Willy Tarreau2b5285d2010-05-09 23:45:24 +020022#include <types/global.h>
23
Willy Tarreaua84d3742007-05-07 00:36:48 +020024#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020025#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010026#include <proto/auth.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020027#include <proto/channel.h>
Willy Tarreau404e8ab2009-07-26 19:40:40 +020028#include <proto/log.h>
Willy Tarreau0b1cd942010-05-16 22:18:27 +020029#include <proto/proxy.h>
Willy Tarreaud28c3532012-04-19 19:28:33 +020030#include <proto/stick_table.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020031
Willy Tarreauc4262962010-05-10 23:42:40 +020032#include <ebsttree.h>
33
Willy Tarreaua9802632008-07-25 19:13:19 +020034/* The capabilities of filtering hooks describe the type of information
35 * available to each of them.
36 */
37const unsigned int filt_cap[] = {
38 [ACL_HOOK_REQ_FE_TCP] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY,
Willy Tarreau06457872010-05-23 12:24:38 +020039 [ACL_HOOK_REQ_FE_TCP_CONTENT] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY,
40 [ACL_HOOK_REQ_FE_HTTP_IN] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
41 [ACL_HOOK_REQ_FE_SWITCH] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
42 [ACL_HOOK_REQ_BE_TCP_CONTENT] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
43 [ACL_HOOK_REQ_BE_HTTP_IN] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
44 [ACL_HOOK_REQ_BE_SWITCH] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
45 [ACL_HOOK_REQ_FE_HTTP_OUT] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
46 [ACL_HOOK_REQ_BE_HTTP_OUT] = ACL_USE_TCP4_ANY|ACL_USE_TCP6_ANY|ACL_USE_TCP_ANY|ACL_USE_L6REQ_ANY|ACL_USE_L7REQ_ANY|ACL_USE_HDR_ANY,
Willy Tarreaua9802632008-07-25 19:13:19 +020047
Willy Tarreau06457872010-05-23 12:24:38 +020048 [ACL_HOOK_RTR_BE_TCP_CONTENT] = ACL_USE_REQ_PERMANENT|ACL_USE_REQ_CACHEABLE|ACL_USE_L6RTR_ANY,
49 [ACL_HOOK_RTR_BE_HTTP_IN] = ACL_USE_REQ_PERMANENT|ACL_USE_REQ_CACHEABLE|ACL_USE_L6RTR_ANY|ACL_USE_L7RTR_ANY,
50 [ACL_HOOK_RTR_FE_TCP_CONTENT] = ACL_USE_REQ_PERMANENT|ACL_USE_REQ_CACHEABLE|ACL_USE_L6RTR_ANY|ACL_USE_L7RTR_ANY,
51 [ACL_HOOK_RTR_FE_HTTP_IN] = ACL_USE_REQ_PERMANENT|ACL_USE_REQ_CACHEABLE|ACL_USE_L6RTR_ANY|ACL_USE_L7RTR_ANY,
52 [ACL_HOOK_RTR_BE_HTTP_OUT] = ACL_USE_REQ_PERMANENT|ACL_USE_REQ_CACHEABLE|ACL_USE_L6RTR_ANY|ACL_USE_L7RTR_ANY,
53 [ACL_HOOK_RTR_FE_HTTP_OUT] = ACL_USE_REQ_PERMANENT|ACL_USE_REQ_CACHEABLE|ACL_USE_L6RTR_ANY|ACL_USE_L7RTR_ANY,
Willy Tarreaua9802632008-07-25 19:13:19 +020054};
55
Willy Tarreaua84d3742007-05-07 00:36:48 +020056/* List head of all known ACL keywords */
57static struct acl_kw_list acl_keywords = {
58 .list = LIST_HEAD_INIT(acl_keywords.list)
59};
60
61
Willy Tarreaua5909832007-06-17 20:40:25 +020062/*
63 * These functions are only used for debugging complex configurations.
Willy Tarreaua84d3742007-05-07 00:36:48 +020064 */
Willy Tarreaua5909832007-06-17 20:40:25 +020065
Willy Tarreau58393e12008-07-20 10:39:22 +020066/* force TRUE to be returned at the fetch level */
Willy Tarreaua5909832007-06-17 20:40:25 +020067static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020068acl_fetch_true(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +020069 const struct arg *args, struct sample *smp)
Willy Tarreaua5909832007-06-17 20:40:25 +020070{
Willy Tarreauf853c462012-04-23 18:53:56 +020071 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020072 smp->data.uint = 1;
Willy Tarreaua5909832007-06-17 20:40:25 +020073 return 1;
74}
75
Willy Tarreaub6fb4202008-07-20 11:18:28 +020076/* wait for more data as long as possible, then return TRUE. This should be
77 * used with content inspection.
78 */
79static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020080acl_fetch_wait_end(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +020081 const struct arg *args, struct sample *smp)
Willy Tarreaub6fb4202008-07-20 11:18:28 +020082{
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020083 if (!(opt & SMP_OPT_FINAL)) {
Willy Tarreau37406352012-04-23 16:16:37 +020084 smp->flags |= SMP_F_MAY_CHANGE;
Willy Tarreaub6fb4202008-07-20 11:18:28 +020085 return 0;
86 }
Willy Tarreauf853c462012-04-23 18:53:56 +020087 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020088 smp->data.uint = 1;
Willy Tarreaub6fb4202008-07-20 11:18:28 +020089 return 1;
90}
91
Willy Tarreau58393e12008-07-20 10:39:22 +020092/* force FALSE to be returned at the fetch level */
Willy Tarreaua5909832007-06-17 20:40:25 +020093static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020094acl_fetch_false(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +020095 const struct arg *args, struct sample *smp)
Willy Tarreaua84d3742007-05-07 00:36:48 +020096{
Willy Tarreauf853c462012-04-23 18:53:56 +020097 smp->type = SMP_T_BOOL;
Willy Tarreau197e10a2012-04-23 19:18:42 +020098 smp->data.uint = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +020099 return 1;
100}
101
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200102/* return the number of bytes in the request buffer */
103static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200104acl_fetch_req_len(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200105 const struct arg *args, struct sample *smp)
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200106{
107 if (!l4 || !l4->req)
108 return 0;
109
Willy Tarreauf853c462012-04-23 18:53:56 +0200110 smp->type = SMP_T_UINT;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200111 smp->data.uint = l4->req->buf->i;
Willy Tarreau37406352012-04-23 16:16:37 +0200112 smp->flags = SMP_F_VOLATILE | SMP_F_MAY_CHANGE;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200113 return 1;
114}
115
Emeric Brun38e71762010-09-23 17:59:18 +0200116
117static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200118acl_fetch_ssl_hello_type(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200119 const struct arg *args, struct sample *smp)
Emeric Brun38e71762010-09-23 17:59:18 +0200120{
121 int hs_len;
122 int hs_type, bleft;
Willy Tarreauf332af72012-10-12 23:58:13 +0200123 struct channel *chn;
Emeric Brun38e71762010-09-23 17:59:18 +0200124 const unsigned char *data;
125
126 if (!l4)
127 goto not_ssl_hello;
128
Willy Tarreauf332af72012-10-12 23:58:13 +0200129 chn = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emeric Brun38e71762010-09-23 17:59:18 +0200130
Willy Tarreau9b28e032012-10-12 23:49:43 +0200131 bleft = chn->buf->i;
132 data = (const unsigned char *)chn->buf->p;
Emeric Brun38e71762010-09-23 17:59:18 +0200133
134 if (!bleft)
135 goto too_short;
136
137 if ((*data >= 0x14 && *data <= 0x17) || (*data == 0xFF)) {
138 /* SSLv3 header format */
139 if (bleft < 9)
140 goto too_short;
141
142 /* ssl version 3 */
143 if ((data[1] << 16) + data[2] < 0x00030000)
144 goto not_ssl_hello;
145
146 /* ssl message len must present handshake type and len */
147 if ((data[3] << 8) + data[4] < 4)
148 goto not_ssl_hello;
149
150 /* format introduced with SSLv3 */
151
152 hs_type = (int)data[5];
153 hs_len = ( data[6] << 16 ) + ( data[7] << 8 ) + data[8];
154
155 /* not a full handshake */
156 if (bleft < (9 + hs_len))
157 goto too_short;
158
159 }
160 else {
161 goto not_ssl_hello;
162 }
163
Willy Tarreauf853c462012-04-23 18:53:56 +0200164 smp->type = SMP_T_UINT;
165 smp->data.uint = hs_type;
Willy Tarreau37406352012-04-23 16:16:37 +0200166 smp->flags = SMP_F_VOLATILE;
Emeric Brun38e71762010-09-23 17:59:18 +0200167
168 return 1;
169
170 too_short:
Willy Tarreau37406352012-04-23 16:16:37 +0200171 smp->flags = SMP_F_MAY_CHANGE;
Emeric Brun38e71762010-09-23 17:59:18 +0200172
173 not_ssl_hello:
174
175 return 0;
176}
177
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200178/* Return the version of the SSL protocol in the request. It supports both
179 * SSLv3 (TLSv1) header format for any message, and SSLv2 header format for
180 * the hello message. The SSLv3 format is described in RFC 2246 p49, and the
181 * SSLv2 format is described here, and completed p67 of RFC 2246 :
182 * http://wp.netscape.com/eng/security/SSL_2.html
183 *
184 * Note: this decoder only works with non-wrapping data.
185 */
186static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200187acl_fetch_req_ssl_ver(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200188 const struct arg *args, struct sample *smp)
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200189{
190 int version, bleft, msg_len;
191 const unsigned char *data;
192
193 if (!l4 || !l4->req)
194 return 0;
195
196 msg_len = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200197 bleft = l4->req->buf->i;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200198 if (!bleft)
199 goto too_short;
200
Willy Tarreau9b28e032012-10-12 23:49:43 +0200201 data = (const unsigned char *)l4->req->buf->p;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200202 if ((*data >= 0x14 && *data <= 0x17) || (*data == 0xFF)) {
203 /* SSLv3 header format */
204 if (bleft < 5)
205 goto too_short;
206
207 version = (data[1] << 16) + data[2]; /* version: major, minor */
208 msg_len = (data[3] << 8) + data[4]; /* record length */
209
210 /* format introduced with SSLv3 */
211 if (version < 0x00030000)
212 goto not_ssl;
213
214 /* message length between 1 and 2^14 + 2048 */
215 if (msg_len < 1 || msg_len > ((1<<14) + 2048))
216 goto not_ssl;
217
218 bleft -= 5; data += 5;
219 } else {
220 /* SSLv2 header format, only supported for hello (msg type 1) */
221 int rlen, plen, cilen, silen, chlen;
222
223 if (*data & 0x80) {
224 if (bleft < 3)
225 goto too_short;
226 /* short header format : 15 bits for length */
227 rlen = ((data[0] & 0x7F) << 8) | data[1];
228 plen = 0;
229 bleft -= 2; data += 2;
230 } else {
231 if (bleft < 4)
232 goto too_short;
233 /* long header format : 14 bits for length + pad length */
234 rlen = ((data[0] & 0x3F) << 8) | data[1];
235 plen = data[2];
236 bleft -= 3; data += 2;
237 }
238
239 if (*data != 0x01)
240 goto not_ssl;
241 bleft--; data++;
242
243 if (bleft < 8)
244 goto too_short;
245 version = (data[0] << 16) + data[1]; /* version: major, minor */
246 cilen = (data[2] << 8) + data[3]; /* cipher len, multiple of 3 */
247 silen = (data[4] << 8) + data[5]; /* session_id_len: 0 or 16 */
248 chlen = (data[6] << 8) + data[7]; /* 16<=challenge length<=32 */
249
250 bleft -= 8; data += 8;
251 if (cilen % 3 != 0)
252 goto not_ssl;
253 if (silen && silen != 16)
254 goto not_ssl;
255 if (chlen < 16 || chlen > 32)
256 goto not_ssl;
257 if (rlen != 9 + cilen + silen + chlen)
258 goto not_ssl;
259
260 /* focus on the remaining data length */
261 msg_len = cilen + silen + chlen + plen;
262 }
263 /* We could recursively check that the buffer ends exactly on an SSL
264 * fragment boundary and that a possible next segment is still SSL,
265 * but that's a bit pointless. However, we could still check that
266 * all the part of the request which fits in a buffer is already
267 * there.
268 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200269 if (msg_len > buffer_max_len(l4->req) + l4->req->buf->data - l4->req->buf->p)
270 msg_len = buffer_max_len(l4->req) + l4->req->buf->data - l4->req->buf->p;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200271
272 if (bleft < msg_len)
273 goto too_short;
274
275 /* OK that's enough. We have at least the whole message, and we have
276 * the protocol version.
277 */
Willy Tarreauf853c462012-04-23 18:53:56 +0200278 smp->type = SMP_T_UINT;
279 smp->data.uint = version;
Willy Tarreau37406352012-04-23 16:16:37 +0200280 smp->flags = SMP_F_VOLATILE;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200281 return 1;
282
283 too_short:
Willy Tarreau37406352012-04-23 16:16:37 +0200284 smp->flags = SMP_F_MAY_CHANGE;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200285 not_ssl:
286 return 0;
287}
288
Willy Tarreaub6672b52011-12-12 17:23:41 +0100289/* Try to extract the Server Name Indication that may be presented in a TLS
290 * client hello handshake message. The format of the message is the following
291 * (cf RFC5246 + RFC6066) :
292 * TLS frame :
293 * - uint8 type = 0x16 (Handshake)
294 * - uint16 version >= 0x0301 (TLSv1)
295 * - uint16 length (frame length)
296 * - TLS handshake :
297 * - uint8 msg_type = 0x01 (ClientHello)
298 * - uint24 length (handshake message length)
299 * - ClientHello :
300 * - uint16 client_version >= 0x0301 (TLSv1)
Willy Tarreaud017f112012-04-09 09:24:11 +0200301 * - uint8 Random[32] (4 first ones are timestamp)
Willy Tarreaub6672b52011-12-12 17:23:41 +0100302 * - SessionID :
303 * - uint8 session_id_len (0..32) (SessionID len in bytes)
304 * - uint8 session_id[session_id_len]
305 * - CipherSuite :
306 * - uint16 cipher_len >= 2 (Cipher length in bytes)
307 * - uint16 ciphers[cipher_len/2]
308 * - CompressionMethod :
309 * - uint8 compression_len >= 1 (# of supported methods)
310 * - uint8 compression_methods[compression_len]
311 * - optional client_extension_len (in bytes)
312 * - optional sequence of ClientHelloExtensions (as many bytes as above):
313 * - uint16 extension_type = 0 for server_name
314 * - uint16 extension_len
315 * - opaque extension_data[extension_len]
316 * - uint16 server_name_list_len (# of bytes here)
317 * - opaque server_names[server_name_list_len bytes]
318 * - uint8 name_type = 0 for host_name
319 * - uint16 name_len
320 * - opaque hostname[name_len bytes]
321 */
322static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200323acl_fetch_ssl_hello_sni(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200324 const struct arg *args, struct sample *smp)
Willy Tarreaub6672b52011-12-12 17:23:41 +0100325{
326 int hs_len, ext_len, bleft;
Willy Tarreauf332af72012-10-12 23:58:13 +0200327 struct channel *chn;
Willy Tarreaub6672b52011-12-12 17:23:41 +0100328 unsigned char *data;
329
330 if (!l4)
331 goto not_ssl_hello;
332
Willy Tarreauf332af72012-10-12 23:58:13 +0200333 chn = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Willy Tarreaub6672b52011-12-12 17:23:41 +0100334
Willy Tarreau9b28e032012-10-12 23:49:43 +0200335 bleft = chn->buf->i;
336 data = (unsigned char *)chn->buf->p;
Willy Tarreaub6672b52011-12-12 17:23:41 +0100337
338 /* Check for SSL/TLS Handshake */
339 if (!bleft)
340 goto too_short;
341 if (*data != 0x16)
342 goto not_ssl_hello;
343
344 /* Check for TLSv1 or later (SSL version >= 3.1) */
345 if (bleft < 3)
346 goto too_short;
347 if (data[1] < 0x03 || data[2] < 0x01)
348 goto not_ssl_hello;
349
350 if (bleft < 5)
351 goto too_short;
352 hs_len = (data[3] << 8) + data[4];
353 if (hs_len < 1 + 3 + 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
354 goto not_ssl_hello; /* too short to have an extension */
355
356 data += 5; /* enter TLS handshake */
357 bleft -= 5;
358
359 /* Check for a complete client hello starting at <data> */
360 if (bleft < 1)
361 goto too_short;
362 if (data[0] != 0x01) /* msg_type = Client Hello */
363 goto not_ssl_hello;
364
365 /* Check the Hello's length */
366 if (bleft < 4)
367 goto too_short;
368 hs_len = (data[1] << 16) + (data[2] << 8) + data[3];
369 if (hs_len < 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
370 goto not_ssl_hello; /* too short to have an extension */
371
372 /* We want the full handshake here */
373 if (bleft < hs_len)
374 goto too_short;
375
376 data += 4;
377 /* Start of the ClientHello message */
378 if (data[0] < 0x03 || data[1] < 0x01) /* TLSv1 minimum */
379 goto not_ssl_hello;
380
Willy Tarreaud017f112012-04-09 09:24:11 +0200381 ext_len = data[34]; /* session_id_len */
Willy Tarreaub6672b52011-12-12 17:23:41 +0100382 if (ext_len > 32 || ext_len > (hs_len - 35)) /* check for correct session_id len */
383 goto not_ssl_hello;
384
385 /* Jump to cipher suite */
386 hs_len -= 35 + ext_len;
387 data += 35 + ext_len;
388
389 if (hs_len < 4 || /* minimum one cipher */
390 (ext_len = (data[0] << 8) + data[1]) < 2 || /* minimum 2 bytes for a cipher */
391 ext_len > hs_len)
392 goto not_ssl_hello;
393
394 /* Jump to the compression methods */
395 hs_len -= 2 + ext_len;
396 data += 2 + ext_len;
397
398 if (hs_len < 2 || /* minimum one compression method */
399 data[0] < 1 || data[0] > hs_len) /* minimum 1 bytes for a method */
400 goto not_ssl_hello;
401
402 /* Jump to the extensions */
403 hs_len -= 1 + data[0];
404 data += 1 + data[0];
405
406 if (hs_len < 2 || /* minimum one extension list length */
407 (ext_len = (data[0] << 8) + data[1]) > hs_len - 2) /* list too long */
408 goto not_ssl_hello;
409
410 hs_len = ext_len; /* limit ourselves to the extension length */
411 data += 2;
412
413 while (hs_len >= 4) {
414 int ext_type, name_type, srv_len, name_len;
415
416 ext_type = (data[0] << 8) + data[1];
417 ext_len = (data[2] << 8) + data[3];
418
419 if (ext_len > hs_len - 4) /* Extension too long */
420 goto not_ssl_hello;
421
422 if (ext_type == 0) { /* Server name */
423 if (ext_len < 2) /* need one list length */
424 goto not_ssl_hello;
425
426 srv_len = (data[4] << 8) + data[5];
427 if (srv_len < 4 || srv_len > hs_len - 6)
428 goto not_ssl_hello; /* at least 4 bytes per server name */
429
430 name_type = data[6];
431 name_len = (data[7] << 8) + data[8];
432
433 if (name_type == 0) { /* hostname */
Willy Tarreauf853c462012-04-23 18:53:56 +0200434 smp->type = SMP_T_CSTR;
435 smp->data.str.str = (char *)data + 9;
436 smp->data.str.len = name_len;
Willy Tarreau37406352012-04-23 16:16:37 +0200437 smp->flags = SMP_F_VOLATILE;
Willy Tarreaub6672b52011-12-12 17:23:41 +0100438 return 1;
439 }
440 }
441
442 hs_len -= 4 + ext_len;
443 data += 4 + ext_len;
444 }
445 /* server name not found */
446 goto not_ssl_hello;
447
448 too_short:
Willy Tarreau37406352012-04-23 16:16:37 +0200449 smp->flags = SMP_F_MAY_CHANGE;
Willy Tarreaub6672b52011-12-12 17:23:41 +0100450
451 not_ssl_hello:
452
453 return 0;
454}
455
Willy Tarreau58393e12008-07-20 10:39:22 +0200456/*
457 * These functions are exported and may be used by any other component.
458 */
459
460/* ignore the current line */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200461int acl_parse_nothing(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua5909832007-06-17 20:40:25 +0200462{
Willy Tarreau58393e12008-07-20 10:39:22 +0200463 return 1;
464}
465
466/* always fake a data retrieval */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200467int acl_fetch_nothing(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200468 const struct arg *args, struct sample *smp)
Willy Tarreau58393e12008-07-20 10:39:22 +0200469{
470 return 1;
Willy Tarreaua5909832007-06-17 20:40:25 +0200471}
472
473/* always return false */
Willy Tarreau37406352012-04-23 16:16:37 +0200474int acl_match_nothing(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua5909832007-06-17 20:40:25 +0200475{
Willy Tarreau11382812008-07-09 16:18:21 +0200476 return ACL_PAT_FAIL;
Willy Tarreaua5909832007-06-17 20:40:25 +0200477}
478
479
Willy Tarreaua84d3742007-05-07 00:36:48 +0200480/* NB: For two strings to be identical, it is required that their lengths match */
Willy Tarreau37406352012-04-23 16:16:37 +0200481int acl_match_str(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200482{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200483 int icase;
484
Willy Tarreauf853c462012-04-23 18:53:56 +0200485 if (pattern->len != smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200486 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200487
488 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200489 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) == 0) ||
490 (!icase && strncmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) == 0))
Willy Tarreau11382812008-07-09 16:18:21 +0200491 return ACL_PAT_PASS;
492 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200493}
494
Emeric Brun07ca4962012-10-17 13:38:19 +0200495/* NB: For two binaries buf to be identical, it is required that their lengths match */
496int acl_match_bin(struct sample *smp, struct acl_pattern *pattern)
497{
498 if (pattern->len != smp->data.str.len)
499 return ACL_PAT_FAIL;
500
501 if (memcmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) == 0)
502 return ACL_PAT_PASS;
503 return ACL_PAT_FAIL;
504}
505
Willy Tarreauc4262962010-05-10 23:42:40 +0200506/* Lookup a string in the expression's pattern tree. The node is returned if it
507 * exists, otherwise NULL.
508 */
Willy Tarreau37406352012-04-23 16:16:37 +0200509static void *acl_lookup_str(struct sample *smp, struct acl_expr *expr)
Willy Tarreauc4262962010-05-10 23:42:40 +0200510{
511 /* data are stored in a tree */
512 struct ebmb_node *node;
513 char prev;
514
515 /* we may have to force a trailing zero on the test pattern */
Willy Tarreauf853c462012-04-23 18:53:56 +0200516 prev = smp->data.str.str[smp->data.str.len];
Willy Tarreauc4262962010-05-10 23:42:40 +0200517 if (prev)
Willy Tarreauf853c462012-04-23 18:53:56 +0200518 smp->data.str.str[smp->data.str.len] = '\0';
519 node = ebst_lookup(&expr->pattern_tree, smp->data.str.str);
Willy Tarreauc4262962010-05-10 23:42:40 +0200520 if (prev)
Willy Tarreauf853c462012-04-23 18:53:56 +0200521 smp->data.str.str[smp->data.str.len] = prev;
Willy Tarreauc4262962010-05-10 23:42:40 +0200522 return node;
523}
524
Willy Tarreau21e5b0e2012-04-23 19:25:44 +0200525/* Executes a regex. It temporarily changes the data to add a trailing zero,
526 * and restores the previous character when leaving.
Willy Tarreauf3d25982007-05-08 22:45:09 +0200527 */
Willy Tarreau37406352012-04-23 16:16:37 +0200528int acl_match_reg(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreauf3d25982007-05-08 22:45:09 +0200529{
530 char old_char;
531 int ret;
532
Willy Tarreauf853c462012-04-23 18:53:56 +0200533 old_char = smp->data.str.str[smp->data.str.len];
534 smp->data.str.str[smp->data.str.len] = 0;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200535
Willy Tarreauf853c462012-04-23 18:53:56 +0200536 if (regexec(pattern->ptr.reg, smp->data.str.str, 0, NULL, 0) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200537 ret = ACL_PAT_PASS;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200538 else
Willy Tarreau11382812008-07-09 16:18:21 +0200539 ret = ACL_PAT_FAIL;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200540
Willy Tarreauf853c462012-04-23 18:53:56 +0200541 smp->data.str.str[smp->data.str.len] = old_char;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200542 return ret;
543}
544
Willy Tarreaua84d3742007-05-07 00:36:48 +0200545/* Checks that the pattern matches the beginning of the tested string. */
Willy Tarreau37406352012-04-23 16:16:37 +0200546int acl_match_beg(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200547{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200548 int icase;
549
Willy Tarreauf853c462012-04-23 18:53:56 +0200550 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200551 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200552
553 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200554 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str, pattern->len) != 0) ||
555 (!icase && strncmp(pattern->ptr.str, smp->data.str.str, pattern->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +0200556 return ACL_PAT_FAIL;
557 return ACL_PAT_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200558}
559
560/* Checks that the pattern matches the end of the tested string. */
Willy Tarreau37406352012-04-23 16:16:37 +0200561int acl_match_end(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200562{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200563 int icase;
564
Willy Tarreauf853c462012-04-23 18:53:56 +0200565 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200566 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200567 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200568 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str + smp->data.str.len - pattern->len, pattern->len) != 0) ||
569 (!icase && strncmp(pattern->ptr.str, smp->data.str.str + smp->data.str.len - pattern->len, pattern->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +0200570 return ACL_PAT_FAIL;
571 return ACL_PAT_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200572}
573
574/* Checks that the pattern is included inside the tested string.
575 * NB: Suboptimal, should be rewritten using a Boyer-Moore method.
576 */
Willy Tarreau37406352012-04-23 16:16:37 +0200577int acl_match_sub(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200578{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200579 int icase;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200580 char *end;
581 char *c;
582
Willy Tarreauf853c462012-04-23 18:53:56 +0200583 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200584 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200585
Willy Tarreauf853c462012-04-23 18:53:56 +0200586 end = smp->data.str.str + smp->data.str.len - pattern->len;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200587 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
588 if (icase) {
Willy Tarreauf853c462012-04-23 18:53:56 +0200589 for (c = smp->data.str.str; c <= end; c++) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200590 if (tolower(*c) != tolower(*pattern->ptr.str))
591 continue;
592 if (strncasecmp(pattern->ptr.str, c, pattern->len) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200593 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200594 }
595 } else {
Willy Tarreauf853c462012-04-23 18:53:56 +0200596 for (c = smp->data.str.str; c <= end; c++) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200597 if (*c != *pattern->ptr.str)
598 continue;
599 if (strncmp(pattern->ptr.str, c, pattern->len) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200600 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200601 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200602 }
Willy Tarreau11382812008-07-09 16:18:21 +0200603 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200604}
605
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200606/* Background: Fast way to find a zero byte in a word
607 * http://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
608 * hasZeroByte = (v - 0x01010101UL) & ~v & 0x80808080UL;
609 *
610 * To look for 4 different byte values, xor the word with those bytes and
611 * then check for zero bytes:
612 *
613 * v = (((unsigned char)c * 0x1010101U) ^ delimiter)
614 * where <delimiter> is the 4 byte values to look for (as an uint)
615 * and <c> is the character that is being tested
616 */
617static inline unsigned int is_delimiter(unsigned char c, unsigned int mask)
618{
619 mask ^= (c * 0x01010101); /* propagate the char to all 4 bytes */
620 return (mask - 0x01010101) & ~mask & 0x80808080U;
621}
622
623static inline unsigned int make_4delim(unsigned char d1, unsigned char d2, unsigned char d3, unsigned char d4)
624{
625 return d1 << 24 | d2 << 16 | d3 << 8 | d4;
626}
627
Willy Tarreaua84d3742007-05-07 00:36:48 +0200628/* This one is used by other real functions. It checks that the pattern is
629 * included inside the tested string, but enclosed between the specified
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200630 * delimiters or at the beginning or end of the string. The delimiters are
631 * provided as an unsigned int made by make_4delim() and match up to 4 different
632 * delimiters. Delimiters are stripped at the beginning and end of the pattern.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200633 */
Willy Tarreau37406352012-04-23 16:16:37 +0200634static int match_word(struct sample *smp, struct acl_pattern *pattern, unsigned int delimiters)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200635{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200636 int may_match, icase;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200637 char *c, *end;
638 char *ps;
639 int pl;
640
641 pl = pattern->len;
642 ps = pattern->ptr.str;
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200643
644 while (pl > 0 && is_delimiter(*ps, delimiters)) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200645 pl--;
646 ps++;
647 }
648
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200649 while (pl > 0 && is_delimiter(ps[pl - 1], delimiters))
Willy Tarreaua84d3742007-05-07 00:36:48 +0200650 pl--;
651
Willy Tarreauf853c462012-04-23 18:53:56 +0200652 if (pl > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200653 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200654
655 may_match = 1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200656 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200657 end = smp->data.str.str + smp->data.str.len - pl;
658 for (c = smp->data.str.str; c <= end; c++) {
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200659 if (is_delimiter(*c, delimiters)) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200660 may_match = 1;
661 continue;
662 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200663
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200664 if (!may_match)
665 continue;
666
667 if (icase) {
668 if ((tolower(*c) == tolower(*ps)) &&
669 (strncasecmp(ps, c, pl) == 0) &&
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200670 (c == end || is_delimiter(c[pl], delimiters)))
Willy Tarreau11382812008-07-09 16:18:21 +0200671 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200672 } else {
673 if ((*c == *ps) &&
674 (strncmp(ps, c, pl) == 0) &&
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200675 (c == end || is_delimiter(c[pl], delimiters)))
Willy Tarreau11382812008-07-09 16:18:21 +0200676 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200677 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200678 may_match = 0;
679 }
Willy Tarreau11382812008-07-09 16:18:21 +0200680 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200681}
682
683/* Checks that the pattern is included inside the tested string, but enclosed
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200684 * between the delimiters '?' or '/' or at the beginning or end of the string.
685 * Delimiters at the beginning or end of the pattern are ignored.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200686 */
Willy Tarreau37406352012-04-23 16:16:37 +0200687int acl_match_dir(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200688{
Willy Tarreau37406352012-04-23 16:16:37 +0200689 return match_word(smp, pattern, make_4delim('/', '?', '?', '?'));
Willy Tarreaua84d3742007-05-07 00:36:48 +0200690}
691
692/* Checks that the pattern is included inside the tested string, but enclosed
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200693 * between the delmiters '/', '?', '.' or ":" or at the beginning or end of
694 * the string. Delimiters at the beginning or end of the pattern are ignored.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200695 */
Willy Tarreau37406352012-04-23 16:16:37 +0200696int acl_match_dom(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200697{
Willy Tarreau37406352012-04-23 16:16:37 +0200698 return match_word(smp, pattern, make_4delim('/', '?', '.', ':'));
Willy Tarreaua84d3742007-05-07 00:36:48 +0200699}
700
701/* Checks that the integer in <test> is included between min and max */
Willy Tarreau37406352012-04-23 16:16:37 +0200702int acl_match_int(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200703{
Willy Tarreauf853c462012-04-23 18:53:56 +0200704 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.uint) &&
705 (!pattern->val.range.max_set || smp->data.uint <= pattern->val.range.max))
Willy Tarreau11382812008-07-09 16:18:21 +0200706 return ACL_PAT_PASS;
707 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200708}
709
Willy Tarreau0e698542011-09-16 08:32:32 +0200710/* Checks that the length of the pattern in <test> is included between min and max */
Willy Tarreau37406352012-04-23 16:16:37 +0200711int acl_match_len(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreau0e698542011-09-16 08:32:32 +0200712{
Willy Tarreauf853c462012-04-23 18:53:56 +0200713 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.str.len) &&
714 (!pattern->val.range.max_set || smp->data.str.len <= pattern->val.range.max))
Willy Tarreau0e698542011-09-16 08:32:32 +0200715 return ACL_PAT_PASS;
716 return ACL_PAT_FAIL;
717}
718
Willy Tarreau37406352012-04-23 16:16:37 +0200719int acl_match_ip(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua67fad92007-05-08 19:50:09 +0200720{
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200721 unsigned int v4; /* in network byte order */
722 struct in6_addr *v6;
723 int bits, pos;
724 struct in6_addr tmp6;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200725
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200726 if (pattern->type == SMP_T_IPV4) {
727 if (smp->type == SMP_T_IPV4) {
728 v4 = smp->data.ipv4.s_addr;
729 }
730 else if (smp->type == SMP_T_IPV6) {
731 /* v4 match on a V6 sample. We want to check at least for
732 * the following forms :
733 * - ::ffff:ip:v4 (ipv4 mapped)
734 * - ::0000:ip:v4 (old ipv4 mapped)
735 * - 2002:ip:v4:: (6to4)
736 */
737 if (*(uint32_t*)&smp->data.ipv6.s6_addr[0] == 0 &&
738 *(uint32_t*)&smp->data.ipv6.s6_addr[4] == 0 &&
739 (*(uint32_t*)&smp->data.ipv6.s6_addr[8] == 0 ||
740 *(uint32_t*)&smp->data.ipv6.s6_addr[8] == htonl(0xFFFF))) {
741 v4 = *(uint32_t*)&smp->data.ipv6.s6_addr[12];
742 }
743 else if (*(uint16_t*)&smp->data.ipv6.s6_addr[0] == htons(0x2002)) {
744 v4 = htonl((ntohs(*(uint16_t*)&smp->data.ipv6.s6_addr[2]) << 16) +
745 ntohs(*(uint16_t*)&smp->data.ipv6.s6_addr[4]));
746 }
747 else
748 return ACL_PAT_FAIL;
749 }
750 else
751 return ACL_PAT_FAIL;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200752
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200753 if (((v4 ^ pattern->val.ipv4.addr.s_addr) & pattern->val.ipv4.mask.s_addr) == 0)
754 return ACL_PAT_PASS;
755 else
756 return ACL_PAT_FAIL;
757 }
758 else if (pattern->type == SMP_T_IPV6) {
759 if (smp->type == SMP_T_IPV4) {
760 /* Convert the IPv4 sample address to IPv4 with the
761 * mapping method using the ::ffff: prefix.
762 */
763 memset(&tmp6, 0, 10);
764 *(uint16_t*)&tmp6.s6_addr[10] = htons(0xffff);
765 *(uint32_t*)&tmp6.s6_addr[12] = smp->data.ipv4.s_addr;
766 v6 = &tmp6;
767 }
768 else if (smp->type == SMP_T_IPV6) {
769 v6 = &smp->data.ipv6;
770 }
771 else {
772 return ACL_PAT_FAIL;
773 }
774
775 bits = pattern->val.ipv6.mask;
776 for (pos = 0; bits > 0; pos += 4, bits -= 32) {
777 v4 = *(uint32_t*)&v6->s6_addr[pos] ^ *(uint32_t*)&pattern->val.ipv6.addr.s6_addr[pos];
778 if (bits < 32)
Cyril Bonté4c01beb2012-10-23 21:28:31 +0200779 v4 &= htonl((~0U) << (32-bits));
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200780 if (v4)
781 return ACL_PAT_FAIL;
782 }
Willy Tarreau11382812008-07-09 16:18:21 +0200783 return ACL_PAT_PASS;
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200784 }
Willy Tarreau11382812008-07-09 16:18:21 +0200785 return ACL_PAT_FAIL;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200786}
787
Willy Tarreaub337b532010-05-13 20:03:41 +0200788/* Lookup an IPv4 address in the expression's pattern tree using the longest
789 * match method. The node is returned if it exists, otherwise NULL.
790 */
Willy Tarreau37406352012-04-23 16:16:37 +0200791static void *acl_lookup_ip(struct sample *smp, struct acl_expr *expr)
Willy Tarreaub337b532010-05-13 20:03:41 +0200792{
793 struct in_addr *s;
794
Willy Tarreauf853c462012-04-23 18:53:56 +0200795 if (smp->type != SMP_T_IPV4)
Willy Tarreaub337b532010-05-13 20:03:41 +0200796 return ACL_PAT_FAIL;
797
Willy Tarreauf853c462012-04-23 18:53:56 +0200798 s = &smp->data.ipv4;
Willy Tarreaub337b532010-05-13 20:03:41 +0200799 return ebmb_lookup_longest(&expr->pattern_tree, &s->s_addr);
800}
801
Willy Tarreaua84d3742007-05-07 00:36:48 +0200802/* Parse a string. It is allocated and duplicated. */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200803int acl_parse_str(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200804{
805 int len;
806
Willy Tarreauae8b7962007-06-09 23:10:04 +0200807 len = strlen(*text);
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200808 pattern->type = SMP_T_CSTR;
Willy Tarreauc4262962010-05-10 23:42:40 +0200809
810 if (pattern->flags & ACL_PAT_F_TREE_OK) {
811 /* we're allowed to put the data in a tree whose root is pointed
812 * to by val.tree.
813 */
814 struct ebmb_node *node;
815
816 node = calloc(1, sizeof(*node) + len + 1);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200817 if (!node) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200818 memprintf(err, "out of memory while loading string pattern");
Willy Tarreauc4262962010-05-10 23:42:40 +0200819 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200820 }
Willy Tarreauc4262962010-05-10 23:42:40 +0200821 memcpy(node->key, *text, len + 1);
822 if (ebst_insert(pattern->val.tree, node) != node)
823 free(node); /* was a duplicate */
824 pattern->flags |= ACL_PAT_F_TREE; /* this pattern now contains a tree */
825 return 1;
826 }
827
Willy Tarreauae8b7962007-06-09 23:10:04 +0200828 pattern->ptr.str = strdup(*text);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200829 if (!pattern->ptr.str) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200830 memprintf(err, "out of memory while loading string pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200831 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200832 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200833 pattern->len = len;
834 return 1;
835}
836
Emeric Brun07ca4962012-10-17 13:38:19 +0200837/* Parse a binary written in hexa. It is allocated. */
838int acl_parse_bin(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
839{
840 int len;
841 const char *p = *text;
842 int i,j;
843
844 len = strlen(p);
845 if (len%2) {
846 memprintf(err, "an even number of hex digit is expected");
847 return 0;
848 }
849
850 pattern->type = SMP_T_CBIN;
851 pattern->len = len >> 1;
852 pattern->ptr.str = malloc(pattern->len);
853 if (!pattern->ptr.str) {
854 memprintf(err, "out of memory while loading string pattern");
855 return 0;
856 }
857
858 i = j = 0;
859 while (j < pattern->len) {
860 if (!ishex(p[i++]))
861 goto bad_input;
862 if (!ishex(p[i++]))
863 goto bad_input;
864 pattern->ptr.str[j++] = (hex2i(p[i-2]) << 4) + hex2i(p[i-1]);
865 }
866 return 1;
867
868bad_input:
869 memprintf(err, "an hex digit is expected (found '%c')", p[i-1]);
870 free(pattern->ptr.str);
871 return 0;
872}
873
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100874/* Parse and concatenate all further strings into one. */
875int
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200876acl_parse_strcat(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100877{
878
879 int len = 0, i;
880 char *s;
881
882 for (i = 0; *text[i]; i++)
883 len += strlen(text[i])+1;
884
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200885 pattern->type = SMP_T_CSTR;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100886 pattern->ptr.str = s = calloc(1, len);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200887 if (!pattern->ptr.str) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200888 memprintf(err, "out of memory while loading pattern");
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100889 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200890 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100891
892 for (i = 0; *text[i]; i++)
893 s += sprintf(s, i?" %s":"%s", text[i]);
894
895 pattern->len = len;
896
897 return i;
898}
899
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200900/* Free data allocated by acl_parse_reg */
Willy Tarreau37406352012-04-23 16:16:37 +0200901static void acl_free_reg(void *ptr)
902{
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200903 regfree((regex_t *)ptr);
904}
905
Willy Tarreauf3d25982007-05-08 22:45:09 +0200906/* Parse a regex. It is allocated. */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200907int acl_parse_reg(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreauf3d25982007-05-08 22:45:09 +0200908{
909 regex_t *preg;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200910 int icase;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200911
912 preg = calloc(1, sizeof(regex_t));
913
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200914 if (!preg) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200915 memprintf(err, "out of memory while loading pattern");
Willy Tarreauf3d25982007-05-08 22:45:09 +0200916 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200917 }
Willy Tarreauf3d25982007-05-08 22:45:09 +0200918
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200919 icase = (pattern->flags & ACL_PAT_F_IGNORE_CASE) ? REG_ICASE : 0;
920 if (regcomp(preg, *text, REG_EXTENDED | REG_NOSUB | icase) != 0) {
Willy Tarreauf3d25982007-05-08 22:45:09 +0200921 free(preg);
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200922 memprintf(err, "regex '%s' is invalid", *text);
Willy Tarreauf3d25982007-05-08 22:45:09 +0200923 return 0;
924 }
925
926 pattern->ptr.reg = preg;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200927 pattern->freeptrbuf = &acl_free_reg;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200928 return 1;
929}
930
Willy Tarreauae8b7962007-06-09 23:10:04 +0200931/* Parse a range of positive integers delimited by either ':' or '-'. If only
932 * one integer is read, it is set as both min and max. An operator may be
933 * specified as the prefix, among this list of 5 :
934 *
935 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
936 *
937 * The default operator is "eq". It supports range matching. Ranges are
938 * rejected for other operators. The operator may be changed at any time.
939 * The operator is stored in the 'opaque' argument.
940 *
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200941 * If err is non-NULL, an error message will be returned there on errors and
942 * the caller will have to free it.
943 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200944 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200945int acl_parse_int(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200946{
Willy Tarreauae8b7962007-06-09 23:10:04 +0200947 signed long long i;
948 unsigned int j, last, skip = 0;
949 const char *ptr = *text;
950
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200951 pattern->type = SMP_T_UINT;
Willy Tarreau8f8e6452007-06-17 21:51:38 +0200952 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200953 switch (get_std_op(ptr)) {
954 case STD_OP_EQ: *opaque = 0; break;
955 case STD_OP_GT: *opaque = 1; break;
956 case STD_OP_GE: *opaque = 2; break;
957 case STD_OP_LT: *opaque = 3; break;
958 case STD_OP_LE: *opaque = 4; break;
959 default:
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200960 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200961 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200962 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200963
964 skip++;
965 ptr = text[skip];
966 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200967
968 last = i = 0;
969 while (1) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200970 j = *ptr++;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200971 if ((j == '-' || j == ':') && !last) {
972 last++;
973 pattern->val.range.min = i;
974 i = 0;
975 continue;
976 }
977 j -= '0';
978 if (j > 9)
979 // also catches the terminating zero
980 break;
981 i *= 10;
982 i += j;
983 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200984
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200985 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200986 /* having a range with a min or a max is absurd */
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200987 memprintf(err, "integer range '%s' specified with a comparison operator", text[skip]);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200988 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200989 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200990
Willy Tarreaua84d3742007-05-07 00:36:48 +0200991 if (!last)
992 pattern->val.range.min = i;
993 pattern->val.range.max = i;
Willy Tarreauae8b7962007-06-09 23:10:04 +0200994
995 switch (*opaque) {
996 case 0: /* eq */
997 pattern->val.range.min_set = 1;
998 pattern->val.range.max_set = 1;
999 break;
1000 case 1: /* gt */
1001 pattern->val.range.min++; /* gt = ge + 1 */
1002 case 2: /* ge */
1003 pattern->val.range.min_set = 1;
1004 pattern->val.range.max_set = 0;
1005 break;
1006 case 3: /* lt */
1007 pattern->val.range.max--; /* lt = le - 1 */
1008 case 4: /* le */
1009 pattern->val.range.min_set = 0;
1010 pattern->val.range.max_set = 1;
1011 break;
1012 }
1013 return skip + 1;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001014}
1015
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001016/* Parse a range of positive 2-component versions delimited by either ':' or
1017 * '-'. The version consists in a major and a minor, both of which must be
1018 * smaller than 65536, because internally they will be represented as a 32-bit
1019 * integer.
1020 * If only one version is read, it is set as both min and max. Just like for
1021 * pure integers, an operator may be specified as the prefix, among this list
1022 * of 5 :
1023 *
1024 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
1025 *
1026 * The default operator is "eq". It supports range matching. Ranges are
1027 * rejected for other operators. The operator may be changed at any time.
1028 * The operator is stored in the 'opaque' argument. This allows constructs
1029 * such as the following one :
1030 *
1031 * acl obsolete_ssl ssl_req_proto lt 3
1032 * acl unsupported_ssl ssl_req_proto gt 3.1
1033 * acl valid_ssl ssl_req_proto 3.0-3.1
1034 *
1035 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001036int acl_parse_dotted_ver(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001037{
1038 signed long long i;
1039 unsigned int j, last, skip = 0;
1040 const char *ptr = *text;
1041
1042
1043 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +02001044 switch (get_std_op(ptr)) {
1045 case STD_OP_EQ: *opaque = 0; break;
1046 case STD_OP_GT: *opaque = 1; break;
1047 case STD_OP_GE: *opaque = 2; break;
1048 case STD_OP_LT: *opaque = 3; break;
1049 case STD_OP_LE: *opaque = 4; break;
1050 default:
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001051 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001052 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +02001053 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001054
1055 skip++;
1056 ptr = text[skip];
1057 }
1058
1059 last = i = 0;
1060 while (1) {
1061 j = *ptr++;
1062 if (j == '.') {
1063 /* minor part */
1064 if (i >= 65536)
1065 return 0;
1066 i <<= 16;
1067 continue;
1068 }
1069 if ((j == '-' || j == ':') && !last) {
1070 last++;
1071 if (i < 65536)
1072 i <<= 16;
1073 pattern->val.range.min = i;
1074 i = 0;
1075 continue;
1076 }
1077 j -= '0';
1078 if (j > 9)
1079 // also catches the terminating zero
1080 break;
1081 i = (i & 0xFFFF0000) + (i & 0xFFFF) * 10;
1082 i += j;
1083 }
1084
1085 /* if we only got a major version, let's shift it now */
1086 if (i < 65536)
1087 i <<= 16;
1088
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001089 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001090 /* having a range with a min or a max is absurd */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001091 memprintf(err, "version range '%s' specified with a comparison operator", text[skip]);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001092 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001093 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001094
1095 if (!last)
1096 pattern->val.range.min = i;
1097 pattern->val.range.max = i;
1098
1099 switch (*opaque) {
1100 case 0: /* eq */
1101 pattern->val.range.min_set = 1;
1102 pattern->val.range.max_set = 1;
1103 break;
1104 case 1: /* gt */
1105 pattern->val.range.min++; /* gt = ge + 1 */
1106 case 2: /* ge */
1107 pattern->val.range.min_set = 1;
1108 pattern->val.range.max_set = 0;
1109 break;
1110 case 3: /* lt */
1111 pattern->val.range.max--; /* lt = le - 1 */
1112 case 4: /* le */
1113 pattern->val.range.min_set = 0;
1114 pattern->val.range.max_set = 1;
1115 break;
1116 }
1117 return skip + 1;
1118}
1119
Willy Tarreaua67fad92007-05-08 19:50:09 +02001120/* Parse an IP address and an optional mask in the form addr[/mask].
1121 * The addr may either be an IPv4 address or a hostname. The mask
1122 * may either be a dotted mask or a number of bits. Returns 1 if OK,
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001123 * otherwise 0. NOTE: IP address patterns are typed (IPV4/IPV6).
Willy Tarreaua67fad92007-05-08 19:50:09 +02001124 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001125int acl_parse_ip(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua67fad92007-05-08 19:50:09 +02001126{
Willy Tarreaub337b532010-05-13 20:03:41 +02001127 struct eb_root *tree = NULL;
1128 if (pattern->flags & ACL_PAT_F_TREE_OK)
1129 tree = pattern->val.tree;
1130
1131 if (str2net(*text, &pattern->val.ipv4.addr, &pattern->val.ipv4.mask)) {
1132 unsigned int mask = ntohl(pattern->val.ipv4.mask.s_addr);
1133 struct ebmb_node *node;
1134 /* check if the mask is contiguous so that we can insert the
1135 * network into the tree. A continuous mask has only ones on
1136 * the left. This means that this mask + its lower bit added
1137 * once again is null.
1138 */
Willy Tarreauceb4ac92012-04-28 00:41:46 +02001139 pattern->type = SMP_T_IPV4;
Willy Tarreaub337b532010-05-13 20:03:41 +02001140 if (mask + (mask & -mask) == 0 && tree) {
1141 mask = mask ? 33 - flsnz(mask & -mask) : 0; /* equals cidr value */
1142 /* FIXME: insert <addr>/<mask> into the tree here */
1143 node = calloc(1, sizeof(*node) + 4); /* reserve 4 bytes for IPv4 address */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001144 if (!node) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001145 memprintf(err, "out of memory while loading IPv4 pattern");
Willy Tarreaub337b532010-05-13 20:03:41 +02001146 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001147 }
Willy Tarreaub337b532010-05-13 20:03:41 +02001148 memcpy(node->key, &pattern->val.ipv4.addr, 4); /* network byte order */
1149 node->node.pfx = mask;
1150 if (ebmb_insert_prefix(tree, node, 4) != node)
1151 free(node); /* was a duplicate */
1152 pattern->flags |= ACL_PAT_F_TREE;
1153 return 1;
1154 }
Willy Tarreauae8b7962007-06-09 23:10:04 +02001155 return 1;
Willy Tarreaub337b532010-05-13 20:03:41 +02001156 }
Willy Tarreauceb4ac92012-04-28 00:41:46 +02001157 else if (str62net(*text, &pattern->val.ipv6.addr, &pattern->val.ipv6.mask)) {
1158 /* no tree support right now */
1159 pattern->type = SMP_T_IPV6;
1160 return 1;
1161 }
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001162 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001163 memprintf(err, "'%s' is not a valid IPv4 or IPv6 address", *text);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001164 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001165 }
Willy Tarreaua67fad92007-05-08 19:50:09 +02001166}
1167
Willy Tarreaua84d3742007-05-07 00:36:48 +02001168/*
1169 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
1170 * parsing sessions.
1171 */
1172void acl_register_keywords(struct acl_kw_list *kwl)
1173{
1174 LIST_ADDQ(&acl_keywords.list, &kwl->list);
1175}
1176
1177/*
1178 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
1179 */
1180void acl_unregister_keywords(struct acl_kw_list *kwl)
1181{
1182 LIST_DEL(&kwl->list);
1183 LIST_INIT(&kwl->list);
1184}
1185
1186/* Return a pointer to the ACL <name> within the list starting at <head>, or
1187 * NULL if not found.
1188 */
1189struct acl *find_acl_by_name(const char *name, struct list *head)
1190{
1191 struct acl *acl;
1192 list_for_each_entry(acl, head, list) {
1193 if (strcmp(acl->name, name) == 0)
1194 return acl;
1195 }
1196 return NULL;
1197}
1198
1199/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
1200 * <kw> contains an opening parenthesis, only the left part of it is checked.
1201 */
1202struct acl_keyword *find_acl_kw(const char *kw)
1203{
1204 int index;
1205 const char *kwend;
1206 struct acl_kw_list *kwl;
1207
1208 kwend = strchr(kw, '(');
1209 if (!kwend)
1210 kwend = kw + strlen(kw);
1211
1212 list_for_each_entry(kwl, &acl_keywords.list, list) {
1213 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1214 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1215 kwl->kw[index].kw[kwend-kw] == 0)
1216 return &kwl->kw[index];
1217 }
1218 }
1219 return NULL;
1220}
1221
Willy Tarreaudfd7fca2011-03-09 07:27:02 +01001222/* NB: does nothing if <pat> is NULL */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001223static void free_pattern(struct acl_pattern *pat)
1224{
Willy Tarreaudfd7fca2011-03-09 07:27:02 +01001225 if (!pat)
1226 return;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001227
1228 if (pat->ptr.ptr) {
1229 if (pat->freeptrbuf)
1230 pat->freeptrbuf(pat->ptr.ptr);
1231
Willy Tarreaua84d3742007-05-07 00:36:48 +02001232 free(pat->ptr.ptr);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001233 }
1234
Willy Tarreaua84d3742007-05-07 00:36:48 +02001235 free(pat);
1236}
1237
1238static void free_pattern_list(struct list *head)
1239{
1240 struct acl_pattern *pat, *tmp;
1241 list_for_each_entry_safe(pat, tmp, head, list)
1242 free_pattern(pat);
1243}
1244
Willy Tarreaue56cda92010-05-11 23:25:05 +02001245static void free_pattern_tree(struct eb_root *root)
1246{
1247 struct eb_node *node, *next;
1248 node = eb_first(root);
1249 while (node) {
1250 next = eb_next(node);
1251 free(node);
1252 node = next;
1253 }
1254}
1255
Willy Tarreaua84d3742007-05-07 00:36:48 +02001256static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
1257{
Willy Tarreau34db1082012-04-19 17:16:54 +02001258 struct arg *arg;
1259
Willy Tarreaua84d3742007-05-07 00:36:48 +02001260 free_pattern_list(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001261 free_pattern_tree(&expr->pattern_tree);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001262 LIST_INIT(&expr->patterns);
Willy Tarreau34db1082012-04-19 17:16:54 +02001263
1264 for (arg = expr->args; arg; arg++) {
1265 if (arg->type == ARGT_STOP)
1266 break;
Willy Tarreau496aa012012-06-01 10:38:29 +02001267 if (arg->type == ARGT_STR || arg->unresolved) {
Willy Tarreau34db1082012-04-19 17:16:54 +02001268 free(arg->data.str.str);
1269 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02001270 arg->unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001271 }
1272 arg++;
1273 }
1274
Willy Tarreau2e845be2012-10-19 19:49:09 +02001275 if (expr->args != empty_arg_list)
1276 free(expr->args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001277 expr->kw->use_cnt--;
1278 return expr;
1279}
1280
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001281
1282/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
1283 * be returned there on errors and the caller will have to free it.
1284 */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001285static int acl_read_patterns_from_file( struct acl_keyword *aclkw,
1286 struct acl_expr *expr,
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001287 const char *filename, int patflags,
1288 char **err)
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001289{
1290 FILE *file;
1291 char *c;
1292 const char *args[2];
1293 struct acl_pattern *pattern;
1294 int opaque;
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001295 int ret = 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001296 int line = 0;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001297
1298 file = fopen(filename, "r");
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001299 if (!file) {
1300 memprintf(err, "failed to open pattern file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001301 return 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001302 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001303
1304 /* now parse all patterns. The file may contain only one pattern per
1305 * line. If the line contains spaces, they will be part of the pattern.
1306 * The pattern stops at the first CR, LF or EOF encountered.
1307 */
1308 opaque = 0;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001309 pattern = NULL;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001310 args[1] = "";
David du Colombier7af46052012-05-16 14:16:48 +02001311 while (fgets(trash, trashlen, file) != NULL) {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001312 line++;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001313 c = trash;
Willy Tarreau58215a02010-05-13 22:07:43 +02001314
1315 /* ignore lines beginning with a dash */
1316 if (*c == '#')
1317 continue;
1318
1319 /* strip leading spaces and tabs */
1320 while (*c == ' ' || *c == '\t')
1321 c++;
1322
Willy Tarreau58215a02010-05-13 22:07:43 +02001323
1324 args[0] = c;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001325 while (*c && *c != '\n' && *c != '\r')
1326 c++;
1327 *c = 0;
1328
Willy Tarreau51091962011-01-03 21:04:10 +01001329 /* empty lines are ignored too */
1330 if (c == args[0])
1331 continue;
1332
Willy Tarreaue56cda92010-05-11 23:25:05 +02001333 /* we keep the previous pattern along iterations as long as it's not used */
1334 if (!pattern)
1335 pattern = (struct acl_pattern *)malloc(sizeof(*pattern));
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001336 if (!pattern) {
1337 memprintf(err, "out of memory when loading patterns from file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001338 goto out_close;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001339 }
Willy Tarreaue56cda92010-05-11 23:25:05 +02001340
1341 memset(pattern, 0, sizeof(*pattern));
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001342 pattern->flags = patflags;
1343
Willy Tarreaue56cda92010-05-11 23:25:05 +02001344 if ((aclkw->requires & ACL_MAY_LOOKUP) && !(pattern->flags & ACL_PAT_F_IGNORE_CASE)) {
1345 /* we pre-set the data pointer to the tree's head so that functions
1346 * which are able to insert in a tree know where to do that.
1347 */
1348 pattern->flags |= ACL_PAT_F_TREE_OK;
1349 pattern->val.tree = &expr->pattern_tree;
1350 }
1351
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001352 pattern->type = SMP_TYPES; /* unspecified type by default */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001353 if (!aclkw->parse(args, pattern, &opaque, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001354 goto out_free_pattern;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001355
1356 /* if the parser did not feed the tree, let's chain the pattern to the list */
1357 if (!(pattern->flags & ACL_PAT_F_TREE)) {
1358 LIST_ADDQ(&expr->patterns, &pattern->list);
1359 pattern = NULL; /* get a new one */
1360 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001361 }
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001362
1363 ret = 1; /* success */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001364
1365 out_free_pattern:
1366 free_pattern(pattern);
1367 out_close:
1368 fclose(file);
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001369 return ret;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001370}
1371
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001372/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
1373 * not NULL, it will be filled with a pointer to an error message in case of
1374 * error. This pointer must be freeable or NULL.
1375 *
Willy Tarreaua84d3742007-05-07 00:36:48 +02001376 * Right now, the only accepted syntax is :
1377 * <subject> [<value>...]
1378 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001379struct acl_expr *parse_acl_expr(const char **args, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001380{
1381 __label__ out_return, out_free_expr, out_free_pattern;
1382 struct acl_expr *expr;
1383 struct acl_keyword *aclkw;
1384 struct acl_pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001385 int opaque, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001386 const char *arg;
1387
1388 aclkw = find_acl_kw(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001389 if (!aclkw || !aclkw->parse) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001390 memprintf(err, "unknown ACL keyword '%s'", *args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001391 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001392 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001393
1394 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001395 if (!expr) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001396 memprintf(err, "out of memory when parsing ACL expression");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001397 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001398 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001399
1400 expr->kw = aclkw;
1401 aclkw->use_cnt++;
1402 LIST_INIT(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001403 expr->pattern_tree = EB_ROOT_UNIQUE;
Willy Tarreau2e845be2012-10-19 19:49:09 +02001404 expr->args = empty_arg_list;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001405
1406 arg = strchr(args[0], '(');
Willy Tarreau61612d42012-04-19 18:42:05 +02001407 if (aclkw->arg_mask) {
1408 int nbargs = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001409 char *end;
Willy Tarreau34db1082012-04-19 17:16:54 +02001410
Willy Tarreau61612d42012-04-19 18:42:05 +02001411 if (arg != NULL) {
1412 /* there are 0 or more arguments in the form "subject(arg[,arg]*)" */
1413 arg++;
1414 end = strchr(arg, ')');
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001415 if (!end) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001416 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001417 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001418 }
Willy Tarreau34db1082012-04-19 17:16:54 +02001419
Willy Tarreau61612d42012-04-19 18:42:05 +02001420 /* Parse the arguments. Note that currently we have no way to
1421 * report parsing errors, hence the NULL in the error pointers.
1422 * An error is also reported if some mandatory arguments are
1423 * missing.
1424 */
1425 nbargs = make_arg_list(arg, end - arg, aclkw->arg_mask, &expr->args,
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001426 err, NULL, NULL);
1427 if (nbargs < 0) {
1428 /* note that make_arg_list will have set <err> here */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001429 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreau61612d42012-04-19 18:42:05 +02001430 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001431 }
Willy Tarreauae52f062012-04-26 12:13:35 +02001432
Willy Tarreau2e845be2012-10-19 19:49:09 +02001433 if (!expr->args)
1434 expr->args = empty_arg_list;
1435
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001436 if (aclkw->val_args && !aclkw->val_args(expr->args, err)) {
1437 /* invalid keyword argument, error must have been
1438 * set by val_args().
1439 */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001440 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001441 goto out_free_expr;
1442 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001443 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001444 else if (ARGM(aclkw->arg_mask) == 1) {
1445 int type = (aclkw->arg_mask >> 4) & 15;
1446
1447 /* If a proxy is noted as a mandatory argument, we'll fake
1448 * an empty one so that acl_find_targets() resolves it as
1449 * the current one later.
1450 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001451 if (type != ARGT_FE && type != ARGT_BE && type != ARGT_TAB) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001452 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001453 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001454 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001455
1456 /* Build an arg list containing the type as an empty string
1457 * and the usual STOP.
1458 */
1459 expr->args = calloc(2, sizeof(*expr->args));
1460 expr->args[0].type = type;
Willy Tarreaue3a46112012-06-15 08:02:34 +02001461 expr->args[0].unresolved = 1;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001462 expr->args[0].data.str.str = strdup("");
1463 expr->args[0].data.str.len = 1;
1464 expr->args[0].data.str.len = 0;
1465 expr->args[1].type = ARGT_STOP;
1466 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001467 else if (ARGM(aclkw->arg_mask)) {
1468 /* there were some mandatory arguments */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001469 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001470 goto out_free_expr;
Willy Tarreau61612d42012-04-19 18:42:05 +02001471 }
1472 }
1473 else {
1474 if (arg) {
1475 /* no argument expected */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001476 memprintf(err, "ACL keyword '%s' takes no argument", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001477 goto out_free_expr;
1478 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001479 }
1480
Willy Tarreaua84d3742007-05-07 00:36:48 +02001481 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001482
1483 /* check for options before patterns. Supported options are :
1484 * -i : ignore case for all patterns by default
1485 * -f : read patterns from those files
1486 * -- : everything after this is not an option
1487 */
1488 patflags = 0;
1489 while (**args == '-') {
1490 if ((*args)[1] == 'i')
1491 patflags |= ACL_PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001492 else if ((*args)[1] == 'f') {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001493 if (!acl_read_patterns_from_file(aclkw, expr, args[1], patflags | ACL_PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001494 goto out_free_expr;
1495 args++;
1496 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001497 else if ((*args)[1] == '-') {
1498 args++;
1499 break;
1500 }
1501 else
1502 break;
1503 args++;
1504 }
1505
1506 /* now parse all patterns */
Willy Tarreauae8b7962007-06-09 23:10:04 +02001507 opaque = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001508 while (**args) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001509 int ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001510 pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001511 if (!pattern) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001512 memprintf(err, "out of memory when parsing ACL pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001513 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001514 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001515 pattern->flags = patflags;
1516
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001517 pattern->type = SMP_TYPES; /* unspecified type */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001518 ret = aclkw->parse(args, pattern, &opaque, err);
1519 if (!ret)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001520 goto out_free_pattern;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001521
Willy Tarreaua84d3742007-05-07 00:36:48 +02001522 LIST_ADDQ(&expr->patterns, &pattern->list);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001523 args += ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001524 }
1525
1526 return expr;
1527
1528 out_free_pattern:
1529 free_pattern(pattern);
1530 out_free_expr:
1531 prune_acl_expr(expr);
1532 free(expr);
1533 out_return:
1534 return NULL;
1535}
1536
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001537/* Purge everything in the acl <acl>, then return <acl>. */
1538struct acl *prune_acl(struct acl *acl) {
1539
1540 struct acl_expr *expr, *exprb;
1541
1542 free(acl->name);
1543
1544 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
1545 LIST_DEL(&expr->list);
1546 prune_acl_expr(expr);
1547 free(expr);
1548 }
1549
1550 return acl;
1551}
1552
Willy Tarreaua84d3742007-05-07 00:36:48 +02001553/* Parse an ACL with the name starting at <args>[0], and with a list of already
1554 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001555 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001556 * an anonymous one and it won't be merged with any other one. If <err> is not
1557 * NULL, it will be filled with an appropriate error. This pointer must be
1558 * freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001559 *
1560 * args syntax: <aclname> <acl_expr>
1561 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001562struct acl *parse_acl(const char **args, struct list *known_acl, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001563{
1564 __label__ out_return, out_free_acl_expr, out_free_name;
1565 struct acl *cur_acl;
1566 struct acl_expr *acl_expr;
1567 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001568 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001569
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001570 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001571 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001572 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001573 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001574
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001575 acl_expr = parse_acl_expr(args + 1, err);
1576 if (!acl_expr) {
1577 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001578 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001579 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001580
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001581 /* Check for args beginning with an opening parenthesis just after the
1582 * subject, as this is almost certainly a typo. Right now we can only
1583 * emit a warning, so let's do so.
1584 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +02001585 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001586 Warning("parsing acl '%s' :\n"
1587 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
1588 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
1589 " If you are really sure this is not an error, please insert '--' between the\n"
1590 " match and the pattern to make this warning message disappear.\n",
1591 args[0], args[1], args[2]);
1592
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001593 if (*args[0])
1594 cur_acl = find_acl_by_name(args[0], known_acl);
1595 else
1596 cur_acl = NULL;
1597
Willy Tarreaua84d3742007-05-07 00:36:48 +02001598 if (!cur_acl) {
1599 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001600 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001601 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001602 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001603 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001604 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001605 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001606 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001607 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001608 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001609
1610 LIST_INIT(&cur_acl->expr);
1611 LIST_ADDQ(known_acl, &cur_acl->list);
1612 cur_acl->name = name;
1613 }
1614
Willy Tarreaua9802632008-07-25 19:13:19 +02001615 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001616 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1617 return cur_acl;
1618
1619 out_free_name:
1620 free(name);
1621 out_free_acl_expr:
1622 prune_acl_expr(acl_expr);
1623 free(acl_expr);
1624 out_return:
1625 return NULL;
1626}
1627
Willy Tarreau16fbe822007-06-17 11:54:31 +02001628/* Some useful ACLs provided by default. Only those used are allocated. */
1629
1630const struct {
1631 const char *name;
1632 const char *expr[4]; /* put enough for longest expression */
1633} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +02001634 { .name = "TRUE", .expr = {"always_true",""}},
1635 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001636 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001637 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001638 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
1639 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
1640 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
1641 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
1642 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
1643 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
1644 { .name = "METH_POST", .expr = {"method","POST",""}},
1645 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
1646 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
1647 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
1648 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
1649 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +02001650 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +02001651 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +02001652 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001653 { .name = NULL, .expr = {""}}
1654};
1655
1656/* Find a default ACL from the default_acl list, compile it and return it.
1657 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
1658 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001659 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
1660 * not NULL, it will be filled with an error message if an error occurs. This
1661 * pointer must be freeable or NULL.
Willy Tarreau16fbe822007-06-17 11:54:31 +02001662 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001663struct acl *find_acl_default(const char *acl_name, struct list *known_acl, char **err)
Willy Tarreau16fbe822007-06-17 11:54:31 +02001664{
1665 __label__ out_return, out_free_acl_expr, out_free_name;
1666 struct acl *cur_acl;
1667 struct acl_expr *acl_expr;
1668 char *name;
1669 int index;
1670
1671 for (index = 0; default_acl_list[index].name != NULL; index++) {
1672 if (strcmp(acl_name, default_acl_list[index].name) == 0)
1673 break;
1674 }
1675
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001676 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001677 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001678 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001679 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001680
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001681 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err);
1682 if (!acl_expr) {
1683 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001684 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001685 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001686
1687 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001688 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001689 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001690 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001691 }
1692
Willy Tarreau16fbe822007-06-17 11:54:31 +02001693 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001694 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001695 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001696 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001697 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001698
1699 cur_acl->name = name;
Willy Tarreaua55b7dc2009-07-12 09:21:30 +02001700 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreau16fbe822007-06-17 11:54:31 +02001701 LIST_INIT(&cur_acl->expr);
1702 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1703 if (known_acl)
1704 LIST_ADDQ(known_acl, &cur_acl->list);
1705
1706 return cur_acl;
1707
1708 out_free_name:
1709 free(name);
1710 out_free_acl_expr:
1711 prune_acl_expr(acl_expr);
1712 free(acl_expr);
1713 out_return:
1714 return NULL;
1715}
Willy Tarreaua84d3742007-05-07 00:36:48 +02001716
1717/* Purge everything in the acl_cond <cond>, then return <cond>. */
1718struct acl_cond *prune_acl_cond(struct acl_cond *cond)
1719{
1720 struct acl_term_suite *suite, *tmp_suite;
1721 struct acl_term *term, *tmp_term;
1722
1723 /* iterate through all term suites and free all terms and all suites */
1724 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
1725 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
1726 free(term);
1727 free(suite);
1728 }
1729 return cond;
1730}
1731
1732/* Parse an ACL condition starting at <args>[0], relying on a list of already
1733 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001734 * case of low memory). Supports multiple conditions separated by "or". If
1735 * <err> is not NULL, it will be filled with a pointer to an error message in
1736 * case of error, that the caller is responsible for freeing. The initial
1737 * location must either be freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001738 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001739struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, int pol, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001740{
1741 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001742 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001743 const char *word;
1744 struct acl *cur_acl;
1745 struct acl_term *cur_term;
1746 struct acl_term_suite *cur_suite;
1747 struct acl_cond *cond;
1748
1749 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001750 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001751 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001752 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001753 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001754
1755 LIST_INIT(&cond->list);
1756 LIST_INIT(&cond->suites);
1757 cond->pol = pol;
1758
1759 cur_suite = NULL;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001760 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001761 for (arg = 0; *args[arg]; arg++) {
1762 word = args[arg];
1763
1764 /* remove as many exclamation marks as we can */
1765 while (*word == '!') {
1766 neg = !neg;
1767 word++;
1768 }
1769
1770 /* an empty word is allowed because we cannot force the user to
1771 * always think about not leaving exclamation marks alone.
1772 */
1773 if (!*word)
1774 continue;
1775
Willy Tarreau16fbe822007-06-17 11:54:31 +02001776 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +02001777 /* new term suite */
1778 cur_suite = NULL;
1779 neg = 0;
1780 continue;
1781 }
1782
Willy Tarreau95fa4692010-02-01 13:05:50 +01001783 if (strcmp(word, "{") == 0) {
1784 /* we may have a complete ACL expression between two braces,
1785 * find the last one.
1786 */
1787 int arg_end = arg + 1;
1788 const char **args_new;
1789
1790 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
1791 arg_end++;
1792
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001793 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001794 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001795 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001796 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001797
1798 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001799 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001800 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001801 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001802 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001803
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001804 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +01001805 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
1806 args_new[arg_end - arg] = "";
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001807 cur_acl = parse_acl(args_new, known_acl, err);
Willy Tarreau95fa4692010-02-01 13:05:50 +01001808 free(args_new);
1809
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001810 if (!cur_acl) {
1811 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001812 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001813 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001814 arg = arg_end;
1815 }
1816 else {
1817 /* search for <word> in the known ACL names. If we do not find
1818 * it, let's look for it in the default ACLs, and if found, add
1819 * it to the list of ACLs of this proxy. This makes it possible
1820 * to override them.
1821 */
1822 cur_acl = find_acl_by_name(word, known_acl);
1823 if (cur_acl == NULL) {
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001824 cur_acl = find_acl_default(word, known_acl, err);
1825 if (cur_acl == NULL) {
1826 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +01001827 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001828 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001829 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001830 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001831
1832 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001833 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001834 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001835 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001836 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001837
1838 cur_term->acl = cur_acl;
1839 cur_term->neg = neg;
Willy Tarreaua9802632008-07-25 19:13:19 +02001840 cond->requires |= cur_acl->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001841
1842 if (!cur_suite) {
1843 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001844 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001845 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001846 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001847 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001848 LIST_INIT(&cur_suite->terms);
1849 LIST_ADDQ(&cond->suites, &cur_suite->list);
1850 }
1851 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001852 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001853 }
1854
1855 return cond;
1856
1857 out_free_term:
1858 free(cur_term);
1859 out_free_suite:
1860 prune_acl_cond(cond);
1861 free(cond);
1862 out_return:
1863 return NULL;
1864}
1865
Willy Tarreau2bbba412010-01-28 16:48:33 +01001866/* Builds an ACL condition starting at the if/unless keyword. The complete
1867 * condition is returned. NULL is returned in case of error or if the first
1868 * word is neither "if" nor "unless". It automatically sets the file name and
1869 * the line number in the condition for better error reporting, and adds the
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001870 * ACL requirements to the proxy's acl_requires. If <err> is not NULL, it will
1871 * be filled with a pointer to an error message in case of error, that the
1872 * caller is responsible for freeing. The initial location must either be
1873 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001874 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001875struct acl_cond *build_acl_cond(const char *file, int line, struct proxy *px, const char **args, char **err)
Willy Tarreau2bbba412010-01-28 16:48:33 +01001876{
1877 int pol = ACL_COND_NONE;
1878 struct acl_cond *cond = NULL;
1879
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001880 if (err)
1881 *err = NULL;
1882
Willy Tarreau2bbba412010-01-28 16:48:33 +01001883 if (!strcmp(*args, "if")) {
1884 pol = ACL_COND_IF;
1885 args++;
1886 }
1887 else if (!strcmp(*args, "unless")) {
1888 pol = ACL_COND_UNLESS;
1889 args++;
1890 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001891 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001892 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001893 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001894 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001895
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001896 cond = parse_acl_cond(args, &px->acl, pol, err);
1897 if (!cond) {
1898 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001899 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001900 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001901
1902 cond->file = file;
1903 cond->line = line;
1904 px->acl_requires |= cond->requires;
1905
1906 return cond;
1907}
1908
Willy Tarreau11382812008-07-09 16:18:21 +02001909/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
Willy Tarreaub6866442008-07-14 23:54:42 +02001910 * ACL_PAT_PASS depending on the test results. ACL_PAT_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001911 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001912 * data is being examined. The function automatically sets SMP_OPT_ITERATE.
Willy Tarreaub6866442008-07-14 23:54:42 +02001913 * This function only computes the condition, it does not apply the polarity
1914 * required by IF/UNLESS, it's up to the caller to do this using something like
1915 * this :
Willy Tarreau11382812008-07-09 16:18:21 +02001916 *
1917 * res = acl_pass(res);
Willy Tarreaub6866442008-07-14 23:54:42 +02001918 * if (res == ACL_PAT_MISS)
1919 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001920 * if (cond->pol == ACL_COND_UNLESS)
1921 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001922 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001923int acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *l4, void *l7, unsigned int opt)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001924{
1925 __label__ fetch_next;
1926 struct acl_term_suite *suite;
1927 struct acl_term *term;
1928 struct acl_expr *expr;
1929 struct acl *acl;
1930 struct acl_pattern *pattern;
Willy Tarreau37406352012-04-23 16:16:37 +02001931 struct sample smp;
Willy Tarreau11382812008-07-09 16:18:21 +02001932 int acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001933
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001934 /* ACLs are iterated over all values, so let's always set the flag to
1935 * indicate this to the fetch functions.
1936 */
1937 opt |= SMP_OPT_ITERATE;
1938
Willy Tarreau11382812008-07-09 16:18:21 +02001939 /* We're doing a logical OR between conditions so we initialize to FAIL.
1940 * The MISS status is propagated down from the suites.
1941 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001942 cond_res = ACL_PAT_FAIL;
1943 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001944 /* Evaluate condition suite <suite>. We stop at the first term
1945 * which returns ACL_PAT_FAIL. The MISS status is still propagated
1946 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001947 */
1948
1949 /* we're doing a logical AND between terms, so we must set the
1950 * initial value to PASS.
1951 */
1952 suite_res = ACL_PAT_PASS;
1953 list_for_each_entry(term, &suite->terms, list) {
1954 acl = term->acl;
1955
1956 /* FIXME: use cache !
1957 * check acl->cache_idx for this.
1958 */
1959
1960 /* ACL result not cached. Let's scan all the expressions
1961 * and use the first one to match.
1962 */
1963 acl_res = ACL_PAT_FAIL;
1964 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001965 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001966 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001967 fetch_next:
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001968 if (!expr->kw->fetch(px, l4, l7, opt, expr->args, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001969 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001970 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001971 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001972 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001973 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001974
Willy Tarreau197e10a2012-04-23 19:18:42 +02001975 if (smp.type == SMP_T_BOOL) {
1976 if (smp.data.uint)
Willy Tarreaua79534f2008-07-20 10:13:37 +02001977 acl_res |= ACL_PAT_PASS;
1978 else
1979 acl_res |= ACL_PAT_FAIL;
1980 }
1981 else {
Willy Tarreau020534d2010-05-16 21:45:45 +02001982 if (!eb_is_empty(&expr->pattern_tree)) {
Willy Tarreauc4262962010-05-10 23:42:40 +02001983 /* a tree is present, let's check what type it is */
1984 if (expr->kw->match == acl_match_str)
Willy Tarreau37406352012-04-23 16:16:37 +02001985 acl_res |= acl_lookup_str(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreaub337b532010-05-13 20:03:41 +02001986 else if (expr->kw->match == acl_match_ip)
Willy Tarreau37406352012-04-23 16:16:37 +02001987 acl_res |= acl_lookup_ip(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreauc4262962010-05-10 23:42:40 +02001988 }
1989
Willy Tarreaua79534f2008-07-20 10:13:37 +02001990 /* call the match() function for all tests on this value */
1991 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreaua79534f2008-07-20 10:13:37 +02001992 if (acl_res == ACL_PAT_PASS)
1993 break;
Willy Tarreau37406352012-04-23 16:16:37 +02001994 acl_res |= expr->kw->match(&smp, pattern);
Willy Tarreaua79534f2008-07-20 10:13:37 +02001995 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001996 }
1997 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001998 * OK now acl_res holds the result of this expression
1999 * as one of ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02002000 *
Willy Tarreau11382812008-07-09 16:18:21 +02002001 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02002002 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02002003 *
2004 * FIXME: implement cache.
2005 *
2006 */
2007
Willy Tarreau11382812008-07-09 16:18:21 +02002008 /* we're ORing these terms, so a single PASS is enough */
2009 if (acl_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002010 break;
2011
Willy Tarreau37406352012-04-23 16:16:37 +02002012 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002013 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02002014
2015 /* sometimes we know the fetched data is subject to change
2016 * later and give another chance for a new match (eg: request
2017 * size, time, ...)
2018 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002019 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02002020 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02002021 }
2022 /*
2023 * Here we have the result of an ACL (cached or not).
2024 * ACLs are combined, negated or not, to form conditions.
2025 */
2026
Willy Tarreaua84d3742007-05-07 00:36:48 +02002027 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02002028 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02002029
2030 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02002031
2032 /* we're ANDing these terms, so a single FAIL is enough */
2033 if (suite_res == ACL_PAT_FAIL)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002034 break;
2035 }
2036 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02002037
2038 /* we're ORing these terms, so a single PASS is enough */
2039 if (cond_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002040 break;
2041 }
Willy Tarreau11382812008-07-09 16:18:21 +02002042 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02002043}
2044
2045
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002046/* Reports a pointer to the first ACL used in condition <cond> which requires
2047 * at least one of the USE_FLAGS in <require>. Returns NULL if none matches.
2048 * The construct is almost the same as for acl_exec_cond() since we're walking
2049 * down the ACL tree as well. It is important that the tree is really walked
2050 * through and never cached, because that way, this function can be used as a
2051 * late check.
2052 */
Willy Tarreauf1e98b82010-01-28 17:59:39 +01002053struct acl *cond_find_require(const struct acl_cond *cond, unsigned int require)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002054{
2055 struct acl_term_suite *suite;
2056 struct acl_term *term;
2057 struct acl *acl;
2058
2059 list_for_each_entry(suite, &cond->suites, list) {
2060 list_for_each_entry(term, &suite->terms, list) {
2061 acl = term->acl;
2062 if (acl->requires & require)
2063 return acl;
2064 }
2065 }
2066 return NULL;
2067}
2068
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002069/*
2070 * Find targets for userlist and groups in acl. Function returns the number
2071 * of errors or OK if everything is fine.
2072 */
2073int
2074acl_find_targets(struct proxy *p)
2075{
2076
2077 struct acl *acl;
2078 struct acl_expr *expr;
2079 struct acl_pattern *pattern;
2080 struct userlist *ul;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002081 struct arg *arg;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002082 int cfgerr = 0;
2083
2084 list_for_each_entry(acl, &p->acl, list) {
2085 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreau2e845be2012-10-19 19:49:09 +02002086 for (arg = expr->args; arg && arg->type != ARGT_STOP; arg++) {
2087 if (!arg->unresolved)
Willy Tarreau496aa012012-06-01 10:38:29 +02002088 continue;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002089 else if (arg->type == ARGT_SRV) {
2090 struct proxy *px;
2091 struct server *srv;
2092 char *pname, *sname;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002093
Willy Tarreau63364ee2012-04-19 19:11:13 +02002094 if (!expr->args->data.str.len) {
2095 Alert("proxy %s: acl '%s' %s(): missing server name.\n",
2096 p->id, acl->name, expr->kw->kw);
2097 cfgerr++;
2098 continue;
2099 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002100
Willy Tarreau63364ee2012-04-19 19:11:13 +02002101 pname = expr->args->data.str.str;
2102 sname = strrchr(pname, '/');
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002103
Willy Tarreau63364ee2012-04-19 19:11:13 +02002104 if (sname)
2105 *sname++ = '\0';
2106 else {
2107 sname = pname;
2108 pname = NULL;
2109 }
2110
2111 px = p;
2112 if (pname) {
2113 px = findproxy(pname, PR_CAP_BE);
2114 if (!px) {
2115 Alert("proxy %s: acl '%s' %s(): unable to find proxy '%s'.\n",
2116 p->id, acl->name, expr->kw->kw, pname);
2117 cfgerr++;
2118 continue;
2119 }
2120 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002121
Willy Tarreau63364ee2012-04-19 19:11:13 +02002122 srv = findserver(px, sname);
2123 if (!srv) {
2124 Alert("proxy %s: acl '%s' %s(): unable to find server '%s'.\n",
2125 p->id, acl->name, expr->kw->kw, sname);
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002126 cfgerr++;
2127 continue;
2128 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002129
Willy Tarreau63364ee2012-04-19 19:11:13 +02002130 free(expr->args->data.str.str);
Willy Tarreau496aa012012-06-01 10:38:29 +02002131 expr->args->data.str.str = NULL;
2132 arg->unresolved = 0;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002133 expr->args->data.srv = srv;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002134 }
2135 else if (arg->type == ARGT_FE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002136 struct proxy *prx = p;
2137 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002138
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002139 if (expr->args->data.str.len) {
2140 pname = expr->args->data.str.str;
2141 prx = findproxy(pname, PR_CAP_FE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002142 }
2143
Willy Tarreaud28c3532012-04-19 19:28:33 +02002144 if (!prx) {
2145 Alert("proxy %s: acl '%s' %s(): unable to find frontend '%s'.\n",
2146 p->id, acl->name, expr->kw->kw, pname);
2147 cfgerr++;
2148 continue;
2149 }
2150
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002151 if (!(prx->cap & PR_CAP_FE)) {
2152 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no frontend capability.\n",
2153 p->id, acl->name, expr->kw->kw, pname);
2154 cfgerr++;
2155 continue;
2156 }
2157
Willy Tarreaud28c3532012-04-19 19:28:33 +02002158 free(expr->args->data.str.str);
Willy Tarreau496aa012012-06-01 10:38:29 +02002159 expr->args->data.str.str = NULL;
2160 arg->unresolved = 0;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002161 expr->args->data.prx = prx;
2162 }
2163 else if (arg->type == ARGT_BE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002164 struct proxy *prx = p;
2165 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002166
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002167 if (expr->args->data.str.len) {
2168 pname = expr->args->data.str.str;
2169 prx = findproxy(pname, PR_CAP_BE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002170 }
2171
Willy Tarreaud28c3532012-04-19 19:28:33 +02002172 if (!prx) {
2173 Alert("proxy %s: acl '%s' %s(): unable to find backend '%s'.\n",
2174 p->id, acl->name, expr->kw->kw, pname);
2175 cfgerr++;
2176 continue;
2177 }
2178
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002179 if (!(prx->cap & PR_CAP_BE)) {
2180 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no backend capability.\n",
2181 p->id, acl->name, expr->kw->kw, pname);
2182 cfgerr++;
2183 continue;
2184 }
2185
Willy Tarreaud28c3532012-04-19 19:28:33 +02002186 free(expr->args->data.str.str);
Willy Tarreau496aa012012-06-01 10:38:29 +02002187 expr->args->data.str.str = NULL;
2188 arg->unresolved = 0;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002189 expr->args->data.prx = prx;
2190 }
2191 else if (arg->type == ARGT_TAB) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002192 struct proxy *prx = p;
2193 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002194
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002195 if (expr->args->data.str.len) {
2196 pname = expr->args->data.str.str;
2197 prx = find_stktable(pname);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002198 }
2199
Willy Tarreaud28c3532012-04-19 19:28:33 +02002200 if (!prx) {
2201 Alert("proxy %s: acl '%s' %s(): unable to find table '%s'.\n",
2202 p->id, acl->name, expr->kw->kw, pname);
2203 cfgerr++;
2204 continue;
2205 }
2206
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002207
2208 if (!prx->table.size) {
2209 Alert("proxy %s: acl '%s' %s(): no table in proxy '%s'.\n",
2210 p->id, acl->name, expr->kw->kw, pname);
2211 cfgerr++;
2212 continue;
2213 }
2214
Willy Tarreaud28c3532012-04-19 19:28:33 +02002215 free(expr->args->data.str.str);
Willy Tarreau496aa012012-06-01 10:38:29 +02002216 expr->args->data.str.str = NULL;
2217 arg->unresolved = 0;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002218 expr->args->data.prx = prx;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002219 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002220 else if (arg->type == ARGT_USR) {
2221 if (!expr->args->data.str.len) {
2222 Alert("proxy %s: acl '%s' %s(): missing userlist name.\n",
2223 p->id, acl->name, expr->kw->kw);
2224 cfgerr++;
2225 continue;
2226 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002227
Willy Tarreau63364ee2012-04-19 19:11:13 +02002228 if (p->uri_auth && p->uri_auth->userlist &&
2229 !strcmp(p->uri_auth->userlist->name, expr->args->data.str.str))
2230 ul = p->uri_auth->userlist;
2231 else
2232 ul = auth_find_userlist(expr->args->data.str.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002233
Willy Tarreau63364ee2012-04-19 19:11:13 +02002234 if (!ul) {
2235 Alert("proxy %s: acl '%s' %s(%s): unable to find userlist.\n",
2236 p->id, acl->name, expr->kw->kw, expr->args->data.str.str);
2237 cfgerr++;
2238 continue;
2239 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002240
Willy Tarreau63364ee2012-04-19 19:11:13 +02002241 free(expr->args->data.str.str);
Willy Tarreau496aa012012-06-01 10:38:29 +02002242 expr->args->data.str.str = NULL;
2243 arg->unresolved = 0;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002244 expr->args->data.usr = ul;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002245 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002246 } /* end of args processing */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002247
Willy Tarreau46b39d02012-05-10 23:40:14 +02002248 /* don't try to resolve groups if we're not certain of having
2249 * resolved userlists first.
2250 */
2251 if (cfgerr)
2252 break;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002253
2254 if (!strcmp(expr->kw->kw, "http_auth_group")) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002255 /* note: argument resolved above thanks to ARGT_USR */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002256
2257 if (LIST_ISEMPTY(&expr->patterns)) {
2258 Alert("proxy %s: acl %s %s(): no groups specified.\n",
2259 p->id, acl->name, expr->kw->kw);
2260 cfgerr++;
2261 continue;
2262 }
2263
2264 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreau34db1082012-04-19 17:16:54 +02002265 pattern->val.group_mask = auth_resolve_groups(expr->args->data.usr, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002266
2267 free(pattern->ptr.str);
2268 pattern->ptr.str = NULL;
2269 pattern->len = 0;
2270
2271 if (!pattern->val.group_mask) {
2272 Alert("proxy %s: acl %s %s(): invalid group(s).\n",
2273 p->id, acl->name, expr->kw->kw);
2274 cfgerr++;
2275 continue;
2276 }
2277 }
2278 }
2279 }
2280 }
2281
2282 return cfgerr;
2283}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002284
Willy Tarreaua84d3742007-05-07 00:36:48 +02002285/************************************************************************/
2286/* All supported keywords must be declared here. */
2287/************************************************************************/
2288
Willy Tarreau61612d42012-04-19 18:42:05 +02002289/* Note: must not be declared <const> as its list will be overwritten.
2290 * Please take care of keeping this list alphabetically sorted.
2291 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02002292static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02002293 { "always_false", acl_parse_nothing, acl_fetch_false, acl_match_nothing, ACL_USE_NOTHING, 0 },
2294 { "always_true", acl_parse_nothing, acl_fetch_true, acl_match_nothing, ACL_USE_NOTHING, 0 },
2295 { "rep_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6RTR_VOLATILE, 0 },
2296 { "req_len", acl_parse_int, acl_fetch_req_len, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
Willy Tarreau61612d42012-04-19 18:42:05 +02002297 { "req_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2298 { "req_ssl_sni", acl_parse_str, acl_fetch_ssl_hello_sni, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
2299 { "req_ssl_ver", acl_parse_dotted_ver, acl_fetch_req_ssl_ver, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2300 { "wait_end", acl_parse_nothing, acl_fetch_wait_end, acl_match_nothing, ACL_USE_NOTHING, 0 },
Willy Tarreaua84d3742007-05-07 00:36:48 +02002301 { NULL, NULL, NULL, NULL }
2302}};
2303
2304
2305__attribute__((constructor))
2306static void __acl_init(void)
2307{
2308 acl_register_keywords(&acl_kws);
2309}
2310
2311
2312/*
2313 * Local variables:
2314 * c-indent-level: 8
2315 * c-basic-offset: 8
2316 * End:
2317 */