blob: 27c680450c9e0e42ae62c268fe1480f7e91a5c0a [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
Thierry FOURNIER319e4952013-11-22 17:25:35 +010040char *acl_match_names[ACL_MATCH_NUM] = {
Willy Tarreau5adeda12013-03-31 22:13:34 +020041 [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
Thierry FOURNIER319e4952013-11-22 17:25:35 +010056int (*acl_parse_fcts[ACL_MATCH_NUM])(const char **, struct acl_pattern *, int *, char **) = {
Willy Tarreau5adeda12013-03-31 22:13:34 +020057 [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
Thierry FOURNIER319e4952013-11-22 17:25:35 +010072int (*acl_match_fcts[ACL_MATCH_NUM])(struct sample *, struct acl_pattern *) = {
Willy Tarreau5adeda12013-03-31 22:13:34 +020073 [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
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100888 for (arg = expr->smp->arg_p; arg; arg++) {
Willy Tarreau34db1082012-04-19 17:16:54 +0200889 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
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100898 if (expr->smp->arg_p != empty_arg_list)
899 free(expr->smp->arg_p);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200900 return expr;
901}
902
Thierry FOURNIER3a103c52013-11-22 17:33:27 +0100903/* return 1 if the process is ok
904 * return -1 if the parser fail. The err message is filled.
905 * return -2 if out of memory
906 */
907int acl_register_pattern(struct acl_expr *expr, char *text,
908 struct acl_pattern **pattern,
909 int patflags, char **err)
910{
911 const char *args[2];
912 int opaque = 0;
913
914 args[0] = text;
915 args[1] = "";
916
917 /* we keep the previous pattern along iterations as long as it's not used */
918 if (!*pattern)
919 *pattern = (struct acl_pattern *)malloc(sizeof(**pattern));
920 if (!*pattern)
921 return -1;
922
923 memset(*pattern, 0, sizeof(**pattern));
924 (*pattern)->flags = patflags;
925
926 if (!((*pattern)->flags & ACL_PAT_F_IGNORE_CASE) &&
927 (expr->match == acl_match_str || expr->match == acl_match_ip)) {
928 /* we pre-set the data pointer to the tree's head so that functions
929 * which are able to insert in a tree know where to do that.
930 */
931 (*pattern)->flags |= ACL_PAT_F_TREE_OK;
932 (*pattern)->val.tree = &expr->pattern_tree;
933 }
934
935 (*pattern)->type = SMP_TYPES; /* unspecified type by default */
936 if (!expr->parse(args, *pattern, &opaque, err))
937 return -1;
938
939 /* if the parser did not feed the tree, let's chain the pattern to the list */
940 if (!((*pattern)->flags & ACL_PAT_F_TREE)) {
941 LIST_ADDQ(&expr->patterns, &(*pattern)->list);
942 *pattern = NULL; /* get a new one */
943 }
944
945 return 1;
946}
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200947
948/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
949 * be returned there on errors and the caller will have to free it.
950 */
Willy Tarreaud76a98a2013-03-31 18:34:33 +0200951static int acl_read_patterns_from_file(struct acl_expr *expr,
952 const char *filename, int patflags,
953 char **err)
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200954{
955 FILE *file;
956 char *c;
Thierry FOURNIER3a103c52013-11-22 17:33:27 +0100957 char *arg;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200958 struct acl_pattern *pattern;
Willy Tarreau6a8097f2011-02-26 15:14:15 +0100959 int ret = 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200960 int line = 0;
Thierry FOURNIER3a103c52013-11-22 17:33:27 +0100961 int code;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200962
963 file = fopen(filename, "r");
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200964 if (!file) {
965 memprintf(err, "failed to open pattern file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200966 return 0;
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200967 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200968
969 /* now parse all patterns. The file may contain only one pattern per
970 * line. If the line contains spaces, they will be part of the pattern.
971 * The pattern stops at the first CR, LF or EOF encountered.
972 */
Willy Tarreaue56cda92010-05-11 23:25:05 +0200973 pattern = NULL;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100974 while (fgets(trash.str, trash.size, file) != NULL) {
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200975 line++;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100976 c = trash.str;
Willy Tarreau58215a02010-05-13 22:07:43 +0200977
978 /* ignore lines beginning with a dash */
979 if (*c == '#')
980 continue;
981
982 /* strip leading spaces and tabs */
983 while (*c == ' ' || *c == '\t')
984 c++;
985
Willy Tarreau58215a02010-05-13 22:07:43 +0200986
Thierry FOURNIER3a103c52013-11-22 17:33:27 +0100987 arg = c;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200988 while (*c && *c != '\n' && *c != '\r')
989 c++;
990 *c = 0;
991
Willy Tarreau51091962011-01-03 21:04:10 +0100992 /* empty lines are ignored too */
Thierry FOURNIER3a103c52013-11-22 17:33:27 +0100993 if (c == arg)
Willy Tarreau51091962011-01-03 21:04:10 +0100994 continue;
995
Thierry FOURNIER3a103c52013-11-22 17:33:27 +0100996 code = acl_register_pattern(expr, arg, &pattern, patflags, err);
997 if (code == -2) {
Willy Tarreau08ad0b32012-04-27 17:25:24 +0200998 memprintf(err, "out of memory when loading patterns from file <%s>", filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200999 goto out_close;
Willy Tarreau08ad0b32012-04-27 17:25:24 +02001000 }
Thierry FOURNIER3a103c52013-11-22 17:33:27 +01001001 else if (code < 0) {
1002 memprintf(err, "%s when loading patterns from file <%s>", *err, filename);
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001003 goto out_free_pattern;
Willy Tarreaue56cda92010-05-11 23:25:05 +02001004 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001005 }
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001006
1007 ret = 1; /* success */
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001008
1009 out_free_pattern:
1010 free_pattern(pattern);
1011 out_close:
1012 fclose(file);
Willy Tarreau6a8097f2011-02-26 15:14:15 +01001013 return ret;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001014}
1015
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001016/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
1017 * not NULL, it will be filled with a pointer to an error message in case of
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001018 * error. This pointer must be freeable or NULL. <al> is an arg_list serving
1019 * as a list head to report missing dependencies.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001020 *
Willy Tarreaua84d3742007-05-07 00:36:48 +02001021 * Right now, the only accepted syntax is :
1022 * <subject> [<value>...]
1023 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001024struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001025{
1026 __label__ out_return, out_free_expr, out_free_pattern;
1027 struct acl_expr *expr;
1028 struct acl_keyword *aclkw;
1029 struct acl_pattern *pattern;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001030 int opaque, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001031 const char *arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001032 struct sample_expr *smp = NULL;
1033 const char *p;
1034 int idx = 0;
1035 char *ckw = NULL;
1036 const char *begw;
1037 const char *endw;
1038 unsigned long prev_type;
1039 int cur_type;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001040
Willy Tarreaubef91e72013-03-31 23:14:46 +02001041 /* First, we lookd for an ACL keyword. And if we don't find one, then
1042 * we look for a sample fetch keyword.
1043 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001044 aclkw = find_acl_kw(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001045 if (!aclkw || !aclkw->parse) {
Willy Tarreaubef91e72013-03-31 23:14:46 +02001046
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001047 smp = sample_parse_expr((char **)args, &idx, trash.str, trash.size, al);
Willy Tarreaubef91e72013-03-31 23:14:46 +02001048
1049 if (!smp) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001050 memprintf(err, "unknown ACL or sample keyword '%s': %s", *args, trash.str);
Willy Tarreaubef91e72013-03-31 23:14:46 +02001051 goto out_return;
1052 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001053 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001054
1055 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001056 if (!expr) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001057 memprintf(err, "out of memory when parsing ACL expression");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001058 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001059 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001060
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001061 expr->kw = aclkw ? aclkw->kw : smp->fetch->kw;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001062 LIST_INIT(&expr->patterns);
Willy Tarreaue56cda92010-05-11 23:25:05 +02001063 expr->pattern_tree = EB_ROOT_UNIQUE;
Willy Tarreaubef91e72013-03-31 23:14:46 +02001064 expr->parse = aclkw ? aclkw->parse : NULL;
1065 expr->match = aclkw ? aclkw->match : NULL;
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001066 expr->smp = aclkw ? NULL : smp;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001067
Willy Tarreau9987ea92013-06-11 21:09:06 +02001068 if (!expr->parse) {
1069 /* some types can be automatically converted */
1070
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001071 switch (expr->smp ? expr->smp->fetch->out_type : aclkw->smp->out_type) {
Willy Tarreau9987ea92013-06-11 21:09:06 +02001072 case SMP_T_BOOL:
1073 expr->parse = acl_parse_fcts[ACL_MATCH_BOOL];
1074 expr->match = acl_match_fcts[ACL_MATCH_BOOL];
1075 break;
1076 case SMP_T_SINT:
1077 case SMP_T_UINT:
1078 expr->parse = acl_parse_fcts[ACL_MATCH_INT];
1079 expr->match = acl_match_fcts[ACL_MATCH_INT];
1080 break;
1081 case SMP_T_IPV4:
1082 case SMP_T_IPV6:
1083 expr->parse = acl_parse_fcts[ACL_MATCH_IP];
1084 expr->match = acl_match_fcts[ACL_MATCH_IP];
1085 break;
1086 }
1087 }
1088
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001089 /* now parse the rest of acl only if "find_acl_kw" match */
1090 if (aclkw) {
Willy Tarreau34db1082012-04-19 17:16:54 +02001091
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001092 /* build new sample expression */
1093 expr->smp = calloc(1, sizeof(struct sample_expr));
1094 if (!expr->smp) {
1095 memprintf(err, "out of memory when parsing ACL expression");
1096 goto out_return;
1097 }
1098 LIST_INIT(&(expr->smp->conv_exprs));
1099 expr->smp->fetch = aclkw->smp;
1100 expr->smp->arg_p = empty_arg_list;
Willy Tarreau34db1082012-04-19 17:16:54 +02001101
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001102 /* look for the begining of the subject arguments */
1103 p = strchr(args[0], ',');
1104 arg = strchr(args[0], '(');
1105 if (p && arg && p < arg)
1106 arg = NULL;
1107
1108 if (expr->smp->fetch->arg_mask) {
1109 int nbargs = 0;
1110 char *end;
1111
1112 if (arg != NULL) {
1113 /* there are 0 or more arguments in the form "subject(arg[,arg]*)" */
1114 arg++;
1115 end = strchr(arg, ')');
1116 if (!end) {
1117 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", expr->kw);
1118 goto out_free_expr;
1119 }
1120
1121 /* Parse the arguments. Note that currently we have no way to
1122 * report parsing errors, hence the NULL in the error pointers.
1123 * An error is also reported if some mandatory arguments are
1124 * missing. We prepare the args list to report unresolved
1125 * dependencies.
1126 */
1127 al->ctx = ARGC_ACL;
1128 al->kw = expr->kw;
1129 al->conv = NULL;
1130 nbargs = make_arg_list(arg, end - arg, expr->smp->fetch->arg_mask, &expr->smp->arg_p,
1131 err, NULL, NULL, al);
1132 if (nbargs < 0) {
1133 /* note that make_arg_list will have set <err> here */
1134 memprintf(err, "in argument to '%s', %s", expr->kw, *err);
1135 goto out_free_expr;
1136 }
1137
1138 if (!expr->smp->arg_p)
1139 expr->smp->arg_p = empty_arg_list;
1140
1141 if (expr->smp->fetch->val_args && !expr->smp->fetch->val_args(expr->smp->arg_p, err)) {
1142 /* invalid keyword argument, error must have been
1143 * set by val_args().
1144 */
1145 memprintf(err, "in argument to '%s', %s", expr->kw, *err);
1146 goto out_free_expr;
1147 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001148 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001149 else if (ARGM(expr->smp->fetch->arg_mask) == 1) {
1150 int type = (expr->smp->fetch->arg_mask >> 4) & 15;
Willy Tarreauae52f062012-04-26 12:13:35 +02001151
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001152 /* If a proxy is noted as a mandatory argument, we'll fake
1153 * an empty one so that acl_find_targets() resolves it as
1154 * the current one later.
1155 */
1156 if (type != ARGT_FE && type != ARGT_BE && type != ARGT_TAB) {
1157 memprintf(err, "ACL keyword '%s' expects %d arguments", expr->kw, ARGM(expr->smp->fetch->arg_mask));
1158 goto out_free_expr;
1159 }
Willy Tarreau2e845be2012-10-19 19:49:09 +02001160
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001161 /* Build an arg list containing the type as an empty string
1162 * and the usual STOP.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001163 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001164 expr->smp->arg_p = calloc(2, sizeof(*expr->smp->arg_p));
1165 expr->smp->arg_p[0].type = type;
1166 expr->smp->arg_p[0].unresolved = 1;
1167 expr->smp->arg_p[0].data.str.str = strdup("");
1168 expr->smp->arg_p[0].data.str.size = 1;
1169 expr->smp->arg_p[0].data.str.len = 0;
1170
1171 al->ctx = ARGC_ACL;
1172 al->kw = expr->kw;
1173 al->conv = NULL;
1174 arg_list_add(al, &expr->smp->arg_p[0], 0);
1175
1176 expr->smp->arg_p[1].type = ARGT_STOP;
1177 }
1178 else if (ARGM(expr->smp->fetch->arg_mask)) {
1179 /* there were some mandatory arguments */
1180 memprintf(err, "ACL keyword '%s' expects %d arguments", expr->kw, ARGM(expr->smp->fetch->arg_mask));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001181 goto out_free_expr;
1182 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001183 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001184 else {
1185 if (arg ) {
1186 /* no argument expected */
1187 memprintf(err, "ACL keyword '%s' takes no argument", expr->kw);
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +02001188 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001189 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001190 }
Willy Tarreau9ca69362013-10-22 19:10:06 +02001191
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001192 /* Now process the converters if any. We have two supported syntaxes
1193 * for the converters, which can be combined :
1194 * - comma-delimited list of converters just after the keyword and args ;
1195 * - one converter per keyword
1196 * The combination allows to have each keyword being a comma-delimited
1197 * series of converters.
1198 *
1199 * We want to process the former first, then the latter. For this we start
1200 * from the beginning of the supposed place in the exiting conv chain, which
1201 * starts at the last comma (endt).
1202 */
Willy Tarreauf75d0082013-04-07 21:20:44 +02001203
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001204 /* look for the begining of the converters list */
1205 arg = strchr(args[0], ',');
Willy Tarreau61612d42012-04-19 18:42:05 +02001206 if (arg) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001207 prev_type = expr->smp->fetch->out_type;
1208 while (1) {
1209 struct sample_conv *conv;
1210 struct sample_conv_expr *conv_expr;
1211
1212 if (*arg == ')') /* skip last closing parenthesis */
1213 arg++;
1214
1215 if (*arg && *arg != ',') {
1216 if (ckw)
1217 memprintf(err, "ACL keyword '%s' : missing comma after conv keyword '%s'.",
1218 expr->kw, ckw);
1219 else
1220 memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.",
1221 expr->kw);
1222 goto out_free_expr;
1223 }
1224
1225 while (*arg == ',') /* then trailing commas */
1226 arg++;
1227
1228 begw = arg; /* start of conv keyword */
1229
1230 if (!*begw)
1231 /* none ? end of converters */
1232 break;
1233
1234 for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++);
1235
1236 free(ckw);
1237 ckw = my_strndup(begw, endw - begw);
1238
1239 conv = find_sample_conv(begw, endw - begw);
1240 if (!conv) {
1241 /* Unknown converter method */
1242 memprintf(err, "ACL keyword '%s' : unknown conv method '%s'.",
1243 expr->kw, ckw);
1244 goto out_free_expr;
1245 }
1246
1247 arg = endw;
1248 if (*arg == '(') {
1249 /* look for the end of this term */
1250 while (*arg && *arg != ')')
1251 arg++;
1252 if (*arg != ')') {
1253 memprintf(err, "ACL keyword '%s' : syntax error: missing ')' after conv keyword '%s'.",
1254 expr->kw, ckw);
1255 goto out_free_expr;
1256 }
1257 }
1258
1259 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
1260 memprintf(err, "ACL keyword '%s' : returns type of conv method '%s' is unknown.",
1261 expr->kw, ckw);
1262 goto out_free_expr;
1263 }
1264
1265 /* If impossible type conversion */
1266 if (!sample_casts[prev_type][conv->in_type]) {
1267 memprintf(err, "ACL keyword '%s' : conv method '%s' cannot be applied.",
1268 expr->kw, ckw);
1269 goto out_free_expr;
1270 }
1271
1272 prev_type = conv->out_type;
1273 conv_expr = calloc(1, sizeof(struct sample_conv_expr));
1274 if (!conv_expr)
1275 goto out_free_expr;
1276
1277 LIST_ADDQ(&(expr->smp->conv_exprs), &(conv_expr->list));
1278 conv_expr->conv = conv;
1279
1280 if (arg != endw) {
1281 char *err_msg = NULL;
1282 int err_arg;
1283
1284 if (!conv->arg_mask) {
1285 memprintf(err, "ACL keyword '%s' : conv method '%s' does not support any args.",
1286 expr->kw, ckw);
1287 goto out_free_expr;
1288 }
1289
1290 al->kw = expr->smp->fetch->kw;
1291 al->conv = conv_expr->conv->kw;
1292 if (make_arg_list(endw + 1, arg - endw - 1, conv->arg_mask, &conv_expr->arg_p, &err_msg, NULL, &err_arg, al) < 0) {
1293 memprintf(err, "ACL keyword '%s' : invalid arg %d in conv method '%s' : %s.",
1294 expr->kw, err_arg+1, ckw, err_msg);
1295 free(err_msg);
1296 goto out_free_expr;
1297 }
1298
1299 if (!conv_expr->arg_p)
1300 conv_expr->arg_p = empty_arg_list;
1301
Thierry FOURNIER9c1d67e2013-11-21 13:37:41 +01001302 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, &err_msg)) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001303 memprintf(err, "ACL keyword '%s' : invalid args in conv method '%s' : %s.",
1304 expr->kw, ckw, err_msg);
1305 free(err_msg);
1306 goto out_free_expr;
1307 }
1308 }
1309 else if (ARGM(conv->arg_mask)) {
1310 memprintf(err, "ACL keyword '%s' : missing args for conv method '%s'.",
1311 expr->kw, ckw);
1312 goto out_free_expr;
1313 }
1314 }
Willy Tarreau61612d42012-04-19 18:42:05 +02001315 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001316 }
1317
Willy Tarreau3c3dfd52013-11-04 18:09:12 +01001318 /* Additional check to protect against common mistakes */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001319 cur_type = smp_expr_output_type(expr->smp);
1320 if (expr->parse && cur_type != SMP_T_BOOL && !*args[1]) {
Willy Tarreau3c3dfd52013-11-04 18:09:12 +01001321 Warning("parsing acl keyword '%s' :\n"
1322 " no pattern to match against were provided, so this ACL will never match.\n"
1323 " If this is what you intended, please add '--' to get rid of this warning.\n"
1324 " If you intended to match only for existence, please use '-m found'.\n"
1325 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
1326 "\n",
1327 args[0]);
1328 }
1329
Willy Tarreaua84d3742007-05-07 00:36:48 +02001330 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001331
1332 /* check for options before patterns. Supported options are :
1333 * -i : ignore case for all patterns by default
1334 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +02001335 * -m : force matching method (must be used before -f)
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001336 * -- : everything after this is not an option
1337 */
1338 patflags = 0;
1339 while (**args == '-') {
1340 if ((*args)[1] == 'i')
1341 patflags |= ACL_PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001342 else if ((*args)[1] == 'f') {
Willy Tarreaubef91e72013-03-31 23:14:46 +02001343 if (!expr->parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +02001344 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 +02001345 goto out_free_expr;
1346 }
1347
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001348 if (!acl_read_patterns_from_file(expr, args[1], patflags | ACL_PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001349 goto out_free_expr;
Willy Tarreau5adeda12013-03-31 22:13:34 +02001350 args++;
1351 }
1352 else if ((*args)[1] == 'm') {
1353 int idx;
1354
1355 if (!LIST_ISEMPTY(&expr->patterns) || !eb_is_empty(&expr->pattern_tree)) {
1356 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
1357 goto out_free_expr;
1358 }
1359
1360 idx = acl_find_match_name(args[1]);
1361 if (idx < 0) {
1362 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
1363 goto out_free_expr;
1364 }
1365
1366 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
1367 if (idx == ACL_MATCH_FOUND || /* -m found */
1368 ((idx == ACL_MATCH_BOOL || idx == ACL_MATCH_INT) && /* -m bool/int */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001369 (cur_type == SMP_T_BOOL ||
1370 cur_type == SMP_T_UINT ||
1371 cur_type == SMP_T_SINT)) ||
Willy Tarreau5adeda12013-03-31 22:13:34 +02001372 (idx == ACL_MATCH_IP && /* -m ip */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001373 (cur_type == SMP_T_IPV4 ||
1374 cur_type == SMP_T_IPV6)) ||
Willy Tarreau5adeda12013-03-31 22:13:34 +02001375 ((idx == ACL_MATCH_BIN || idx == ACL_MATCH_LEN || idx == ACL_MATCH_STR ||
1376 idx == ACL_MATCH_BEG || idx == ACL_MATCH_SUB || idx == ACL_MATCH_DIR ||
1377 idx == ACL_MATCH_DOM || idx == ACL_MATCH_END || idx == ACL_MATCH_REG) && /* strings */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001378 (cur_type == SMP_T_STR ||
1379 cur_type == SMP_T_BIN ||
1380 cur_type == SMP_T_CSTR ||
1381 cur_type == SMP_T_CBIN))) {
Willy Tarreau5adeda12013-03-31 22:13:34 +02001382 expr->parse = acl_parse_fcts[idx];
1383 expr->match = acl_match_fcts[idx];
1384 }
1385 else {
Willy Tarreau93fddf12013-03-31 22:59:32 +02001386 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +02001387 goto out_free_expr;
1388 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +02001389 args++;
1390 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001391 else if ((*args)[1] == '-') {
1392 args++;
1393 break;
1394 }
1395 else
1396 break;
1397 args++;
1398 }
1399
Willy Tarreaubef91e72013-03-31 23:14:46 +02001400 if (!expr->parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +02001401 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 +02001402 goto out_free_expr;
1403 }
1404
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001405 /* now parse all patterns */
Willy Tarreauae8b7962007-06-09 23:10:04 +02001406 opaque = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001407 while (**args) {
Willy Tarreauae8b7962007-06-09 23:10:04 +02001408 int ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001409 pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001410 if (!pattern) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001411 memprintf(err, "out of memory when parsing ACL pattern");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001412 goto out_free_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001413 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +02001414 pattern->flags = patflags;
1415
Willy Tarreauc92ddbc2012-04-27 22:10:57 +02001416 pattern->type = SMP_TYPES; /* unspecified type */
Willy Tarreaud76a98a2013-03-31 18:34:33 +02001417 ret = expr->parse(args, pattern, &opaque, err);
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001418 if (!ret)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001419 goto out_free_pattern;
Willy Tarreau7dcb6482012-04-27 17:52:25 +02001420
Willy Tarreaua84d3742007-05-07 00:36:48 +02001421 LIST_ADDQ(&expr->patterns, &pattern->list);
Willy Tarreauae8b7962007-06-09 23:10:04 +02001422 args += ret;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001423 }
1424
1425 return expr;
1426
1427 out_free_pattern:
1428 free_pattern(pattern);
1429 out_free_expr:
1430 prune_acl_expr(expr);
1431 free(expr);
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001432 free(ckw);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001433 out_return:
1434 return NULL;
1435}
1436
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001437/* Purge everything in the acl <acl>, then return <acl>. */
1438struct acl *prune_acl(struct acl *acl) {
1439
1440 struct acl_expr *expr, *exprb;
1441
1442 free(acl->name);
1443
1444 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
1445 LIST_DEL(&expr->list);
1446 prune_acl_expr(expr);
1447 free(expr);
1448 }
1449
1450 return acl;
1451}
1452
Willy Tarreaua84d3742007-05-07 00:36:48 +02001453/* Parse an ACL with the name starting at <args>[0], and with a list of already
1454 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001455 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001456 * an anonymous one and it won't be merged with any other one. If <err> is not
1457 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001458 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
1459 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001460 *
1461 * args syntax: <aclname> <acl_expr>
1462 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001463struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001464{
1465 __label__ out_return, out_free_acl_expr, out_free_name;
1466 struct acl *cur_acl;
1467 struct acl_expr *acl_expr;
1468 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001469 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001470
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001471 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001472 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001473 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001474 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +01001475
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001476 acl_expr = parse_acl_expr(args + 1, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001477 if (!acl_expr) {
1478 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001479 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001480 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001481
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001482 /* Check for args beginning with an opening parenthesis just after the
1483 * subject, as this is almost certainly a typo. Right now we can only
1484 * emit a warning, so let's do so.
1485 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +02001486 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +02001487 Warning("parsing acl '%s' :\n"
1488 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
1489 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
1490 " If you are really sure this is not an error, please insert '--' between the\n"
1491 " match and the pattern to make this warning message disappear.\n",
1492 args[0], args[1], args[2]);
1493
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001494 if (*args[0])
1495 cur_acl = find_acl_by_name(args[0], known_acl);
1496 else
1497 cur_acl = NULL;
1498
Willy Tarreaua84d3742007-05-07 00:36:48 +02001499 if (!cur_acl) {
1500 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001501 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001502 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001503 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001504 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001505 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001506 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001507 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001508 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001509 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001510
1511 LIST_INIT(&cur_acl->expr);
1512 LIST_ADDQ(known_acl, &cur_acl->list);
1513 cur_acl->name = name;
1514 }
1515
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001516 /* We want to know what features the ACL needs (typically HTTP parsing),
1517 * and where it may be used. If an ACL relies on multiple matches, it is
1518 * OK if at least one of them may match in the context where it is used.
1519 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001520 cur_acl->use |= acl_expr->smp->fetch->use;
1521 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001522 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1523 return cur_acl;
1524
1525 out_free_name:
1526 free(name);
1527 out_free_acl_expr:
1528 prune_acl_expr(acl_expr);
1529 free(acl_expr);
1530 out_return:
1531 return NULL;
1532}
1533
Willy Tarreau16fbe822007-06-17 11:54:31 +02001534/* Some useful ACLs provided by default. Only those used are allocated. */
1535
1536const struct {
1537 const char *name;
1538 const char *expr[4]; /* put enough for longest expression */
1539} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +02001540 { .name = "TRUE", .expr = {"always_true",""}},
1541 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001542 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +02001543 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001544 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
1545 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
1546 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
1547 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
1548 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
1549 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
1550 { .name = "METH_POST", .expr = {"method","POST",""}},
1551 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
1552 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
1553 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
1554 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
1555 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +02001556 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +02001557 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +02001558 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +02001559 { .name = NULL, .expr = {""}}
1560};
1561
1562/* Find a default ACL from the default_acl list, compile it and return it.
1563 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
1564 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001565 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
1566 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001567 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
1568 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +02001569 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001570static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
1571 char **err, struct arg_list *al)
Willy Tarreau16fbe822007-06-17 11:54:31 +02001572{
1573 __label__ out_return, out_free_acl_expr, out_free_name;
1574 struct acl *cur_acl;
1575 struct acl_expr *acl_expr;
1576 char *name;
1577 int index;
1578
1579 for (index = 0; default_acl_list[index].name != NULL; index++) {
1580 if (strcmp(acl_name, default_acl_list[index].name) == 0)
1581 break;
1582 }
1583
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001584 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001585 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001586 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001587 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001588
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001589 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001590 if (!acl_expr) {
1591 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001592 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001593 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001594
1595 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001596 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001597 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001598 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001599 }
1600
Willy Tarreau16fbe822007-06-17 11:54:31 +02001601 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001602 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001603 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +02001604 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001605 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001606
1607 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001608 cur_acl->use |= acl_expr->smp->fetch->use;
1609 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +02001610 LIST_INIT(&cur_acl->expr);
1611 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
1612 if (known_acl)
1613 LIST_ADDQ(known_acl, &cur_acl->list);
1614
1615 return cur_acl;
1616
1617 out_free_name:
1618 free(name);
1619 out_free_acl_expr:
1620 prune_acl_expr(acl_expr);
1621 free(acl_expr);
1622 out_return:
1623 return NULL;
1624}
Willy Tarreaua84d3742007-05-07 00:36:48 +02001625
1626/* Purge everything in the acl_cond <cond>, then return <cond>. */
1627struct acl_cond *prune_acl_cond(struct acl_cond *cond)
1628{
1629 struct acl_term_suite *suite, *tmp_suite;
1630 struct acl_term *term, *tmp_term;
1631
1632 /* iterate through all term suites and free all terms and all suites */
1633 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
1634 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
1635 free(term);
1636 free(suite);
1637 }
1638 return cond;
1639}
1640
1641/* Parse an ACL condition starting at <args>[0], relying on a list of already
1642 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001643 * case of low memory). Supports multiple conditions separated by "or". If
1644 * <err> is not NULL, it will be filled with a pointer to an error message in
1645 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001646 * location must either be freeable or NULL. The list <al> serves as a list head
1647 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001648 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001649struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
1650 int pol, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001651{
1652 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001653 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001654 const char *word;
1655 struct acl *cur_acl;
1656 struct acl_term *cur_term;
1657 struct acl_term_suite *cur_suite;
1658 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001659 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001660
1661 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001662 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001663 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001664 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001665 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001666
1667 LIST_INIT(&cond->list);
1668 LIST_INIT(&cond->suites);
1669 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001670 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001671
1672 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001673 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +02001674 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001675 for (arg = 0; *args[arg]; arg++) {
1676 word = args[arg];
1677
1678 /* remove as many exclamation marks as we can */
1679 while (*word == '!') {
1680 neg = !neg;
1681 word++;
1682 }
1683
1684 /* an empty word is allowed because we cannot force the user to
1685 * always think about not leaving exclamation marks alone.
1686 */
1687 if (!*word)
1688 continue;
1689
Willy Tarreau16fbe822007-06-17 11:54:31 +02001690 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +02001691 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001692 cond->val |= suite_val;
1693 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001694 cur_suite = NULL;
1695 neg = 0;
1696 continue;
1697 }
1698
Willy Tarreau95fa4692010-02-01 13:05:50 +01001699 if (strcmp(word, "{") == 0) {
1700 /* we may have a complete ACL expression between two braces,
1701 * find the last one.
1702 */
1703 int arg_end = arg + 1;
1704 const char **args_new;
1705
1706 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
1707 arg_end++;
1708
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001709 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001710 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001711 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001712 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001713
1714 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001715 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001716 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +01001717 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001718 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001719
Willy Tarreau2a56c5e2010-03-15 16:13:29 +01001720 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +01001721 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
1722 args_new[arg_end - arg] = "";
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001723 cur_acl = parse_acl(args_new, known_acl, err, al);
Willy Tarreau95fa4692010-02-01 13:05:50 +01001724 free(args_new);
1725
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001726 if (!cur_acl) {
1727 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +02001728 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001729 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001730 word = args[arg + 1];
Willy Tarreau95fa4692010-02-01 13:05:50 +01001731 arg = arg_end;
1732 }
1733 else {
1734 /* search for <word> in the known ACL names. If we do not find
1735 * it, let's look for it in the default ACLs, and if found, add
1736 * it to the list of ACLs of this proxy. This makes it possible
1737 * to override them.
1738 */
1739 cur_acl = find_acl_by_name(word, known_acl);
1740 if (cur_acl == NULL) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001741 cur_acl = find_acl_default(word, known_acl, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001742 if (cur_acl == NULL) {
1743 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +01001744 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001745 }
Willy Tarreau95fa4692010-02-01 13:05:50 +01001746 }
Willy Tarreau16fbe822007-06-17 11:54:31 +02001747 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001748
1749 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001750 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001751 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001752 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001753 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001754
1755 cur_term->acl = cur_acl;
1756 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001757
1758 /* Here it is a bit complex. The acl_term_suite is a conjunction
1759 * of many terms. It may only be used if all of its terms are
1760 * usable at the same time. So the suite's validity domain is an
1761 * AND between all ACL keywords' ones. But, the global condition
1762 * is valid if at least one term suite is OK. So it's an OR between
1763 * all of their validity domains. We could emit a warning as soon
1764 * as suite_val is null because it means that the last ACL is not
1765 * compatible with the previous ones. Let's remain simple for now.
1766 */
1767 cond->use |= cur_acl->use;
1768 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001769
1770 if (!cur_suite) {
1771 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +01001772 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001773 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001774 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001775 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001776 LIST_INIT(&cur_suite->terms);
1777 LIST_ADDQ(&cond->suites, &cur_suite->list);
1778 }
1779 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001780 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001781 }
1782
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001783 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001784 return cond;
1785
1786 out_free_term:
1787 free(cur_term);
1788 out_free_suite:
1789 prune_acl_cond(cond);
1790 free(cond);
1791 out_return:
1792 return NULL;
1793}
1794
Willy Tarreau2bbba412010-01-28 16:48:33 +01001795/* Builds an ACL condition starting at the if/unless keyword. The complete
1796 * condition is returned. NULL is returned in case of error or if the first
1797 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001798 * the line number in the condition for better error reporting, and sets the
1799 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001800 * be filled with a pointer to an error message in case of error, that the
1801 * caller is responsible for freeing. The initial location must either be
1802 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001803 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001804struct 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 +01001805{
1806 int pol = ACL_COND_NONE;
1807 struct acl_cond *cond = NULL;
1808
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001809 if (err)
1810 *err = NULL;
1811
Willy Tarreau2bbba412010-01-28 16:48:33 +01001812 if (!strcmp(*args, "if")) {
1813 pol = ACL_COND_IF;
1814 args++;
1815 }
1816 else if (!strcmp(*args, "unless")) {
1817 pol = ACL_COND_UNLESS;
1818 args++;
1819 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001820 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001821 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001822 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001823 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001824
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001825 cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001826 if (!cond) {
1827 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001828 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001829 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001830
1831 cond->file = file;
1832 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001833 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001834 return cond;
1835}
1836
Thierry FOURNIER29d47b82013-11-22 18:03:42 +01001837/* This function execute the match part of the acl.
1838 * it return ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS
1839 */
1840inline int acl_exec_match(struct acl_expr *expr, struct sample *smp)
1841{
1842 int acl_res = ACL_PAT_FAIL;
1843 struct acl_pattern *pattern;
1844
1845 if (expr->match == acl_match_nothing) {
1846 if (smp->data.uint)
1847 acl_res |= ACL_PAT_PASS;
1848 else
1849 acl_res |= ACL_PAT_FAIL;
1850 }
1851 else if (!expr->match) {
1852 /* just check for existence */
1853 acl_res |= ACL_PAT_PASS;
1854 }
1855 else {
1856 if (!eb_is_empty(&expr->pattern_tree)) {
1857 /* a tree is present, let's check what type it is */
1858 if (expr->match == acl_match_str)
1859 acl_res |= acl_lookup_str(smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
1860 else if (expr->match == acl_match_ip)
1861 acl_res |= acl_lookup_ip(smp, expr) ? ACL_PAT_PASS : ACL_PAT_FAIL;
1862 }
1863
1864 /* call the match() function for all tests on this value */
1865 list_for_each_entry(pattern, &expr->patterns, list) {
1866 if (acl_res == ACL_PAT_PASS)
1867 break;
1868 acl_res |= expr->match(smp, pattern);
1869 }
1870 }
1871
1872 return acl_res;
1873}
1874
Willy Tarreau11382812008-07-09 16:18:21 +02001875/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
Willy Tarreaub6866442008-07-14 23:54:42 +02001876 * ACL_PAT_PASS depending on the test results. ACL_PAT_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001877 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001878 * data is being examined. The function automatically sets SMP_OPT_ITERATE.
Willy Tarreaub6866442008-07-14 23:54:42 +02001879 * This function only computes the condition, it does not apply the polarity
1880 * required by IF/UNLESS, it's up to the caller to do this using something like
1881 * this :
Willy Tarreau11382812008-07-09 16:18:21 +02001882 *
1883 * res = acl_pass(res);
Willy Tarreaub6866442008-07-14 23:54:42 +02001884 * if (res == ACL_PAT_MISS)
1885 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001886 * if (cond->pol == ACL_COND_UNLESS)
1887 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001888 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001889int 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 +02001890{
1891 __label__ fetch_next;
1892 struct acl_term_suite *suite;
1893 struct acl_term *term;
1894 struct acl_expr *expr;
1895 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001896 struct sample smp;
Willy Tarreau11382812008-07-09 16:18:21 +02001897 int acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001898
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001899 /* ACLs are iterated over all values, so let's always set the flag to
1900 * indicate this to the fetch functions.
1901 */
1902 opt |= SMP_OPT_ITERATE;
1903
Willy Tarreau11382812008-07-09 16:18:21 +02001904 /* We're doing a logical OR between conditions so we initialize to FAIL.
1905 * The MISS status is propagated down from the suites.
1906 */
Willy Tarreaua84d3742007-05-07 00:36:48 +02001907 cond_res = ACL_PAT_FAIL;
1908 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001909 /* Evaluate condition suite <suite>. We stop at the first term
1910 * which returns ACL_PAT_FAIL. The MISS status is still propagated
1911 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001912 */
1913
1914 /* we're doing a logical AND between terms, so we must set the
1915 * initial value to PASS.
1916 */
1917 suite_res = ACL_PAT_PASS;
1918 list_for_each_entry(term, &suite->terms, list) {
1919 acl = term->acl;
1920
1921 /* FIXME: use cache !
1922 * check acl->cache_idx for this.
1923 */
1924
1925 /* ACL result not cached. Let's scan all the expressions
1926 * and use the first one to match.
1927 */
1928 acl_res = ACL_PAT_FAIL;
1929 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001930 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001931 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001932 fetch_next:
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001933 if (!sample_process(px, l4, l7, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001934 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001935 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001936 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001937 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001938 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001939
Thierry FOURNIER29d47b82013-11-22 18:03:42 +01001940 acl_res |= acl_exec_match(expr, &smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001941 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001942 * OK now acl_res holds the result of this expression
1943 * as one of ACL_PAT_FAIL, ACL_PAT_MISS or ACL_PAT_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001944 *
Willy Tarreau11382812008-07-09 16:18:21 +02001945 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001946 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001947 *
1948 * FIXME: implement cache.
1949 *
1950 */
1951
Willy Tarreau11382812008-07-09 16:18:21 +02001952 /* we're ORing these terms, so a single PASS is enough */
1953 if (acl_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001954 break;
1955
Willy Tarreau37406352012-04-23 16:16:37 +02001956 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001957 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001958
1959 /* sometimes we know the fetched data is subject to change
1960 * later and give another chance for a new match (eg: request
1961 * size, time, ...)
1962 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001963 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Willy Tarreaub6866442008-07-14 23:54:42 +02001964 acl_res |= ACL_PAT_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001965 }
1966 /*
1967 * Here we have the result of an ACL (cached or not).
1968 * ACLs are combined, negated or not, to form conditions.
1969 */
1970
Willy Tarreaua84d3742007-05-07 00:36:48 +02001971 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001972 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001973
1974 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001975
Willy Tarreau79c412b2013-10-30 19:30:32 +01001976 /* we're ANDing these terms, so a single FAIL or MISS is enough */
1977 if (suite_res != ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001978 break;
1979 }
1980 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001981
1982 /* we're ORing these terms, so a single PASS is enough */
1983 if (cond_res == ACL_PAT_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001984 break;
1985 }
Willy Tarreau11382812008-07-09 16:18:21 +02001986 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001987}
1988
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001989/* Returns a pointer to the first ACL conflicting with usage at place <where>
1990 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1991 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1992 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001993 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001994const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001995{
1996 struct acl_term_suite *suite;
1997 struct acl_term *term;
1998 struct acl *acl;
1999
2000 list_for_each_entry(suite, &cond->suites, list) {
2001 list_for_each_entry(term, &suite->terms, list) {
2002 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01002003 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002004 return acl;
2005 }
2006 }
2007 return NULL;
2008}
2009
Willy Tarreaua91d0a52013-03-25 08:12:18 +01002010/* Returns a pointer to the first ACL and its first keyword to conflict with
2011 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
2012 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
2013 * null), or false if not conflict is found. The first useless keyword is
2014 * returned.
2015 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02002016int 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 +01002017{
2018 struct acl_term_suite *suite;
2019 struct acl_term *term;
2020 struct acl_expr *expr;
2021
2022 list_for_each_entry(suite, &cond->suites, list) {
2023 list_for_each_entry(term, &suite->terms, list) {
2024 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01002025 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01002026 if (acl)
2027 *acl = term->acl;
2028 if (kw)
2029 *kw = expr->kw;
2030 return 1;
2031 }
2032 }
2033 }
2034 }
2035 return 0;
2036}
2037
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002038/*
2039 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002040 * of errors or OK if everything is fine. It must be called only once sample
2041 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002042 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002043int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002044{
2045
2046 struct acl *acl;
2047 struct acl_expr *expr;
2048 struct acl_pattern *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002049 int cfgerr = 0;
2050
2051 list_for_each_entry(acl, &p->acl, list) {
2052 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002053 if (!strcmp(expr->kw, "http_auth_group")) {
2054 /* Note: the ARGT_USR argument may only have been resolved earlier
2055 * by smp_resolve_args().
2056 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01002057 if (expr->smp->arg_p->unresolved) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002058 Alert("Internal bug in proxy %s: %sacl %s %s() makes use of unresolved userlist '%s'. Please report this.\n",
Thierry FOURNIER348971e2013-11-21 10:50:10 +01002059 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002060 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02002061 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002062 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002063
2064 if (LIST_ISEMPTY(&expr->patterns)) {
2065 Alert("proxy %s: acl %s %s(): no groups specified.\n",
Willy Tarreau93fddf12013-03-31 22:59:32 +02002066 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002067 cfgerr++;
2068 continue;
2069 }
2070
2071 list_for_each_entry(pattern, &expr->patterns, list) {
Willy Tarreau7d1df412012-11-23 23:47:36 +01002072 /* this keyword only has one argument */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01002073 pattern->val.group_mask = auth_resolve_groups(expr->smp->arg_p->data.usr, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002074
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002075 if (!pattern->val.group_mask) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002076 Alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
2077 p->id, acl->name, expr->kw, pattern->ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002078 cfgerr++;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002079 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002080 free(pattern->ptr.str);
2081 pattern->ptr.str = NULL;
2082 pattern->len = 0;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002083 }
2084 }
2085 }
2086 }
2087
2088 return cfgerr;
2089}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02002090
Willy Tarreau8ed669b2013-01-11 15:49:37 +01002091/* initializes ACLs by resolving the sample fetch names they rely upon.
2092 * Returns 0 on success, otherwise an error.
2093 */
2094int init_acl()
2095{
2096 int err = 0;
2097 int index;
2098 const char *name;
2099 struct acl_kw_list *kwl;
2100 struct sample_fetch *smp;
2101
2102 list_for_each_entry(kwl, &acl_keywords.list, list) {
2103 for (index = 0; kwl->kw[index].kw != NULL; index++) {
2104 name = kwl->kw[index].fetch_kw;
2105 if (!name)
2106 name = kwl->kw[index].kw;
2107
2108 smp = find_sample_fetch(name, strlen(name));
2109 if (!smp) {
2110 Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
2111 kwl->kw[index].kw, name);
2112 err++;
2113 continue;
2114 }
2115 kwl->kw[index].smp = smp;
2116 }
2117 }
2118 return err;
2119}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002120
Willy Tarreaua84d3742007-05-07 00:36:48 +02002121/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002122/* All supported sample and ACL keywords must be declared here. */
2123/************************************************************************/
2124
2125/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02002126 * Please take care of keeping this list alphabetically sorted.
2127 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002128static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002129 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02002130}};
2131
Willy Tarreaua84d3742007-05-07 00:36:48 +02002132__attribute__((constructor))
2133static void __acl_init(void)
2134{
Willy Tarreaua84d3742007-05-07 00:36:48 +02002135 acl_register_keywords(&acl_kws);
2136}
2137
2138
2139/*
2140 * Local variables:
2141 * c-indent-level: 8
2142 * c-basic-offset: 8
2143 * End:
2144 */