blob: a0b16b14e85235281b6140c19579c226e71c3618 [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
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900536 if (regex_exec(pattern->ptr.reg, smp->data.str.str, smp->data.str.len) == 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{
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900903 regex_free(ptr);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200904}
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{
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900909 regex *preg;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200910 int icase;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200911
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900912 preg = calloc(1, sizeof(*preg));
Willy Tarreauf3d25982007-05-08 22:45:09 +0200913
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
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900919#ifdef USE_PCRE_JIT
920 icase = (pattern->flags & ACL_PAT_F_IGNORE_CASE) ? PCRE_CASELESS : 0;
921 preg->reg = pcre_compile(*text, PCRE_NO_AUTO_CAPTURE | icase, NULL, NULL,
922 NULL);
923 if (!preg->reg) {
924 free(preg);
925 memprintf(err, "regex '%s' is invalid", *text);
926 return 0;
927 }
928
929 preg->extra = pcre_study(preg->reg, PCRE_STUDY_JIT_COMPILE, NULL);
930 if (!preg->extra) {
931 pcre_free(preg->reg);
932 free(preg);
933 memprintf(err, "failed to compile regex '%s'", *text);
934 return 0;
935 }
936#else
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200937 icase = (pattern->flags & ACL_PAT_F_IGNORE_CASE) ? REG_ICASE : 0;
938 if (regcomp(preg, *text, REG_EXTENDED | REG_NOSUB | icase) != 0) {
Willy Tarreauf3d25982007-05-08 22:45:09 +0200939 free(preg);
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200940 memprintf(err, "regex '%s' is invalid", *text);
Willy Tarreauf3d25982007-05-08 22:45:09 +0200941 return 0;
942 }
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900943#endif
Willy Tarreauf3d25982007-05-08 22:45:09 +0200944
945 pattern->ptr.reg = preg;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200946 pattern->freeptrbuf = &acl_free_reg;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200947 return 1;
948}
949
Willy Tarreauae8b7962007-06-09 23:10:04 +0200950/* Parse a range of positive integers delimited by either ':' or '-'. If only
951 * one integer is read, it is set as both min and max. An operator may be
952 * specified as the prefix, among this list of 5 :
953 *
954 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
955 *
956 * The default operator is "eq". It supports range matching. Ranges are
957 * rejected for other operators. The operator may be changed at any time.
958 * The operator is stored in the 'opaque' argument.
959 *
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200960 * If err is non-NULL, an error message will be returned there on errors and
961 * the caller will have to free it.
962 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200963 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200964int acl_parse_int(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200965{
Willy Tarreauae8b7962007-06-09 23:10:04 +0200966 signed long long i;
967 unsigned int j, last, skip = 0;
968 const char *ptr = *text;
969
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200970 pattern->type = SMP_T_UINT;
Willy Tarreau8f8e6452007-06-17 21:51:38 +0200971 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200972 switch (get_std_op(ptr)) {
973 case STD_OP_EQ: *opaque = 0; break;
974 case STD_OP_GT: *opaque = 1; break;
975 case STD_OP_GE: *opaque = 2; break;
976 case STD_OP_LT: *opaque = 3; break;
977 case STD_OP_LE: *opaque = 4; break;
978 default:
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200979 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200980 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200981 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200982
983 skip++;
984 ptr = text[skip];
985 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200986
987 last = i = 0;
988 while (1) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200989 j = *ptr++;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200990 if ((j == '-' || j == ':') && !last) {
991 last++;
992 pattern->val.range.min = i;
993 i = 0;
994 continue;
995 }
996 j -= '0';
997 if (j > 9)
998 // also catches the terminating zero
999 break;
1000 i *= 10;
1001 i += j;
1002 }
Willy Tarreauae8b7962007-06-09 23:10:04 +02001003
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001004 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001005 /* having a range with a min or a max is absurd */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001006 memprintf(err, "integer range '%s' specified with a comparison operator", text[skip]);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001007 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001008 }
Willy Tarreauae8b7962007-06-09 23:10:04 +02001009
Willy Tarreaua84d3742007-05-07 00:36:48 +02001010 if (!last)
1011 pattern->val.range.min = i;
1012 pattern->val.range.max = i;
Willy Tarreauae8b7962007-06-09 23:10:04 +02001013
1014 switch (*opaque) {
1015 case 0: /* eq */
1016 pattern->val.range.min_set = 1;
1017 pattern->val.range.max_set = 1;
1018 break;
1019 case 1: /* gt */
1020 pattern->val.range.min++; /* gt = ge + 1 */
1021 case 2: /* ge */
1022 pattern->val.range.min_set = 1;
1023 pattern->val.range.max_set = 0;
1024 break;
1025 case 3: /* lt */
1026 pattern->val.range.max--; /* lt = le - 1 */
1027 case 4: /* le */
1028 pattern->val.range.min_set = 0;
1029 pattern->val.range.max_set = 1;
1030 break;
1031 }
1032 return skip + 1;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001033}
1034
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001035/* Parse a range of positive 2-component versions delimited by either ':' or
1036 * '-'. The version consists in a major and a minor, both of which must be
1037 * smaller than 65536, because internally they will be represented as a 32-bit
1038 * integer.
1039 * If only one version is read, it is set as both min and max. Just like for
1040 * pure integers, an operator may be specified as the prefix, among this list
1041 * of 5 :
1042 *
1043 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
1044 *
1045 * The default operator is "eq". It supports range matching. Ranges are
1046 * rejected for other operators. The operator may be changed at any time.
1047 * The operator is stored in the 'opaque' argument. This allows constructs
1048 * such as the following one :
1049 *
1050 * acl obsolete_ssl ssl_req_proto lt 3
1051 * acl unsupported_ssl ssl_req_proto gt 3.1
1052 * acl valid_ssl ssl_req_proto 3.0-3.1
1053 *
1054 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001055int acl_parse_dotted_ver(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001056{
1057 signed long long i;
1058 unsigned int j, last, skip = 0;
1059 const char *ptr = *text;
1060
1061
1062 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +02001063 switch (get_std_op(ptr)) {
1064 case STD_OP_EQ: *opaque = 0; break;
1065 case STD_OP_GT: *opaque = 1; break;
1066 case STD_OP_GE: *opaque = 2; break;
1067 case STD_OP_LT: *opaque = 3; break;
1068 case STD_OP_LE: *opaque = 4; break;
1069 default:
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001070 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001071 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +02001072 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001073
1074 skip++;
1075 ptr = text[skip];
1076 }
1077
1078 last = i = 0;
1079 while (1) {
1080 j = *ptr++;
1081 if (j == '.') {
1082 /* minor part */
1083 if (i >= 65536)
1084 return 0;
1085 i <<= 16;
1086 continue;
1087 }
1088 if ((j == '-' || j == ':') && !last) {
1089 last++;
1090 if (i < 65536)
1091 i <<= 16;
1092 pattern->val.range.min = i;
1093 i = 0;
1094 continue;
1095 }
1096 j -= '0';
1097 if (j > 9)
1098 // also catches the terminating zero
1099 break;
1100 i = (i & 0xFFFF0000) + (i & 0xFFFF) * 10;
1101 i += j;
1102 }
1103
1104 /* if we only got a major version, let's shift it now */
1105 if (i < 65536)
1106 i <<= 16;
1107
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001108 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001109 /* having a range with a min or a max is absurd */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001110 memprintf(err, "version range '%s' specified with a comparison operator", text[skip]);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001111 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001112 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +02001113
1114 if (!last)
1115 pattern->val.range.min = i;
1116 pattern->val.range.max = i;
1117
1118 switch (*opaque) {
1119 case 0: /* eq */
1120 pattern->val.range.min_set = 1;
1121 pattern->val.range.max_set = 1;
1122 break;
1123 case 1: /* gt */
1124 pattern->val.range.min++; /* gt = ge + 1 */
1125 case 2: /* ge */
1126 pattern->val.range.min_set = 1;
1127 pattern->val.range.max_set = 0;
1128 break;
1129 case 3: /* lt */
1130 pattern->val.range.max--; /* lt = le - 1 */
1131 case 4: /* le */
1132 pattern->val.range.min_set = 0;
1133 pattern->val.range.max_set = 1;
1134 break;
1135 }
1136 return skip + 1;
1137}
1138
Willy Tarreaua67fad92007-05-08 19:50:09 +02001139/* Parse an IP address and an optional mask in the form addr[/mask].
1140 * The addr may either be an IPv4 address or a hostname. The mask
1141 * may either be a dotted mask or a number of bits. Returns 1 if OK,
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001142 * otherwise 0. NOTE: IP address patterns are typed (IPV4/IPV6).
Willy Tarreaua67fad92007-05-08 19:50:09 +02001143 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001144int acl_parse_ip(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua67fad92007-05-08 19:50:09 +02001145{
Willy Tarreaub337b532010-05-13 20:03:41 +02001146 struct eb_root *tree = NULL;
1147 if (pattern->flags & ACL_PAT_F_TREE_OK)
1148 tree = pattern->val.tree;
1149
1150 if (str2net(*text, &pattern->val.ipv4.addr, &pattern->val.ipv4.mask)) {
1151 unsigned int mask = ntohl(pattern->val.ipv4.mask.s_addr);
1152 struct ebmb_node *node;
1153 /* check if the mask is contiguous so that we can insert the
1154 * network into the tree. A continuous mask has only ones on
1155 * the left. This means that this mask + its lower bit added
1156 * once again is null.
1157 */
Willy Tarreauceb4ac92012-04-28 00:41:46 +02001158 pattern->type = SMP_T_IPV4;
Willy Tarreaub337b532010-05-13 20:03:41 +02001159 if (mask + (mask & -mask) == 0 && tree) {
1160 mask = mask ? 33 - flsnz(mask & -mask) : 0; /* equals cidr value */
1161 /* FIXME: insert <addr>/<mask> into the tree here */
1162 node = calloc(1, sizeof(*node) + 4); /* reserve 4 bytes for IPv4 address */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001163 if (!node) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001164 memprintf(err, "out of memory while loading IPv4 pattern");
Willy Tarreaub337b532010-05-13 20:03:41 +02001165 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001166 }
Willy Tarreaub337b532010-05-13 20:03:41 +02001167 memcpy(node->key, &pattern->val.ipv4.addr, 4); /* network byte order */
1168 node->node.pfx = mask;
1169 if (ebmb_insert_prefix(tree, node, 4) != node)
1170 free(node); /* was a duplicate */
1171 pattern->flags |= ACL_PAT_F_TREE;
1172 return 1;
1173 }
Willy Tarreauae8b7962007-06-09 23:10:04 +02001174 return 1;
Willy Tarreaub337b532010-05-13 20:03:41 +02001175 }
Willy Tarreauceb4ac92012-04-28 00:41:46 +02001176 else if (str62net(*text, &pattern->val.ipv6.addr, &pattern->val.ipv6.mask)) {
1177 /* no tree support right now */
1178 pattern->type = SMP_T_IPV6;
1179 return 1;
1180 }
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001181 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001182 memprintf(err, "'%s' is not a valid IPv4 or IPv6 address", *text);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001183 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001184 }
Willy Tarreaua67fad92007-05-08 19:50:09 +02001185}
1186
Willy Tarreaua84d3742007-05-07 00:36:48 +02001187/*
1188 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
1189 * parsing sessions.
1190 */
1191void acl_register_keywords(struct acl_kw_list *kwl)
1192{
1193 LIST_ADDQ(&acl_keywords.list, &kwl->list);
1194}
1195
1196/*
1197 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
1198 */
1199void acl_unregister_keywords(struct acl_kw_list *kwl)
1200{
1201 LIST_DEL(&kwl->list);
1202 LIST_INIT(&kwl->list);
1203}
1204
1205/* Return a pointer to the ACL <name> within the list starting at <head>, or
1206 * NULL if not found.
1207 */
1208struct acl *find_acl_by_name(const char *name, struct list *head)
1209{
1210 struct acl *acl;
1211 list_for_each_entry(acl, head, list) {
1212 if (strcmp(acl->name, name) == 0)
1213 return acl;
1214 }
1215 return NULL;
1216}
1217
1218/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
1219 * <kw> contains an opening parenthesis, only the left part of it is checked.
1220 */
1221struct acl_keyword *find_acl_kw(const char *kw)
1222{
1223 int index;
1224 const char *kwend;
1225 struct acl_kw_list *kwl;
1226
1227 kwend = strchr(kw, '(');
1228 if (!kwend)
1229 kwend = kw + strlen(kw);
1230
1231 list_for_each_entry(kwl, &acl_keywords.list, list) {
1232 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1233 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1234 kwl->kw[index].kw[kwend-kw] == 0)
1235 return &kwl->kw[index];
1236 }
1237 }
1238 return NULL;
1239}
1240
Willy Tarreaudfd7fca2011-03-09 07:27:02 +01001241/* NB: does nothing if <pat> is NULL */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001242static void free_pattern(struct acl_pattern *pat)
1243{
Willy Tarreaudfd7fca2011-03-09 07:27:02 +01001244 if (!pat)
1245 return;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001246
1247 if (pat->ptr.ptr) {
1248 if (pat->freeptrbuf)
1249 pat->freeptrbuf(pat->ptr.ptr);
1250
Willy Tarreaua84d3742007-05-07 00:36:48 +02001251 free(pat->ptr.ptr);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001252 }
1253
Willy Tarreaua84d3742007-05-07 00:36:48 +02001254 free(pat);
1255}
1256
1257static void free_pattern_list(struct list *head)
1258{
1259 struct acl_pattern *pat, *tmp;
1260 list_for_each_entry_safe(pat, tmp, head, list)
1261 free_pattern(pat);
1262}
1263
Willy Tarreaue56cda92010-05-11 23:25:05 +02001264static void free_pattern_tree(struct eb_root *root)
1265{
1266 struct eb_node *node, *next;
1267 node = eb_first(root);
1268 while (node) {
1269 next = eb_next(node);
1270 free(node);
1271 node = next;
1272 }
1273}
1274
Willy Tarreaua84d3742007-05-07 00:36:48 +02001275static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
1276{
Willy Tarreau34db1082012-04-19 17:16:54 +02001277 struct arg *arg;
1278
Willy Tarreaua84d3742007-05-07 00:36:48 +02001279 free_pattern_list(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001280 free_pattern_tree(&expr->pattern_tree);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001281 LIST_INIT(&expr->patterns);
Willy Tarreau34db1082012-04-19 17:16:54 +02001282
1283 for (arg = expr->args; arg; arg++) {
1284 if (arg->type == ARGT_STOP)
1285 break;
Willy Tarreau496aa012012-06-01 10:38:29 +02001286 if (arg->type == ARGT_STR || arg->unresolved) {
Willy Tarreau34db1082012-04-19 17:16:54 +02001287 free(arg->data.str.str);
1288 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02001289 arg->unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001290 }
Willy Tarreau34db1082012-04-19 17:16:54 +02001291 }
1292
Willy Tarreau2e845be2012-10-19 19:49:09 +02001293 if (expr->args != empty_arg_list)
1294 free(expr->args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001295 expr->kw->use_cnt--;
1296 return expr;
1297}
1298
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001299
1300/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
1301 * be returned there on errors and the caller will have to free it.
1302 */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001303static int acl_read_patterns_from_file( struct acl_keyword *aclkw,
1304 struct acl_expr *expr,
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001305 const char *filename, int patflags,
1306 char **err)
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001307{
1308 FILE *file;
1309 char *c;
1310 const char *args[2];
1311 struct acl_pattern *pattern;
1312 int opaque;
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001313 int ret = 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001314 int line = 0;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001315
1316 file = fopen(filename, "r");
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001317 if (!file) {
1318 memprintf(err, "failed to open pattern file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001319 return 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001320 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001321
1322 /* now parse all patterns. The file may contain only one pattern per
1323 * line. If the line contains spaces, they will be part of the pattern.
1324 * The pattern stops at the first CR, LF or EOF encountered.
1325 */
1326 opaque = 0;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001327 pattern = NULL;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001328 args[1] = "";
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001329 while (fgets(trash.str, trash.size, file) != NULL) {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001330 line++;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001331 c = trash.str;
Willy Tarreau58215a02010-05-13 22:07:43 +02001332
1333 /* ignore lines beginning with a dash */
1334 if (*c == '#')
1335 continue;
1336
1337 /* strip leading spaces and tabs */
1338 while (*c == ' ' || *c == '\t')
1339 c++;
1340
Willy Tarreau58215a02010-05-13 22:07:43 +02001341
1342 args[0] = c;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001343 while (*c && *c != '\n' && *c != '\r')
1344 c++;
1345 *c = 0;
1346
Willy Tarreau51091962011-01-03 21:04:10 +01001347 /* empty lines are ignored too */
1348 if (c == args[0])
1349 continue;
1350
Willy Tarreaue56cda92010-05-11 23:25:05 +02001351 /* we keep the previous pattern along iterations as long as it's not used */
1352 if (!pattern)
1353 pattern = (struct acl_pattern *)malloc(sizeof(*pattern));
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001354 if (!pattern) {
1355 memprintf(err, "out of memory when loading patterns from file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001356 goto out_close;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001357 }
Willy Tarreaue56cda92010-05-11 23:25:05 +02001358
1359 memset(pattern, 0, sizeof(*pattern));
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001360 pattern->flags = patflags;
1361
Willy Tarreaue56cda92010-05-11 23:25:05 +02001362 if ((aclkw->requires & ACL_MAY_LOOKUP) && !(pattern->flags & ACL_PAT_F_IGNORE_CASE)) {
1363 /* we pre-set the data pointer to the tree's head so that functions
1364 * which are able to insert in a tree know where to do that.
1365 */
1366 pattern->flags |= ACL_PAT_F_TREE_OK;
1367 pattern->val.tree = &expr->pattern_tree;
1368 }
1369
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001370 pattern->type = SMP_TYPES; /* unspecified type by default */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001371 if (!aclkw->parse(args, pattern, &opaque, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001372 goto out_free_pattern;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001373
1374 /* if the parser did not feed the tree, let's chain the pattern to the list */
1375 if (!(pattern->flags & ACL_PAT_F_TREE)) {
1376 LIST_ADDQ(&expr->patterns, &pattern->list);
1377 pattern = NULL; /* get a new one */
1378 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001379 }
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001380
1381 ret = 1; /* success */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001382
1383 out_free_pattern:
1384 free_pattern(pattern);
1385 out_close:
1386 fclose(file);
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001387 return ret;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001388}
1389
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001390/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
1391 * not NULL, it will be filled with a pointer to an error message in case of
1392 * error. This pointer must be freeable or NULL.
1393 *
Willy Tarreaua84d3742007-05-07 00:36:48 +02001394 * Right now, the only accepted syntax is :
1395 * <subject> [<value>...]
1396 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001397struct acl_expr *parse_acl_expr(const char **args, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001398{
1399 __label__ out_return, out_free_expr, out_free_pattern;
1400 struct acl_expr *expr;
1401 struct acl_keyword *aclkw;
1402 struct acl_pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001403 int opaque, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001404 const char *arg;
1405
1406 aclkw = find_acl_kw(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001407 if (!aclkw || !aclkw->parse) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001408 memprintf(err, "unknown ACL keyword '%s'", *args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001409 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001410 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001411
1412 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001413 if (!expr) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001414 memprintf(err, "out of memory when parsing ACL expression");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001415 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001416 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001417
1418 expr->kw = aclkw;
1419 aclkw->use_cnt++;
1420 LIST_INIT(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001421 expr->pattern_tree = EB_ROOT_UNIQUE;
Willy Tarreau2e845be2012-10-19 19:49:09 +02001422 expr->args = empty_arg_list;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001423
1424 arg = strchr(args[0], '(');
Willy Tarreau61612d42012-04-19 18:42:05 +02001425 if (aclkw->arg_mask) {
1426 int nbargs = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001427 char *end;
Willy Tarreau34db1082012-04-19 17:16:54 +02001428
Willy Tarreau61612d42012-04-19 18:42:05 +02001429 if (arg != NULL) {
1430 /* there are 0 or more arguments in the form "subject(arg[,arg]*)" */
1431 arg++;
1432 end = strchr(arg, ')');
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001433 if (!end) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001434 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001435 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001436 }
Willy Tarreau34db1082012-04-19 17:16:54 +02001437
Willy Tarreau61612d42012-04-19 18:42:05 +02001438 /* Parse the arguments. Note that currently we have no way to
1439 * report parsing errors, hence the NULL in the error pointers.
1440 * An error is also reported if some mandatory arguments are
1441 * missing.
1442 */
1443 nbargs = make_arg_list(arg, end - arg, aclkw->arg_mask, &expr->args,
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001444 err, NULL, NULL);
1445 if (nbargs < 0) {
1446 /* note that make_arg_list will have set <err> here */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001447 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreau61612d42012-04-19 18:42:05 +02001448 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001449 }
Willy Tarreauae52f062012-04-26 12:13:35 +02001450
Willy Tarreau2e845be2012-10-19 19:49:09 +02001451 if (!expr->args)
1452 expr->args = empty_arg_list;
1453
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001454 if (aclkw->val_args && !aclkw->val_args(expr->args, err)) {
1455 /* invalid keyword argument, error must have been
1456 * set by val_args().
1457 */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001458 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001459 goto out_free_expr;
1460 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001461 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001462 else if (ARGM(aclkw->arg_mask) == 1) {
1463 int type = (aclkw->arg_mask >> 4) & 15;
1464
1465 /* If a proxy is noted as a mandatory argument, we'll fake
1466 * an empty one so that acl_find_targets() resolves it as
1467 * the current one later.
1468 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001469 if (type != ARGT_FE && type != ARGT_BE && type != ARGT_TAB) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001470 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001471 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001472 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001473
1474 /* Build an arg list containing the type as an empty string
1475 * and the usual STOP.
1476 */
1477 expr->args = calloc(2, sizeof(*expr->args));
1478 expr->args[0].type = type;
Willy Tarreaue3a46112012-06-15 08:02:34 +02001479 expr->args[0].unresolved = 1;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001480 expr->args[0].data.str.str = strdup("");
1481 expr->args[0].data.str.len = 1;
1482 expr->args[0].data.str.len = 0;
1483 expr->args[1].type = ARGT_STOP;
1484 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001485 else if (ARGM(aclkw->arg_mask)) {
1486 /* there were some mandatory arguments */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001487 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001488 goto out_free_expr;
Willy Tarreau61612d42012-04-19 18:42:05 +02001489 }
1490 }
1491 else {
1492 if (arg) {
1493 /* no argument expected */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001494 memprintf(err, "ACL keyword '%s' takes no argument", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001495 goto out_free_expr;
1496 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001497 }
1498
Willy Tarreaua84d3742007-05-07 00:36:48 +02001499 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001500
1501 /* check for options before patterns. Supported options are :
1502 * -i : ignore case for all patterns by default
1503 * -f : read patterns from those files
1504 * -- : everything after this is not an option
1505 */
1506 patflags = 0;
1507 while (**args == '-') {
1508 if ((*args)[1] == 'i')
1509 patflags |= ACL_PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001510 else if ((*args)[1] == 'f') {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001511 if (!acl_read_patterns_from_file(aclkw, expr, args[1], patflags | ACL_PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001512 goto out_free_expr;
1513 args++;
1514 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001515 else if ((*args)[1] == '-') {
1516 args++;
1517 break;
1518 }
1519 else
1520 break;
1521 args++;
1522 }
1523
1524 /* now parse all patterns */
Willy Tarreauae8b7962007-06-09 23:10:04 +02001525 opaque = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001526 while (**args) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001527 int ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001528 pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001529 if (!pattern) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001530 memprintf(err, "out of memory when parsing ACL pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001531 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001532 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001533 pattern->flags = patflags;
1534
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001535 pattern->type = SMP_TYPES; /* unspecified type */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001536 ret = aclkw->parse(args, pattern, &opaque, err);
1537 if (!ret)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001538 goto out_free_pattern;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001539
Willy Tarreaua84d3742007-05-07 00:36:48 +02001540 LIST_ADDQ(&expr->patterns, &pattern->list);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001541 args += ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001542 }
1543
1544 return expr;
1545
1546 out_free_pattern:
1547 free_pattern(pattern);
1548 out_free_expr:
1549 prune_acl_expr(expr);
1550 free(expr);
1551 out_return:
1552 return NULL;
1553}
1554
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001555/* Purge everything in the acl <acl>, then return <acl>. */
1556struct acl *prune_acl(struct acl *acl) {
1557
1558 struct acl_expr *expr, *exprb;
1559
1560 free(acl->name);
1561
1562 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
1563 LIST_DEL(&expr->list);
1564 prune_acl_expr(expr);
1565 free(expr);
1566 }
1567
1568 return acl;
1569}
1570
Willy Tarreaua84d3742007-05-07 00:36:48 +02001571/* Parse an ACL with the name starting at <args>[0], and with a list of already
1572 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001573 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001574 * an anonymous one and it won't be merged with any other one. If <err> is not
1575 * NULL, it will be filled with an appropriate error. This pointer must be
1576 * freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001577 *
1578 * args syntax: <aclname> <acl_expr>
1579 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001580struct acl *parse_acl(const char **args, struct list *known_acl, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001581{
1582 __label__ out_return, out_free_acl_expr, out_free_name;
1583 struct acl *cur_acl;
1584 struct acl_expr *acl_expr;
1585 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001586 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001587
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001588 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001589 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001590 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001591 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001592
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001593 acl_expr = parse_acl_expr(args + 1, err);
1594 if (!acl_expr) {
1595 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001596 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001597 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001598
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001599 /* Check for args beginning with an opening parenthesis just after the
1600 * subject, as this is almost certainly a typo. Right now we can only
1601 * emit a warning, so let's do so.
1602 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +02001603 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001604 Warning("parsing acl '%s' :\n"
1605 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
1606 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
1607 " If you are really sure this is not an error, please insert '--' between the\n"
1608 " match and the pattern to make this warning message disappear.\n",
1609 args[0], args[1], args[2]);
1610
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001611 if (*args[0])
1612 cur_acl = find_acl_by_name(args[0], known_acl);
1613 else
1614 cur_acl = NULL;
1615
Willy Tarreaua84d3742007-05-07 00:36:48 +02001616 if (!cur_acl) {
1617 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001618 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001619 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001620 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001621 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001622 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001623 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001624 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001625 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001626 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001627
1628 LIST_INIT(&cur_acl->expr);
1629 LIST_ADDQ(known_acl, &cur_acl->list);
1630 cur_acl->name = name;
1631 }
1632
Willy Tarreaua9802632008-07-25 19:13:19 +02001633 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001634 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1635 return cur_acl;
1636
1637 out_free_name:
1638 free(name);
1639 out_free_acl_expr:
1640 prune_acl_expr(acl_expr);
1641 free(acl_expr);
1642 out_return:
1643 return NULL;
1644}
1645
Willy Tarreau16fbe822007-06-17 11:54:31 +02001646/* Some useful ACLs provided by default. Only those used are allocated. */
1647
1648const struct {
1649 const char *name;
1650 const char *expr[4]; /* put enough for longest expression */
1651} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +02001652 { .name = "TRUE", .expr = {"always_true",""}},
1653 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001654 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001655 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001656 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
1657 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
1658 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
1659 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
1660 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
1661 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
1662 { .name = "METH_POST", .expr = {"method","POST",""}},
1663 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
1664 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
1665 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
1666 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
1667 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +02001668 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +02001669 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +02001670 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001671 { .name = NULL, .expr = {""}}
1672};
1673
1674/* Find a default ACL from the default_acl list, compile it and return it.
1675 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
1676 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001677 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
1678 * not NULL, it will be filled with an error message if an error occurs. This
1679 * pointer must be freeable or NULL.
Willy Tarreau16fbe822007-06-17 11:54:31 +02001680 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001681struct acl *find_acl_default(const char *acl_name, struct list *known_acl, char **err)
Willy Tarreau16fbe822007-06-17 11:54:31 +02001682{
1683 __label__ out_return, out_free_acl_expr, out_free_name;
1684 struct acl *cur_acl;
1685 struct acl_expr *acl_expr;
1686 char *name;
1687 int index;
1688
1689 for (index = 0; default_acl_list[index].name != NULL; index++) {
1690 if (strcmp(acl_name, default_acl_list[index].name) == 0)
1691 break;
1692 }
1693
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001694 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001695 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001696 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001697 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001698
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001699 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err);
1700 if (!acl_expr) {
1701 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001702 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001703 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001704
1705 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001706 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001707 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001708 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001709 }
1710
Willy Tarreau16fbe822007-06-17 11:54:31 +02001711 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001712 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001713 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001714 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001715 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001716
1717 cur_acl->name = name;
Willy Tarreaua55b7dc2009-07-12 09:21:30 +02001718 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreau16fbe822007-06-17 11:54:31 +02001719 LIST_INIT(&cur_acl->expr);
1720 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1721 if (known_acl)
1722 LIST_ADDQ(known_acl, &cur_acl->list);
1723
1724 return cur_acl;
1725
1726 out_free_name:
1727 free(name);
1728 out_free_acl_expr:
1729 prune_acl_expr(acl_expr);
1730 free(acl_expr);
1731 out_return:
1732 return NULL;
1733}
Willy Tarreaua84d3742007-05-07 00:36:48 +02001734
1735/* Purge everything in the acl_cond <cond>, then return <cond>. */
1736struct acl_cond *prune_acl_cond(struct acl_cond *cond)
1737{
1738 struct acl_term_suite *suite, *tmp_suite;
1739 struct acl_term *term, *tmp_term;
1740
1741 /* iterate through all term suites and free all terms and all suites */
1742 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
1743 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
1744 free(term);
1745 free(suite);
1746 }
1747 return cond;
1748}
1749
1750/* Parse an ACL condition starting at <args>[0], relying on a list of already
1751 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001752 * case of low memory). Supports multiple conditions separated by "or". If
1753 * <err> is not NULL, it will be filled with a pointer to an error message in
1754 * case of error, that the caller is responsible for freeing. The initial
1755 * location must either be freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001756 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001757struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, int pol, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001758{
1759 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001760 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001761 const char *word;
1762 struct acl *cur_acl;
1763 struct acl_term *cur_term;
1764 struct acl_term_suite *cur_suite;
1765 struct acl_cond *cond;
1766
1767 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001768 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001769 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001770 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001771 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001772
1773 LIST_INIT(&cond->list);
1774 LIST_INIT(&cond->suites);
1775 cond->pol = pol;
1776
1777 cur_suite = NULL;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001778 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001779 for (arg = 0; *args[arg]; arg++) {
1780 word = args[arg];
1781
1782 /* remove as many exclamation marks as we can */
1783 while (*word == '!') {
1784 neg = !neg;
1785 word++;
1786 }
1787
1788 /* an empty word is allowed because we cannot force the user to
1789 * always think about not leaving exclamation marks alone.
1790 */
1791 if (!*word)
1792 continue;
1793
Willy Tarreau16fbe822007-06-17 11:54:31 +02001794 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +02001795 /* new term suite */
1796 cur_suite = NULL;
1797 neg = 0;
1798 continue;
1799 }
1800
Willy Tarreau95fa4692010-02-01 13:05:50 +01001801 if (strcmp(word, "{") == 0) {
1802 /* we may have a complete ACL expression between two braces,
1803 * find the last one.
1804 */
1805 int arg_end = arg + 1;
1806 const char **args_new;
1807
1808 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
1809 arg_end++;
1810
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001811 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001812 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001813 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001814 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001815
1816 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001817 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001818 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001819 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001820 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001821
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001822 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +01001823 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
1824 args_new[arg_end - arg] = "";
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001825 cur_acl = parse_acl(args_new, known_acl, err);
Willy Tarreau95fa4692010-02-01 13:05:50 +01001826 free(args_new);
1827
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001828 if (!cur_acl) {
1829 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001830 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001831 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001832 arg = arg_end;
1833 }
1834 else {
1835 /* search for <word> in the known ACL names. If we do not find
1836 * it, let's look for it in the default ACLs, and if found, add
1837 * it to the list of ACLs of this proxy. This makes it possible
1838 * to override them.
1839 */
1840 cur_acl = find_acl_by_name(word, known_acl);
1841 if (cur_acl == NULL) {
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001842 cur_acl = find_acl_default(word, known_acl, err);
1843 if (cur_acl == NULL) {
1844 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +01001845 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001846 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001847 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001848 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001849
1850 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001851 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001852 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001853 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001854 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001855
1856 cur_term->acl = cur_acl;
1857 cur_term->neg = neg;
Willy Tarreaua9802632008-07-25 19:13:19 +02001858 cond->requires |= cur_acl->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001859
1860 if (!cur_suite) {
1861 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +01001862 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001863 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001864 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001865 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001866 LIST_INIT(&cur_suite->terms);
1867 LIST_ADDQ(&cond->suites, &cur_suite->list);
1868 }
1869 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001870 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001871 }
1872
1873 return cond;
1874
1875 out_free_term:
1876 free(cur_term);
1877 out_free_suite:
1878 prune_acl_cond(cond);
1879 free(cond);
1880 out_return:
1881 return NULL;
1882}
1883
Willy Tarreau2bbba412010-01-28 16:48:33 +01001884/* Builds an ACL condition starting at the if/unless keyword. The complete
1885 * condition is returned. NULL is returned in case of error or if the first
1886 * word is neither "if" nor "unless". It automatically sets the file name and
1887 * the line number in the condition for better error reporting, and adds the
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001888 * ACL requirements to the proxy's acl_requires. If <err> is not NULL, it will
1889 * be filled with a pointer to an error message in case of error, that the
1890 * caller is responsible for freeing. The initial location must either be
1891 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001892 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001893struct 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 +01001894{
1895 int pol = ACL_COND_NONE;
1896 struct acl_cond *cond = NULL;
1897
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001898 if (err)
1899 *err = NULL;
1900
Willy Tarreau2bbba412010-01-28 16:48:33 +01001901 if (!strcmp(*args, "if")) {
1902 pol = ACL_COND_IF;
1903 args++;
1904 }
1905 else if (!strcmp(*args, "unless")) {
1906 pol = ACL_COND_UNLESS;
1907 args++;
1908 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001909 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001910 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001911 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001912 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001913
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001914 cond = parse_acl_cond(args, &px->acl, pol, err);
1915 if (!cond) {
1916 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001917 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001918 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001919
1920 cond->file = file;
1921 cond->line = line;
1922 px->acl_requires |= cond->requires;
1923
1924 return cond;
1925}
1926
Willy Tarreau11382812008-07-09 16:18:21 +02001927/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
Willy Tarreaub6866442008-07-14 23:54:42 +02001928 * ACL_PAT_PASS depending on the test results. ACL_PAT_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001929 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001930 * data is being examined. The function automatically sets SMP_OPT_ITERATE.
Willy Tarreaub6866442008-07-14 23:54:42 +02001931 * This function only computes the condition, it does not apply the polarity
1932 * required by IF/UNLESS, it's up to the caller to do this using something like
1933 * this :
Willy Tarreau11382812008-07-09 16:18:21 +02001934 *
1935 * res = acl_pass(res);
Willy Tarreaub6866442008-07-14 23:54:42 +02001936 * if (res == ACL_PAT_MISS)
1937 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001938 * if (cond->pol == ACL_COND_UNLESS)
1939 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001940 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001941int 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 +02001942{
1943 __label__ fetch_next;
1944 struct acl_term_suite *suite;
1945 struct acl_term *term;
1946 struct acl_expr *expr;
1947 struct acl *acl;
1948 struct acl_pattern *pattern;
Willy Tarreau37406352012-04-23 16:16:37 +02001949 struct sample smp;
Willy Tarreau11382812008-07-09 16:18:21 +02001950 int acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001951
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001952 /* ACLs are iterated over all values, so let's always set the flag to
1953 * indicate this to the fetch functions.
1954 */
1955 opt |= SMP_OPT_ITERATE;
1956
Willy Tarreau11382812008-07-09 16:18:21 +02001957 /* We're doing a logical OR between conditions so we initialize to FAIL.
1958 * The MISS status is propagated down from the suites.
1959 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001960 cond_res = ACL_PAT_FAIL;
1961 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001962 /* Evaluate condition suite <suite>. We stop at the first term
1963 * which returns ACL_PAT_FAIL. The MISS status is still propagated
1964 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001965 */
1966
1967 /* we're doing a logical AND between terms, so we must set the
1968 * initial value to PASS.
1969 */
1970 suite_res = ACL_PAT_PASS;
1971 list_for_each_entry(term, &suite->terms, list) {
1972 acl = term->acl;
1973
1974 /* FIXME: use cache !
1975 * check acl->cache_idx for this.
1976 */
1977
1978 /* ACL result not cached. Let's scan all the expressions
1979 * and use the first one to match.
1980 */
1981 acl_res = ACL_PAT_FAIL;
1982 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001983 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001984 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001985 fetch_next:
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001986 if (!expr->kw->fetch(px, l4, l7, opt, expr->args, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001987 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001988 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001989 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001990 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001991 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001992
Willy Tarreau197e10a2012-04-23 19:18:42 +02001993 if (smp.type == SMP_T_BOOL) {
1994 if (smp.data.uint)
Willy Tarreaua79534f2008-07-20 10:13:37 +02001995 acl_res |= ACL_PAT_PASS;
1996 else
1997 acl_res |= ACL_PAT_FAIL;
1998 }
1999 else {
Willy Tarreau020534d2010-05-16 21:45:45 +02002000 if (!eb_is_empty(&expr->pattern_tree)) {
Willy Tarreauc4262962010-05-10 23:42:40 +02002001 /* a tree is present, let's check what type it is */
2002 if (expr->kw->match == acl_match_str)
Willy Tarreau37406352012-04-23 16:16:37 +02002003 acl_res |= acl_lookup_str(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreaub337b532010-05-13 20:03:41 +02002004 else if (expr->kw->match == acl_match_ip)
Willy Tarreau37406352012-04-23 16:16:37 +02002005 acl_res |= acl_lookup_ip(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreauc4262962010-05-10 23:42:40 +02002006 }
2007
Willy Tarreaua79534f2008-07-20 10:13:37 +02002008 /* call the match() function for all tests on this value */
2009 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreaua79534f2008-07-20 10:13:37 +02002010 if (acl_res == ACL_PAT_PASS)
2011 break;
Willy Tarreau37406352012-04-23 16:16:37 +02002012 acl_res |= expr->kw->match(&smp, pattern);
Willy Tarreaua79534f2008-07-20 10:13:37 +02002013 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02002014 }
2015 /*
Willy Tarreau11382812008-07-09 16:18:21 +02002016 * OK now acl_res holds the result of this expression
2017 * as one of ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02002018 *
Willy Tarreau11382812008-07-09 16:18:21 +02002019 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02002020 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02002021 *
2022 * FIXME: implement cache.
2023 *
2024 */
2025
Willy Tarreau11382812008-07-09 16:18:21 +02002026 /* we're ORing these terms, so a single PASS is enough */
2027 if (acl_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002028 break;
2029
Willy Tarreau37406352012-04-23 16:16:37 +02002030 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002031 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02002032
2033 /* sometimes we know the fetched data is subject to change
2034 * later and give another chance for a new match (eg: request
2035 * size, time, ...)
2036 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002037 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02002038 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02002039 }
2040 /*
2041 * Here we have the result of an ACL (cached or not).
2042 * ACLs are combined, negated or not, to form conditions.
2043 */
2044
Willy Tarreaua84d3742007-05-07 00:36:48 +02002045 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02002046 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02002047
2048 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02002049
2050 /* we're ANDing these terms, so a single FAIL is enough */
2051 if (suite_res == ACL_PAT_FAIL)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002052 break;
2053 }
2054 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02002055
2056 /* we're ORing these terms, so a single PASS is enough */
2057 if (cond_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002058 break;
2059 }
Willy Tarreau11382812008-07-09 16:18:21 +02002060 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02002061}
2062
2063
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002064/* Reports a pointer to the first ACL used in condition <cond> which requires
2065 * at least one of the USE_FLAGS in <require>. Returns NULL if none matches.
2066 * The construct is almost the same as for acl_exec_cond() since we're walking
2067 * down the ACL tree as well. It is important that the tree is really walked
2068 * through and never cached, because that way, this function can be used as a
2069 * late check.
2070 */
Willy Tarreauf1e98b82010-01-28 17:59:39 +01002071struct acl *cond_find_require(const struct acl_cond *cond, unsigned int require)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002072{
2073 struct acl_term_suite *suite;
2074 struct acl_term *term;
2075 struct acl *acl;
2076
2077 list_for_each_entry(suite, &cond->suites, list) {
2078 list_for_each_entry(term, &suite->terms, list) {
2079 acl = term->acl;
2080 if (acl->requires & require)
2081 return acl;
2082 }
2083 }
2084 return NULL;
2085}
2086
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002087/*
2088 * Find targets for userlist and groups in acl. Function returns the number
2089 * of errors or OK if everything is fine.
2090 */
2091int
2092acl_find_targets(struct proxy *p)
2093{
2094
2095 struct acl *acl;
2096 struct acl_expr *expr;
2097 struct acl_pattern *pattern;
2098 struct userlist *ul;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002099 struct arg *arg;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002100 int cfgerr = 0;
2101
2102 list_for_each_entry(acl, &p->acl, list) {
2103 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreau2e845be2012-10-19 19:49:09 +02002104 for (arg = expr->args; arg && arg->type != ARGT_STOP; arg++) {
2105 if (!arg->unresolved)
Willy Tarreau496aa012012-06-01 10:38:29 +02002106 continue;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002107 else if (arg->type == ARGT_SRV) {
2108 struct proxy *px;
2109 struct server *srv;
2110 char *pname, *sname;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002111
Willy Tarreau7d1df412012-11-23 23:47:36 +01002112 if (!arg->data.str.len) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002113 Alert("proxy %s: acl '%s' %s(): missing server name.\n",
2114 p->id, acl->name, expr->kw->kw);
2115 cfgerr++;
2116 continue;
2117 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002118
Willy Tarreau7d1df412012-11-23 23:47:36 +01002119 pname = arg->data.str.str;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002120 sname = strrchr(pname, '/');
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002121
Willy Tarreau63364ee2012-04-19 19:11:13 +02002122 if (sname)
2123 *sname++ = '\0';
2124 else {
2125 sname = pname;
2126 pname = NULL;
2127 }
2128
2129 px = p;
2130 if (pname) {
2131 px = findproxy(pname, PR_CAP_BE);
2132 if (!px) {
2133 Alert("proxy %s: acl '%s' %s(): unable to find proxy '%s'.\n",
2134 p->id, acl->name, expr->kw->kw, pname);
2135 cfgerr++;
2136 continue;
2137 }
2138 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002139
Willy Tarreau63364ee2012-04-19 19:11:13 +02002140 srv = findserver(px, sname);
2141 if (!srv) {
2142 Alert("proxy %s: acl '%s' %s(): unable to find server '%s'.\n",
2143 p->id, acl->name, expr->kw->kw, sname);
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002144 cfgerr++;
2145 continue;
2146 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002147
Willy Tarreau7d1df412012-11-23 23:47:36 +01002148 free(arg->data.str.str);
2149 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002150 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002151 arg->data.srv = srv;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002152 }
2153 else if (arg->type == ARGT_FE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002154 struct proxy *prx = p;
2155 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002156
Willy Tarreau7d1df412012-11-23 23:47:36 +01002157 if (arg->data.str.len) {
2158 pname = arg->data.str.str;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002159 prx = findproxy(pname, PR_CAP_FE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002160 }
2161
Willy Tarreaud28c3532012-04-19 19:28:33 +02002162 if (!prx) {
2163 Alert("proxy %s: acl '%s' %s(): unable to find frontend '%s'.\n",
2164 p->id, acl->name, expr->kw->kw, pname);
2165 cfgerr++;
2166 continue;
2167 }
2168
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002169 if (!(prx->cap & PR_CAP_FE)) {
2170 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no frontend capability.\n",
2171 p->id, acl->name, expr->kw->kw, pname);
2172 cfgerr++;
2173 continue;
2174 }
2175
Willy Tarreau7d1df412012-11-23 23:47:36 +01002176 free(arg->data.str.str);
2177 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002178 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002179 arg->data.prx = prx;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002180 }
2181 else if (arg->type == ARGT_BE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002182 struct proxy *prx = p;
2183 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002184
Willy Tarreau7d1df412012-11-23 23:47:36 +01002185 if (arg->data.str.len) {
2186 pname = arg->data.str.str;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002187 prx = findproxy(pname, PR_CAP_BE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002188 }
2189
Willy Tarreaud28c3532012-04-19 19:28:33 +02002190 if (!prx) {
2191 Alert("proxy %s: acl '%s' %s(): unable to find backend '%s'.\n",
2192 p->id, acl->name, expr->kw->kw, pname);
2193 cfgerr++;
2194 continue;
2195 }
2196
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002197 if (!(prx->cap & PR_CAP_BE)) {
2198 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no backend capability.\n",
2199 p->id, acl->name, expr->kw->kw, pname);
2200 cfgerr++;
2201 continue;
2202 }
2203
Willy Tarreau7d1df412012-11-23 23:47:36 +01002204 free(arg->data.str.str);
2205 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002206 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002207 arg->data.prx = prx;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002208 }
2209 else if (arg->type == ARGT_TAB) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002210 struct proxy *prx = p;
2211 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002212
Willy Tarreau7d1df412012-11-23 23:47:36 +01002213 if (arg->data.str.len) {
2214 pname = arg->data.str.str;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002215 prx = find_stktable(pname);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002216 }
2217
Willy Tarreaud28c3532012-04-19 19:28:33 +02002218 if (!prx) {
2219 Alert("proxy %s: acl '%s' %s(): unable to find table '%s'.\n",
2220 p->id, acl->name, expr->kw->kw, pname);
2221 cfgerr++;
2222 continue;
2223 }
2224
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002225
2226 if (!prx->table.size) {
2227 Alert("proxy %s: acl '%s' %s(): no table in proxy '%s'.\n",
2228 p->id, acl->name, expr->kw->kw, pname);
2229 cfgerr++;
2230 continue;
2231 }
2232
Willy Tarreau7d1df412012-11-23 23:47:36 +01002233 free(arg->data.str.str);
2234 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002235 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002236 arg->data.prx = prx;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002237 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002238 else if (arg->type == ARGT_USR) {
Willy Tarreau7d1df412012-11-23 23:47:36 +01002239 if (!arg->data.str.len) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002240 Alert("proxy %s: acl '%s' %s(): missing userlist name.\n",
2241 p->id, acl->name, expr->kw->kw);
2242 cfgerr++;
2243 continue;
2244 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002245
Willy Tarreau63364ee2012-04-19 19:11:13 +02002246 if (p->uri_auth && p->uri_auth->userlist &&
Willy Tarreau7d1df412012-11-23 23:47:36 +01002247 !strcmp(p->uri_auth->userlist->name, arg->data.str.str))
Willy Tarreau63364ee2012-04-19 19:11:13 +02002248 ul = p->uri_auth->userlist;
2249 else
Willy Tarreau7d1df412012-11-23 23:47:36 +01002250 ul = auth_find_userlist(arg->data.str.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002251
Willy Tarreau63364ee2012-04-19 19:11:13 +02002252 if (!ul) {
2253 Alert("proxy %s: acl '%s' %s(%s): unable to find userlist.\n",
Willy Tarreau7d1df412012-11-23 23:47:36 +01002254 p->id, acl->name, expr->kw->kw, arg->data.str.str);
Willy Tarreau63364ee2012-04-19 19:11:13 +02002255 cfgerr++;
2256 continue;
2257 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002258
Willy Tarreau7d1df412012-11-23 23:47:36 +01002259 free(arg->data.str.str);
2260 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002261 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002262 arg->data.usr = ul;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002263 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002264 } /* end of args processing */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002265
Willy Tarreau46b39d02012-05-10 23:40:14 +02002266 /* don't try to resolve groups if we're not certain of having
2267 * resolved userlists first.
2268 */
2269 if (cfgerr)
2270 break;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002271
2272 if (!strcmp(expr->kw->kw, "http_auth_group")) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002273 /* note: argument resolved above thanks to ARGT_USR */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002274
2275 if (LIST_ISEMPTY(&expr->patterns)) {
2276 Alert("proxy %s: acl %s %s(): no groups specified.\n",
2277 p->id, acl->name, expr->kw->kw);
2278 cfgerr++;
2279 continue;
2280 }
2281
2282 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreau7d1df412012-11-23 23:47:36 +01002283 /* this keyword only has one argument */
Willy Tarreau34db1082012-04-19 17:16:54 +02002284 pattern->val.group_mask = auth_resolve_groups(expr->args->data.usr, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002285
2286 free(pattern->ptr.str);
2287 pattern->ptr.str = NULL;
2288 pattern->len = 0;
2289
2290 if (!pattern->val.group_mask) {
2291 Alert("proxy %s: acl %s %s(): invalid group(s).\n",
2292 p->id, acl->name, expr->kw->kw);
2293 cfgerr++;
2294 continue;
2295 }
2296 }
2297 }
2298 }
2299 }
2300
2301 return cfgerr;
2302}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002303
Willy Tarreaua84d3742007-05-07 00:36:48 +02002304/************************************************************************/
2305/* All supported keywords must be declared here. */
2306/************************************************************************/
2307
Willy Tarreau61612d42012-04-19 18:42:05 +02002308/* Note: must not be declared <const> as its list will be overwritten.
2309 * Please take care of keeping this list alphabetically sorted.
2310 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02002311static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02002312 { "always_false", acl_parse_nothing, acl_fetch_false, acl_match_nothing, ACL_USE_NOTHING, 0 },
2313 { "always_true", acl_parse_nothing, acl_fetch_true, acl_match_nothing, ACL_USE_NOTHING, 0 },
2314 { "rep_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6RTR_VOLATILE, 0 },
2315 { "req_len", acl_parse_int, acl_fetch_req_len, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
Willy Tarreau61612d42012-04-19 18:42:05 +02002316 { "req_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2317 { "req_ssl_sni", acl_parse_str, acl_fetch_ssl_hello_sni, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
2318 { "req_ssl_ver", acl_parse_dotted_ver, acl_fetch_req_ssl_ver, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2319 { "wait_end", acl_parse_nothing, acl_fetch_wait_end, acl_match_nothing, ACL_USE_NOTHING, 0 },
Willy Tarreaua84d3742007-05-07 00:36:48 +02002320 { NULL, NULL, NULL, NULL }
2321}};
2322
2323
2324__attribute__((constructor))
2325static void __acl_init(void)
2326{
2327 acl_register_keywords(&acl_kws);
2328}
2329
2330
2331/*
2332 * Local variables:
2333 * c-indent-level: 8
2334 * c-basic-offset: 8
2335 * End:
2336 */