blob: af7d36b040dfe5710662ed9d1474d813ea7062ff [file] [log] [blame]
Willy Tarreaua84d3742007-05-07 00:36:48 +02001/*
2 * ACL management functions.
3 *
Willy Tarreaud4c33c82013-01-07 21:59:07 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaua84d3742007-05-07 00:36:48 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreauae8b7962007-06-09 23:10:04 +020013#include <ctype.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020014#include <stdio.h>
15#include <string.h>
16
17#include <common/config.h>
18#include <common/mini-clist.h>
19#include <common/standard.h>
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +010020#include <common/uri_auth.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020021
Willy Tarreau2b5285d2010-05-09 23:45:24 +020022#include <types/global.h>
23
Willy Tarreaua84d3742007-05-07 00:36:48 +020024#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020025#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010026#include <proto/auth.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020027#include <proto/channel.h>
Willy Tarreau404e8ab2009-07-26 19:40:40 +020028#include <proto/log.h>
Willy Tarreau0b1cd942010-05-16 22:18:27 +020029#include <proto/proxy.h>
Willy Tarreau8ed669b2013-01-11 15:49:37 +010030#include <proto/sample.h>
Willy Tarreaud28c3532012-04-19 19:28:33 +020031#include <proto/stick_table.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020032
Willy Tarreauc4262962010-05-10 23:42:40 +020033#include <ebsttree.h>
34
Willy Tarreaua84d3742007-05-07 00:36:48 +020035/* List head of all known ACL keywords */
36static struct acl_kw_list acl_keywords = {
37 .list = LIST_HEAD_INIT(acl_keywords.list)
38};
39
Willy Tarreau5adeda12013-03-31 22:13:34 +020040static char *acl_match_names[ACL_MATCH_NUM] = {
41 [ACL_MATCH_FOUND] = "found",
42 [ACL_MATCH_BOOL] = "bool",
43 [ACL_MATCH_INT] = "int",
44 [ACL_MATCH_IP] = "ip",
45 [ACL_MATCH_BIN] = "bin",
46 [ACL_MATCH_LEN] = "len",
47 [ACL_MATCH_STR] = "str",
48 [ACL_MATCH_BEG] = "beg",
49 [ACL_MATCH_SUB] = "sub",
50 [ACL_MATCH_DIR] = "dir",
51 [ACL_MATCH_DOM] = "dom",
52 [ACL_MATCH_END] = "end",
53 [ACL_MATCH_REG] = "reg",
54};
55
56static int (*acl_parse_fcts[ACL_MATCH_NUM])(const char **, struct acl_pattern *, int *, char **) = {
57 [ACL_MATCH_FOUND] = acl_parse_nothing,
58 [ACL_MATCH_BOOL] = acl_parse_nothing,
59 [ACL_MATCH_INT] = acl_parse_int,
60 [ACL_MATCH_IP] = acl_parse_ip,
61 [ACL_MATCH_BIN] = acl_parse_bin,
62 [ACL_MATCH_LEN] = acl_parse_int,
63 [ACL_MATCH_STR] = acl_parse_str,
64 [ACL_MATCH_BEG] = acl_parse_str,
65 [ACL_MATCH_SUB] = acl_parse_str,
66 [ACL_MATCH_DIR] = acl_parse_str,
67 [ACL_MATCH_DOM] = acl_parse_str,
68 [ACL_MATCH_END] = acl_parse_str,
69 [ACL_MATCH_REG] = acl_parse_reg,
70};
71
72static int (*acl_match_fcts[ACL_MATCH_NUM])(struct sample *, struct acl_pattern *) = {
73 [ACL_MATCH_FOUND] = NULL,
74 [ACL_MATCH_BOOL] = acl_match_nothing,
75 [ACL_MATCH_INT] = acl_match_int,
76 [ACL_MATCH_IP] = acl_match_ip,
77 [ACL_MATCH_BIN] = acl_match_bin,
78 [ACL_MATCH_LEN] = acl_match_len,
79 [ACL_MATCH_STR] = acl_match_str,
80 [ACL_MATCH_BEG] = acl_match_beg,
81 [ACL_MATCH_SUB] = acl_match_sub,
82 [ACL_MATCH_DIR] = acl_match_dir,
83 [ACL_MATCH_DOM] = acl_match_dom,
84 [ACL_MATCH_END] = acl_match_end,
85 [ACL_MATCH_REG] = acl_match_reg,
86};
87
88/* return the ACL_MATCH_* index for match name "name", or < 0 if not found */
89static int acl_find_match_name(const char *name)
90{
91 int i;
92
93 for (i = 0; i < ACL_MATCH_NUM; i++)
94 if (strcmp(name, acl_match_names[i]) == 0)
95 return i;
96 return -1;
97}
Willy Tarreaua84d3742007-05-07 00:36:48 +020098
Willy Tarreaua5909832007-06-17 20:40:25 +020099/*
Willy Tarreau58393e12008-07-20 10:39:22 +0200100 * These functions are exported and may be used by any other component.
101 */
102
103/* ignore the current line */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200104int acl_parse_nothing(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua5909832007-06-17 20:40:25 +0200105{
Willy Tarreau58393e12008-07-20 10:39:22 +0200106 return 1;
107}
108
Willy Tarreaua5909832007-06-17 20:40:25 +0200109/* always return false */
Willy Tarreau37406352012-04-23 16:16:37 +0200110int acl_match_nothing(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua5909832007-06-17 20:40:25 +0200111{
Willy Tarreau11382812008-07-09 16:18:21 +0200112 return ACL_PAT_FAIL;
Willy Tarreaua5909832007-06-17 20:40:25 +0200113}
114
115
Willy Tarreaua84d3742007-05-07 00:36:48 +0200116/* NB: For two strings to be identical, it is required that their lengths match */
Willy Tarreau37406352012-04-23 16:16:37 +0200117int acl_match_str(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200118{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200119 int icase;
120
Willy Tarreauf853c462012-04-23 18:53:56 +0200121 if (pattern->len != smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200122 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200123
124 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200125 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) == 0) ||
126 (!icase && strncmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) == 0))
Willy Tarreau11382812008-07-09 16:18:21 +0200127 return ACL_PAT_PASS;
128 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200129}
130
Emeric Brun07ca4962012-10-17 13:38:19 +0200131/* NB: For two binaries buf to be identical, it is required that their lengths match */
132int acl_match_bin(struct sample *smp, struct acl_pattern *pattern)
133{
134 if (pattern->len != smp->data.str.len)
135 return ACL_PAT_FAIL;
136
137 if (memcmp(pattern->ptr.str, smp->data.str.str, smp->data.str.len) == 0)
138 return ACL_PAT_PASS;
139 return ACL_PAT_FAIL;
140}
141
Willy Tarreauc4262962010-05-10 23:42:40 +0200142/* Lookup a string in the expression's pattern tree. The node is returned if it
143 * exists, otherwise NULL.
144 */
Willy Tarreau37406352012-04-23 16:16:37 +0200145static void *acl_lookup_str(struct sample *smp, struct acl_expr *expr)
Willy Tarreauc4262962010-05-10 23:42:40 +0200146{
147 /* data are stored in a tree */
148 struct ebmb_node *node;
149 char prev;
150
151 /* we may have to force a trailing zero on the test pattern */
Willy Tarreauf853c462012-04-23 18:53:56 +0200152 prev = smp->data.str.str[smp->data.str.len];
Willy Tarreauc4262962010-05-10 23:42:40 +0200153 if (prev)
Willy Tarreauf853c462012-04-23 18:53:56 +0200154 smp->data.str.str[smp->data.str.len] = '\0';
155 node = ebst_lookup(&expr->pattern_tree, smp->data.str.str);
Willy Tarreauc4262962010-05-10 23:42:40 +0200156 if (prev)
Willy Tarreauf853c462012-04-23 18:53:56 +0200157 smp->data.str.str[smp->data.str.len] = prev;
Willy Tarreauc4262962010-05-10 23:42:40 +0200158 return node;
159}
160
Willy Tarreau21e5b0e2012-04-23 19:25:44 +0200161/* Executes a regex. It temporarily changes the data to add a trailing zero,
162 * and restores the previous character when leaving.
Willy Tarreauf3d25982007-05-08 22:45:09 +0200163 */
Willy Tarreau37406352012-04-23 16:16:37 +0200164int acl_match_reg(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreauf3d25982007-05-08 22:45:09 +0200165{
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900166 if (regex_exec(pattern->ptr.reg, smp->data.str.str, smp->data.str.len) == 0)
Thierry FOURNIERef37a662013-10-15 13:41:44 +0200167 return ACL_PAT_PASS;
168 return ACL_PAT_FAIL;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200169}
170
Willy Tarreaua84d3742007-05-07 00:36:48 +0200171/* Checks that the pattern matches the beginning of the tested string. */
Willy Tarreau37406352012-04-23 16:16:37 +0200172int acl_match_beg(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200173{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200174 int icase;
175
Willy Tarreauf853c462012-04-23 18:53:56 +0200176 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200177 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200178
179 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200180 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str, pattern->len) != 0) ||
181 (!icase && strncmp(pattern->ptr.str, smp->data.str.str, pattern->len) != 0))
Willy Tarreau11382812008-07-09 16:18:21 +0200182 return ACL_PAT_FAIL;
183 return ACL_PAT_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200184}
185
186/* Checks that the pattern matches the end of the tested string. */
Willy Tarreau37406352012-04-23 16:16:37 +0200187int acl_match_end(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200188{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200189 int icase;
190
Willy Tarreauf853c462012-04-23 18:53:56 +0200191 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200192 return ACL_PAT_FAIL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200193 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200194 if ((icase && strncasecmp(pattern->ptr.str, smp->data.str.str + smp->data.str.len - pattern->len, pattern->len) != 0) ||
195 (!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 +0200196 return ACL_PAT_FAIL;
197 return ACL_PAT_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200198}
199
200/* Checks that the pattern is included inside the tested string.
201 * NB: Suboptimal, should be rewritten using a Boyer-Moore method.
202 */
Willy Tarreau37406352012-04-23 16:16:37 +0200203int acl_match_sub(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200204{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200205 int icase;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200206 char *end;
207 char *c;
208
Willy Tarreauf853c462012-04-23 18:53:56 +0200209 if (pattern->len > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200210 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200211
Willy Tarreauf853c462012-04-23 18:53:56 +0200212 end = smp->data.str.str + smp->data.str.len - pattern->len;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200213 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
214 if (icase) {
Willy Tarreauf853c462012-04-23 18:53:56 +0200215 for (c = smp->data.str.str; c <= end; c++) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200216 if (tolower(*c) != tolower(*pattern->ptr.str))
217 continue;
218 if (strncasecmp(pattern->ptr.str, c, pattern->len) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200219 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200220 }
221 } else {
Willy Tarreauf853c462012-04-23 18:53:56 +0200222 for (c = smp->data.str.str; c <= end; c++) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200223 if (*c != *pattern->ptr.str)
224 continue;
225 if (strncmp(pattern->ptr.str, c, pattern->len) == 0)
Willy Tarreau11382812008-07-09 16:18:21 +0200226 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200227 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200228 }
Willy Tarreau11382812008-07-09 16:18:21 +0200229 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200230}
231
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200232/* Background: Fast way to find a zero byte in a word
233 * http://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
234 * hasZeroByte = (v - 0x01010101UL) & ~v & 0x80808080UL;
235 *
236 * To look for 4 different byte values, xor the word with those bytes and
237 * then check for zero bytes:
238 *
239 * v = (((unsigned char)c * 0x1010101U) ^ delimiter)
240 * where <delimiter> is the 4 byte values to look for (as an uint)
241 * and <c> is the character that is being tested
242 */
243static inline unsigned int is_delimiter(unsigned char c, unsigned int mask)
244{
245 mask ^= (c * 0x01010101); /* propagate the char to all 4 bytes */
246 return (mask - 0x01010101) & ~mask & 0x80808080U;
247}
248
249static inline unsigned int make_4delim(unsigned char d1, unsigned char d2, unsigned char d3, unsigned char d4)
250{
251 return d1 << 24 | d2 << 16 | d3 << 8 | d4;
252}
253
Willy Tarreaua84d3742007-05-07 00:36:48 +0200254/* This one is used by other real functions. It checks that the pattern is
255 * included inside the tested string, but enclosed between the specified
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200256 * delimiters or at the beginning or end of the string. The delimiters are
257 * provided as an unsigned int made by make_4delim() and match up to 4 different
258 * delimiters. Delimiters are stripped at the beginning and end of the pattern.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200259 */
Willy Tarreau37406352012-04-23 16:16:37 +0200260static int match_word(struct sample *smp, struct acl_pattern *pattern, unsigned int delimiters)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200261{
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200262 int may_match, icase;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200263 char *c, *end;
264 char *ps;
265 int pl;
266
267 pl = pattern->len;
268 ps = pattern->ptr.str;
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200269
270 while (pl > 0 && is_delimiter(*ps, delimiters)) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200271 pl--;
272 ps++;
273 }
274
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200275 while (pl > 0 && is_delimiter(ps[pl - 1], delimiters))
Willy Tarreaua84d3742007-05-07 00:36:48 +0200276 pl--;
277
Willy Tarreauf853c462012-04-23 18:53:56 +0200278 if (pl > smp->data.str.len)
Willy Tarreau11382812008-07-09 16:18:21 +0200279 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200280
281 may_match = 1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200282 icase = pattern->flags & ACL_PAT_F_IGNORE_CASE;
Willy Tarreauf853c462012-04-23 18:53:56 +0200283 end = smp->data.str.str + smp->data.str.len - pl;
284 for (c = smp->data.str.str; c <= end; c++) {
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200285 if (is_delimiter(*c, delimiters)) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200286 may_match = 1;
287 continue;
288 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200289
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200290 if (!may_match)
291 continue;
292
293 if (icase) {
294 if ((tolower(*c) == tolower(*ps)) &&
295 (strncasecmp(ps, c, pl) == 0) &&
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200296 (c == end || is_delimiter(c[pl], delimiters)))
Willy Tarreau11382812008-07-09 16:18:21 +0200297 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200298 } else {
299 if ((*c == *ps) &&
300 (strncmp(ps, c, pl) == 0) &&
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200301 (c == end || is_delimiter(c[pl], delimiters)))
Willy Tarreau11382812008-07-09 16:18:21 +0200302 return ACL_PAT_PASS;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200303 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200304 may_match = 0;
305 }
Willy Tarreau11382812008-07-09 16:18:21 +0200306 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200307}
308
309/* Checks that the pattern is included inside the tested string, but enclosed
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200310 * between the delimiters '?' or '/' or at the beginning or end of the string.
311 * Delimiters at the beginning or end of the pattern are ignored.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200312 */
Willy Tarreau37406352012-04-23 16:16:37 +0200313int acl_match_dir(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200314{
Willy Tarreau37406352012-04-23 16:16:37 +0200315 return match_word(smp, pattern, make_4delim('/', '?', '?', '?'));
Willy Tarreaua84d3742007-05-07 00:36:48 +0200316}
317
318/* Checks that the pattern is included inside the tested string, but enclosed
Finn Arne Gangstade8c7ecc2011-09-09 16:09:50 +0200319 * between the delmiters '/', '?', '.' or ":" or at the beginning or end of
320 * the string. Delimiters at the beginning or end of the pattern are ignored.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200321 */
Willy Tarreau37406352012-04-23 16:16:37 +0200322int acl_match_dom(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200323{
Willy Tarreau37406352012-04-23 16:16:37 +0200324 return match_word(smp, pattern, make_4delim('/', '?', '.', ':'));
Willy Tarreaua84d3742007-05-07 00:36:48 +0200325}
326
327/* Checks that the integer in <test> is included between min and max */
Willy Tarreau37406352012-04-23 16:16:37 +0200328int acl_match_int(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200329{
Willy Tarreauf853c462012-04-23 18:53:56 +0200330 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.uint) &&
331 (!pattern->val.range.max_set || smp->data.uint <= pattern->val.range.max))
Willy Tarreau11382812008-07-09 16:18:21 +0200332 return ACL_PAT_PASS;
333 return ACL_PAT_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200334}
335
Willy Tarreau0e698542011-09-16 08:32:32 +0200336/* Checks that the length of the pattern in <test> is included between min and max */
Willy Tarreau37406352012-04-23 16:16:37 +0200337int acl_match_len(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreau0e698542011-09-16 08:32:32 +0200338{
Willy Tarreauf853c462012-04-23 18:53:56 +0200339 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.str.len) &&
340 (!pattern->val.range.max_set || smp->data.str.len <= pattern->val.range.max))
Willy Tarreau0e698542011-09-16 08:32:32 +0200341 return ACL_PAT_PASS;
342 return ACL_PAT_FAIL;
343}
344
Willy Tarreau37406352012-04-23 16:16:37 +0200345int acl_match_ip(struct sample *smp, struct acl_pattern *pattern)
Willy Tarreaua67fad92007-05-08 19:50:09 +0200346{
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200347 unsigned int v4; /* in network byte order */
348 struct in6_addr *v6;
349 int bits, pos;
350 struct in6_addr tmp6;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200351
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200352 if (pattern->type == SMP_T_IPV4) {
353 if (smp->type == SMP_T_IPV4) {
354 v4 = smp->data.ipv4.s_addr;
355 }
356 else if (smp->type == SMP_T_IPV6) {
357 /* v4 match on a V6 sample. We want to check at least for
358 * the following forms :
359 * - ::ffff:ip:v4 (ipv4 mapped)
360 * - ::0000:ip:v4 (old ipv4 mapped)
361 * - 2002:ip:v4:: (6to4)
362 */
363 if (*(uint32_t*)&smp->data.ipv6.s6_addr[0] == 0 &&
364 *(uint32_t*)&smp->data.ipv6.s6_addr[4] == 0 &&
365 (*(uint32_t*)&smp->data.ipv6.s6_addr[8] == 0 ||
366 *(uint32_t*)&smp->data.ipv6.s6_addr[8] == htonl(0xFFFF))) {
367 v4 = *(uint32_t*)&smp->data.ipv6.s6_addr[12];
368 }
369 else if (*(uint16_t*)&smp->data.ipv6.s6_addr[0] == htons(0x2002)) {
370 v4 = htonl((ntohs(*(uint16_t*)&smp->data.ipv6.s6_addr[2]) << 16) +
371 ntohs(*(uint16_t*)&smp->data.ipv6.s6_addr[4]));
372 }
373 else
374 return ACL_PAT_FAIL;
375 }
376 else
377 return ACL_PAT_FAIL;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200378
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200379 if (((v4 ^ pattern->val.ipv4.addr.s_addr) & pattern->val.ipv4.mask.s_addr) == 0)
380 return ACL_PAT_PASS;
381 else
382 return ACL_PAT_FAIL;
383 }
384 else if (pattern->type == SMP_T_IPV6) {
385 if (smp->type == SMP_T_IPV4) {
386 /* Convert the IPv4 sample address to IPv4 with the
387 * mapping method using the ::ffff: prefix.
388 */
389 memset(&tmp6, 0, 10);
390 *(uint16_t*)&tmp6.s6_addr[10] = htons(0xffff);
391 *(uint32_t*)&tmp6.s6_addr[12] = smp->data.ipv4.s_addr;
392 v6 = &tmp6;
393 }
394 else if (smp->type == SMP_T_IPV6) {
395 v6 = &smp->data.ipv6;
396 }
397 else {
398 return ACL_PAT_FAIL;
399 }
400
401 bits = pattern->val.ipv6.mask;
402 for (pos = 0; bits > 0; pos += 4, bits -= 32) {
403 v4 = *(uint32_t*)&v6->s6_addr[pos] ^ *(uint32_t*)&pattern->val.ipv6.addr.s6_addr[pos];
404 if (bits < 32)
Cyril Bonté4c01beb2012-10-23 21:28:31 +0200405 v4 &= htonl((~0U) << (32-bits));
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200406 if (v4)
407 return ACL_PAT_FAIL;
408 }
Willy Tarreau11382812008-07-09 16:18:21 +0200409 return ACL_PAT_PASS;
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200410 }
Willy Tarreau11382812008-07-09 16:18:21 +0200411 return ACL_PAT_FAIL;
Willy Tarreaua67fad92007-05-08 19:50:09 +0200412}
413
Willy Tarreaub337b532010-05-13 20:03:41 +0200414/* Lookup an IPv4 address in the expression's pattern tree using the longest
415 * match method. The node is returned if it exists, otherwise NULL.
416 */
Willy Tarreau37406352012-04-23 16:16:37 +0200417static void *acl_lookup_ip(struct sample *smp, struct acl_expr *expr)
Willy Tarreaub337b532010-05-13 20:03:41 +0200418{
419 struct in_addr *s;
420
Willy Tarreauf853c462012-04-23 18:53:56 +0200421 if (smp->type != SMP_T_IPV4)
Willy Tarreaub337b532010-05-13 20:03:41 +0200422 return ACL_PAT_FAIL;
423
Willy Tarreauf853c462012-04-23 18:53:56 +0200424 s = &smp->data.ipv4;
Willy Tarreaub337b532010-05-13 20:03:41 +0200425 return ebmb_lookup_longest(&expr->pattern_tree, &s->s_addr);
426}
427
Willy Tarreaua84d3742007-05-07 00:36:48 +0200428/* Parse a string. It is allocated and duplicated. */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200429int acl_parse_str(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200430{
431 int len;
432
Willy Tarreauae8b7962007-06-09 23:10:04 +0200433 len = strlen(*text);
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200434 pattern->type = SMP_T_CSTR;
Willy Tarreauc4262962010-05-10 23:42:40 +0200435
436 if (pattern->flags & ACL_PAT_F_TREE_OK) {
437 /* we're allowed to put the data in a tree whose root is pointed
438 * to by val.tree.
439 */
440 struct ebmb_node *node;
441
442 node = calloc(1, sizeof(*node) + len + 1);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200443 if (!node) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200444 memprintf(err, "out of memory while loading string pattern");
Willy Tarreauc4262962010-05-10 23:42:40 +0200445 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200446 }
Willy Tarreauc4262962010-05-10 23:42:40 +0200447 memcpy(node->key, *text, len + 1);
448 if (ebst_insert(pattern->val.tree, node) != node)
449 free(node); /* was a duplicate */
450 pattern->flags |= ACL_PAT_F_TREE; /* this pattern now contains a tree */
451 return 1;
452 }
453
Willy Tarreauae8b7962007-06-09 23:10:04 +0200454 pattern->ptr.str = strdup(*text);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200455 if (!pattern->ptr.str) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200456 memprintf(err, "out of memory while loading string pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200457 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200458 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200459 pattern->len = len;
460 return 1;
461}
462
Emeric Brun07ca4962012-10-17 13:38:19 +0200463/* Parse a binary written in hexa. It is allocated. */
464int acl_parse_bin(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
465{
466 int len;
467 const char *p = *text;
468 int i,j;
469
470 len = strlen(p);
471 if (len%2) {
472 memprintf(err, "an even number of hex digit is expected");
473 return 0;
474 }
475
476 pattern->type = SMP_T_CBIN;
477 pattern->len = len >> 1;
478 pattern->ptr.str = malloc(pattern->len);
479 if (!pattern->ptr.str) {
480 memprintf(err, "out of memory while loading string pattern");
481 return 0;
482 }
483
484 i = j = 0;
485 while (j < pattern->len) {
486 if (!ishex(p[i++]))
487 goto bad_input;
488 if (!ishex(p[i++]))
489 goto bad_input;
490 pattern->ptr.str[j++] = (hex2i(p[i-2]) << 4) + hex2i(p[i-1]);
491 }
492 return 1;
493
494bad_input:
495 memprintf(err, "an hex digit is expected (found '%c')", p[i-1]);
496 free(pattern->ptr.str);
497 return 0;
498}
499
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100500/* Parse and concatenate all further strings into one. */
501int
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200502acl_parse_strcat(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100503{
504
505 int len = 0, i;
506 char *s;
507
508 for (i = 0; *text[i]; i++)
509 len += strlen(text[i])+1;
510
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200511 pattern->type = SMP_T_CSTR;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100512 pattern->ptr.str = s = calloc(1, len);
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200513 if (!pattern->ptr.str) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200514 memprintf(err, "out of memory while loading pattern");
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100515 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200516 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100517
518 for (i = 0; *text[i]; i++)
519 s += sprintf(s, i?" %s":"%s", text[i]);
520
521 pattern->len = len;
522
523 return i;
524}
525
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200526/* Free data allocated by acl_parse_reg */
Willy Tarreau37406352012-04-23 16:16:37 +0200527static void acl_free_reg(void *ptr)
528{
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900529 regex_free(ptr);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200530}
531
Willy Tarreauf3d25982007-05-08 22:45:09 +0200532/* Parse a regex. It is allocated. */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200533int acl_parse_reg(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreauf3d25982007-05-08 22:45:09 +0200534{
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900535 regex *preg;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200536
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900537 preg = calloc(1, sizeof(*preg));
Willy Tarreauf3d25982007-05-08 22:45:09 +0200538
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200539 if (!preg) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200540 memprintf(err, "out of memory while loading pattern");
Willy Tarreauf3d25982007-05-08 22:45:09 +0200541 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200542 }
Willy Tarreauf3d25982007-05-08 22:45:09 +0200543
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200544 if (!regex_comp(*text, preg, !(pattern->flags & ACL_PAT_F_IGNORE_CASE), 0, err)) {
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900545 free(preg);
Hiroaki Nakamura70351322013-01-13 15:00:42 +0900546 return 0;
547 }
548
Willy Tarreauf3d25982007-05-08 22:45:09 +0200549 pattern->ptr.reg = preg;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200550 pattern->freeptrbuf = &acl_free_reg;
Willy Tarreauf3d25982007-05-08 22:45:09 +0200551 return 1;
552}
553
Willy Tarreauae8b7962007-06-09 23:10:04 +0200554/* Parse a range of positive integers delimited by either ':' or '-'. If only
555 * one integer is read, it is set as both min and max. An operator may be
556 * specified as the prefix, among this list of 5 :
557 *
558 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
559 *
560 * The default operator is "eq". It supports range matching. Ranges are
561 * rejected for other operators. The operator may be changed at any time.
562 * The operator is stored in the 'opaque' argument.
563 *
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200564 * If err is non-NULL, an error message will be returned there on errors and
565 * the caller will have to free it.
566 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200567 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200568int acl_parse_int(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200569{
Willy Tarreauae8b7962007-06-09 23:10:04 +0200570 signed long long i;
571 unsigned int j, last, skip = 0;
572 const char *ptr = *text;
573
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200574 pattern->type = SMP_T_UINT;
Willy Tarreau8f8e6452007-06-17 21:51:38 +0200575 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200576 switch (get_std_op(ptr)) {
577 case STD_OP_EQ: *opaque = 0; break;
578 case STD_OP_GT: *opaque = 1; break;
579 case STD_OP_GE: *opaque = 2; break;
580 case STD_OP_LT: *opaque = 3; break;
581 case STD_OP_LE: *opaque = 4; break;
582 default:
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200583 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200584 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200585 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200586
587 skip++;
588 ptr = text[skip];
589 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200590
591 last = i = 0;
592 while (1) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200593 j = *ptr++;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200594 if ((j == '-' || j == ':') && !last) {
595 last++;
596 pattern->val.range.min = i;
597 i = 0;
598 continue;
599 }
600 j -= '0';
601 if (j > 9)
602 // also catches the terminating zero
603 break;
604 i *= 10;
605 i += j;
606 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200607
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200608 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreauae8b7962007-06-09 23:10:04 +0200609 /* having a range with a min or a max is absurd */
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200610 memprintf(err, "integer range '%s' specified with a comparison operator", text[skip]);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200611 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200612 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200613
Willy Tarreaua84d3742007-05-07 00:36:48 +0200614 if (!last)
615 pattern->val.range.min = i;
616 pattern->val.range.max = i;
Willy Tarreauae8b7962007-06-09 23:10:04 +0200617
618 switch (*opaque) {
619 case 0: /* eq */
620 pattern->val.range.min_set = 1;
621 pattern->val.range.max_set = 1;
622 break;
623 case 1: /* gt */
624 pattern->val.range.min++; /* gt = ge + 1 */
625 case 2: /* ge */
626 pattern->val.range.min_set = 1;
627 pattern->val.range.max_set = 0;
628 break;
629 case 3: /* lt */
630 pattern->val.range.max--; /* lt = le - 1 */
631 case 4: /* le */
632 pattern->val.range.min_set = 0;
633 pattern->val.range.max_set = 1;
634 break;
635 }
636 return skip + 1;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200637}
638
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200639/* Parse a range of positive 2-component versions delimited by either ':' or
640 * '-'. The version consists in a major and a minor, both of which must be
641 * smaller than 65536, because internally they will be represented as a 32-bit
642 * integer.
643 * If only one version is read, it is set as both min and max. Just like for
644 * pure integers, an operator may be specified as the prefix, among this list
645 * of 5 :
646 *
647 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
648 *
649 * The default operator is "eq". It supports range matching. Ranges are
650 * rejected for other operators. The operator may be changed at any time.
651 * The operator is stored in the 'opaque' argument. This allows constructs
652 * such as the following one :
653 *
654 * acl obsolete_ssl ssl_req_proto lt 3
655 * acl unsupported_ssl ssl_req_proto gt 3.1
656 * acl valid_ssl ssl_req_proto 3.0-3.1
657 *
658 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200659int acl_parse_dotted_ver(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200660{
661 signed long long i;
662 unsigned int j, last, skip = 0;
663 const char *ptr = *text;
664
665
666 while (!isdigit((unsigned char)*ptr)) {
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200667 switch (get_std_op(ptr)) {
668 case STD_OP_EQ: *opaque = 0; break;
669 case STD_OP_GT: *opaque = 1; break;
670 case STD_OP_GE: *opaque = 2; break;
671 case STD_OP_LT: *opaque = 3; break;
672 case STD_OP_LE: *opaque = 4; break;
673 default:
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200674 memprintf(err, "'%s' is neither a number nor a supported operator", ptr);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200675 return 0;
Willy Tarreau1c7cc5b2010-07-18 10:46:33 +0200676 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200677
678 skip++;
679 ptr = text[skip];
680 }
681
682 last = i = 0;
683 while (1) {
684 j = *ptr++;
685 if (j == '.') {
686 /* minor part */
687 if (i >= 65536)
688 return 0;
689 i <<= 16;
690 continue;
691 }
692 if ((j == '-' || j == ':') && !last) {
693 last++;
694 if (i < 65536)
695 i <<= 16;
696 pattern->val.range.min = i;
697 i = 0;
698 continue;
699 }
700 j -= '0';
701 if (j > 9)
702 // also catches the terminating zero
703 break;
704 i = (i & 0xFFFF0000) + (i & 0xFFFF) * 10;
705 i += j;
706 }
707
708 /* if we only got a major version, let's shift it now */
709 if (i < 65536)
710 i <<= 16;
711
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200712 if (last && *opaque >= 1 && *opaque <= 4) {
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200713 /* having a range with a min or a max is absurd */
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200714 memprintf(err, "version range '%s' specified with a comparison operator", text[skip]);
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200715 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200716 }
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200717
718 if (!last)
719 pattern->val.range.min = i;
720 pattern->val.range.max = i;
721
722 switch (*opaque) {
723 case 0: /* eq */
724 pattern->val.range.min_set = 1;
725 pattern->val.range.max_set = 1;
726 break;
727 case 1: /* gt */
728 pattern->val.range.min++; /* gt = ge + 1 */
729 case 2: /* ge */
730 pattern->val.range.min_set = 1;
731 pattern->val.range.max_set = 0;
732 break;
733 case 3: /* lt */
734 pattern->val.range.max--; /* lt = le - 1 */
735 case 4: /* le */
736 pattern->val.range.min_set = 0;
737 pattern->val.range.max_set = 1;
738 break;
739 }
740 return skip + 1;
741}
742
Willy Tarreaua67fad92007-05-08 19:50:09 +0200743/* Parse an IP address and an optional mask in the form addr[/mask].
744 * The addr may either be an IPv4 address or a hostname. The mask
745 * may either be a dotted mask or a number of bits. Returns 1 if OK,
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200746 * otherwise 0. NOTE: IP address patterns are typed (IPV4/IPV6).
Willy Tarreaua67fad92007-05-08 19:50:09 +0200747 */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200748int acl_parse_ip(const char **text, struct acl_pattern *pattern, int *opaque, char **err)
Willy Tarreaua67fad92007-05-08 19:50:09 +0200749{
Willy Tarreaub337b532010-05-13 20:03:41 +0200750 struct eb_root *tree = NULL;
751 if (pattern->flags & ACL_PAT_F_TREE_OK)
752 tree = pattern->val.tree;
753
754 if (str2net(*text, &pattern->val.ipv4.addr, &pattern->val.ipv4.mask)) {
755 unsigned int mask = ntohl(pattern->val.ipv4.mask.s_addr);
756 struct ebmb_node *node;
757 /* check if the mask is contiguous so that we can insert the
758 * network into the tree. A continuous mask has only ones on
759 * the left. This means that this mask + its lower bit added
760 * once again is null.
761 */
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200762 pattern->type = SMP_T_IPV4;
Willy Tarreaub337b532010-05-13 20:03:41 +0200763 if (mask + (mask & -mask) == 0 && tree) {
764 mask = mask ? 33 - flsnz(mask & -mask) : 0; /* equals cidr value */
765 /* FIXME: insert <addr>/<mask> into the tree here */
766 node = calloc(1, sizeof(*node) + 4); /* reserve 4 bytes for IPv4 address */
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200767 if (!node) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200768 memprintf(err, "out of memory while loading IPv4 pattern");
Willy Tarreaub337b532010-05-13 20:03:41 +0200769 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200770 }
Willy Tarreaub337b532010-05-13 20:03:41 +0200771 memcpy(node->key, &pattern->val.ipv4.addr, 4); /* network byte order */
772 node->node.pfx = mask;
773 if (ebmb_insert_prefix(tree, node, 4) != node)
774 free(node); /* was a duplicate */
775 pattern->flags |= ACL_PAT_F_TREE;
776 return 1;
777 }
Willy Tarreauae8b7962007-06-09 23:10:04 +0200778 return 1;
Willy Tarreaub337b532010-05-13 20:03:41 +0200779 }
Willy Tarreauceb4ac92012-04-28 00:41:46 +0200780 else if (str62net(*text, &pattern->val.ipv6.addr, &pattern->val.ipv6.mask)) {
781 /* no tree support right now */
782 pattern->type = SMP_T_IPV6;
783 return 1;
784 }
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200785 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200786 memprintf(err, "'%s' is not a valid IPv4 or IPv6 address", *text);
Willy Tarreauae8b7962007-06-09 23:10:04 +0200787 return 0;
Willy Tarreau7dcb6482012-04-27 17:52:25 +0200788 }
Willy Tarreaua67fad92007-05-08 19:50:09 +0200789}
790
Willy Tarreaua84d3742007-05-07 00:36:48 +0200791/*
792 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
793 * parsing sessions.
794 */
795void acl_register_keywords(struct acl_kw_list *kwl)
796{
797 LIST_ADDQ(&acl_keywords.list, &kwl->list);
798}
799
800/*
801 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
802 */
803void acl_unregister_keywords(struct acl_kw_list *kwl)
804{
805 LIST_DEL(&kwl->list);
806 LIST_INIT(&kwl->list);
807}
808
809/* Return a pointer to the ACL <name> within the list starting at <head>, or
810 * NULL if not found.
811 */
812struct acl *find_acl_by_name(const char *name, struct list *head)
813{
814 struct acl *acl;
815 list_for_each_entry(acl, head, list) {
816 if (strcmp(acl->name, name) == 0)
817 return acl;
818 }
819 return NULL;
820}
821
822/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
823 * <kw> contains an opening parenthesis, only the left part of it is checked.
824 */
825struct acl_keyword *find_acl_kw(const char *kw)
826{
827 int index;
828 const char *kwend;
829 struct acl_kw_list *kwl;
830
831 kwend = strchr(kw, '(');
832 if (!kwend)
833 kwend = kw + strlen(kw);
834
835 list_for_each_entry(kwl, &acl_keywords.list, list) {
836 for (index = 0; kwl->kw[index].kw != NULL; index++) {
837 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
838 kwl->kw[index].kw[kwend-kw] == 0)
839 return &kwl->kw[index];
840 }
841 }
842 return NULL;
843}
844
Willy Tarreaudfd7fca2011-03-09 07:27:02 +0100845/* NB: does nothing if <pat> is NULL */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200846static void free_pattern(struct acl_pattern *pat)
847{
Willy Tarreaudfd7fca2011-03-09 07:27:02 +0100848 if (!pat)
849 return;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200850
851 if (pat->ptr.ptr) {
852 if (pat->freeptrbuf)
853 pat->freeptrbuf(pat->ptr.ptr);
854
Willy Tarreaua84d3742007-05-07 00:36:48 +0200855 free(pat->ptr.ptr);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200856 }
857
Willy Tarreaua84d3742007-05-07 00:36:48 +0200858 free(pat);
859}
860
861static void free_pattern_list(struct list *head)
862{
863 struct acl_pattern *pat, *tmp;
864 list_for_each_entry_safe(pat, tmp, head, list)
865 free_pattern(pat);
866}
867
Willy Tarreaue56cda92010-05-11 23:25:05 +0200868static void free_pattern_tree(struct eb_root *root)
869{
870 struct eb_node *node, *next;
871 node = eb_first(root);
872 while (node) {
873 next = eb_next(node);
Willy Tarreau60eccc12013-11-14 16:00:12 +0100874 eb_delete(node);
Willy Tarreaue56cda92010-05-11 23:25:05 +0200875 free(node);
876 node = next;
877 }
878}
879
Willy Tarreaua84d3742007-05-07 00:36:48 +0200880static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
881{
Willy Tarreau34db1082012-04-19 17:16:54 +0200882 struct arg *arg;
883
Willy Tarreaua84d3742007-05-07 00:36:48 +0200884 free_pattern_list(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +0200885 free_pattern_tree(&expr->pattern_tree);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200886 LIST_INIT(&expr->patterns);
Willy Tarreau34db1082012-04-19 17:16:54 +0200887
888 for (arg = expr->args; arg; arg++) {
889 if (arg->type == ARGT_STOP)
890 break;
Willy Tarreau496aa012012-06-01 10:38:29 +0200891 if (arg->type == ARGT_STR || arg->unresolved) {
Willy Tarreau34db1082012-04-19 17:16:54 +0200892 free(arg->data.str.str);
893 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +0200894 arg->unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +0200895 }
Willy Tarreau34db1082012-04-19 17:16:54 +0200896 }
897
Willy Tarreau2e845be2012-10-19 19:49:09 +0200898 if (expr->args != empty_arg_list)
899 free(expr->args);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200900 return expr;
901}
902
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200903
904/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
905 * be returned there on errors and the caller will have to free it.
906 */
Willy Tarreaud76a98a2013-03-31 18:34:33 +0200907static int acl_read_patterns_from_file(struct acl_expr *expr,
908 const char *filename, int patflags,
909 char **err)
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200910{
911 FILE *file;
912 char *c;
913 const char *args[2];
914 struct acl_pattern *pattern;
915 int opaque;
Willy Tarreau6a8097f2011-02-26 15:14:15 +0100916 int ret = 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200917 int line = 0;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200918
919 file = fopen(filename, "r");
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200920 if (!file) {
921 memprintf(err, "failed to open pattern file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200922 return 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200923 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200924
925 /* now parse all patterns. The file may contain only one pattern per
926 * line. If the line contains spaces, they will be part of the pattern.
927 * The pattern stops at the first CR, LF or EOF encountered.
928 */
929 opaque = 0;
Willy Tarreaue56cda92010-05-11 23:25:05 +0200930 pattern = NULL;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200931 args[1] = "";
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100932 while (fgets(trash.str, trash.size, file) != NULL) {
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200933 line++;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100934 c = trash.str;
Willy Tarreau58215a02010-05-13 22:07:43 +0200935
936 /* ignore lines beginning with a dash */
937 if (*c == '#')
938 continue;
939
940 /* strip leading spaces and tabs */
941 while (*c == ' ' || *c == '\t')
942 c++;
943
Willy Tarreau58215a02010-05-13 22:07:43 +0200944
945 args[0] = c;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200946 while (*c && *c != '\n' && *c != '\r')
947 c++;
948 *c = 0;
949
Willy Tarreau51091962011-01-03 21:04:10 +0100950 /* empty lines are ignored too */
951 if (c == args[0])
952 continue;
953
Willy Tarreaue56cda92010-05-11 23:25:05 +0200954 /* we keep the previous pattern along iterations as long as it's not used */
955 if (!pattern)
956 pattern = (struct acl_pattern *)malloc(sizeof(*pattern));
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200957 if (!pattern) {
958 memprintf(err, "out of memory when loading patterns from file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200959 goto out_close;
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200960 }
Willy Tarreaue56cda92010-05-11 23:25:05 +0200961
962 memset(pattern, 0, sizeof(*pattern));
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200963 pattern->flags = patflags;
964
Willy Tarreaue0db1e82013-01-04 16:31:47 +0100965 if (!(pattern->flags & ACL_PAT_F_IGNORE_CASE) &&
Willy Tarreaud76a98a2013-03-31 18:34:33 +0200966 (expr->match == acl_match_str || expr->match == acl_match_ip)) {
Willy Tarreaue56cda92010-05-11 23:25:05 +0200967 /* we pre-set the data pointer to the tree's head so that functions
968 * which are able to insert in a tree know where to do that.
969 */
970 pattern->flags |= ACL_PAT_F_TREE_OK;
971 pattern->val.tree = &expr->pattern_tree;
972 }
973
Willy Tarreauc92ddbc2012-04-27 22:10:57 +0200974 pattern->type = SMP_TYPES; /* unspecified type by default */
Willy Tarreaud76a98a2013-03-31 18:34:33 +0200975 if (!expr->parse(args, pattern, &opaque, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200976 goto out_free_pattern;
Willy Tarreaue56cda92010-05-11 23:25:05 +0200977
978 /* if the parser did not feed the tree, let's chain the pattern to the list */
979 if (!(pattern->flags & ACL_PAT_F_TREE)) {
980 LIST_ADDQ(&expr->patterns, &pattern->list);
981 pattern = NULL; /* get a new one */
982 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200983 }
Willy Tarreau6a8097f2011-02-26 15:14:15 +0100984
985 ret = 1; /* success */
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200986
987 out_free_pattern:
988 free_pattern(pattern);
989 out_close:
990 fclose(file);
Willy Tarreau6a8097f2011-02-26 15:14:15 +0100991 return ret;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200992}
993
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200994/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
995 * not NULL, it will be filled with a pointer to an error message in case of
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200996 * error. This pointer must be freeable or NULL. <al> is an arg_list serving
997 * as a list head to report missing dependencies.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200998 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200999 * Right now, the only accepted syntax is :
1000 * <subject> [<value>...]
1001 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001002struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001003{
1004 __label__ out_return, out_free_expr, out_free_pattern;
1005 struct acl_expr *expr;
1006 struct acl_keyword *aclkw;
1007 struct acl_pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001008 int opaque, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001009 const char *arg;
Willy Tarreaubef91e72013-03-31 23:14:46 +02001010 struct sample_fetch *smp = NULL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001011
Willy Tarreaubef91e72013-03-31 23:14:46 +02001012 /* First, we lookd for an ACL keyword. And if we don't find one, then
1013 * we look for a sample fetch keyword.
1014 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001015 aclkw = find_acl_kw(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001016 if (!aclkw || !aclkw->parse) {
Willy Tarreaubef91e72013-03-31 23:14:46 +02001017 const char *kwend;
1018
1019 kwend = strchr(args[0], '(');
1020 if (!kwend)
1021 kwend = args[0] + strlen(args[0]);
1022 smp = find_sample_fetch(args[0], kwend - args[0]);
1023
1024 if (!smp) {
1025 memprintf(err, "unknown ACL or sample keyword '%s'", *args);
1026 goto out_return;
1027 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001028 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001029
1030 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001031 if (!expr) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001032 memprintf(err, "out of memory when parsing ACL expression");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001033 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001034 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001035
Willy Tarreaubef91e72013-03-31 23:14:46 +02001036 expr->kw = aclkw ? aclkw->kw : smp->kw;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001037 LIST_INIT(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001038 expr->pattern_tree = EB_ROOT_UNIQUE;
Willy Tarreaubef91e72013-03-31 23:14:46 +02001039 expr->parse = aclkw ? aclkw->parse : NULL;
1040 expr->match = aclkw ? aclkw->match : NULL;
Willy Tarreau2e845be2012-10-19 19:49:09 +02001041 expr->args = empty_arg_list;
Willy Tarreaubef91e72013-03-31 23:14:46 +02001042 expr->smp = aclkw ? aclkw->smp : smp;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001043
Willy Tarreau9987ea92013-06-11 21:09:06 +02001044 if (!expr->parse) {
1045 /* some types can be automatically converted */
1046
1047 switch (expr->smp->out_type) {
1048 case SMP_T_BOOL:
1049 expr->parse = acl_parse_fcts[ACL_MATCH_BOOL];
1050 expr->match = acl_match_fcts[ACL_MATCH_BOOL];
1051 break;
1052 case SMP_T_SINT:
1053 case SMP_T_UINT:
1054 expr->parse = acl_parse_fcts[ACL_MATCH_INT];
1055 expr->match = acl_match_fcts[ACL_MATCH_INT];
1056 break;
1057 case SMP_T_IPV4:
1058 case SMP_T_IPV6:
1059 expr->parse = acl_parse_fcts[ACL_MATCH_IP];
1060 expr->match = acl_match_fcts[ACL_MATCH_IP];
1061 break;
1062 }
1063 }
1064
Willy Tarreaua84d3742007-05-07 00:36:48 +02001065 arg = strchr(args[0], '(');
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001066 if (expr->smp->arg_mask) {
Willy Tarreau61612d42012-04-19 18:42:05 +02001067 int nbargs = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +02001068 char *end;
Willy Tarreau34db1082012-04-19 17:16:54 +02001069
Willy Tarreau61612d42012-04-19 18:42:05 +02001070 if (arg != NULL) {
1071 /* there are 0 or more arguments in the form "subject(arg[,arg]*)" */
1072 arg++;
1073 end = strchr(arg, ')');
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001074 if (!end) {
Willy Tarreau93fddf12013-03-31 22:59:32 +02001075 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", expr->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001076 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001077 }
Willy Tarreau34db1082012-04-19 17:16:54 +02001078
Willy Tarreau61612d42012-04-19 18:42:05 +02001079 /* Parse the arguments. Note that currently we have no way to
1080 * report parsing errors, hence the NULL in the error pointers.
1081 * An error is also reported if some mandatory arguments are
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001082 * missing. We prepare the args list to report unresolved
1083 * dependencies.
Willy Tarreau61612d42012-04-19 18:42:05 +02001084 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001085 al->ctx = ARGC_ACL;
1086 al->kw = expr->kw;
1087 al->conv = NULL;
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001088 nbargs = make_arg_list(arg, end - arg, expr->smp->arg_mask, &expr->args,
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001089 err, NULL, NULL, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001090 if (nbargs < 0) {
1091 /* note that make_arg_list will have set <err> here */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001092 memprintf(err, "in argument to '%s', %s", expr->kw, *err);
Willy Tarreau61612d42012-04-19 18:42:05 +02001093 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001094 }
Willy Tarreauae52f062012-04-26 12:13:35 +02001095
Willy Tarreau2e845be2012-10-19 19:49:09 +02001096 if (!expr->args)
1097 expr->args = empty_arg_list;
1098
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001099 if (expr->smp->val_args && !expr->smp->val_args(expr->args, err)) {
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001100 /* invalid keyword argument, error must have been
1101 * set by val_args().
1102 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001103 memprintf(err, "in argument to '%s', %s", expr->kw, *err);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001104 goto out_free_expr;
1105 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001106 }
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001107 else if (ARGM(expr->smp->arg_mask) == 1) {
1108 int type = (expr->smp->arg_mask >> 4) & 15;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001109
1110 /* If a proxy is noted as a mandatory argument, we'll fake
1111 * an empty one so that acl_find_targets() resolves it as
1112 * the current one later.
1113 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001114 if (type != ARGT_FE && type != ARGT_BE && type != ARGT_TAB) {
Willy Tarreau93fddf12013-03-31 22:59:32 +02001115 memprintf(err, "ACL keyword '%s' expects %d arguments", expr->kw, ARGM(expr->smp->arg_mask));
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001116 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001117 }
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001118
1119 /* Build an arg list containing the type as an empty string
1120 * and the usual STOP.
1121 */
1122 expr->args = calloc(2, sizeof(*expr->args));
1123 expr->args[0].type = type;
Willy Tarreaue3a46112012-06-15 08:02:34 +02001124 expr->args[0].unresolved = 1;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001125 expr->args[0].data.str.str = strdup("");
Willy Tarreau8cc16532013-09-29 11:36:53 +02001126 expr->args[0].data.str.size = 1;
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001127 expr->args[0].data.str.len = 0;
Willy Tarreau9ca69362013-10-22 19:10:06 +02001128
1129 al->ctx = ARGC_ACL;
1130 al->kw = expr->kw;
1131 al->conv = NULL;
Willy Tarreauf75d0082013-04-07 21:20:44 +02001132 arg_list_add(al, &expr->args[0], 0);
1133
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001134 expr->args[1].type = ARGT_STOP;
1135 }
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001136 else if (ARGM(expr->smp->arg_mask)) {
Willy Tarreau61612d42012-04-19 18:42:05 +02001137 /* there were some mandatory arguments */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001138 memprintf(err, "ACL keyword '%s' expects %d arguments", expr->kw, ARGM(expr->smp->arg_mask));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001139 goto out_free_expr;
Willy Tarreau61612d42012-04-19 18:42:05 +02001140 }
1141 }
1142 else {
1143 if (arg) {
1144 /* no argument expected */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001145 memprintf(err, "ACL keyword '%s' takes no argument", expr->kw);
Willy Tarreau61612d42012-04-19 18:42:05 +02001146 goto out_free_expr;
1147 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001148 }
1149
Willy Tarreau3c3dfd52013-11-04 18:09:12 +01001150 /* Additional check to protect against common mistakes */
1151 if (expr->parse && expr->smp->out_type != SMP_T_BOOL && !*args[1]) {
1152 Warning("parsing acl keyword '%s' :\n"
1153 " no pattern to match against were provided, so this ACL will never match.\n"
1154 " If this is what you intended, please add '--' to get rid of this warning.\n"
1155 " If you intended to match only for existence, please use '-m found'.\n"
1156 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
1157 "\n",
1158 args[0]);
1159 }
1160
Willy Tarreaua84d3742007-05-07 00:36:48 +02001161 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001162
1163 /* check for options before patterns. Supported options are :
1164 * -i : ignore case for all patterns by default
1165 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +02001166 * -m : force matching method (must be used before -f)
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001167 * -- : everything after this is not an option
1168 */
1169 patflags = 0;
1170 while (**args == '-') {
1171 if ((*args)[1] == 'i')
1172 patflags |= ACL_PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001173 else if ((*args)[1] == 'f') {
Willy Tarreaubef91e72013-03-31 23:14:46 +02001174 if (!expr->parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +02001175 memprintf(err, "matching method must be specified first (using '-m') when using a sample fetch of this type ('%s')", expr->kw);
Willy Tarreaubef91e72013-03-31 23:14:46 +02001176 goto out_free_expr;
1177 }
1178
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001179 if (!acl_read_patterns_from_file(expr, args[1], patflags | ACL_PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001180 goto out_free_expr;
Willy Tarreau5adeda12013-03-31 22:13:34 +02001181 args++;
1182 }
1183 else if ((*args)[1] == 'm') {
1184 int idx;
1185
1186 if (!LIST_ISEMPTY(&expr->patterns) || !eb_is_empty(&expr->pattern_tree)) {
1187 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
1188 goto out_free_expr;
1189 }
1190
1191 idx = acl_find_match_name(args[1]);
1192 if (idx < 0) {
1193 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
1194 goto out_free_expr;
1195 }
1196
1197 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
1198 if (idx == ACL_MATCH_FOUND || /* -m found */
1199 ((idx == ACL_MATCH_BOOL || idx == ACL_MATCH_INT) && /* -m bool/int */
1200 (expr->smp->out_type == SMP_T_BOOL ||
1201 expr->smp->out_type == SMP_T_UINT ||
1202 expr->smp->out_type == SMP_T_SINT)) ||
1203 (idx == ACL_MATCH_IP && /* -m ip */
1204 (expr->smp->out_type == SMP_T_IPV4 ||
1205 expr->smp->out_type == SMP_T_IPV6)) ||
1206 ((idx == ACL_MATCH_BIN || idx == ACL_MATCH_LEN || idx == ACL_MATCH_STR ||
1207 idx == ACL_MATCH_BEG || idx == ACL_MATCH_SUB || idx == ACL_MATCH_DIR ||
1208 idx == ACL_MATCH_DOM || idx == ACL_MATCH_END || idx == ACL_MATCH_REG) && /* strings */
1209 (expr->smp->out_type == SMP_T_STR ||
1210 expr->smp->out_type == SMP_T_BIN ||
1211 expr->smp->out_type == SMP_T_CSTR ||
1212 expr->smp->out_type == SMP_T_CBIN))) {
1213 expr->parse = acl_parse_fcts[idx];
1214 expr->match = acl_match_fcts[idx];
1215 }
1216 else {
Willy Tarreau93fddf12013-03-31 22:59:32 +02001217 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +02001218 goto out_free_expr;
1219 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001220 args++;
1221 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001222 else if ((*args)[1] == '-') {
1223 args++;
1224 break;
1225 }
1226 else
1227 break;
1228 args++;
1229 }
1230
Willy Tarreaubef91e72013-03-31 23:14:46 +02001231 if (!expr->parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +02001232 memprintf(err, "matching method must be specified first (using '-m') when using a sample fetch of this type ('%s')", expr->kw);
Willy Tarreaubef91e72013-03-31 23:14:46 +02001233 goto out_free_expr;
1234 }
1235
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001236 /* now parse all patterns */
Willy Tarreauae8b7962007-06-09 23:10:04 +02001237 opaque = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001238 while (**args) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001239 int ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001240 pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001241 if (!pattern) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001242 memprintf(err, "out of memory when parsing ACL pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001243 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001244 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001245 pattern->flags = patflags;
1246
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001247 pattern->type = SMP_TYPES; /* unspecified type */
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001248 ret = expr->parse(args, pattern, &opaque, err);
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001249 if (!ret)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001250 goto out_free_pattern;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001251
Willy Tarreaua84d3742007-05-07 00:36:48 +02001252 LIST_ADDQ(&expr->patterns, &pattern->list);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001253 args += ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001254 }
1255
1256 return expr;
1257
1258 out_free_pattern:
1259 free_pattern(pattern);
1260 out_free_expr:
1261 prune_acl_expr(expr);
1262 free(expr);
1263 out_return:
1264 return NULL;
1265}
1266
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001267/* Purge everything in the acl <acl>, then return <acl>. */
1268struct acl *prune_acl(struct acl *acl) {
1269
1270 struct acl_expr *expr, *exprb;
1271
1272 free(acl->name);
1273
1274 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
1275 LIST_DEL(&expr->list);
1276 prune_acl_expr(expr);
1277 free(expr);
1278 }
1279
1280 return acl;
1281}
1282
Willy Tarreaua84d3742007-05-07 00:36:48 +02001283/* Parse an ACL with the name starting at <args>[0], and with a list of already
1284 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001285 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001286 * an anonymous one and it won't be merged with any other one. If <err> is not
1287 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001288 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
1289 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001290 *
1291 * args syntax: <aclname> <acl_expr>
1292 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001293struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001294{
1295 __label__ out_return, out_free_acl_expr, out_free_name;
1296 struct acl *cur_acl;
1297 struct acl_expr *acl_expr;
1298 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001299 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001300
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001301 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001302 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001303 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001304 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001305
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001306 acl_expr = parse_acl_expr(args + 1, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001307 if (!acl_expr) {
1308 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001309 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001310 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001311
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001312 /* Check for args beginning with an opening parenthesis just after the
1313 * subject, as this is almost certainly a typo. Right now we can only
1314 * emit a warning, so let's do so.
1315 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +02001316 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001317 Warning("parsing acl '%s' :\n"
1318 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
1319 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
1320 " If you are really sure this is not an error, please insert '--' between the\n"
1321 " match and the pattern to make this warning message disappear.\n",
1322 args[0], args[1], args[2]);
1323
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001324 if (*args[0])
1325 cur_acl = find_acl_by_name(args[0], known_acl);
1326 else
1327 cur_acl = NULL;
1328
Willy Tarreaua84d3742007-05-07 00:36:48 +02001329 if (!cur_acl) {
1330 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001331 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001332 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001333 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001334 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001335 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001336 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001337 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001338 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001339 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001340
1341 LIST_INIT(&cur_acl->expr);
1342 LIST_ADDQ(known_acl, &cur_acl->list);
1343 cur_acl->name = name;
1344 }
1345
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001346 /* We want to know what features the ACL needs (typically HTTP parsing),
1347 * and where it may be used. If an ACL relies on multiple matches, it is
1348 * OK if at least one of them may match in the context where it is used.
1349 */
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001350 cur_acl->use |= acl_expr->smp->use;
1351 cur_acl->val |= acl_expr->smp->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001352 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1353 return cur_acl;
1354
1355 out_free_name:
1356 free(name);
1357 out_free_acl_expr:
1358 prune_acl_expr(acl_expr);
1359 free(acl_expr);
1360 out_return:
1361 return NULL;
1362}
1363
Willy Tarreau16fbe822007-06-17 11:54:31 +02001364/* Some useful ACLs provided by default. Only those used are allocated. */
1365
1366const struct {
1367 const char *name;
1368 const char *expr[4]; /* put enough for longest expression */
1369} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +02001370 { .name = "TRUE", .expr = {"always_true",""}},
1371 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001372 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001373 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001374 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
1375 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
1376 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
1377 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
1378 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
1379 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
1380 { .name = "METH_POST", .expr = {"method","POST",""}},
1381 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
1382 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
1383 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
1384 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
1385 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +02001386 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +02001387 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +02001388 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001389 { .name = NULL, .expr = {""}}
1390};
1391
1392/* Find a default ACL from the default_acl list, compile it and return it.
1393 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
1394 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001395 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
1396 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001397 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
1398 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +02001399 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001400static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
1401 char **err, struct arg_list *al)
Willy Tarreau16fbe822007-06-17 11:54:31 +02001402{
1403 __label__ out_return, out_free_acl_expr, out_free_name;
1404 struct acl *cur_acl;
1405 struct acl_expr *acl_expr;
1406 char *name;
1407 int index;
1408
1409 for (index = 0; default_acl_list[index].name != NULL; index++) {
1410 if (strcmp(acl_name, default_acl_list[index].name) == 0)
1411 break;
1412 }
1413
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001414 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001415 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001416 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001417 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001418
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001419 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001420 if (!acl_expr) {
1421 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001422 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001423 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001424
1425 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001426 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001427 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001428 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001429 }
1430
Willy Tarreau16fbe822007-06-17 11:54:31 +02001431 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001432 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001433 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001434 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001435 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001436
1437 cur_acl->name = name;
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001438 cur_acl->use |= acl_expr->smp->use;
1439 cur_acl->val |= acl_expr->smp->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +02001440 LIST_INIT(&cur_acl->expr);
1441 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1442 if (known_acl)
1443 LIST_ADDQ(known_acl, &cur_acl->list);
1444
1445 return cur_acl;
1446
1447 out_free_name:
1448 free(name);
1449 out_free_acl_expr:
1450 prune_acl_expr(acl_expr);
1451 free(acl_expr);
1452 out_return:
1453 return NULL;
1454}
Willy Tarreaua84d3742007-05-07 00:36:48 +02001455
1456/* Purge everything in the acl_cond <cond>, then return <cond>. */
1457struct acl_cond *prune_acl_cond(struct acl_cond *cond)
1458{
1459 struct acl_term_suite *suite, *tmp_suite;
1460 struct acl_term *term, *tmp_term;
1461
1462 /* iterate through all term suites and free all terms and all suites */
1463 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
1464 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
1465 free(term);
1466 free(suite);
1467 }
1468 return cond;
1469}
1470
1471/* Parse an ACL condition starting at <args>[0], relying on a list of already
1472 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001473 * case of low memory). Supports multiple conditions separated by "or". If
1474 * <err> is not NULL, it will be filled with a pointer to an error message in
1475 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001476 * location must either be freeable or NULL. The list <al> serves as a list head
1477 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001478 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001479struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
1480 int pol, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001481{
1482 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001483 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001484 const char *word;
1485 struct acl *cur_acl;
1486 struct acl_term *cur_term;
1487 struct acl_term_suite *cur_suite;
1488 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001489 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001490
1491 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001492 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001493 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001494 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001495 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001496
1497 LIST_INIT(&cond->list);
1498 LIST_INIT(&cond->suites);
1499 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001500 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001501
1502 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001503 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001504 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001505 for (arg = 0; *args[arg]; arg++) {
1506 word = args[arg];
1507
1508 /* remove as many exclamation marks as we can */
1509 while (*word == '!') {
1510 neg = !neg;
1511 word++;
1512 }
1513
1514 /* an empty word is allowed because we cannot force the user to
1515 * always think about not leaving exclamation marks alone.
1516 */
1517 if (!*word)
1518 continue;
1519
Willy Tarreau16fbe822007-06-17 11:54:31 +02001520 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +02001521 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001522 cond->val |= suite_val;
1523 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001524 cur_suite = NULL;
1525 neg = 0;
1526 continue;
1527 }
1528
Willy Tarreau95fa4692010-02-01 13:05:50 +01001529 if (strcmp(word, "{") == 0) {
1530 /* we may have a complete ACL expression between two braces,
1531 * find the last one.
1532 */
1533 int arg_end = arg + 1;
1534 const char **args_new;
1535
1536 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
1537 arg_end++;
1538
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001539 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001540 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001541 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001542 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001543
1544 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001545 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001546 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001547 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001548 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001549
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001550 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +01001551 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
1552 args_new[arg_end - arg] = "";
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001553 cur_acl = parse_acl(args_new, known_acl, err, al);
Willy Tarreau95fa4692010-02-01 13:05:50 +01001554 free(args_new);
1555
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001556 if (!cur_acl) {
1557 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001558 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001559 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001560 word = args[arg + 1];
Willy Tarreau95fa4692010-02-01 13:05:50 +01001561 arg = arg_end;
1562 }
1563 else {
1564 /* search for <word> in the known ACL names. If we do not find
1565 * it, let's look for it in the default ACLs, and if found, add
1566 * it to the list of ACLs of this proxy. This makes it possible
1567 * to override them.
1568 */
1569 cur_acl = find_acl_by_name(word, known_acl);
1570 if (cur_acl == NULL) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001571 cur_acl = find_acl_default(word, known_acl, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001572 if (cur_acl == NULL) {
1573 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +01001574 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001575 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001576 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001577 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001578
1579 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001580 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001581 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001582 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001583 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001584
1585 cur_term->acl = cur_acl;
1586 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001587
1588 /* Here it is a bit complex. The acl_term_suite is a conjunction
1589 * of many terms. It may only be used if all of its terms are
1590 * usable at the same time. So the suite's validity domain is an
1591 * AND between all ACL keywords' ones. But, the global condition
1592 * is valid if at least one term suite is OK. So it's an OR between
1593 * all of their validity domains. We could emit a warning as soon
1594 * as suite_val is null because it means that the last ACL is not
1595 * compatible with the previous ones. Let's remain simple for now.
1596 */
1597 cond->use |= cur_acl->use;
1598 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001599
1600 if (!cur_suite) {
1601 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +01001602 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001603 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001604 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001605 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001606 LIST_INIT(&cur_suite->terms);
1607 LIST_ADDQ(&cond->suites, &cur_suite->list);
1608 }
1609 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001610 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001611 }
1612
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001613 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001614 return cond;
1615
1616 out_free_term:
1617 free(cur_term);
1618 out_free_suite:
1619 prune_acl_cond(cond);
1620 free(cond);
1621 out_return:
1622 return NULL;
1623}
1624
Willy Tarreau2bbba412010-01-28 16:48:33 +01001625/* Builds an ACL condition starting at the if/unless keyword. The complete
1626 * condition is returned. NULL is returned in case of error or if the first
1627 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001628 * the line number in the condition for better error reporting, and sets the
1629 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001630 * be filled with a pointer to an error message in case of error, that the
1631 * caller is responsible for freeing. The initial location must either be
1632 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001633 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001634struct 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 +01001635{
1636 int pol = ACL_COND_NONE;
1637 struct acl_cond *cond = NULL;
1638
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001639 if (err)
1640 *err = NULL;
1641
Willy Tarreau2bbba412010-01-28 16:48:33 +01001642 if (!strcmp(*args, "if")) {
1643 pol = ACL_COND_IF;
1644 args++;
1645 }
1646 else if (!strcmp(*args, "unless")) {
1647 pol = ACL_COND_UNLESS;
1648 args++;
1649 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001650 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001651 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001652 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001653 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001654
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001655 cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001656 if (!cond) {
1657 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001658 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001659 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001660
1661 cond->file = file;
1662 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001663 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001664 return cond;
1665}
1666
Willy Tarreau11382812008-07-09 16:18:21 +02001667/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
Willy Tarreaub6866442008-07-14 23:54:42 +02001668 * ACL_PAT_PASS depending on the test results. ACL_PAT_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001669 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001670 * data is being examined. The function automatically sets SMP_OPT_ITERATE.
Willy Tarreaub6866442008-07-14 23:54:42 +02001671 * This function only computes the condition, it does not apply the polarity
1672 * required by IF/UNLESS, it's up to the caller to do this using something like
1673 * this :
Willy Tarreau11382812008-07-09 16:18:21 +02001674 *
1675 * res = acl_pass(res);
Willy Tarreaub6866442008-07-14 23:54:42 +02001676 * if (res == ACL_PAT_MISS)
1677 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001678 * if (cond->pol == ACL_COND_UNLESS)
1679 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001680 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001681int 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 +02001682{
1683 __label__ fetch_next;
1684 struct acl_term_suite *suite;
1685 struct acl_term *term;
1686 struct acl_expr *expr;
1687 struct acl *acl;
1688 struct acl_pattern *pattern;
Willy Tarreau37406352012-04-23 16:16:37 +02001689 struct sample smp;
Willy Tarreau11382812008-07-09 16:18:21 +02001690 int acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001691
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001692 /* ACLs are iterated over all values, so let's always set the flag to
1693 * indicate this to the fetch functions.
1694 */
1695 opt |= SMP_OPT_ITERATE;
1696
Willy Tarreau11382812008-07-09 16:18:21 +02001697 /* We're doing a logical OR between conditions so we initialize to FAIL.
1698 * The MISS status is propagated down from the suites.
1699 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001700 cond_res = ACL_PAT_FAIL;
1701 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001702 /* Evaluate condition suite <suite>. We stop at the first term
1703 * which returns ACL_PAT_FAIL. The MISS status is still propagated
1704 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001705 */
1706
1707 /* we're doing a logical AND between terms, so we must set the
1708 * initial value to PASS.
1709 */
1710 suite_res = ACL_PAT_PASS;
1711 list_for_each_entry(term, &suite->terms, list) {
1712 acl = term->acl;
1713
1714 /* FIXME: use cache !
1715 * check acl->cache_idx for this.
1716 */
1717
1718 /* ACL result not cached. Let's scan all the expressions
1719 * and use the first one to match.
1720 */
1721 acl_res = ACL_PAT_FAIL;
1722 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001723 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001724 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001725 fetch_next:
Willy Tarreauef38c392013-07-22 16:29:32 +02001726 if (!expr->smp->process(px, l4, l7, opt, expr->args, &smp, expr->smp->kw)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001727 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001728 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001729 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001730 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001731 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001732
Willy Tarreau24b2c762013-06-12 21:50:19 +02001733 if (expr->match == acl_match_nothing) {
Willy Tarreau197e10a2012-04-23 19:18:42 +02001734 if (smp.data.uint)
Willy Tarreaua79534f2008-07-20 10:13:37 +02001735 acl_res |= ACL_PAT_PASS;
1736 else
1737 acl_res |= ACL_PAT_FAIL;
1738 }
Willy Tarreau5adeda12013-03-31 22:13:34 +02001739 else if (!expr->match) {
1740 /* just check for existence */
1741 acl_res |= ACL_PAT_PASS;
1742 }
Willy Tarreaua79534f2008-07-20 10:13:37 +02001743 else {
Willy Tarreau020534d2010-05-16 21:45:45 +02001744 if (!eb_is_empty(&expr->pattern_tree)) {
Willy Tarreauc4262962010-05-10 23:42:40 +02001745 /* a tree is present, let's check what type it is */
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001746 if (expr->match == acl_match_str)
Willy Tarreau37406352012-04-23 16:16:37 +02001747 acl_res |= acl_lookup_str(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001748 else if (expr->match == acl_match_ip)
Willy Tarreau37406352012-04-23 16:16:37 +02001749 acl_res |= acl_lookup_ip(&smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
Willy Tarreauc4262962010-05-10 23:42:40 +02001750 }
1751
Willy Tarreaua79534f2008-07-20 10:13:37 +02001752 /* call the match() function for all tests on this value */
1753 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreaua79534f2008-07-20 10:13:37 +02001754 if (acl_res == ACL_PAT_PASS)
1755 break;
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001756 acl_res |= expr->match(&smp, pattern);
Willy Tarreaua79534f2008-07-20 10:13:37 +02001757 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001758 }
1759 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001760 * OK now acl_res holds the result of this expression
1761 * as one of ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001762 *
Willy Tarreau11382812008-07-09 16:18:21 +02001763 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001764 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001765 *
1766 * FIXME: implement cache.
1767 *
1768 */
1769
Willy Tarreau11382812008-07-09 16:18:21 +02001770 /* we're ORing these terms, so a single PASS is enough */
1771 if (acl_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001772 break;
1773
Willy Tarreau37406352012-04-23 16:16:37 +02001774 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001775 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001776
1777 /* sometimes we know the fetched data is subject to change
1778 * later and give another chance for a new match (eg: request
1779 * size, time, ...)
1780 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001781 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001782 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001783 }
1784 /*
1785 * Here we have the result of an ACL (cached or not).
1786 * ACLs are combined, negated or not, to form conditions.
1787 */
1788
Willy Tarreaua84d3742007-05-07 00:36:48 +02001789 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001790 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001791
1792 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001793
Willy Tarreau79c412b2013-10-30 19:30:32 +01001794 /* we're ANDing these terms, so a single FAIL or MISS is enough */
1795 if (suite_res != ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001796 break;
1797 }
1798 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001799
1800 /* we're ORing these terms, so a single PASS is enough */
1801 if (cond_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001802 break;
1803 }
Willy Tarreau11382812008-07-09 16:18:21 +02001804 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001805}
1806
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001807/* Returns a pointer to the first ACL conflicting with usage at place <where>
1808 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1809 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1810 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001811 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001812const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001813{
1814 struct acl_term_suite *suite;
1815 struct acl_term *term;
1816 struct acl *acl;
1817
1818 list_for_each_entry(suite, &cond->suites, list) {
1819 list_for_each_entry(term, &suite->terms, list) {
1820 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001821 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001822 return acl;
1823 }
1824 }
1825 return NULL;
1826}
1827
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001828/* Returns a pointer to the first ACL and its first keyword to conflict with
1829 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1830 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1831 * null), or false if not conflict is found. The first useless keyword is
1832 * returned.
1833 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001834int acl_cond_kw_conflicts(const struct acl_cond *cond, unsigned int where, struct acl const **acl, char const **kw)
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001835{
1836 struct acl_term_suite *suite;
1837 struct acl_term *term;
1838 struct acl_expr *expr;
1839
1840 list_for_each_entry(suite, &cond->suites, list) {
1841 list_for_each_entry(term, &suite->terms, list) {
1842 list_for_each_entry(expr, &term->acl->expr, list) {
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001843 if (!(expr->smp->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001844 if (acl)
1845 *acl = term->acl;
1846 if (kw)
1847 *kw = expr->kw;
1848 return 1;
1849 }
1850 }
1851 }
1852 }
1853 return 0;
1854}
1855
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001856/*
1857 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001858 * of errors or OK if everything is fine. It must be called only once sample
1859 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001860 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001861int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001862{
1863
1864 struct acl *acl;
1865 struct acl_expr *expr;
1866 struct acl_pattern *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001867 int cfgerr = 0;
1868
1869 list_for_each_entry(acl, &p->acl, list) {
1870 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001871 if (!strcmp(expr->kw, "http_auth_group")) {
1872 /* Note: the ARGT_USR argument may only have been resolved earlier
1873 * by smp_resolve_args().
1874 */
1875 if (expr->args->unresolved) {
1876 Alert("Internal bug in proxy %s: %sacl %s %s() makes use of unresolved userlist '%s'. Please report this.\n",
1877 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->args->data.str.str);
1878 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001879 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001880 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001881
1882 if (LIST_ISEMPTY(&expr->patterns)) {
1883 Alert("proxy %s: acl %s %s(): no groups specified.\n",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001884 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001885 cfgerr++;
1886 continue;
1887 }
1888
1889 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreau7d1df412012-11-23 23:47:36 +01001890 /* this keyword only has one argument */
Willy Tarreau34db1082012-04-19 17:16:54 +02001891 pattern->val.group_mask = auth_resolve_groups(expr->args->data.usr, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001892
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001893 if (!pattern->val.group_mask) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001894 Alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
1895 p->id, acl->name, expr->kw, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001896 cfgerr++;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001897 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001898 free(pattern->ptr.str);
1899 pattern->ptr.str = NULL;
1900 pattern->len = 0;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001901 }
1902 }
1903 }
1904 }
1905
1906 return cfgerr;
1907}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001908
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001909/* initializes ACLs by resolving the sample fetch names they rely upon.
1910 * Returns 0 on success, otherwise an error.
1911 */
1912int init_acl()
1913{
1914 int err = 0;
1915 int index;
1916 const char *name;
1917 struct acl_kw_list *kwl;
1918 struct sample_fetch *smp;
1919
1920 list_for_each_entry(kwl, &acl_keywords.list, list) {
1921 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1922 name = kwl->kw[index].fetch_kw;
1923 if (!name)
1924 name = kwl->kw[index].kw;
1925
1926 smp = find_sample_fetch(name, strlen(name));
1927 if (!smp) {
1928 Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1929 kwl->kw[index].kw, name);
1930 err++;
1931 continue;
1932 }
1933 kwl->kw[index].smp = smp;
1934 }
1935 }
1936 return err;
1937}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001938
Willy Tarreaua84d3742007-05-07 00:36:48 +02001939/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001940/* All supported sample and ACL keywords must be declared here. */
1941/************************************************************************/
1942
1943/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001944 * Please take care of keeping this list alphabetically sorted.
1945 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001946static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001947 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001948}};
1949
Willy Tarreaua84d3742007-05-07 00:36:48 +02001950__attribute__((constructor))
1951static void __acl_init(void)
1952{
Willy Tarreaua84d3742007-05-07 00:36:48 +02001953 acl_register_keywords(&acl_kws);
1954}
1955
1956
1957/*
1958 * Local variables:
1959 * c-indent-level: 8
1960 * c-basic-offset: 8
1961 * End:
1962 */