blob: 013820364abd489320d56b727ae69fe9c3c4a3ee [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 Tarreau44b90cc2010-05-24 20:27:29 +020027#include <proto/buffers.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;
111 smp->data.uint = l4->req->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;
123 struct buffer *b;
124 const unsigned char *data;
125
126 if (!l4)
127 goto not_ssl_hello;
128
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200129 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emeric Brun38e71762010-09-23 17:59:18 +0200130
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100131 bleft = b->i;
Willy Tarreau89fa7062012-03-02 16:13:16 +0100132 data = (const unsigned char *)b->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 Tarreau02d6cfc2012-03-01 18:19:58 +0100197 bleft = l4->req->i;
Willy Tarreau44b90cc2010-05-24 20:27:29 +0200198 if (!bleft)
199 goto too_short;
200
Willy Tarreau89fa7062012-03-02 16:13:16 +0100201 data = (const unsigned char *)l4->req->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 Tarreau89fa7062012-03-02 16:13:16 +0100269 if (msg_len > buffer_max_len(l4->req) + l4->req->data - l4->req->p)
270 msg_len = buffer_max_len(l4->req) + l4->req->data - l4->req->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;
327 struct buffer *b;
328 unsigned char *data;
329
330 if (!l4)
331 goto not_ssl_hello;
332
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200333 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Willy Tarreaub6672b52011-12-12 17:23:41 +0100334
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100335 bleft = b->i;
Willy Tarreau89fa7062012-03-02 16:13:16 +0100336 data = (unsigned char *)b->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
Willy Tarreauc4262962010-05-10 23:42:40 +0200495/* Lookup a string in the expression's pattern tree. The node is returned if it
496 * exists, otherwise NULL.
497 */
Willy Tarreau37406352012-04-23 16:16:37 +0200498static void *acl_lookup_str(struct sample *smp, struct acl_expr *expr)
Willy Tarreauc4262962010-05-10 23:42:40 +0200499{
500 /* data are stored in a tree */
501 struct ebmb_node *node;
502 char prev;
503
504 /* we may have to force a trailing zero on the test pattern */
Willy Tarreauf853c462012-04-23 18:53:56 +0200505 prev = smp->data.str.str[smp->data.str.len];
Willy Tarreauc4262962010-05-10 23:42:40 +0200506 if (prev)
Willy Tarreauf853c462012-04-23 18:53:56 +0200507 smp->data.str.str[smp->data.str.len] = '\0';
508 node = ebst_lookup(&expr->pattern_tree, smp->data.str.str);
Willy Tarreauc4262962010-05-10 23:42:40 +0200509 if (prev)
Willy Tarreauf853c462012-04-23 18:53:56 +0200510 smp->data.str.str[smp->data.str.len] = prev;
Willy Tarreauc4262962010-05-10 23:42:40 +0200511 return node;
512}
513
Willy Tarreau21e5b0e2012-04-23 19:25:44 +0200514/* Executes a regex. It temporarily changes the data to add a trailing zero,
515 * and restores the previous character when leaving.
Willy Tarreauf3d25982007-05-08 22:45:09 +0200516 */
Willy Tarreau37406352012-04-23 16:16:37 +0200517int acl_match_reg(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreauf3d25982007-05-08 22:45:09 +0200518{
519 char old_char;
520 int ret;
521
Willy Tarreauf853c462012-04-23 18:53:56 +0200522 old_char = smp->data.str.str[smp->data.str.len];
523 smp->data.str.str[smp->data.str.len] = 0;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200524
Willy Tarreauf853c462012-04-23 18:53:56 +0200525 if (regexec(pattern->ptr.reg, smp->data.str.str, 0, NULL, 0) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200526 ret = ACL_PAT_PASS;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200527 else
Willy Tarreau11382812008-07-09 16:18:21 +0200528 ret = ACL_PAT_FAIL;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200529
Willy Tarreauf853c462012-04-23 18:53:56 +0200530 smp->data.str.str[smp->data.str.len] = old_char;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200531 return ret;
532}
533
Willy Tarreaua84d3742007-05-07 00:36:48 +0200534/* Checks that the pattern matches the beginning of the tested string. */
Willy Tarreau37406352012-04-23 16:16:37 +0200535int acl_match_beg(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200536{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200537 int icase;
538
Willy Tarreauf853c462012-04-23 18:53:56 +0200539 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200540 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200541
542 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200543 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str, pattern->len) != 0) ||
544 (!icase && strncmp(pattern->ptr.str, smp->data.str.str, pattern->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +0200545 return ACL_PAT_FAIL;
546 return ACL_PAT_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200547}
548
549/* Checks that the pattern matches the end of the tested string. */
Willy Tarreau37406352012-04-23 16:16:37 +0200550int acl_match_end(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200551{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200552 int icase;
553
Willy Tarreauf853c462012-04-23 18:53:56 +0200554 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200555 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200556 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200557 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str + smp->data.str.len - pattern->len, pattern->len) != 0) ||
558 (!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 +0200559 return ACL_PAT_FAIL;
560 return ACL_PAT_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200561}
562
563/* Checks that the pattern is included inside the tested string.
564 * NB: Suboptimal, should be rewritten using a Boyer-Moore method.
565 */
Willy Tarreau37406352012-04-23 16:16:37 +0200566int acl_match_sub(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200567{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200568 int icase;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200569 char *end;
570 char *c;
571
Willy Tarreauf853c462012-04-23 18:53:56 +0200572 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200573 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200574
Willy Tarreauf853c462012-04-23 18:53:56 +0200575 end = smp->data.str.str + smp->data.str.len - pattern->len;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200576 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
577 if (icase) {
Willy Tarreauf853c462012-04-23 18:53:56 +0200578 for (c = smp->data.str.str; c <= end; c++) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200579 if (tolower(*c) != tolower(*pattern->ptr.str))
580 continue;
581 if (strncasecmp(pattern->ptr.str, c, pattern->len) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200582 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200583 }
584 } else {
Willy Tarreauf853c462012-04-23 18:53:56 +0200585 for (c = smp->data.str.str; c <= end; c++) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200586 if (*c != *pattern->ptr.str)
587 continue;
588 if (strncmp(pattern->ptr.str, c, pattern->len) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200589 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200590 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200591 }
Willy Tarreau11382812008-07-09 16:18:21 +0200592 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200593}
594
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200595/* Background: Fast way to find a zero byte in a word
596 * http://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
597 * hasZeroByte = (v - 0x01010101UL) & ~v & 0x80808080UL;
598 *
599 * To look for 4 different byte values, xor the word with those bytes and
600 * then check for zero bytes:
601 *
602 * v = (((unsigned char)c * 0x1010101U) ^ delimiter)
603 * where <delimiter> is the 4 byte values to look for (as an uint)
604 * and <c> is the character that is being tested
605 */
606static inline unsigned int is_delimiter(unsigned char c, unsigned int mask)
607{
608 mask ^= (c * 0x01010101); /* propagate the char to all 4 bytes */
609 return (mask - 0x01010101) & ~mask & 0x80808080U;
610}
611
612static inline unsigned int make_4delim(unsigned char d1, unsigned char d2, unsigned char d3, unsigned char d4)
613{
614 return d1 << 24 | d2 << 16 | d3 << 8 | d4;
615}
616
Willy Tarreaua84d3742007-05-07 00:36:48 +0200617/* This one is used by other real functions. It checks that the pattern is
618 * included inside the tested string, but enclosed between the specified
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200619 * delimiters or at the beginning or end of the string. The delimiters are
620 * provided as an unsigned int made by make_4delim() and match up to 4 different
621 * delimiters. Delimiters are stripped at the beginning and end of the pattern.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200622 */
Willy Tarreau37406352012-04-23 16:16:37 +0200623static int match_word(struct sample *smp, struct acl_pattern *pattern, unsigned int delimiters)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200624{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200625 int may_match, icase;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200626 char *c, *end;
627 char *ps;
628 int pl;
629
630 pl = pattern->len;
631 ps = pattern->ptr.str;
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200632
633 while (pl > 0 && is_delimiter(*ps, delimiters)) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200634 pl--;
635 ps++;
636 }
637
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200638 while (pl > 0 && is_delimiter(ps[pl - 1], delimiters))
Willy Tarreaua84d3742007-05-07 00:36:48 +0200639 pl--;
640
Willy Tarreauf853c462012-04-23 18:53:56 +0200641 if (pl > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200642 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200643
644 may_match = 1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200645 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200646 end = smp->data.str.str + smp->data.str.len - pl;
647 for (c = smp->data.str.str; c <= end; c++) {
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200648 if (is_delimiter(*c, delimiters)) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200649 may_match = 1;
650 continue;
651 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200652
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200653 if (!may_match)
654 continue;
655
656 if (icase) {
657 if ((tolower(*c) == tolower(*ps)) &&
658 (strncasecmp(ps, c, pl) == 0) &&
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200659 (c == end || is_delimiter(c[pl], delimiters)))
Willy Tarreau11382812008-07-09 16:18:21 +0200660 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200661 } else {
662 if ((*c == *ps) &&
663 (strncmp(ps, c, pl) == 0) &&
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200664 (c == end || is_delimiter(c[pl], delimiters)))
Willy Tarreau11382812008-07-09 16:18:21 +0200665 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200666 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200667 may_match = 0;
668 }
Willy Tarreau11382812008-07-09 16:18:21 +0200669 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200670}
671
672/* Checks that the pattern is included inside the tested string, but enclosed
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200673 * between the delimiters '?' or '/' or at the beginning or end of the string.
674 * Delimiters at the beginning or end of the pattern are ignored.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200675 */
Willy Tarreau37406352012-04-23 16:16:37 +0200676int acl_match_dir(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200677{
Willy Tarreau37406352012-04-23 16:16:37 +0200678 return match_word(smp, pattern, make_4delim('/', '?', '?', '?'));
Willy Tarreaua84d3742007-05-07 00:36:48 +0200679}
680
681/* Checks that the pattern is included inside the tested string, but enclosed
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200682 * between the delmiters '/', '?', '.' or ":" or at the beginning or end of
683 * the string. Delimiters at the beginning or end of the pattern are ignored.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200684 */
Willy Tarreau37406352012-04-23 16:16:37 +0200685int acl_match_dom(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200686{
Willy Tarreau37406352012-04-23 16:16:37 +0200687 return match_word(smp, pattern, make_4delim('/', '?', '.', ':'));
Willy Tarreaua84d3742007-05-07 00:36:48 +0200688}
689
690/* Checks that the integer in <test> is included between min and max */
Willy Tarreau37406352012-04-23 16:16:37 +0200691int acl_match_int(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200692{
Willy Tarreauf853c462012-04-23 18:53:56 +0200693 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.uint) &&
694 (!pattern->val.range.max_set || smp->data.uint <= pattern->val.range.max))
Willy Tarreau11382812008-07-09 16:18:21 +0200695 return ACL_PAT_PASS;
696 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200697}
698
Willy Tarreau0e698542011-09-16 08:32:32 +0200699/* Checks that the length of the pattern in <test> is included between min and max */
Willy Tarreau37406352012-04-23 16:16:37 +0200700int acl_match_len(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreau0e698542011-09-16 08:32:32 +0200701{
Willy Tarreauf853c462012-04-23 18:53:56 +0200702 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.str.len) &&
703 (!pattern->val.range.max_set || smp->data.str.len <= pattern->val.range.max))
Willy Tarreau0e698542011-09-16 08:32:32 +0200704 return ACL_PAT_PASS;
705 return ACL_PAT_FAIL;
706}
707
Willy Tarreau37406352012-04-23 16:16:37 +0200708int acl_match_ip(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua67fad92007-05-08 19:50:09 +0200709{
710 struct in_addr *s;
711
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200712 if (smp->type != SMP_T_IPV4 || pattern->type != SMP_T_IPV4)
Willy Tarreau11382812008-07-09 16:18:21 +0200713 return ACL_PAT_FAIL;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200714
Willy Tarreauf853c462012-04-23 18:53:56 +0200715 s = &smp->data.ipv4;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200716 if (((s->s_addr ^ pattern->val.ipv4.addr.s_addr) & pattern->val.ipv4.mask.s_addr) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200717 return ACL_PAT_PASS;
718 return ACL_PAT_FAIL;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200719}
720
Willy Tarreaub337b532010-05-13 20:03:41 +0200721/* Lookup an IPv4 address in the expression's pattern tree using the longest
722 * match method. The node is returned if it exists, otherwise NULL.
723 */
Willy Tarreau37406352012-04-23 16:16:37 +0200724static void *acl_lookup_ip(struct sample *smp, struct acl_expr *expr)
Willy Tarreaub337b532010-05-13 20:03:41 +0200725{
726 struct in_addr *s;
727
Willy Tarreauf853c462012-04-23 18:53:56 +0200728 if (smp->type != SMP_T_IPV4)
Willy Tarreaub337b532010-05-13 20:03:41 +0200729 return ACL_PAT_FAIL;
730
Willy Tarreauf853c462012-04-23 18:53:56 +0200731 s = &smp->data.ipv4;
Willy Tarreaub337b532010-05-13 20:03:41 +0200732 return ebmb_lookup_longest(&expr->pattern_tree, &s->s_addr);
733}
734
Willy Tarreaua84d3742007-05-07 00:36:48 +0200735/* Parse a string. It is allocated and duplicated. */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200736int acl_parse_str(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200737{
738 int len;
739
Willy Tarreauae8b7962007-06-09 23:10:04 +0200740 len = strlen(*text);
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200741 pattern->type = SMP_T_CSTR;
Willy Tarreauc4262962010-05-10 23:42:40 +0200742
743 if (pattern->flags & ACL_PAT_F_TREE_OK) {
744 /* we're allowed to put the data in a tree whose root is pointed
745 * to by val.tree.
746 */
747 struct ebmb_node *node;
748
749 node = calloc(1, sizeof(*node) + len + 1);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200750 if (!node) {
751 if (err)
752 memprintf(err, "out of memory while loading string pattern");
Willy Tarreauc4262962010-05-10 23:42:40 +0200753 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200754 }
Willy Tarreauc4262962010-05-10 23:42:40 +0200755 memcpy(node->key, *text, len + 1);
756 if (ebst_insert(pattern->val.tree, node) != node)
757 free(node); /* was a duplicate */
758 pattern->flags |= ACL_PAT_F_TREE; /* this pattern now contains a tree */
759 return 1;
760 }
761
Willy Tarreauae8b7962007-06-09 23:10:04 +0200762 pattern->ptr.str = strdup(*text);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200763 if (!pattern->ptr.str) {
764 if (err)
765 memprintf(err, "out of memory while loading string pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200766 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200767 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200768 pattern->len = len;
769 return 1;
770}
771
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100772/* Parse and concatenate all further strings into one. */
773int
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200774acl_parse_strcat(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100775{
776
777 int len = 0, i;
778 char *s;
779
780 for (i = 0; *text[i]; i++)
781 len += strlen(text[i])+1;
782
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200783 pattern->type = SMP_T_CSTR;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100784 pattern->ptr.str = s = calloc(1, len);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200785 if (!pattern->ptr.str) {
786 if (err)
787 memprintf(err, "out of memory while loading pattern");
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100788 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200789 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100790
791 for (i = 0; *text[i]; i++)
792 s += sprintf(s, i?" %s":"%s", text[i]);
793
794 pattern->len = len;
795
796 return i;
797}
798
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200799/* Free data allocated by acl_parse_reg */
Willy Tarreau37406352012-04-23 16:16:37 +0200800static void acl_free_reg(void *ptr)
801{
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200802 regfree((regex_t *)ptr);
803}
804
Willy Tarreauf3d25982007-05-08 22:45:09 +0200805/* Parse a regex. It is allocated. */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200806int acl_parse_reg(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreauf3d25982007-05-08 22:45:09 +0200807{
808 regex_t *preg;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200809 int icase;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200810
811 preg = calloc(1, sizeof(regex_t));
812
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200813 if (!preg) {
814 if (err)
815 memprintf(err, "out of memory while loading pattern");
Willy Tarreauf3d25982007-05-08 22:45:09 +0200816 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200817 }
Willy Tarreauf3d25982007-05-08 22:45:09 +0200818
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200819 icase = (pattern->flags & ACL_PAT_F_IGNORE_CASE) ? REG_ICASE : 0;
820 if (regcomp(preg, *text, REG_EXTENDED | REG_NOSUB | icase) != 0) {
Willy Tarreauf3d25982007-05-08 22:45:09 +0200821 free(preg);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200822 if (err)
823 memprintf(err, "regex '%s' is invalid", *text);
Willy Tarreauf3d25982007-05-08 22:45:09 +0200824 return 0;
825 }
826
827 pattern->ptr.reg = preg;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200828 pattern->freeptrbuf = &acl_free_reg;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200829 return 1;
830}
831
Willy Tarreauae8b7962007-06-09 23:10:04 +0200832/* Parse a range of positive integers delimited by either ':' or '-'. If only
833 * one integer is read, it is set as both min and max. An operator may be
834 * specified as the prefix, among this list of 5 :
835 *
836 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
837 *
838 * The default operator is "eq". It supports range matching. Ranges are
839 * rejected for other operators. The operator may be changed at any time.
840 * The operator is stored in the 'opaque' argument.
841 *
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200842 * If err is non-NULL, an error message will be returned there on errors and
843 * the caller will have to free it.
844 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200845 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200846int acl_parse_int(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200847{
Willy Tarreauae8b7962007-06-09 23:10:04 +0200848 signed long long i;
849 unsigned int j, last, skip = 0;
850 const char *ptr = *text;
851
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200852 pattern->type = SMP_T_UINT;
Willy Tarreau8f8e6452007-06-17 21:51:38 +0200853 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200854 switch (get_std_op(ptr)) {
855 case STD_OP_EQ: *opaque = 0; break;
856 case STD_OP_GT: *opaque = 1; break;
857 case STD_OP_GE: *opaque = 2; break;
858 case STD_OP_LT: *opaque = 3; break;
859 case STD_OP_LE: *opaque = 4; break;
860 default:
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200861 if (err)
862 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200863 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200864 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200865
866 skip++;
867 ptr = text[skip];
868 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200869
870 last = i = 0;
871 while (1) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200872 j = *ptr++;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200873 if ((j == '-' || j == ':') && !last) {
874 last++;
875 pattern->val.range.min = i;
876 i = 0;
877 continue;
878 }
879 j -= '0';
880 if (j > 9)
881 // also catches the terminating zero
882 break;
883 i *= 10;
884 i += j;
885 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200886
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200887 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200888 /* having a range with a min or a max is absurd */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200889 if (err)
890 memprintf(err, "integer range '%s' specified with a comparison operator", text[skip]);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200891 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200892 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200893
Willy Tarreaua84d3742007-05-07 00:36:48 +0200894 if (!last)
895 pattern->val.range.min = i;
896 pattern->val.range.max = i;
Willy Tarreauae8b7962007-06-09 23:10:04 +0200897
898 switch (*opaque) {
899 case 0: /* eq */
900 pattern->val.range.min_set = 1;
901 pattern->val.range.max_set = 1;
902 break;
903 case 1: /* gt */
904 pattern->val.range.min++; /* gt = ge + 1 */
905 case 2: /* ge */
906 pattern->val.range.min_set = 1;
907 pattern->val.range.max_set = 0;
908 break;
909 case 3: /* lt */
910 pattern->val.range.max--; /* lt = le - 1 */
911 case 4: /* le */
912 pattern->val.range.min_set = 0;
913 pattern->val.range.max_set = 1;
914 break;
915 }
916 return skip + 1;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200917}
918
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200919/* Parse a range of positive 2-component versions delimited by either ':' or
920 * '-'. The version consists in a major and a minor, both of which must be
921 * smaller than 65536, because internally they will be represented as a 32-bit
922 * integer.
923 * If only one version is read, it is set as both min and max. Just like for
924 * pure integers, an operator may be specified as the prefix, among this list
925 * of 5 :
926 *
927 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
928 *
929 * The default operator is "eq". It supports range matching. Ranges are
930 * rejected for other operators. The operator may be changed at any time.
931 * The operator is stored in the 'opaque' argument. This allows constructs
932 * such as the following one :
933 *
934 * acl obsolete_ssl ssl_req_proto lt 3
935 * acl unsupported_ssl ssl_req_proto gt 3.1
936 * acl valid_ssl ssl_req_proto 3.0-3.1
937 *
938 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200939int acl_parse_dotted_ver(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200940{
941 signed long long i;
942 unsigned int j, last, skip = 0;
943 const char *ptr = *text;
944
945
946 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200947 switch (get_std_op(ptr)) {
948 case STD_OP_EQ: *opaque = 0; break;
949 case STD_OP_GT: *opaque = 1; break;
950 case STD_OP_GE: *opaque = 2; break;
951 case STD_OP_LT: *opaque = 3; break;
952 case STD_OP_LE: *opaque = 4; break;
953 default:
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200954 if (err)
955 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200956 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200957 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200958
959 skip++;
960 ptr = text[skip];
961 }
962
963 last = i = 0;
964 while (1) {
965 j = *ptr++;
966 if (j == '.') {
967 /* minor part */
968 if (i >= 65536)
969 return 0;
970 i <<= 16;
971 continue;
972 }
973 if ((j == '-' || j == ':') && !last) {
974 last++;
975 if (i < 65536)
976 i <<= 16;
977 pattern->val.range.min = i;
978 i = 0;
979 continue;
980 }
981 j -= '0';
982 if (j > 9)
983 // also catches the terminating zero
984 break;
985 i = (i & 0xFFFF0000) + (i & 0xFFFF) * 10;
986 i += j;
987 }
988
989 /* if we only got a major version, let's shift it now */
990 if (i < 65536)
991 i <<= 16;
992
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200993 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200994 /* having a range with a min or a max is absurd */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200995 if (err)
996 memprintf(err, "version range '%s' specified with a comparison operator", text[skip]);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200997 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200998 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200999
1000 if (!last)
1001 pattern->val.range.min = i;
1002 pattern->val.range.max = i;
1003
1004 switch (*opaque) {
1005 case 0: /* eq */
1006 pattern->val.range.min_set = 1;
1007 pattern->val.range.max_set = 1;
1008 break;
1009 case 1: /* gt */
1010 pattern->val.range.min++; /* gt = ge + 1 */
1011 case 2: /* ge */
1012 pattern->val.range.min_set = 1;
1013 pattern->val.range.max_set = 0;
1014 break;
1015 case 3: /* lt */
1016 pattern->val.range.max--; /* lt = le - 1 */
1017 case 4: /* le */
1018 pattern->val.range.min_set = 0;
1019 pattern->val.range.max_set = 1;
1020 break;
1021 }
1022 return skip + 1;
1023}
1024
Willy Tarreaua67fad92007-05-08 19:50:09 +02001025/* Parse an IP address and an optional mask in the form addr[/mask].
1026 * The addr may either be an IPv4 address or a hostname. The mask
1027 * may either be a dotted mask or a number of bits. Returns 1 if OK,
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001028 * otherwise 0. NOTE: IP address patterns are typed (IPV4/IPV6).
Willy Tarreaua67fad92007-05-08 19:50:09 +02001029 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001030int acl_parse_ip(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua67fad92007-05-08 19:50:09 +02001031{
Willy Tarreaub337b532010-05-13 20:03:41 +02001032 struct eb_root *tree = NULL;
1033 if (pattern->flags & ACL_PAT_F_TREE_OK)
1034 tree = pattern->val.tree;
1035
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001036 pattern->type = SMP_T_IPV4;
Willy Tarreaub337b532010-05-13 20:03:41 +02001037 if (str2net(*text, &pattern->val.ipv4.addr, &pattern->val.ipv4.mask)) {
1038 unsigned int mask = ntohl(pattern->val.ipv4.mask.s_addr);
1039 struct ebmb_node *node;
1040 /* check if the mask is contiguous so that we can insert the
1041 * network into the tree. A continuous mask has only ones on
1042 * the left. This means that this mask + its lower bit added
1043 * once again is null.
1044 */
1045 if (mask + (mask & -mask) == 0 && tree) {
1046 mask = mask ? 33 - flsnz(mask & -mask) : 0; /* equals cidr value */
1047 /* FIXME: insert <addr>/<mask> into the tree here */
1048 node = calloc(1, sizeof(*node) + 4); /* reserve 4 bytes for IPv4 address */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001049 if (!node) {
1050 if (err)
1051 memprintf(err, "out of memory while loading IPv4 pattern");
Willy Tarreaub337b532010-05-13 20:03:41 +02001052 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001053 }
Willy Tarreaub337b532010-05-13 20:03:41 +02001054 memcpy(node->key, &pattern->val.ipv4.addr, 4); /* network byte order */
1055 node->node.pfx = mask;
1056 if (ebmb_insert_prefix(tree, node, 4) != node)
1057 free(node); /* was a duplicate */
1058 pattern->flags |= ACL_PAT_F_TREE;
1059 return 1;
1060 }
Willy Tarreauae8b7962007-06-09 23:10:04 +02001061 return 1;
Willy Tarreaub337b532010-05-13 20:03:41 +02001062 }
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001063 else {
1064 if (err)
1065 memprintf(err, "'%s' is not a valid IPv4 address", *text);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001066 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001067 }
Willy Tarreaua67fad92007-05-08 19:50:09 +02001068}
1069
Willy Tarreaua84d3742007-05-07 00:36:48 +02001070/*
1071 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
1072 * parsing sessions.
1073 */
1074void acl_register_keywords(struct acl_kw_list *kwl)
1075{
1076 LIST_ADDQ(&acl_keywords.list, &kwl->list);
1077}
1078
1079/*
1080 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
1081 */
1082void acl_unregister_keywords(struct acl_kw_list *kwl)
1083{
1084 LIST_DEL(&kwl->list);
1085 LIST_INIT(&kwl->list);
1086}
1087
1088/* Return a pointer to the ACL <name> within the list starting at <head>, or
1089 * NULL if not found.
1090 */
1091struct acl *find_acl_by_name(const char *name, struct list *head)
1092{
1093 struct acl *acl;
1094 list_for_each_entry(acl, head, list) {
1095 if (strcmp(acl->name, name) == 0)
1096 return acl;
1097 }
1098 return NULL;
1099}
1100
1101/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
1102 * <kw> contains an opening parenthesis, only the left part of it is checked.
1103 */
1104struct acl_keyword *find_acl_kw(const char *kw)
1105{
1106 int index;
1107 const char *kwend;
1108 struct acl_kw_list *kwl;
1109
1110 kwend = strchr(kw, '(');
1111 if (!kwend)
1112 kwend = kw + strlen(kw);
1113
1114 list_for_each_entry(kwl, &acl_keywords.list, list) {
1115 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1116 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
1117 kwl->kw[index].kw[kwend-kw] == 0)
1118 return &kwl->kw[index];
1119 }
1120 }
1121 return NULL;
1122}
1123
Willy Tarreaudfd7fca2011-03-09 07:27:02 +01001124/* NB: does nothing if <pat> is NULL */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001125static void free_pattern(struct acl_pattern *pat)
1126{
Willy Tarreaudfd7fca2011-03-09 07:27:02 +01001127 if (!pat)
1128 return;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001129
1130 if (pat->ptr.ptr) {
1131 if (pat->freeptrbuf)
1132 pat->freeptrbuf(pat->ptr.ptr);
1133
Willy Tarreaua84d3742007-05-07 00:36:48 +02001134 free(pat->ptr.ptr);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001135 }
1136
Willy Tarreaua84d3742007-05-07 00:36:48 +02001137 free(pat);
1138}
1139
1140static void free_pattern_list(struct list *head)
1141{
1142 struct acl_pattern *pat, *tmp;
1143 list_for_each_entry_safe(pat, tmp, head, list)
1144 free_pattern(pat);
1145}
1146
Willy Tarreaue56cda92010-05-11 23:25:05 +02001147static void free_pattern_tree(struct eb_root *root)
1148{
1149 struct eb_node *node, *next;
1150 node = eb_first(root);
1151 while (node) {
1152 next = eb_next(node);
1153 free(node);
1154 node = next;
1155 }
1156}
1157
Willy Tarreaua84d3742007-05-07 00:36:48 +02001158static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
1159{
Willy Tarreau34db1082012-04-19 17:16:54 +02001160 struct arg *arg;
1161
Willy Tarreaua84d3742007-05-07 00:36:48 +02001162 free_pattern_list(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001163 free_pattern_tree(&expr->pattern_tree);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001164 LIST_INIT(&expr->patterns);
Willy Tarreau34db1082012-04-19 17:16:54 +02001165
1166 for (arg = expr->args; arg; arg++) {
1167 if (arg->type == ARGT_STOP)
1168 break;
1169 if (arg->type == ARGT_FE || arg->type == ARGT_BE ||
1170 arg->type == ARGT_TAB || arg->type == ARGT_SRV ||
1171 arg->type == ARGT_USR || arg->type == ARGT_STR) {
1172 free(arg->data.str.str);
1173 arg->data.str.str = NULL;
1174 }
1175 arg++;
1176 }
1177
1178 free(expr->args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001179 expr->kw->use_cnt--;
1180 return expr;
1181}
1182
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001183
1184/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
1185 * be returned there on errors and the caller will have to free it.
1186 */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001187static int acl_read_patterns_from_file( struct acl_keyword *aclkw,
1188 struct acl_expr *expr,
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001189 const char *filename, int patflags,
1190 char **err)
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001191{
1192 FILE *file;
1193 char *c;
1194 const char *args[2];
1195 struct acl_pattern *pattern;
1196 int opaque;
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001197 int ret = 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001198 int line = 0;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001199
1200 file = fopen(filename, "r");
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001201 if (!file) {
1202 memprintf(err, "failed to open pattern file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001203 return 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001204 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001205
1206 /* now parse all patterns. The file may contain only one pattern per
1207 * line. If the line contains spaces, they will be part of the pattern.
1208 * The pattern stops at the first CR, LF or EOF encountered.
1209 */
1210 opaque = 0;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001211 pattern = NULL;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001212 args[1] = "";
1213 while (fgets(trash, sizeof(trash), file) != NULL) {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001214 line++;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001215 c = trash;
Willy Tarreau58215a02010-05-13 22:07:43 +02001216
1217 /* ignore lines beginning with a dash */
1218 if (*c == '#')
1219 continue;
1220
1221 /* strip leading spaces and tabs */
1222 while (*c == ' ' || *c == '\t')
1223 c++;
1224
Willy Tarreau58215a02010-05-13 22:07:43 +02001225
1226 args[0] = c;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001227 while (*c && *c != '\n' && *c != '\r')
1228 c++;
1229 *c = 0;
1230
Willy Tarreau51091962011-01-03 21:04:10 +01001231 /* empty lines are ignored too */
1232 if (c == args[0])
1233 continue;
1234
Willy Tarreaue56cda92010-05-11 23:25:05 +02001235 /* we keep the previous pattern along iterations as long as it's not used */
1236 if (!pattern)
1237 pattern = (struct acl_pattern *)malloc(sizeof(*pattern));
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001238 if (!pattern) {
1239 memprintf(err, "out of memory when loading patterns from file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001240 goto out_close;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001241 }
Willy Tarreaue56cda92010-05-11 23:25:05 +02001242
1243 memset(pattern, 0, sizeof(*pattern));
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001244 pattern->flags = patflags;
1245
Willy Tarreaue56cda92010-05-11 23:25:05 +02001246 if ((aclkw->requires & ACL_MAY_LOOKUP) && !(pattern->flags & ACL_PAT_F_IGNORE_CASE)) {
1247 /* we pre-set the data pointer to the tree's head so that functions
1248 * which are able to insert in a tree know where to do that.
1249 */
1250 pattern->flags |= ACL_PAT_F_TREE_OK;
1251 pattern->val.tree = &expr->pattern_tree;
1252 }
1253
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001254 pattern->type = SMP_TYPES; /* unspecified type by default */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001255 if (!aclkw->parse(args, pattern, &opaque, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001256 goto out_free_pattern;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001257
1258 /* if the parser did not feed the tree, let's chain the pattern to the list */
1259 if (!(pattern->flags & ACL_PAT_F_TREE)) {
1260 LIST_ADDQ(&expr->patterns, &pattern->list);
1261 pattern = NULL; /* get a new one */
1262 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001263 }
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001264
1265 ret = 1; /* success */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001266
1267 out_free_pattern:
1268 free_pattern(pattern);
1269 out_close:
1270 fclose(file);
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001271 return ret;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001272}
1273
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001274/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
1275 * not NULL, it will be filled with a pointer to an error message in case of
1276 * error. This pointer must be freeable or NULL.
1277 *
Willy Tarreaua84d3742007-05-07 00:36:48 +02001278 * Right now, the only accepted syntax is :
1279 * <subject> [<value>...]
1280 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001281struct acl_expr *parse_acl_expr(const char **args, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001282{
1283 __label__ out_return, out_free_expr, out_free_pattern;
1284 struct acl_expr *expr;
1285 struct acl_keyword *aclkw;
1286 struct acl_pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001287 int opaque, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001288 const char *arg;
1289
1290 aclkw = find_acl_kw(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001291 if (!aclkw || !aclkw->parse) {
1292 if (err)
1293 memprintf(err, "unknown ACL keyword '%s'", *args);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001294 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001295 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001296
1297 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001298 if (!expr) {
1299 if (err)
1300 memprintf(err, "out of memory when parsing ACL expression");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001301 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001302 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001303
1304 expr->kw = aclkw;
1305 aclkw->use_cnt++;
1306 LIST_INIT(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001307 expr->pattern_tree = EB_ROOT_UNIQUE;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001308
1309 arg = strchr(args[0], '(');
Willy Tarreau61612d42012-04-19 18:42:05 +02001310 if (aclkw->arg_mask) {
1311 int nbargs = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001312 char *end;
Willy Tarreau34db1082012-04-19 17:16:54 +02001313
Willy Tarreau61612d42012-04-19 18:42:05 +02001314 if (arg != NULL) {
1315 /* there are 0 or more arguments in the form "subject(arg[,arg]*)" */
1316 arg++;
1317 end = strchr(arg, ')');
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001318 if (!end) {
1319 if (err)
1320 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001321 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001322 }
Willy Tarreau34db1082012-04-19 17:16:54 +02001323
Willy Tarreau61612d42012-04-19 18:42:05 +02001324 /* Parse the arguments. Note that currently we have no way to
1325 * report parsing errors, hence the NULL in the error pointers.
1326 * An error is also reported if some mandatory arguments are
1327 * missing.
1328 */
1329 nbargs = make_arg_list(arg, end - arg, aclkw->arg_mask, &expr->args,
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001330 err, NULL, NULL);
1331 if (nbargs < 0) {
1332 /* note that make_arg_list will have set <err> here */
1333 if (err)
1334 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
Willy Tarreau61612d42012-04-19 18:42:05 +02001335 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001336 }
Willy Tarreauae52f062012-04-26 12:13:35 +02001337
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001338 if (aclkw->val_args && !aclkw->val_args(expr->args, err)) {
1339 /* invalid keyword argument, error must have been
1340 * set by val_args().
1341 */
1342 if (err)
1343 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
1344 goto out_free_expr;
1345 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001346 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001347 else if (ARGM(aclkw->arg_mask) == 1) {
1348 int type = (aclkw->arg_mask >> 4) & 15;
1349
1350 /* If a proxy is noted as a mandatory argument, we'll fake
1351 * an empty one so that acl_find_targets() resolves it as
1352 * the current one later.
1353 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001354 if (type != ARGT_FE && type != ARGT_BE && type != ARGT_TAB) {
1355 if (err)
1356 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001357 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001358 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001359
1360 /* Build an arg list containing the type as an empty string
1361 * and the usual STOP.
1362 */
1363 expr->args = calloc(2, sizeof(*expr->args));
1364 expr->args[0].type = type;
1365 expr->args[0].data.str.str = strdup("");
1366 expr->args[0].data.str.len = 1;
1367 expr->args[0].data.str.len = 0;
1368 expr->args[1].type = ARGT_STOP;
1369 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001370 else if (ARGM(aclkw->arg_mask)) {
1371 /* there were some mandatory arguments */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001372 if (err)
1373 memprintf(err, "ACL keyword '%s' expects %d arguments", aclkw->kw, ARGM(aclkw->arg_mask));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001374 goto out_free_expr;
Willy Tarreau61612d42012-04-19 18:42:05 +02001375 }
1376 }
1377 else {
1378 if (arg) {
1379 /* no argument expected */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001380 if (err)
1381 memprintf(err, "ACL keyword '%s' takes no argument", aclkw->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001382 goto out_free_expr;
1383 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001384 }
1385
Willy Tarreaua84d3742007-05-07 00:36:48 +02001386 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001387
1388 /* check for options before patterns. Supported options are :
1389 * -i : ignore case for all patterns by default
1390 * -f : read patterns from those files
1391 * -- : everything after this is not an option
1392 */
1393 patflags = 0;
1394 while (**args == '-') {
1395 if ((*args)[1] == 'i')
1396 patflags |= ACL_PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001397 else if ((*args)[1] == 'f') {
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001398 if (!acl_read_patterns_from_file(aclkw, expr, args[1], patflags | ACL_PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001399 goto out_free_expr;
1400 args++;
1401 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001402 else if ((*args)[1] == '-') {
1403 args++;
1404 break;
1405 }
1406 else
1407 break;
1408 args++;
1409 }
1410
1411 /* now parse all patterns */
Willy Tarreauae8b7962007-06-09 23:10:04 +02001412 opaque = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001413 while (**args) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001414 int ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001415 pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001416 if (!pattern) {
1417 if (err)
1418 memprintf(err, "out of memory when parsing ACL pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001419 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001420 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001421 pattern->flags = patflags;
1422
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001423 pattern->type = SMP_TYPES; /* unspecified type */
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001424 ret = aclkw->parse(args, pattern, &opaque, err);
1425 if (!ret)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001426 goto out_free_pattern;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001427
Willy Tarreaua84d3742007-05-07 00:36:48 +02001428 LIST_ADDQ(&expr->patterns, &pattern->list);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001429 args += ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001430 }
1431
1432 return expr;
1433
1434 out_free_pattern:
1435 free_pattern(pattern);
1436 out_free_expr:
1437 prune_acl_expr(expr);
1438 free(expr);
1439 out_return:
1440 return NULL;
1441}
1442
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001443/* Purge everything in the acl <acl>, then return <acl>. */
1444struct acl *prune_acl(struct acl *acl) {
1445
1446 struct acl_expr *expr, *exprb;
1447
1448 free(acl->name);
1449
1450 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
1451 LIST_DEL(&expr->list);
1452 prune_acl_expr(expr);
1453 free(expr);
1454 }
1455
1456 return acl;
1457}
1458
Willy Tarreaua84d3742007-05-07 00:36:48 +02001459/* Parse an ACL with the name starting at <args>[0], and with a list of already
1460 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001461 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001462 * an anonymous one and it won't be merged with any other one. If <err> is not
1463 * NULL, it will be filled with an appropriate error. This pointer must be
1464 * freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001465 *
1466 * args syntax: <aclname> <acl_expr>
1467 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001468struct acl *parse_acl(const char **args, struct list *known_acl, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001469{
1470 __label__ out_return, out_free_acl_expr, out_free_name;
1471 struct acl *cur_acl;
1472 struct acl_expr *acl_expr;
1473 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001474 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001475
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001476 if (**args && (pos = invalid_char(*args))) {
1477 if (err)
1478 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001479 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001480 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001481
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001482 acl_expr = parse_acl_expr(args + 1, err);
1483 if (!acl_expr) {
1484 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001485 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001486 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001487
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001488 /* Check for args beginning with an opening parenthesis just after the
1489 * subject, as this is almost certainly a typo. Right now we can only
1490 * emit a warning, so let's do so.
1491 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +02001492 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001493 Warning("parsing acl '%s' :\n"
1494 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
1495 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
1496 " If you are really sure this is not an error, please insert '--' between the\n"
1497 " match and the pattern to make this warning message disappear.\n",
1498 args[0], args[1], args[2]);
1499
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001500 if (*args[0])
1501 cur_acl = find_acl_by_name(args[0], known_acl);
1502 else
1503 cur_acl = NULL;
1504
Willy Tarreaua84d3742007-05-07 00:36:48 +02001505 if (!cur_acl) {
1506 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001507 if (!name) {
1508 if (err)
1509 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001510 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001511 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001512 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001513 if (cur_acl == NULL) {
1514 if (err)
1515 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001516 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001517 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001518
1519 LIST_INIT(&cur_acl->expr);
1520 LIST_ADDQ(known_acl, &cur_acl->list);
1521 cur_acl->name = name;
1522 }
1523
Willy Tarreaua9802632008-07-25 19:13:19 +02001524 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001525 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1526 return cur_acl;
1527
1528 out_free_name:
1529 free(name);
1530 out_free_acl_expr:
1531 prune_acl_expr(acl_expr);
1532 free(acl_expr);
1533 out_return:
1534 return NULL;
1535}
1536
Willy Tarreau16fbe822007-06-17 11:54:31 +02001537/* Some useful ACLs provided by default. Only those used are allocated. */
1538
1539const struct {
1540 const char *name;
1541 const char *expr[4]; /* put enough for longest expression */
1542} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +02001543 { .name = "TRUE", .expr = {"always_true",""}},
1544 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001545 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001546 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001547 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
1548 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
1549 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
1550 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
1551 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
1552 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
1553 { .name = "METH_POST", .expr = {"method","POST",""}},
1554 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
1555 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
1556 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
1557 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
1558 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +02001559 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +02001560 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +02001561 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001562 { .name = NULL, .expr = {""}}
1563};
1564
1565/* Find a default ACL from the default_acl list, compile it and return it.
1566 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
1567 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001568 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
1569 * not NULL, it will be filled with an error message if an error occurs. This
1570 * pointer must be freeable or NULL.
Willy Tarreau16fbe822007-06-17 11:54:31 +02001571 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001572struct acl *find_acl_default(const char *acl_name, struct list *known_acl, char **err)
Willy Tarreau16fbe822007-06-17 11:54:31 +02001573{
1574 __label__ out_return, out_free_acl_expr, out_free_name;
1575 struct acl *cur_acl;
1576 struct acl_expr *acl_expr;
1577 char *name;
1578 int index;
1579
1580 for (index = 0; default_acl_list[index].name != NULL; index++) {
1581 if (strcmp(acl_name, default_acl_list[index].name) == 0)
1582 break;
1583 }
1584
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001585 if (default_acl_list[index].name == NULL) {
1586 if (err)
1587 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001588 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001589 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001590
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001591 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err);
1592 if (!acl_expr) {
1593 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001594 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001595 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001596
1597 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001598 if (!name) {
1599 if (err)
1600 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001601 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001602 }
1603
Willy Tarreau16fbe822007-06-17 11:54:31 +02001604 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001605 if (cur_acl == NULL) {
1606 if (err)
1607 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001608 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001609 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001610
1611 cur_acl->name = name;
Willy Tarreaua55b7dc2009-07-12 09:21:30 +02001612 cur_acl->requires |= acl_expr->kw->requires;
Willy Tarreau16fbe822007-06-17 11:54:31 +02001613 LIST_INIT(&cur_acl->expr);
1614 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1615 if (known_acl)
1616 LIST_ADDQ(known_acl, &cur_acl->list);
1617
1618 return cur_acl;
1619
1620 out_free_name:
1621 free(name);
1622 out_free_acl_expr:
1623 prune_acl_expr(acl_expr);
1624 free(acl_expr);
1625 out_return:
1626 return NULL;
1627}
Willy Tarreaua84d3742007-05-07 00:36:48 +02001628
1629/* Purge everything in the acl_cond <cond>, then return <cond>. */
1630struct acl_cond *prune_acl_cond(struct acl_cond *cond)
1631{
1632 struct acl_term_suite *suite, *tmp_suite;
1633 struct acl_term *term, *tmp_term;
1634
1635 /* iterate through all term suites and free all terms and all suites */
1636 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
1637 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
1638 free(term);
1639 free(suite);
1640 }
1641 return cond;
1642}
1643
1644/* Parse an ACL condition starting at <args>[0], relying on a list of already
1645 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001646 * case of low memory). Supports multiple conditions separated by "or". If
1647 * <err> is not NULL, it will be filled with a pointer to an error message in
1648 * case of error, that the caller is responsible for freeing. The initial
1649 * location must either be freeable or NULL.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001650 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001651struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, int pol, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001652{
1653 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001654 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001655 const char *word;
1656 struct acl *cur_acl;
1657 struct acl_term *cur_term;
1658 struct acl_term_suite *cur_suite;
1659 struct acl_cond *cond;
1660
1661 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001662 if (cond == NULL) {
1663 if (err)
1664 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001665 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001666 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001667
1668 LIST_INIT(&cond->list);
1669 LIST_INIT(&cond->suites);
1670 cond->pol = pol;
1671
1672 cur_suite = NULL;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001673 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001674 for (arg = 0; *args[arg]; arg++) {
1675 word = args[arg];
1676
1677 /* remove as many exclamation marks as we can */
1678 while (*word == '!') {
1679 neg = !neg;
1680 word++;
1681 }
1682
1683 /* an empty word is allowed because we cannot force the user to
1684 * always think about not leaving exclamation marks alone.
1685 */
1686 if (!*word)
1687 continue;
1688
Willy Tarreau16fbe822007-06-17 11:54:31 +02001689 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +02001690 /* new term suite */
1691 cur_suite = NULL;
1692 neg = 0;
1693 continue;
1694 }
1695
Willy Tarreau95fa4692010-02-01 13:05:50 +01001696 if (strcmp(word, "{") == 0) {
1697 /* we may have a complete ACL expression between two braces,
1698 * find the last one.
1699 */
1700 int arg_end = arg + 1;
1701 const char **args_new;
1702
1703 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
1704 arg_end++;
1705
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001706 if (!*args[arg_end]) {
1707 if (err)
1708 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001709 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001710 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001711
1712 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001713 if (!args_new) {
1714 if (err)
1715 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001716 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001717 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001718
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001719 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +01001720 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
1721 args_new[arg_end - arg] = "";
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001722 cur_acl = parse_acl(args_new, known_acl, err);
Willy Tarreau95fa4692010-02-01 13:05:50 +01001723 free(args_new);
1724
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001725 if (!cur_acl) {
1726 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001727 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001728 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001729 arg = arg_end;
1730 }
1731 else {
1732 /* search for <word> in the known ACL names. If we do not find
1733 * it, let's look for it in the default ACLs, and if found, add
1734 * it to the list of ACLs of this proxy. This makes it possible
1735 * to override them.
1736 */
1737 cur_acl = find_acl_by_name(word, known_acl);
1738 if (cur_acl == NULL) {
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001739 cur_acl = find_acl_default(word, known_acl, err);
1740 if (cur_acl == NULL) {
1741 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +01001742 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001743 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001744 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001745 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001746
1747 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001748 if (cur_term == NULL) {
1749 if (err)
1750 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001751 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001752 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001753
1754 cur_term->acl = cur_acl;
1755 cur_term->neg = neg;
Willy Tarreaua9802632008-07-25 19:13:19 +02001756 cond->requires |= cur_acl->requires;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001757
1758 if (!cur_suite) {
1759 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001760 if (cur_term == NULL) {
1761 if (err)
1762 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001763 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001764 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001765 LIST_INIT(&cur_suite->terms);
1766 LIST_ADDQ(&cond->suites, &cur_suite->list);
1767 }
1768 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001769 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001770 }
1771
1772 return cond;
1773
1774 out_free_term:
1775 free(cur_term);
1776 out_free_suite:
1777 prune_acl_cond(cond);
1778 free(cond);
1779 out_return:
1780 return NULL;
1781}
1782
Willy Tarreau2bbba412010-01-28 16:48:33 +01001783/* Builds an ACL condition starting at the if/unless keyword. The complete
1784 * condition is returned. NULL is returned in case of error or if the first
1785 * word is neither "if" nor "unless". It automatically sets the file name and
1786 * the line number in the condition for better error reporting, and adds the
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001787 * ACL requirements to the proxy's acl_requires. If <err> is not NULL, it will
1788 * be filled with a pointer to an error message in case of error, that the
1789 * caller is responsible for freeing. The initial location must either be
1790 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001791 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001792struct 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 +01001793{
1794 int pol = ACL_COND_NONE;
1795 struct acl_cond *cond = NULL;
1796
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001797 if (err)
1798 *err = NULL;
1799
Willy Tarreau2bbba412010-01-28 16:48:33 +01001800 if (!strcmp(*args, "if")) {
1801 pol = ACL_COND_IF;
1802 args++;
1803 }
1804 else if (!strcmp(*args, "unless")) {
1805 pol = ACL_COND_UNLESS;
1806 args++;
1807 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001808 else {
1809 if (err)
1810 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001811 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001812 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001813
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001814 cond = parse_acl_cond(args, &px->acl, pol, err);
1815 if (!cond) {
1816 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001817 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001818 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001819
1820 cond->file = file;
1821 cond->line = line;
1822 px->acl_requires |= cond->requires;
1823
1824 return cond;
1825}
1826
Willy Tarreau11382812008-07-09 16:18:21 +02001827/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
Willy Tarreaub6866442008-07-14 23:54:42 +02001828 * ACL_PAT_PASS depending on the test results. ACL_PAT_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001829 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001830 * data is being examined. The function automatically sets SMP_OPT_ITERATE.
Willy Tarreaub6866442008-07-14 23:54:42 +02001831 * This function only computes the condition, it does not apply the polarity
1832 * required by IF/UNLESS, it's up to the caller to do this using something like
1833 * this :
Willy Tarreau11382812008-07-09 16:18:21 +02001834 *
1835 * res = acl_pass(res);
Willy Tarreaub6866442008-07-14 23:54:42 +02001836 * if (res == ACL_PAT_MISS)
1837 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001838 * if (cond->pol == ACL_COND_UNLESS)
1839 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001840 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001841int 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 +02001842{
1843 __label__ fetch_next;
1844 struct acl_term_suite *suite;
1845 struct acl_term *term;
1846 struct acl_expr *expr;
1847 struct acl *acl;
1848 struct acl_pattern *pattern;
Willy Tarreau37406352012-04-23 16:16:37 +02001849 struct sample smp;
Willy Tarreau11382812008-07-09 16:18:21 +02001850 int acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001851
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001852 /* ACLs are iterated over all values, so let's always set the flag to
1853 * indicate this to the fetch functions.
1854 */
1855 opt |= SMP_OPT_ITERATE;
1856
Willy Tarreau11382812008-07-09 16:18:21 +02001857 /* We're doing a logical OR between conditions so we initialize to FAIL.
1858 * The MISS status is propagated down from the suites.
1859 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001860 cond_res = ACL_PAT_FAIL;
1861 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001862 /* Evaluate condition suite <suite>. We stop at the first term
1863 * which returns ACL_PAT_FAIL. The MISS status is still propagated
1864 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001865 */
1866
1867 /* we're doing a logical AND between terms, so we must set the
1868 * initial value to PASS.
1869 */
1870 suite_res = ACL_PAT_PASS;
1871 list_for_each_entry(term, &suite->terms, list) {
1872 acl = term->acl;
1873
1874 /* FIXME: use cache !
1875 * check acl->cache_idx for this.
1876 */
1877
1878 /* ACL result not cached. Let's scan all the expressions
1879 * and use the first one to match.
1880 */
1881 acl_res = ACL_PAT_FAIL;
1882 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001883 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001884 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001885 fetch_next:
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001886 if (!expr->kw->fetch(px, l4, l7, opt, expr->args, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001887 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001888 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001889 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001890 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001891 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001892
Willy Tarreau197e10a2012-04-23 19:18:42 +02001893 if (smp.type == SMP_T_BOOL) {
1894 if (smp.data.uint)
Willy Tarreaua79534f2008-07-20 10:13:37 +02001895 acl_res |= ACL_PAT_PASS;
1896 else
1897 acl_res |= ACL_PAT_FAIL;
1898 }
1899 else {
Willy Tarreau020534d2010-05-16 21:45:45 +02001900 if (!eb_is_empty(&expr->pattern_tree)) {
Willy Tarreauc4262962010-05-10 23:42:40 +02001901 /* a tree is present, let's check what type it is */
1902 if (expr->kw->match == acl_match_str)
Willy Tarreau37406352012-04-23 16:16:37 +02001903 acl_res |= acl_lookup_str(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreaub337b532010-05-13 20:03:41 +02001904 else if (expr->kw->match == acl_match_ip)
Willy Tarreau37406352012-04-23 16:16:37 +02001905 acl_res |= acl_lookup_ip(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreauc4262962010-05-10 23:42:40 +02001906 }
1907
Willy Tarreaua79534f2008-07-20 10:13:37 +02001908 /* call the match() function for all tests on this value */
1909 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreaua79534f2008-07-20 10:13:37 +02001910 if (acl_res == ACL_PAT_PASS)
1911 break;
Willy Tarreau37406352012-04-23 16:16:37 +02001912 acl_res |= expr->kw->match(&smp, pattern);
Willy Tarreaua79534f2008-07-20 10:13:37 +02001913 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001914 }
1915 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001916 * OK now acl_res holds the result of this expression
1917 * as one of ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001918 *
Willy Tarreau11382812008-07-09 16:18:21 +02001919 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001920 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001921 *
1922 * FIXME: implement cache.
1923 *
1924 */
1925
Willy Tarreau11382812008-07-09 16:18:21 +02001926 /* we're ORing these terms, so a single PASS is enough */
1927 if (acl_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001928 break;
1929
Willy Tarreau37406352012-04-23 16:16:37 +02001930 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001931 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001932
1933 /* sometimes we know the fetched data is subject to change
1934 * later and give another chance for a new match (eg: request
1935 * size, time, ...)
1936 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001937 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001938 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001939 }
1940 /*
1941 * Here we have the result of an ACL (cached or not).
1942 * ACLs are combined, negated or not, to form conditions.
1943 */
1944
Willy Tarreaua84d3742007-05-07 00:36:48 +02001945 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001946 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001947
1948 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001949
1950 /* we're ANDing these terms, so a single FAIL is enough */
1951 if (suite_res == ACL_PAT_FAIL)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001952 break;
1953 }
1954 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001955
1956 /* we're ORing these terms, so a single PASS is enough */
1957 if (cond_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001958 break;
1959 }
Willy Tarreau11382812008-07-09 16:18:21 +02001960 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001961}
1962
1963
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001964/* Reports a pointer to the first ACL used in condition <cond> which requires
1965 * at least one of the USE_FLAGS in <require>. Returns NULL if none matches.
1966 * The construct is almost the same as for acl_exec_cond() since we're walking
1967 * down the ACL tree as well. It is important that the tree is really walked
1968 * through and never cached, because that way, this function can be used as a
1969 * late check.
1970 */
Willy Tarreauf1e98b82010-01-28 17:59:39 +01001971struct acl *cond_find_require(const struct acl_cond *cond, unsigned int require)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001972{
1973 struct acl_term_suite *suite;
1974 struct acl_term *term;
1975 struct acl *acl;
1976
1977 list_for_each_entry(suite, &cond->suites, list) {
1978 list_for_each_entry(term, &suite->terms, list) {
1979 acl = term->acl;
1980 if (acl->requires & require)
1981 return acl;
1982 }
1983 }
1984 return NULL;
1985}
1986
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001987/*
1988 * Find targets for userlist and groups in acl. Function returns the number
1989 * of errors or OK if everything is fine.
1990 */
1991int
1992acl_find_targets(struct proxy *p)
1993{
1994
1995 struct acl *acl;
1996 struct acl_expr *expr;
1997 struct acl_pattern *pattern;
1998 struct userlist *ul;
Willy Tarreau63364ee2012-04-19 19:11:13 +02001999 struct arg *arg;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002000 int cfgerr = 0;
2001
2002 list_for_each_entry(acl, &p->acl, list) {
2003 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002004 for (arg = expr->args; arg; arg++) {
2005 if (arg->type == ARGT_STOP)
2006 break;
2007 else if (arg->type == ARGT_SRV) {
2008 struct proxy *px;
2009 struct server *srv;
2010 char *pname, *sname;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002011
Willy Tarreau63364ee2012-04-19 19:11:13 +02002012 if (!expr->args->data.str.len) {
2013 Alert("proxy %s: acl '%s' %s(): missing server name.\n",
2014 p->id, acl->name, expr->kw->kw);
2015 cfgerr++;
2016 continue;
2017 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002018
Willy Tarreau63364ee2012-04-19 19:11:13 +02002019 pname = expr->args->data.str.str;
2020 sname = strrchr(pname, '/');
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002021
Willy Tarreau63364ee2012-04-19 19:11:13 +02002022 if (sname)
2023 *sname++ = '\0';
2024 else {
2025 sname = pname;
2026 pname = NULL;
2027 }
2028
2029 px = p;
2030 if (pname) {
2031 px = findproxy(pname, PR_CAP_BE);
2032 if (!px) {
2033 Alert("proxy %s: acl '%s' %s(): unable to find proxy '%s'.\n",
2034 p->id, acl->name, expr->kw->kw, pname);
2035 cfgerr++;
2036 continue;
2037 }
2038 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002039
Willy Tarreau63364ee2012-04-19 19:11:13 +02002040 srv = findserver(px, sname);
2041 if (!srv) {
2042 Alert("proxy %s: acl '%s' %s(): unable to find server '%s'.\n",
2043 p->id, acl->name, expr->kw->kw, sname);
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002044 cfgerr++;
2045 continue;
2046 }
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002047
Willy Tarreau63364ee2012-04-19 19:11:13 +02002048 free(expr->args->data.str.str);
2049 expr->args->data.srv = srv;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002050 }
2051 else if (arg->type == ARGT_FE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002052 struct proxy *prx = p;
2053 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002054
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002055 if (expr->args->data.str.len) {
2056 pname = expr->args->data.str.str;
2057 prx = findproxy(pname, PR_CAP_FE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002058 }
2059
Willy Tarreaud28c3532012-04-19 19:28:33 +02002060 if (!prx) {
2061 Alert("proxy %s: acl '%s' %s(): unable to find frontend '%s'.\n",
2062 p->id, acl->name, expr->kw->kw, pname);
2063 cfgerr++;
2064 continue;
2065 }
2066
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002067 if (!(prx->cap & PR_CAP_FE)) {
2068 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no frontend capability.\n",
2069 p->id, acl->name, expr->kw->kw, pname);
2070 cfgerr++;
2071 continue;
2072 }
2073
Willy Tarreaud28c3532012-04-19 19:28:33 +02002074 free(expr->args->data.str.str);
2075 expr->args->data.prx = prx;
2076 }
2077 else if (arg->type == ARGT_BE) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002078 struct proxy *prx = p;
2079 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002080
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002081 if (expr->args->data.str.len) {
2082 pname = expr->args->data.str.str;
2083 prx = findproxy(pname, PR_CAP_BE);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002084 }
2085
Willy Tarreaud28c3532012-04-19 19:28:33 +02002086 if (!prx) {
2087 Alert("proxy %s: acl '%s' %s(): unable to find backend '%s'.\n",
2088 p->id, acl->name, expr->kw->kw, pname);
2089 cfgerr++;
2090 continue;
2091 }
2092
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002093 if (!(prx->cap & PR_CAP_BE)) {
2094 Alert("proxy %s: acl '%s' %s(): proxy '%s' has no backend capability.\n",
2095 p->id, acl->name, expr->kw->kw, pname);
2096 cfgerr++;
2097 continue;
2098 }
2099
Willy Tarreaud28c3532012-04-19 19:28:33 +02002100 free(expr->args->data.str.str);
2101 expr->args->data.prx = prx;
2102 }
2103 else if (arg->type == ARGT_TAB) {
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002104 struct proxy *prx = p;
2105 char *pname = p->id;
Willy Tarreaud28c3532012-04-19 19:28:33 +02002106
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002107 if (expr->args->data.str.len) {
2108 pname = expr->args->data.str.str;
2109 prx = find_stktable(pname);
Willy Tarreaud28c3532012-04-19 19:28:33 +02002110 }
2111
Willy Tarreaud28c3532012-04-19 19:28:33 +02002112 if (!prx) {
2113 Alert("proxy %s: acl '%s' %s(): unable to find table '%s'.\n",
2114 p->id, acl->name, expr->kw->kw, pname);
2115 cfgerr++;
2116 continue;
2117 }
2118
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02002119
2120 if (!prx->table.size) {
2121 Alert("proxy %s: acl '%s' %s(): no table in proxy '%s'.\n",
2122 p->id, acl->name, expr->kw->kw, pname);
2123 cfgerr++;
2124 continue;
2125 }
2126
Willy Tarreaud28c3532012-04-19 19:28:33 +02002127 free(expr->args->data.str.str);
2128 expr->args->data.prx = prx;
Willy Tarreau0b1cd942010-05-16 22:18:27 +02002129 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002130 else if (arg->type == ARGT_USR) {
2131 if (!expr->args->data.str.len) {
2132 Alert("proxy %s: acl '%s' %s(): missing userlist name.\n",
2133 p->id, acl->name, expr->kw->kw);
2134 cfgerr++;
2135 continue;
2136 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002137
Willy Tarreau63364ee2012-04-19 19:11:13 +02002138 if (p->uri_auth && p->uri_auth->userlist &&
2139 !strcmp(p->uri_auth->userlist->name, expr->args->data.str.str))
2140 ul = p->uri_auth->userlist;
2141 else
2142 ul = auth_find_userlist(expr->args->data.str.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002143
Willy Tarreau63364ee2012-04-19 19:11:13 +02002144 if (!ul) {
2145 Alert("proxy %s: acl '%s' %s(%s): unable to find userlist.\n",
2146 p->id, acl->name, expr->kw->kw, expr->args->data.str.str);
2147 cfgerr++;
2148 continue;
2149 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002150
Willy Tarreau63364ee2012-04-19 19:11:13 +02002151 free(expr->args->data.str.str);
2152 expr->args->data.usr = ul;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002153 }
Willy Tarreau63364ee2012-04-19 19:11:13 +02002154 } /* end of args processing */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002155
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002156
2157 if (!strcmp(expr->kw->kw, "http_auth_group")) {
Willy Tarreau63364ee2012-04-19 19:11:13 +02002158 /* note: argument resolved above thanks to ARGT_USR */
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002159
2160 if (LIST_ISEMPTY(&expr->patterns)) {
2161 Alert("proxy %s: acl %s %s(): no groups specified.\n",
2162 p->id, acl->name, expr->kw->kw);
2163 cfgerr++;
2164 continue;
2165 }
2166
2167 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreau34db1082012-04-19 17:16:54 +02002168 pattern->val.group_mask = auth_resolve_groups(expr->args->data.usr, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002169
2170 free(pattern->ptr.str);
2171 pattern->ptr.str = NULL;
2172 pattern->len = 0;
2173
2174 if (!pattern->val.group_mask) {
2175 Alert("proxy %s: acl %s %s(): invalid group(s).\n",
2176 p->id, acl->name, expr->kw->kw);
2177 cfgerr++;
2178 continue;
2179 }
2180 }
2181 }
2182 }
2183 }
2184
2185 return cfgerr;
2186}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002187
Willy Tarreaua84d3742007-05-07 00:36:48 +02002188/************************************************************************/
2189/* All supported keywords must be declared here. */
2190/************************************************************************/
2191
Willy Tarreau61612d42012-04-19 18:42:05 +02002192/* Note: must not be declared <const> as its list will be overwritten.
2193 * Please take care of keeping this list alphabetically sorted.
2194 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02002195static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau61612d42012-04-19 18:42:05 +02002196 { "always_false", acl_parse_nothing, acl_fetch_false, acl_match_nothing, ACL_USE_NOTHING, 0 },
2197 { "always_true", acl_parse_nothing, acl_fetch_true, acl_match_nothing, ACL_USE_NOTHING, 0 },
2198 { "rep_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6RTR_VOLATILE, 0 },
2199 { "req_len", acl_parse_int, acl_fetch_req_len, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
Willy Tarreau61612d42012-04-19 18:42:05 +02002200 { "req_ssl_hello_type", acl_parse_int, acl_fetch_ssl_hello_type, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2201 { "req_ssl_sni", acl_parse_str, acl_fetch_ssl_hello_sni, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, 0 },
2202 { "req_ssl_ver", acl_parse_dotted_ver, acl_fetch_req_ssl_ver, acl_match_int, ACL_USE_L6REQ_VOLATILE, 0 },
2203 { "wait_end", acl_parse_nothing, acl_fetch_wait_end, acl_match_nothing, ACL_USE_NOTHING, 0 },
Willy Tarreaua84d3742007-05-07 00:36:48 +02002204 { NULL, NULL, NULL, NULL }
2205}};
2206
2207
2208__attribute__((constructor))
2209static void __acl_init(void)
2210{
2211 acl_register_keywords(&acl_kws);
2212}
2213
2214
2215/*
2216 * Local variables:
2217 * c-indent-level: 8
2218 * c-basic-offset: 8
2219 * End:
2220 */