blob: 86094c56570c908eb39c369fb7296ec729022df2 [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 Tarreaue0db1e82013-01-04 16:31:47 +01001362 if (!(pattern->flags & ACL_PAT_F_IGNORE_CASE) &&
1363 (aclkw->match == acl_match_str || aclkw->match == acl_match_ip)) {
Willy Tarreaue56cda92010-05-11 23:25:05 +02001364 /* we pre-set the data pointer to the tree's head so that functions
1365 * which are able to insert in a tree know where to do that.
1366 */
1367 pattern->flags |= ACL_PAT_F_TREE_OK;
1368 pattern->val.tree = &expr->pattern_tree;
1369 }
1370
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001371 pattern->type = SMP_TYPES; /* unspecified type by default */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001372 if (!aclkw->parse(args, pattern, &opaque, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001373 goto out_free_pattern;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001374
1375 /* if the parser did not feed the tree, let's chain the pattern to the list */
1376 if (!(pattern->flags & ACL_PAT_F_TREE)) {
1377 LIST_ADDQ(&expr->patterns, &pattern->list);
1378 pattern = NULL; /* get a new one */
1379 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001380 }
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001381
1382 ret = 1; /* success */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001383
1384 out_free_pattern:
1385 free_pattern(pattern);
1386 out_close:
1387 fclose(file);
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001388 return ret;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001389}
1390
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001391/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
1392 * not NULL, it will be filled with a pointer to an error message in case of
1393 * error. This pointer must be freeable or NULL.
1394 *
Willy Tarreaua84d3742007-05-07 00:36:48 +02001395 * Right now, the only accepted syntax is :
1396 * <subject> [<value>...]
1397 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001398struct acl_expr *parse_acl_expr(const char **args, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001399{
1400 __label__ out_return, out_free_expr, out_free_pattern;
1401 struct acl_expr *expr;
1402 struct acl_keyword *aclkw;
1403 struct acl_pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001404 int opaque, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001405 const char *arg;
1406
1407 aclkw = find_acl_kw(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001408 if (!aclkw || !aclkw->parse) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001409 memprintf(err, "unknown ACL keyword '%s'", *args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001410 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001411 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001412
1413 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001414 if (!expr) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001415 memprintf(err, "out of memory when parsing ACL expression");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001416 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001417 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001418
1419 expr->kw = aclkw;
1420 aclkw->use_cnt++;
1421 LIST_INIT(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001422 expr->pattern_tree = EB_ROOT_UNIQUE;
Willy Tarreau2e845be2012-10-19 19:49:09 +02001423 expr->args = empty_arg_list;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001424
1425 arg = strchr(args[0], '(');
Willy Tarreau61612d42012-04-19 18:42:05 +02001426 if (aclkw->arg_mask) {
1427 int nbargs = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001428 char *end;
Willy Tarreau34db1082012-04-19 17:16:54 +02001429
Willy Tarreau61612d42012-04-19 18:42:05 +02001430 if (arg != NULL) {
1431 /* there are 0 or more arguments in the form "subject(arg[,arg]*)" */
1432 arg++;
1433 end = strchr(arg, ')');
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001434 if (!end) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001435 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001436 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001437 }
Willy Tarreau34db1082012-04-19 17:16:54 +02001438
Willy Tarreau61612d42012-04-19 18:42:05 +02001439 /* Parse the arguments. Note that currently we have no way to
1440 * report parsing errors, hence the NULL in the error pointers.
1441 * An error is also reported if some mandatory arguments are
1442 * missing.
1443 */
1444 nbargs = make_arg_list(arg, end - arg, aclkw->arg_mask, &expr->args,
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001445 err, NULL, NULL);
1446 if (nbargs < 0) {
1447 /* note that make_arg_list will have set <err> here */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001448 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreau61612d42012-04-19 18:42:05 +02001449 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001450 }
Willy Tarreauae52f062012-04-26 12:13:35 +02001451
Willy Tarreau2e845be2012-10-19 19:49:09 +02001452 if (!expr->args)
1453 expr->args = empty_arg_list;
1454
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001455 if (aclkw->val_args && !aclkw->val_args(expr->args, err)) {
1456 /* invalid keyword argument, error must have been
1457 * set by val_args().
1458 */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001459 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001460 goto out_free_expr;
1461 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001462 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001463 else if (ARGM(aclkw->arg_mask) == 1) {
1464 int type = (aclkw->arg_mask >> 4) & 15;
1465
1466 /* If a proxy is noted as a mandatory argument, we'll fake
1467 * an empty one so that acl_find_targets() resolves it as
1468 * the current one later.
1469 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001470 if (type != ARGT_FE && type != ARGT_BE && type != ARGT_TAB) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001471 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001472 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001473 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001474
1475 /* Build an arg list containing the type as an empty string
1476 * and the usual STOP.
1477 */
1478 expr->args = calloc(2, sizeof(*expr->args));
1479 expr->args[0].type = type;
Willy Tarreaue3a46112012-06-15 08:02:34 +02001480 expr->args[0].unresolved = 1;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001481 expr->args[0].data.str.str = strdup("");
1482 expr->args[0].data.str.len = 1;
1483 expr->args[0].data.str.len = 0;
1484 expr->args[1].type = ARGT_STOP;
1485 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001486 else if (ARGM(aclkw->arg_mask)) {
1487 /* there were some mandatory arguments */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001488 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001489 goto out_free_expr;
Willy Tarreau61612d42012-04-19 18:42:05 +02001490 }
1491 }
1492 else {
1493 if (arg) {
1494 /* no argument expected */
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001495 memprintf(err, "ACL keyword '%s' takes no argument", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001496 goto out_free_expr;
1497 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001498 }
1499
Willy Tarreaua84d3742007-05-07 00:36:48 +02001500 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001501
1502 /* check for options before patterns. Supported options are :
1503 * -i : ignore case for all patterns by default
1504 * -f : read patterns from those files
1505 * -- : everything after this is not an option
1506 */
1507 patflags = 0;
1508 while (**args == '-') {
1509 if ((*args)[1] == 'i')
1510 patflags |= ACL_PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001511 else if ((*args)[1] == 'f') {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001512 if (!acl_read_patterns_from_file(aclkw, expr, args[1], patflags | ACL_PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001513 goto out_free_expr;
1514 args++;
1515 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001516 else if ((*args)[1] == '-') {
1517 args++;
1518 break;
1519 }
1520 else
1521 break;
1522 args++;
1523 }
1524
1525 /* now parse all patterns */
Willy Tarreauae8b7962007-06-09 23:10:04 +02001526 opaque = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001527 while (**args) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001528 int ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001529 pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001530 if (!pattern) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001531 memprintf(err, "out of memory when parsing ACL pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001532 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001533 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001534 pattern->flags = patflags;
1535
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001536 pattern->type = SMP_TYPES; /* unspecified type */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001537 ret = aclkw->parse(args, pattern, &opaque, err);
1538 if (!ret)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001539 goto out_free_pattern;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001540
Willy Tarreaua84d3742007-05-07 00:36:48 +02001541 LIST_ADDQ(&expr->patterns, &pattern->list);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001542 args += ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001543 }
1544
1545 return expr;
1546
1547 out_free_pattern:
1548 free_pattern(pattern);
1549 out_free_expr:
1550 prune_acl_expr(expr);
1551 free(expr);
1552 out_return:
1553 return NULL;
1554}
1555
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001556/* Purge everything in the acl <acl>, then return <acl>. */
1557struct acl *prune_acl(struct acl *acl) {
1558
1559 struct acl_expr *expr, *exprb;
1560
1561 free(acl->name);
1562
1563 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
1564 LIST_DEL(&expr->list);
1565 prune_acl_expr(expr);
1566 free(expr);
1567 }
1568
1569 return acl;
1570}
1571
Willy Tarreaua84d3742007-05-07 00:36:48 +02001572/* Parse an ACL with the name starting at <args>[0], and with a list of already
1573 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001574 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001575 * an anonymous one and it won't be merged with any other one. If <err> is not
1576 * NULL, it will be filled with an appropriate error. This pointer must be
1577 * freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001578 *
1579 * args syntax: <aclname> <acl_expr>
1580 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001581struct acl *parse_acl(const char **args, struct list *known_acl, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001582{
1583 __label__ out_return, out_free_acl_expr, out_free_name;
1584 struct acl *cur_acl;
1585 struct acl_expr *acl_expr;
1586 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001587 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001588
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001589 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001590 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001591 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001592 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001593
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001594 acl_expr = parse_acl_expr(args + 1, err);
1595 if (!acl_expr) {
1596 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001597 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001598 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001599
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001600 /* Check for args beginning with an opening parenthesis just after the
1601 * subject, as this is almost certainly a typo. Right now we can only
1602 * emit a warning, so let's do so.
1603 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +02001604 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001605 Warning("parsing acl '%s' :\n"
1606 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
1607 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
1608 " If you are really sure this is not an error, please insert '--' between the\n"
1609 " match and the pattern to make this warning message disappear.\n",
1610 args[0], args[1], args[2]);
1611
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001612 if (*args[0])
1613 cur_acl = find_acl_by_name(args[0], known_acl);
1614 else
1615 cur_acl = NULL;
1616
Willy Tarreaua84d3742007-05-07 00:36:48 +02001617 if (!cur_acl) {
1618 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001619 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001620 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001621 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001622 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001623 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001624 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001625 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001626 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001627 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001628
1629 LIST_INIT(&cur_acl->expr);
1630 LIST_ADDQ(known_acl, &cur_acl->list);
1631 cur_acl->name = name;
1632 }
1633
Willy Tarreaua9802632008-07-25 19:13:19 +02001634 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001635 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1636 return cur_acl;
1637
1638 out_free_name:
1639 free(name);
1640 out_free_acl_expr:
1641 prune_acl_expr(acl_expr);
1642 free(acl_expr);
1643 out_return:
1644 return NULL;
1645}
1646
Willy Tarreau16fbe822007-06-17 11:54:31 +02001647/* Some useful ACLs provided by default. Only those used are allocated. */
1648
1649const struct {
1650 const char *name;
1651 const char *expr[4]; /* put enough for longest expression */
1652} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +02001653 { .name = "TRUE", .expr = {"always_true",""}},
1654 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001655 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001656 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001657 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
1658 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
1659 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
1660 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
1661 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
1662 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
1663 { .name = "METH_POST", .expr = {"method","POST",""}},
1664 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
1665 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
1666 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
1667 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
1668 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +02001669 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +02001670 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +02001671 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001672 { .name = NULL, .expr = {""}}
1673};
1674
1675/* Find a default ACL from the default_acl list, compile it and return it.
1676 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
1677 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001678 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
1679 * not NULL, it will be filled with an error message if an error occurs. This
1680 * pointer must be freeable or NULL.
Willy Tarreau16fbe822007-06-17 11:54:31 +02001681 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001682struct acl *find_acl_default(const char *acl_name, struct list *known_acl, char **err)
Willy Tarreau16fbe822007-06-17 11:54:31 +02001683{
1684 __label__ out_return, out_free_acl_expr, out_free_name;
1685 struct acl *cur_acl;
1686 struct acl_expr *acl_expr;
1687 char *name;
1688 int index;
1689
1690 for (index = 0; default_acl_list[index].name != NULL; index++) {
1691 if (strcmp(acl_name, default_acl_list[index].name) == 0)
1692 break;
1693 }
1694
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001695 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001696 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001697 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001698 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001699
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001700 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err);
1701 if (!acl_expr) {
1702 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001703 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001704 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001705
1706 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001707 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001708 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001709 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001710 }
1711
Willy Tarreau16fbe822007-06-17 11:54:31 +02001712 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001713 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001714 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001715 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001716 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001717
1718 cur_acl->name = name;
Willy Tarreaua55b7dc2009-07-12 09:21:30 +02001719 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreau16fbe822007-06-17 11:54:31 +02001720 LIST_INIT(&cur_acl->expr);
1721 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1722 if (known_acl)
1723 LIST_ADDQ(known_acl, &cur_acl->list);
1724
1725 return cur_acl;
1726
1727 out_free_name:
1728 free(name);
1729 out_free_acl_expr:
1730 prune_acl_expr(acl_expr);
1731 free(acl_expr);
1732 out_return:
1733 return NULL;
1734}
Willy Tarreaua84d3742007-05-07 00:36:48 +02001735
1736/* Purge everything in the acl_cond <cond>, then return <cond>. */
1737struct acl_cond *prune_acl_cond(struct acl_cond *cond)
1738{
1739 struct acl_term_suite *suite, *tmp_suite;
1740 struct acl_term *term, *tmp_term;
1741
1742 /* iterate through all term suites and free all terms and all suites */
1743 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
1744 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
1745 free(term);
1746 free(suite);
1747 }
1748 return cond;
1749}
1750
1751/* Parse an ACL condition starting at <args>[0], relying on a list of already
1752 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001753 * case of low memory). Supports multiple conditions separated by "or". If
1754 * <err> is not NULL, it will be filled with a pointer to an error message in
1755 * case of error, that the caller is responsible for freeing. The initial
1756 * location must either be freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001757 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001758struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, int pol, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001759{
1760 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001761 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001762 const char *word;
1763 struct acl *cur_acl;
1764 struct acl_term *cur_term;
1765 struct acl_term_suite *cur_suite;
1766 struct acl_cond *cond;
1767
1768 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001769 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001770 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001771 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001772 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001773
1774 LIST_INIT(&cond->list);
1775 LIST_INIT(&cond->suites);
1776 cond->pol = pol;
1777
1778 cur_suite = NULL;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001779 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001780 for (arg = 0; *args[arg]; arg++) {
1781 word = args[arg];
1782
1783 /* remove as many exclamation marks as we can */
1784 while (*word == '!') {
1785 neg = !neg;
1786 word++;
1787 }
1788
1789 /* an empty word is allowed because we cannot force the user to
1790 * always think about not leaving exclamation marks alone.
1791 */
1792 if (!*word)
1793 continue;
1794
Willy Tarreau16fbe822007-06-17 11:54:31 +02001795 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +02001796 /* new term suite */
1797 cur_suite = NULL;
1798 neg = 0;
1799 continue;
1800 }
1801
Willy Tarreau95fa4692010-02-01 13:05:50 +01001802 if (strcmp(word, "{") == 0) {
1803 /* we may have a complete ACL expression between two braces,
1804 * find the last one.
1805 */
1806 int arg_end = arg + 1;
1807 const char **args_new;
1808
1809 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
1810 arg_end++;
1811
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001812 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001813 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001814 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001815 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001816
1817 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001818 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001819 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001820 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001821 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001822
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001823 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +01001824 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
1825 args_new[arg_end - arg] = "";
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001826 cur_acl = parse_acl(args_new, known_acl, err);
Willy Tarreau95fa4692010-02-01 13:05:50 +01001827 free(args_new);
1828
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001829 if (!cur_acl) {
1830 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001831 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001832 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001833 arg = arg_end;
1834 }
1835 else {
1836 /* search for <word> in the known ACL names. If we do not find
1837 * it, let's look for it in the default ACLs, and if found, add
1838 * it to the list of ACLs of this proxy. This makes it possible
1839 * to override them.
1840 */
1841 cur_acl = find_acl_by_name(word, known_acl);
1842 if (cur_acl == NULL) {
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001843 cur_acl = find_acl_default(word, known_acl, err);
1844 if (cur_acl == NULL) {
1845 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +01001846 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001847 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001848 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001849 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001850
1851 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001852 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001853 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001854 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001855 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001856
1857 cur_term->acl = cur_acl;
1858 cur_term->neg = neg;
Willy Tarreaua9802632008-07-25 19:13:19 +02001859 cond->requires |= cur_acl->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001860
1861 if (!cur_suite) {
1862 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +01001863 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001864 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001865 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001866 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001867 LIST_INIT(&cur_suite->terms);
1868 LIST_ADDQ(&cond->suites, &cur_suite->list);
1869 }
1870 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001871 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001872 }
1873
1874 return cond;
1875
1876 out_free_term:
1877 free(cur_term);
1878 out_free_suite:
1879 prune_acl_cond(cond);
1880 free(cond);
1881 out_return:
1882 return NULL;
1883}
1884
Willy Tarreau2bbba412010-01-28 16:48:33 +01001885/* Builds an ACL condition starting at the if/unless keyword. The complete
1886 * condition is returned. NULL is returned in case of error or if the first
1887 * word is neither "if" nor "unless". It automatically sets the file name and
1888 * the line number in the condition for better error reporting, and adds the
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001889 * ACL requirements to the proxy's acl_requires. If <err> is not NULL, it will
1890 * be filled with a pointer to an error message in case of error, that the
1891 * caller is responsible for freeing. The initial location must either be
1892 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001893 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001894struct 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 +01001895{
1896 int pol = ACL_COND_NONE;
1897 struct acl_cond *cond = NULL;
1898
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001899 if (err)
1900 *err = NULL;
1901
Willy Tarreau2bbba412010-01-28 16:48:33 +01001902 if (!strcmp(*args, "if")) {
1903 pol = ACL_COND_IF;
1904 args++;
1905 }
1906 else if (!strcmp(*args, "unless")) {
1907 pol = ACL_COND_UNLESS;
1908 args++;
1909 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001910 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001911 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001912 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001913 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001914
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001915 cond = parse_acl_cond(args, &px->acl, pol, err);
1916 if (!cond) {
1917 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001918 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001919 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001920
1921 cond->file = file;
1922 cond->line = line;
1923 px->acl_requires |= cond->requires;
1924
1925 return cond;
1926}
1927
Willy Tarreau11382812008-07-09 16:18:21 +02001928/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
Willy Tarreaub6866442008-07-14 23:54:42 +02001929 * ACL_PAT_PASS depending on the test results. ACL_PAT_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001930 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001931 * data is being examined. The function automatically sets SMP_OPT_ITERATE.
Willy Tarreaub6866442008-07-14 23:54:42 +02001932 * This function only computes the condition, it does not apply the polarity
1933 * required by IF/UNLESS, it's up to the caller to do this using something like
1934 * this :
Willy Tarreau11382812008-07-09 16:18:21 +02001935 *
1936 * res = acl_pass(res);
Willy Tarreaub6866442008-07-14 23:54:42 +02001937 * if (res == ACL_PAT_MISS)
1938 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001939 * if (cond->pol == ACL_COND_UNLESS)
1940 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001941 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001942int 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 +02001943{
1944 __label__ fetch_next;
1945 struct acl_term_suite *suite;
1946 struct acl_term *term;
1947 struct acl_expr *expr;
1948 struct acl *acl;
1949 struct acl_pattern *pattern;
Willy Tarreau37406352012-04-23 16:16:37 +02001950 struct sample smp;
Willy Tarreau11382812008-07-09 16:18:21 +02001951 int acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001952
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001953 /* ACLs are iterated over all values, so let's always set the flag to
1954 * indicate this to the fetch functions.
1955 */
1956 opt |= SMP_OPT_ITERATE;
1957
Willy Tarreau11382812008-07-09 16:18:21 +02001958 /* We're doing a logical OR between conditions so we initialize to FAIL.
1959 * The MISS status is propagated down from the suites.
1960 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001961 cond_res = ACL_PAT_FAIL;
1962 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001963 /* Evaluate condition suite <suite>. We stop at the first term
1964 * which returns ACL_PAT_FAIL. The MISS status is still propagated
1965 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001966 */
1967
1968 /* we're doing a logical AND between terms, so we must set the
1969 * initial value to PASS.
1970 */
1971 suite_res = ACL_PAT_PASS;
1972 list_for_each_entry(term, &suite->terms, list) {
1973 acl = term->acl;
1974
1975 /* FIXME: use cache !
1976 * check acl->cache_idx for this.
1977 */
1978
1979 /* ACL result not cached. Let's scan all the expressions
1980 * and use the first one to match.
1981 */
1982 acl_res = ACL_PAT_FAIL;
1983 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001984 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001985 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001986 fetch_next:
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001987 if (!expr->kw->fetch(px, l4, l7, opt, expr->args, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001988 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001989 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001990 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001991 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001992 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001993
Willy Tarreau197e10a2012-04-23 19:18:42 +02001994 if (smp.type == SMP_T_BOOL) {
1995 if (smp.data.uint)
Willy Tarreaua79534f2008-07-20 10:13:37 +02001996 acl_res |= ACL_PAT_PASS;
1997 else
1998 acl_res |= ACL_PAT_FAIL;
1999 }
2000 else {
Willy Tarreau020534d2010-05-16 21:45:45 +02002001 if (!eb_is_empty(&expr->pattern_tree)) {
Willy Tarreauc4262962010-05-10 23:42:40 +02002002 /* a tree is present, let's check what type it is */
2003 if (expr->kw->match == acl_match_str)
Willy Tarreau37406352012-04-23 16:16:37 +02002004 acl_res |= acl_lookup_str(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreaub337b532010-05-13 20:03:41 +02002005 else if (expr->kw->match == acl_match_ip)
Willy Tarreau37406352012-04-23 16:16:37 +02002006 acl_res |= acl_lookup_ip(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreauc4262962010-05-10 23:42:40 +02002007 }
2008
Willy Tarreaua79534f2008-07-20 10:13:37 +02002009 /* call the match() function for all tests on this value */
2010 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreaua79534f2008-07-20 10:13:37 +02002011 if (acl_res == ACL_PAT_PASS)
2012 break;
Willy Tarreau37406352012-04-23 16:16:37 +02002013 acl_res |= expr->kw->match(&smp, pattern);
Willy Tarreaua79534f2008-07-20 10:13:37 +02002014 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02002015 }
2016 /*
Willy Tarreau11382812008-07-09 16:18:21 +02002017 * OK now acl_res holds the result of this expression
2018 * as one of ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02002019 *
Willy Tarreau11382812008-07-09 16:18:21 +02002020 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02002021 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02002022 *
2023 * FIXME: implement cache.
2024 *
2025 */
2026
Willy Tarreau11382812008-07-09 16:18:21 +02002027 /* we're ORing these terms, so a single PASS is enough */
2028 if (acl_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002029 break;
2030
Willy Tarreau37406352012-04-23 16:16:37 +02002031 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002032 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02002033
2034 /* sometimes we know the fetched data is subject to change
2035 * later and give another chance for a new match (eg: request
2036 * size, time, ...)
2037 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02002038 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02002039 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02002040 }
2041 /*
2042 * Here we have the result of an ACL (cached or not).
2043 * ACLs are combined, negated or not, to form conditions.
2044 */
2045
Willy Tarreaua84d3742007-05-07 00:36:48 +02002046 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02002047 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02002048
2049 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02002050
2051 /* we're ANDing these terms, so a single FAIL is enough */
2052 if (suite_res == ACL_PAT_FAIL)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002053 break;
2054 }
2055 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02002056
2057 /* we're ORing these terms, so a single PASS is enough */
2058 if (cond_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02002059 break;
2060 }
Willy Tarreau11382812008-07-09 16:18:21 +02002061 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02002062}
2063
2064
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002065/* Reports a pointer to the first ACL used in condition <cond> which requires
2066 * at least one of the USE_FLAGS in <require>. Returns NULL if none matches.
2067 * The construct is almost the same as for acl_exec_cond() since we're walking
2068 * down the ACL tree as well. It is important that the tree is really walked
2069 * through and never cached, because that way, this function can be used as a
2070 * late check.
2071 */
Willy Tarreauf1e98b82010-01-28 17:59:39 +01002072struct acl *cond_find_require(const struct acl_cond *cond, unsigned int require)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002073{
2074 struct acl_term_suite *suite;
2075 struct acl_term *term;
2076 struct acl *acl;
2077
2078 list_for_each_entry(suite, &cond->suites, list) {
2079 list_for_each_entry(term, &suite->terms, list) {
2080 acl = term->acl;
2081 if (acl->requires & require)
2082 return acl;
2083 }
2084 }
2085 return NULL;
2086}
2087
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002088/*
2089 * Find targets for userlist and groups in acl. Function returns the number
2090 * of errors or OK if everything is fine.
2091 */
2092int
2093acl_find_targets(struct proxy *p)
2094{
2095
2096 struct acl *acl;
2097 struct acl_expr *expr;
2098 struct acl_pattern *pattern;
2099 struct userlist *ul;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002100 struct arg *arg;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002101 int cfgerr = 0;
2102
2103 list_for_each_entry(acl, &p->acl, list) {
2104 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreau2e845be2012-10-19 19:49:09 +02002105 for (arg = expr->args; arg && arg->type != ARGT_STOP; arg++) {
2106 if (!arg->unresolved)
Willy Tarreau496aa012012-06-01 10:38:29 +02002107 continue;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002108 else if (arg->type == ARGT_SRV) {
2109 struct proxy *px;
2110 struct server *srv;
2111 char *pname, *sname;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002112
Willy Tarreau7d1df412012-11-23 23:47:36 +01002113 if (!arg->data.str.len) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002114 Alert("proxy %s: acl '%s' %s(): missing server name.\n",
2115 p->id, acl->name, expr->kw->kw);
2116 cfgerr++;
2117 continue;
2118 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002119
Willy Tarreau7d1df412012-11-23 23:47:36 +01002120 pname = arg->data.str.str;
Willy Tarreau63364ee2012-04-19 19:11:13 +02002121 sname = strrchr(pname, '/');
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002122
Willy Tarreau63364ee2012-04-19 19:11:13 +02002123 if (sname)
2124 *sname++ = '\0';
2125 else {
2126 sname = pname;
2127 pname = NULL;
2128 }
2129
2130 px = p;
2131 if (pname) {
2132 px = findproxy(pname, PR_CAP_BE);
2133 if (!px) {
2134 Alert("proxy %s: acl '%s' %s(): unable to find proxy '%s'.\n",
2135 p->id, acl->name, expr->kw->kw, pname);
2136 cfgerr++;
2137 continue;
2138 }
2139 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002140
Willy Tarreau63364ee2012-04-19 19:11:13 +02002141 srv = findserver(px, sname);
2142 if (!srv) {
2143 Alert("proxy %s: acl '%s' %s(): unable to find server '%s'.\n",
2144 p->id, acl->name, expr->kw->kw, sname);
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002145 cfgerr++;
2146 continue;
2147 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002148
Willy Tarreau7d1df412012-11-23 23:47:36 +01002149 free(arg->data.str.str);
2150 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002151 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002152 arg->data.srv = srv;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002153 }
2154 else if (arg->type == ARGT_FE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002155 struct proxy *prx = p;
2156 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002157
Willy Tarreau7d1df412012-11-23 23:47:36 +01002158 if (arg->data.str.len) {
2159 pname = arg->data.str.str;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002160 prx = findproxy(pname, PR_CAP_FE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002161 }
2162
Willy Tarreaud28c3532012-04-19 19:28:33 +02002163 if (!prx) {
2164 Alert("proxy %s: acl '%s' %s(): unable to find frontend '%s'.\n",
2165 p->id, acl->name, expr->kw->kw, pname);
2166 cfgerr++;
2167 continue;
2168 }
2169
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002170 if (!(prx->cap & PR_CAP_FE)) {
2171 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no frontend capability.\n",
2172 p->id, acl->name, expr->kw->kw, pname);
2173 cfgerr++;
2174 continue;
2175 }
2176
Willy Tarreau7d1df412012-11-23 23:47:36 +01002177 free(arg->data.str.str);
2178 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002179 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002180 arg->data.prx = prx;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002181 }
2182 else if (arg->type == ARGT_BE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002183 struct proxy *prx = p;
2184 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002185
Willy Tarreau7d1df412012-11-23 23:47:36 +01002186 if (arg->data.str.len) {
2187 pname = arg->data.str.str;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002188 prx = findproxy(pname, PR_CAP_BE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002189 }
2190
Willy Tarreaud28c3532012-04-19 19:28:33 +02002191 if (!prx) {
2192 Alert("proxy %s: acl '%s' %s(): unable to find backend '%s'.\n",
2193 p->id, acl->name, expr->kw->kw, pname);
2194 cfgerr++;
2195 continue;
2196 }
2197
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002198 if (!(prx->cap & PR_CAP_BE)) {
2199 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no backend capability.\n",
2200 p->id, acl->name, expr->kw->kw, pname);
2201 cfgerr++;
2202 continue;
2203 }
2204
Willy Tarreau7d1df412012-11-23 23:47:36 +01002205 free(arg->data.str.str);
2206 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002207 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002208 arg->data.prx = prx;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002209 }
2210 else if (arg->type == ARGT_TAB) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002211 struct proxy *prx = p;
2212 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002213
Willy Tarreau7d1df412012-11-23 23:47:36 +01002214 if (arg->data.str.len) {
2215 pname = arg->data.str.str;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002216 prx = find_stktable(pname);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002217 }
2218
Willy Tarreaud28c3532012-04-19 19:28:33 +02002219 if (!prx) {
2220 Alert("proxy %s: acl '%s' %s(): unable to find table '%s'.\n",
2221 p->id, acl->name, expr->kw->kw, pname);
2222 cfgerr++;
2223 continue;
2224 }
2225
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002226
2227 if (!prx->table.size) {
2228 Alert("proxy %s: acl '%s' %s(): no table in proxy '%s'.\n",
2229 p->id, acl->name, expr->kw->kw, pname);
2230 cfgerr++;
2231 continue;
2232 }
2233
Willy Tarreau7d1df412012-11-23 23:47:36 +01002234 free(arg->data.str.str);
2235 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002236 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002237 arg->data.prx = prx;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002238 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002239 else if (arg->type == ARGT_USR) {
Willy Tarreau7d1df412012-11-23 23:47:36 +01002240 if (!arg->data.str.len) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002241 Alert("proxy %s: acl '%s' %s(): missing userlist name.\n",
2242 p->id, acl->name, expr->kw->kw);
2243 cfgerr++;
2244 continue;
2245 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002246
Willy Tarreau63364ee2012-04-19 19:11:13 +02002247 if (p->uri_auth && p->uri_auth->userlist &&
Willy Tarreau7d1df412012-11-23 23:47:36 +01002248 !strcmp(p->uri_auth->userlist->name, arg->data.str.str))
Willy Tarreau63364ee2012-04-19 19:11:13 +02002249 ul = p->uri_auth->userlist;
2250 else
Willy Tarreau7d1df412012-11-23 23:47:36 +01002251 ul = auth_find_userlist(arg->data.str.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002252
Willy Tarreau63364ee2012-04-19 19:11:13 +02002253 if (!ul) {
2254 Alert("proxy %s: acl '%s' %s(%s): unable to find userlist.\n",
Willy Tarreau7d1df412012-11-23 23:47:36 +01002255 p->id, acl->name, expr->kw->kw, arg->data.str.str);
Willy Tarreau63364ee2012-04-19 19:11:13 +02002256 cfgerr++;
2257 continue;
2258 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002259
Willy Tarreau7d1df412012-11-23 23:47:36 +01002260 free(arg->data.str.str);
2261 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +02002262 arg->unresolved = 0;
Willy Tarreau7d1df412012-11-23 23:47:36 +01002263 arg->data.usr = ul;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002264 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002265 } /* end of args processing */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002266
Willy Tarreau46b39d02012-05-10 23:40:14 +02002267 /* don't try to resolve groups if we're not certain of having
2268 * resolved userlists first.
2269 */
2270 if (cfgerr)
2271 break;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002272
2273 if (!strcmp(expr->kw->kw, "http_auth_group")) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002274 /* note: argument resolved above thanks to ARGT_USR */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002275
2276 if (LIST_ISEMPTY(&expr->patterns)) {
2277 Alert("proxy %s: acl %s %s(): no groups specified.\n",
2278 p->id, acl->name, expr->kw->kw);
2279 cfgerr++;
2280 continue;
2281 }
2282
2283 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreau7d1df412012-11-23 23:47:36 +01002284 /* this keyword only has one argument */
Willy Tarreau34db1082012-04-19 17:16:54 +02002285 pattern->val.group_mask = auth_resolve_groups(expr->args->data.usr, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002286
2287 free(pattern->ptr.str);
2288 pattern->ptr.str = NULL;
2289 pattern->len = 0;
2290
2291 if (!pattern->val.group_mask) {
2292 Alert("proxy %s: acl %s %s(): invalid group(s).\n",
2293 p->id, acl->name, expr->kw->kw);
2294 cfgerr++;
2295 continue;
2296 }
2297 }
2298 }
2299 }
2300 }
2301
2302 return cfgerr;
2303}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002304
Willy Tarreaua84d3742007-05-07 00:36:48 +02002305/************************************************************************/
2306/* All supported keywords must be declared here. */
2307/************************************************************************/
2308
Willy Tarreau61612d42012-04-19 18:42:05 +02002309/* Note: must not be declared <const> as its list will be overwritten.
2310 * Please take care of keeping this list alphabetically sorted.
2311 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02002312static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02002313 { "always_false", acl_parse_nothing, acl_fetch_false, acl_match_nothing, ACL_USE_NOTHING, 0 },
2314 { "always_true", acl_parse_nothing, acl_fetch_true, acl_match_nothing, ACL_USE_NOTHING, 0 },
2315 { "rep_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6RTR_VOLATILE, 0 },
2316 { "req_len", acl_parse_int, acl_fetch_req_len, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
Willy Tarreau61612d42012-04-19 18:42:05 +02002317 { "req_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
Willy Tarreaue0db1e82013-01-04 16:31:47 +01002318 { "req_ssl_sni", acl_parse_str, acl_fetch_ssl_hello_sni, acl_match_str, ACL_USE_L6REQ_VOLATILE, 0 },
Willy Tarreau61612d42012-04-19 18:42:05 +02002319 { "req_ssl_ver", acl_parse_dotted_ver, acl_fetch_req_ssl_ver, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2320 { "wait_end", acl_parse_nothing, acl_fetch_wait_end, acl_match_nothing, ACL_USE_NOTHING, 0 },
Willy Tarreaua84d3742007-05-07 00:36:48 +02002321 { NULL, NULL, NULL, NULL }
2322}};
2323
2324
2325__attribute__((constructor))
2326static void __acl_init(void)
2327{
2328 acl_register_keywords(&acl_kws);
2329}
2330
2331
2332/*
2333 * Local variables:
2334 * c-indent-level: 8
2335 * c-basic-offset: 8
2336 * End:
2337 */