Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ACL management functions. |
| 3 | * |
| 4 | * Copyright 2000-2007 Willy Tarreau <w@1wt.eu> |
| 5 | * |
| 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 Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 13 | #include <ctype.h> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 14 | #include <stdio.h> |
| 15 | #include <string.h> |
| 16 | |
| 17 | #include <common/config.h> |
| 18 | #include <common/mini-clist.h> |
| 19 | #include <common/standard.h> |
| 20 | |
| 21 | #include <proto/acl.h> |
| 22 | |
| 23 | #include <types/acl.h> |
| 24 | #include <types/proxy.h> |
| 25 | #include <types/session.h> |
| 26 | |
| 27 | /* List head of all known ACL keywords */ |
| 28 | static struct acl_kw_list acl_keywords = { |
| 29 | .list = LIST_HEAD_INIT(acl_keywords.list) |
| 30 | }; |
| 31 | |
| 32 | |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 33 | /* |
| 34 | * These functions are only used for debugging complex configurations. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 35 | */ |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 36 | |
| 37 | /* ignore the current line */ |
| 38 | static int |
| 39 | acl_parse_nothing(const char **text, struct acl_pattern *pattern, int *opaque) |
| 40 | { |
| 41 | return 1; |
| 42 | } |
| 43 | |
| 44 | /* always fake a data retrieval */ |
| 45 | static int |
| 46 | acl_fetch_nothing(struct proxy *px, struct session *l4, void *l7, int dir, |
| 47 | struct acl_expr *expr, struct acl_test *test) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 48 | { |
| 49 | return 1; |
| 50 | } |
| 51 | |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 52 | /* always return true */ |
| 53 | static int |
| 54 | acl_match_true(struct acl_test *test, struct acl_pattern *pattern) |
| 55 | { |
| 56 | return 1; |
| 57 | } |
| 58 | |
| 59 | /* always return false */ |
| 60 | static int |
| 61 | acl_match_false(struct acl_test *test, struct acl_pattern *pattern) |
| 62 | { |
| 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 67 | /* NB: For two strings to be identical, it is required that their lengths match */ |
| 68 | int acl_match_str(struct acl_test *test, struct acl_pattern *pattern) |
| 69 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 70 | int icase; |
| 71 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 72 | if (pattern->len != test->len) |
| 73 | return 0; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 74 | |
| 75 | icase = pattern->flags & ACL_PAT_F_IGNORE_CASE; |
| 76 | if ((icase && strncasecmp(pattern->ptr.str, test->ptr, test->len) == 0) || |
| 77 | (!icase && strncmp(pattern->ptr.str, test->ptr, test->len) == 0)) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 78 | return 1; |
| 79 | return 0; |
| 80 | } |
| 81 | |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 82 | /* Executes a regex. It needs to change the data. If it is marked READ_ONLY |
| 83 | * then it will be allocated and duplicated in place so that others may use |
| 84 | * it later on. Note that this is embarrassing because we always try to avoid |
| 85 | * allocating memory at run time. |
| 86 | */ |
| 87 | int acl_match_reg(struct acl_test *test, struct acl_pattern *pattern) |
| 88 | { |
| 89 | char old_char; |
| 90 | int ret; |
| 91 | |
| 92 | if (unlikely(test->flags & ACL_TEST_F_READ_ONLY)) { |
| 93 | char *new_str; |
| 94 | |
| 95 | new_str = calloc(1, test->len + 1); |
| 96 | if (!new_str) |
| 97 | return 0; |
| 98 | |
| 99 | memcpy(new_str, test->ptr, test->len); |
| 100 | new_str[test->len] = 0; |
| 101 | if (test->flags & ACL_TEST_F_MUST_FREE) |
| 102 | free(test->ptr); |
| 103 | test->ptr = new_str; |
| 104 | test->flags |= ACL_TEST_F_MUST_FREE; |
| 105 | test->flags &= ~ACL_TEST_F_READ_ONLY; |
| 106 | } |
| 107 | |
| 108 | old_char = test->ptr[test->len]; |
| 109 | test->ptr[test->len] = 0; |
| 110 | |
| 111 | if (regexec(pattern->ptr.reg, test->ptr, 0, NULL, 0) == 0) |
| 112 | ret = 1; |
| 113 | else |
| 114 | ret = 0; |
| 115 | |
| 116 | test->ptr[test->len] = old_char; |
| 117 | return ret; |
| 118 | } |
| 119 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 120 | /* Checks that the pattern matches the beginning of the tested string. */ |
| 121 | int acl_match_beg(struct acl_test *test, struct acl_pattern *pattern) |
| 122 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 123 | int icase; |
| 124 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 125 | if (pattern->len > test->len) |
| 126 | return 0; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 127 | |
| 128 | icase = pattern->flags & ACL_PAT_F_IGNORE_CASE; |
| 129 | if ((icase && strncasecmp(pattern->ptr.str, test->ptr, pattern->len) != 0) || |
| 130 | (!icase && strncmp(pattern->ptr.str, test->ptr, pattern->len) != 0)) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 131 | return 0; |
| 132 | return 1; |
| 133 | } |
| 134 | |
| 135 | /* Checks that the pattern matches the end of the tested string. */ |
| 136 | int acl_match_end(struct acl_test *test, struct acl_pattern *pattern) |
| 137 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 138 | int icase; |
| 139 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 140 | if (pattern->len > test->len) |
| 141 | return 0; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 142 | icase = pattern->flags & ACL_PAT_F_IGNORE_CASE; |
| 143 | if ((icase && strncasecmp(pattern->ptr.str, test->ptr + test->len - pattern->len, pattern->len) != 0) || |
| 144 | (!icase && strncmp(pattern->ptr.str, test->ptr + test->len - pattern->len, pattern->len) != 0)) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 145 | return 0; |
| 146 | return 1; |
| 147 | } |
| 148 | |
| 149 | /* Checks that the pattern is included inside the tested string. |
| 150 | * NB: Suboptimal, should be rewritten using a Boyer-Moore method. |
| 151 | */ |
| 152 | int acl_match_sub(struct acl_test *test, struct acl_pattern *pattern) |
| 153 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 154 | int icase; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 155 | char *end; |
| 156 | char *c; |
| 157 | |
| 158 | if (pattern->len > test->len) |
| 159 | return 0; |
| 160 | |
| 161 | end = test->ptr + test->len - pattern->len; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 162 | icase = pattern->flags & ACL_PAT_F_IGNORE_CASE; |
| 163 | if (icase) { |
| 164 | for (c = test->ptr; c <= end; c++) { |
| 165 | if (tolower(*c) != tolower(*pattern->ptr.str)) |
| 166 | continue; |
| 167 | if (strncasecmp(pattern->ptr.str, c, pattern->len) == 0) |
| 168 | return 1; |
| 169 | } |
| 170 | } else { |
| 171 | for (c = test->ptr; c <= end; c++) { |
| 172 | if (*c != *pattern->ptr.str) |
| 173 | continue; |
| 174 | if (strncmp(pattern->ptr.str, c, pattern->len) == 0) |
| 175 | return 1; |
| 176 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 177 | } |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | /* This one is used by other real functions. It checks that the pattern is |
| 182 | * included inside the tested string, but enclosed between the specified |
| 183 | * delimitor, or a '/' or a '?' or at the beginning or end of the string. |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 184 | * The delimitor is stripped at the beginning or end of the pattern. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 185 | */ |
| 186 | static int match_word(struct acl_test *test, struct acl_pattern *pattern, char delim) |
| 187 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 188 | int may_match, icase; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 189 | char *c, *end; |
| 190 | char *ps; |
| 191 | int pl; |
| 192 | |
| 193 | pl = pattern->len; |
| 194 | ps = pattern->ptr.str; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 195 | while (pl > 0 && (*ps == delim || *ps == '/' || *ps == '?')) { |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 196 | pl--; |
| 197 | ps++; |
| 198 | } |
| 199 | |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 200 | while (pl > 0 && |
| 201 | (ps[pl - 1] == delim || ps[pl - 1] == '/' || ps[pl - 1] == '?')) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 202 | pl--; |
| 203 | |
| 204 | if (pl > test->len) |
| 205 | return 0; |
| 206 | |
| 207 | may_match = 1; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 208 | icase = pattern->flags & ACL_PAT_F_IGNORE_CASE; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 209 | end = test->ptr + test->len - pl; |
| 210 | for (c = test->ptr; c <= end; c++) { |
| 211 | if (*c == '/' || *c == delim || *c == '?') { |
| 212 | may_match = 1; |
| 213 | continue; |
| 214 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 215 | |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 216 | if (!may_match) |
| 217 | continue; |
| 218 | |
| 219 | if (icase) { |
| 220 | if ((tolower(*c) == tolower(*ps)) && |
| 221 | (strncasecmp(ps, c, pl) == 0) && |
| 222 | (c == end || c[pl] == '/' || c[pl] == delim || c[pl] == '?')) |
| 223 | return 1; |
| 224 | } else { |
| 225 | if ((*c == *ps) && |
| 226 | (strncmp(ps, c, pl) == 0) && |
| 227 | (c == end || c[pl] == '/' || c[pl] == delim || c[pl] == '?')) |
| 228 | return 1; |
| 229 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 230 | may_match = 0; |
| 231 | } |
| 232 | return 0; |
| 233 | } |
| 234 | |
| 235 | /* Checks that the pattern is included inside the tested string, but enclosed |
| 236 | * between slashes or at the beginning or end of the string. Slashes at the |
| 237 | * beginning or end of the pattern are ignored. |
| 238 | */ |
| 239 | int acl_match_dir(struct acl_test *test, struct acl_pattern *pattern) |
| 240 | { |
| 241 | return match_word(test, pattern, '/'); |
| 242 | } |
| 243 | |
| 244 | /* Checks that the pattern is included inside the tested string, but enclosed |
| 245 | * between dots or at the beginning or end of the string. Dots at the beginning |
| 246 | * or end of the pattern are ignored. |
| 247 | */ |
| 248 | int acl_match_dom(struct acl_test *test, struct acl_pattern *pattern) |
| 249 | { |
| 250 | return match_word(test, pattern, '.'); |
| 251 | } |
| 252 | |
| 253 | /* Checks that the integer in <test> is included between min and max */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 254 | int acl_match_int(struct acl_test *test, struct acl_pattern *pattern) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 255 | { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 256 | if ((!pattern->val.range.min_set || pattern->val.range.min <= test->i) && |
| 257 | (!pattern->val.range.max_set || test->i <= pattern->val.range.max)) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 258 | return 1; |
| 259 | return 0; |
| 260 | } |
| 261 | |
Willy Tarreau | a67fad9 | 2007-05-08 19:50:09 +0200 | [diff] [blame] | 262 | int acl_match_ip(struct acl_test *test, struct acl_pattern *pattern) |
| 263 | { |
| 264 | struct in_addr *s; |
| 265 | |
| 266 | if (test->i != AF_INET) |
| 267 | return 0; |
| 268 | |
| 269 | s = (void *)test->ptr; |
| 270 | if (((s->s_addr ^ pattern->val.ipv4.addr.s_addr) & pattern->val.ipv4.mask.s_addr) == 0) |
| 271 | return 1; |
| 272 | return 0; |
| 273 | } |
| 274 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 275 | /* Parse a string. It is allocated and duplicated. */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 276 | int acl_parse_str(const char **text, struct acl_pattern *pattern, int *opaque) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 277 | { |
| 278 | int len; |
| 279 | |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 280 | len = strlen(*text); |
| 281 | pattern->ptr.str = strdup(*text); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 282 | if (!pattern->ptr.str) |
| 283 | return 0; |
| 284 | pattern->len = len; |
| 285 | return 1; |
| 286 | } |
| 287 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 288 | /* Free data allocated by acl_parse_reg */ |
| 289 | static void acl_free_reg(void *ptr) { |
| 290 | |
| 291 | regfree((regex_t *)ptr); |
| 292 | } |
| 293 | |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 294 | /* Parse a regex. It is allocated. */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 295 | int acl_parse_reg(const char **text, struct acl_pattern *pattern, int *opaque) |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 296 | { |
| 297 | regex_t *preg; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 298 | int icase; |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 299 | |
| 300 | preg = calloc(1, sizeof(regex_t)); |
| 301 | |
| 302 | if (!preg) |
| 303 | return 0; |
| 304 | |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 305 | icase = (pattern->flags & ACL_PAT_F_IGNORE_CASE) ? REG_ICASE : 0; |
| 306 | if (regcomp(preg, *text, REG_EXTENDED | REG_NOSUB | icase) != 0) { |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 307 | free(preg); |
| 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | pattern->ptr.reg = preg; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 312 | pattern->freeptrbuf = &acl_free_reg; |
Willy Tarreau | f3d2598 | 2007-05-08 22:45:09 +0200 | [diff] [blame] | 313 | return 1; |
| 314 | } |
| 315 | |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 316 | /* Parse a range of positive integers delimited by either ':' or '-'. If only |
| 317 | * one integer is read, it is set as both min and max. An operator may be |
| 318 | * specified as the prefix, among this list of 5 : |
| 319 | * |
| 320 | * 0:eq, 1:gt, 2:ge, 3:lt, 4:le |
| 321 | * |
| 322 | * The default operator is "eq". It supports range matching. Ranges are |
| 323 | * rejected for other operators. The operator may be changed at any time. |
| 324 | * The operator is stored in the 'opaque' argument. |
| 325 | * |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 326 | */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 327 | int acl_parse_int(const char **text, struct acl_pattern *pattern, int *opaque) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 328 | { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 329 | signed long long i; |
| 330 | unsigned int j, last, skip = 0; |
| 331 | const char *ptr = *text; |
| 332 | |
| 333 | |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 334 | while (!isdigit((unsigned char)*ptr)) { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 335 | if (strcmp(ptr, "eq") == 0) *opaque = 0; |
| 336 | else if (strcmp(ptr, "gt") == 0) *opaque = 1; |
| 337 | else if (strcmp(ptr, "ge") == 0) *opaque = 2; |
| 338 | else if (strcmp(ptr, "lt") == 0) *opaque = 3; |
| 339 | else if (strcmp(ptr, "le") == 0) *opaque = 4; |
| 340 | else |
| 341 | return 0; |
| 342 | |
| 343 | skip++; |
| 344 | ptr = text[skip]; |
| 345 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 346 | |
| 347 | last = i = 0; |
| 348 | while (1) { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 349 | j = *ptr++; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 350 | if ((j == '-' || j == ':') && !last) { |
| 351 | last++; |
| 352 | pattern->val.range.min = i; |
| 353 | i = 0; |
| 354 | continue; |
| 355 | } |
| 356 | j -= '0'; |
| 357 | if (j > 9) |
| 358 | // also catches the terminating zero |
| 359 | break; |
| 360 | i *= 10; |
| 361 | i += j; |
| 362 | } |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 363 | |
| 364 | if (last && *opaque >= 1 && *opaque <= 4) |
| 365 | /* having a range with a min or a max is absurd */ |
| 366 | return 0; |
| 367 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 368 | if (!last) |
| 369 | pattern->val.range.min = i; |
| 370 | pattern->val.range.max = i; |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 371 | |
| 372 | switch (*opaque) { |
| 373 | case 0: /* eq */ |
| 374 | pattern->val.range.min_set = 1; |
| 375 | pattern->val.range.max_set = 1; |
| 376 | break; |
| 377 | case 1: /* gt */ |
| 378 | pattern->val.range.min++; /* gt = ge + 1 */ |
| 379 | case 2: /* ge */ |
| 380 | pattern->val.range.min_set = 1; |
| 381 | pattern->val.range.max_set = 0; |
| 382 | break; |
| 383 | case 3: /* lt */ |
| 384 | pattern->val.range.max--; /* lt = le - 1 */ |
| 385 | case 4: /* le */ |
| 386 | pattern->val.range.min_set = 0; |
| 387 | pattern->val.range.max_set = 1; |
| 388 | break; |
| 389 | } |
| 390 | return skip + 1; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 391 | } |
| 392 | |
Willy Tarreau | a67fad9 | 2007-05-08 19:50:09 +0200 | [diff] [blame] | 393 | /* Parse an IP address and an optional mask in the form addr[/mask]. |
| 394 | * The addr may either be an IPv4 address or a hostname. The mask |
| 395 | * may either be a dotted mask or a number of bits. Returns 1 if OK, |
| 396 | * otherwise 0. |
| 397 | */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 398 | int acl_parse_ip(const char **text, struct acl_pattern *pattern, int *opaque) |
Willy Tarreau | a67fad9 | 2007-05-08 19:50:09 +0200 | [diff] [blame] | 399 | { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 400 | if (str2net(*text, &pattern->val.ipv4.addr, &pattern->val.ipv4.mask)) |
| 401 | return 1; |
| 402 | else |
| 403 | return 0; |
Willy Tarreau | a67fad9 | 2007-05-08 19:50:09 +0200 | [diff] [blame] | 404 | } |
| 405 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 406 | /* |
| 407 | * Registers the ACL keyword list <kwl> as a list of valid keywords for next |
| 408 | * parsing sessions. |
| 409 | */ |
| 410 | void acl_register_keywords(struct acl_kw_list *kwl) |
| 411 | { |
| 412 | LIST_ADDQ(&acl_keywords.list, &kwl->list); |
| 413 | } |
| 414 | |
| 415 | /* |
| 416 | * Unregisters the ACL keyword list <kwl> from the list of valid keywords. |
| 417 | */ |
| 418 | void acl_unregister_keywords(struct acl_kw_list *kwl) |
| 419 | { |
| 420 | LIST_DEL(&kwl->list); |
| 421 | LIST_INIT(&kwl->list); |
| 422 | } |
| 423 | |
| 424 | /* Return a pointer to the ACL <name> within the list starting at <head>, or |
| 425 | * NULL if not found. |
| 426 | */ |
| 427 | struct acl *find_acl_by_name(const char *name, struct list *head) |
| 428 | { |
| 429 | struct acl *acl; |
| 430 | list_for_each_entry(acl, head, list) { |
| 431 | if (strcmp(acl->name, name) == 0) |
| 432 | return acl; |
| 433 | } |
| 434 | return NULL; |
| 435 | } |
| 436 | |
| 437 | /* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if |
| 438 | * <kw> contains an opening parenthesis, only the left part of it is checked. |
| 439 | */ |
| 440 | struct acl_keyword *find_acl_kw(const char *kw) |
| 441 | { |
| 442 | int index; |
| 443 | const char *kwend; |
| 444 | struct acl_kw_list *kwl; |
| 445 | |
| 446 | kwend = strchr(kw, '('); |
| 447 | if (!kwend) |
| 448 | kwend = kw + strlen(kw); |
| 449 | |
| 450 | list_for_each_entry(kwl, &acl_keywords.list, list) { |
| 451 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 452 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 453 | kwl->kw[index].kw[kwend-kw] == 0) |
| 454 | return &kwl->kw[index]; |
| 455 | } |
| 456 | } |
| 457 | return NULL; |
| 458 | } |
| 459 | |
| 460 | static void free_pattern(struct acl_pattern *pat) |
| 461 | { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 462 | |
| 463 | if (pat->ptr.ptr) { |
| 464 | if (pat->freeptrbuf) |
| 465 | pat->freeptrbuf(pat->ptr.ptr); |
| 466 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 467 | free(pat->ptr.ptr); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 468 | } |
| 469 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 470 | free(pat); |
| 471 | } |
| 472 | |
| 473 | static void free_pattern_list(struct list *head) |
| 474 | { |
| 475 | struct acl_pattern *pat, *tmp; |
| 476 | list_for_each_entry_safe(pat, tmp, head, list) |
| 477 | free_pattern(pat); |
| 478 | } |
| 479 | |
| 480 | static struct acl_expr *prune_acl_expr(struct acl_expr *expr) |
| 481 | { |
| 482 | free_pattern_list(&expr->patterns); |
| 483 | LIST_INIT(&expr->patterns); |
| 484 | if (expr->arg.str) |
| 485 | free(expr->arg.str); |
| 486 | expr->kw->use_cnt--; |
| 487 | return expr; |
| 488 | } |
| 489 | |
| 490 | /* Parse an ACL expression starting at <args>[0], and return it. |
| 491 | * Right now, the only accepted syntax is : |
| 492 | * <subject> [<value>...] |
| 493 | */ |
| 494 | struct acl_expr *parse_acl_expr(const char **args) |
| 495 | { |
| 496 | __label__ out_return, out_free_expr, out_free_pattern; |
| 497 | struct acl_expr *expr; |
| 498 | struct acl_keyword *aclkw; |
| 499 | struct acl_pattern *pattern; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 500 | int opaque, patflags; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 501 | const char *arg; |
| 502 | |
| 503 | aclkw = find_acl_kw(args[0]); |
| 504 | if (!aclkw || !aclkw->parse) |
| 505 | goto out_return; |
| 506 | |
| 507 | expr = (struct acl_expr *)calloc(1, sizeof(*expr)); |
| 508 | if (!expr) |
| 509 | goto out_return; |
| 510 | |
| 511 | expr->kw = aclkw; |
| 512 | aclkw->use_cnt++; |
| 513 | LIST_INIT(&expr->patterns); |
| 514 | expr->arg.str = NULL; |
Willy Tarreau | bb76891 | 2007-06-10 11:17:01 +0200 | [diff] [blame] | 515 | expr->arg_len = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 516 | |
| 517 | arg = strchr(args[0], '('); |
| 518 | if (arg != NULL) { |
| 519 | char *end, *arg2; |
| 520 | /* there is an argument in the form "subject(arg)" */ |
| 521 | arg++; |
| 522 | end = strchr(arg, ')'); |
| 523 | if (!end) |
| 524 | goto out_free_expr; |
| 525 | arg2 = (char *)calloc(1, end - arg + 1); |
| 526 | if (!arg2) |
| 527 | goto out_free_expr; |
| 528 | memcpy(arg2, arg, end - arg); |
| 529 | arg2[end-arg] = '\0'; |
Willy Tarreau | bb76891 | 2007-06-10 11:17:01 +0200 | [diff] [blame] | 530 | expr->arg_len = end - arg; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 531 | expr->arg.str = arg2; |
| 532 | } |
| 533 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 534 | args++; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 535 | |
| 536 | /* check for options before patterns. Supported options are : |
| 537 | * -i : ignore case for all patterns by default |
| 538 | * -f : read patterns from those files |
| 539 | * -- : everything after this is not an option |
| 540 | */ |
| 541 | patflags = 0; |
| 542 | while (**args == '-') { |
| 543 | if ((*args)[1] == 'i') |
| 544 | patflags |= ACL_PAT_F_IGNORE_CASE; |
| 545 | else if ((*args)[1] == 'f') |
| 546 | patflags |= ACL_PAT_F_FROM_FILE; |
| 547 | else if ((*args)[1] == '-') { |
| 548 | args++; |
| 549 | break; |
| 550 | } |
| 551 | else |
| 552 | break; |
| 553 | args++; |
| 554 | } |
| 555 | |
| 556 | /* now parse all patterns */ |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 557 | opaque = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 558 | while (**args) { |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 559 | int ret; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 560 | pattern = (struct acl_pattern *)calloc(1, sizeof(*pattern)); |
| 561 | if (!pattern) |
| 562 | goto out_free_expr; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 563 | pattern->flags = patflags; |
| 564 | |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 565 | ret = aclkw->parse(args, pattern, &opaque); |
| 566 | if (!ret) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 567 | goto out_free_pattern; |
| 568 | LIST_ADDQ(&expr->patterns, &pattern->list); |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 569 | args += ret; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | return expr; |
| 573 | |
| 574 | out_free_pattern: |
| 575 | free_pattern(pattern); |
| 576 | out_free_expr: |
| 577 | prune_acl_expr(expr); |
| 578 | free(expr); |
| 579 | out_return: |
| 580 | return NULL; |
| 581 | } |
| 582 | |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 583 | /* Purge everything in the acl <acl>, then return <acl>. */ |
| 584 | struct acl *prune_acl(struct acl *acl) { |
| 585 | |
| 586 | struct acl_expr *expr, *exprb; |
| 587 | |
| 588 | free(acl->name); |
| 589 | |
| 590 | list_for_each_entry_safe(expr, exprb, &acl->expr, list) { |
| 591 | LIST_DEL(&expr->list); |
| 592 | prune_acl_expr(expr); |
| 593 | free(expr); |
| 594 | } |
| 595 | |
| 596 | return acl; |
| 597 | } |
| 598 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 599 | /* Parse an ACL with the name starting at <args>[0], and with a list of already |
| 600 | * known ACLs in <acl>. If the ACL was not in the list, it will be added. |
| 601 | * A pointer to that ACL is returned. |
| 602 | * |
| 603 | * args syntax: <aclname> <acl_expr> |
| 604 | */ |
| 605 | struct acl *parse_acl(const char **args, struct list *known_acl) |
| 606 | { |
| 607 | __label__ out_return, out_free_acl_expr, out_free_name; |
| 608 | struct acl *cur_acl; |
| 609 | struct acl_expr *acl_expr; |
| 610 | char *name; |
| 611 | |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 612 | if (invalid_char(*args)) |
| 613 | goto out_return; |
| 614 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 615 | acl_expr = parse_acl_expr(args + 1); |
| 616 | if (!acl_expr) |
| 617 | goto out_return; |
| 618 | |
| 619 | cur_acl = find_acl_by_name(args[0], known_acl); |
| 620 | if (!cur_acl) { |
| 621 | name = strdup(args[0]); |
| 622 | if (!name) |
| 623 | goto out_free_acl_expr; |
| 624 | cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl)); |
| 625 | if (cur_acl == NULL) |
| 626 | goto out_free_name; |
| 627 | |
| 628 | LIST_INIT(&cur_acl->expr); |
| 629 | LIST_ADDQ(known_acl, &cur_acl->list); |
| 630 | cur_acl->name = name; |
| 631 | } |
| 632 | |
| 633 | LIST_ADDQ(&cur_acl->expr, &acl_expr->list); |
| 634 | return cur_acl; |
| 635 | |
| 636 | out_free_name: |
| 637 | free(name); |
| 638 | out_free_acl_expr: |
| 639 | prune_acl_expr(acl_expr); |
| 640 | free(acl_expr); |
| 641 | out_return: |
| 642 | return NULL; |
| 643 | } |
| 644 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 645 | /* Some useful ACLs provided by default. Only those used are allocated. */ |
| 646 | |
| 647 | const struct { |
| 648 | const char *name; |
| 649 | const char *expr[4]; /* put enough for longest expression */ |
| 650 | } default_acl_list[] = { |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 651 | { .name = "TRUE", .expr = {"always_true","1",""}}, |
| 652 | { .name = "FALSE", .expr = {"always_false","0",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 653 | { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}}, |
| 654 | { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}}, |
| 655 | { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}}, |
| 656 | { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}}, |
| 657 | { .name = "METH_GET", .expr = {"method","GET","HEAD",""}}, |
| 658 | { .name = "METH_HEAD", .expr = {"method","HEAD",""}}, |
| 659 | { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}}, |
| 660 | { .name = "METH_POST", .expr = {"method","POST",""}}, |
| 661 | { .name = "METH_TRACE", .expr = {"method","TRACE",""}}, |
| 662 | { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}}, |
| 663 | { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}}, |
| 664 | { .name = "HTTP_URL_STAR", .expr = {"url","*",""}}, |
| 665 | { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}}, |
| 666 | { .name = NULL, .expr = {""}} |
| 667 | }; |
| 668 | |
| 669 | /* Find a default ACL from the default_acl list, compile it and return it. |
| 670 | * If the ACL is not found, NULL is returned. In theory, it cannot fail, |
| 671 | * except when default ACLs are broken, in which case it will return NULL. |
| 672 | * If <known_acl> is not NULL, the ACL will be queued at its tail. |
| 673 | */ |
| 674 | struct acl *find_acl_default(const char *acl_name, struct list *known_acl) |
| 675 | { |
| 676 | __label__ out_return, out_free_acl_expr, out_free_name; |
| 677 | struct acl *cur_acl; |
| 678 | struct acl_expr *acl_expr; |
| 679 | char *name; |
| 680 | int index; |
| 681 | |
| 682 | for (index = 0; default_acl_list[index].name != NULL; index++) { |
| 683 | if (strcmp(acl_name, default_acl_list[index].name) == 0) |
| 684 | break; |
| 685 | } |
| 686 | |
| 687 | if (default_acl_list[index].name == NULL) |
| 688 | return NULL; |
| 689 | |
| 690 | acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr); |
| 691 | if (!acl_expr) |
| 692 | goto out_return; |
| 693 | |
| 694 | name = strdup(acl_name); |
| 695 | if (!name) |
| 696 | goto out_free_acl_expr; |
| 697 | cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl)); |
| 698 | if (cur_acl == NULL) |
| 699 | goto out_free_name; |
| 700 | |
| 701 | cur_acl->name = name; |
| 702 | LIST_INIT(&cur_acl->expr); |
| 703 | LIST_ADDQ(&cur_acl->expr, &acl_expr->list); |
| 704 | if (known_acl) |
| 705 | LIST_ADDQ(known_acl, &cur_acl->list); |
| 706 | |
| 707 | return cur_acl; |
| 708 | |
| 709 | out_free_name: |
| 710 | free(name); |
| 711 | out_free_acl_expr: |
| 712 | prune_acl_expr(acl_expr); |
| 713 | free(acl_expr); |
| 714 | out_return: |
| 715 | return NULL; |
| 716 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 717 | |
| 718 | /* Purge everything in the acl_cond <cond>, then return <cond>. */ |
| 719 | struct acl_cond *prune_acl_cond(struct acl_cond *cond) |
| 720 | { |
| 721 | struct acl_term_suite *suite, *tmp_suite; |
| 722 | struct acl_term *term, *tmp_term; |
| 723 | |
| 724 | /* iterate through all term suites and free all terms and all suites */ |
| 725 | list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) { |
| 726 | list_for_each_entry_safe(term, tmp_term, &suite->terms, list) |
| 727 | free(term); |
| 728 | free(suite); |
| 729 | } |
| 730 | return cond; |
| 731 | } |
| 732 | |
| 733 | /* Parse an ACL condition starting at <args>[0], relying on a list of already |
| 734 | * known ACLs passed in <known_acl>. The new condition is returned (or NULL in |
| 735 | * case of low memory). Supports multiple conditions separated by "or". |
| 736 | */ |
| 737 | struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, int pol) |
| 738 | { |
| 739 | __label__ out_return, out_free_suite, out_free_term; |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 740 | int arg, neg; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 741 | const char *word; |
| 742 | struct acl *cur_acl; |
| 743 | struct acl_term *cur_term; |
| 744 | struct acl_term_suite *cur_suite; |
| 745 | struct acl_cond *cond; |
| 746 | |
| 747 | cond = (struct acl_cond *)calloc(1, sizeof(*cond)); |
| 748 | if (cond == NULL) |
| 749 | goto out_return; |
| 750 | |
| 751 | LIST_INIT(&cond->list); |
| 752 | LIST_INIT(&cond->suites); |
| 753 | cond->pol = pol; |
| 754 | |
| 755 | cur_suite = NULL; |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 756 | neg = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 757 | for (arg = 0; *args[arg]; arg++) { |
| 758 | word = args[arg]; |
| 759 | |
| 760 | /* remove as many exclamation marks as we can */ |
| 761 | while (*word == '!') { |
| 762 | neg = !neg; |
| 763 | word++; |
| 764 | } |
| 765 | |
| 766 | /* an empty word is allowed because we cannot force the user to |
| 767 | * always think about not leaving exclamation marks alone. |
| 768 | */ |
| 769 | if (!*word) |
| 770 | continue; |
| 771 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 772 | if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) { |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 773 | /* new term suite */ |
| 774 | cur_suite = NULL; |
| 775 | neg = 0; |
| 776 | continue; |
| 777 | } |
| 778 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 779 | /* search for <word> in the known ACL names. If we do not find |
| 780 | * it, let's look for it in the default ACLs, and if found, add |
| 781 | * it to the list of ACLs of this proxy. This makes it possible |
| 782 | * to override them. |
| 783 | */ |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 784 | cur_acl = find_acl_by_name(word, known_acl); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 785 | if (cur_acl == NULL) { |
| 786 | cur_acl = find_acl_default(word, known_acl); |
| 787 | if (cur_acl == NULL) |
| 788 | goto out_free_suite; |
| 789 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 790 | |
| 791 | cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term)); |
| 792 | if (cur_term == NULL) |
| 793 | goto out_free_suite; |
| 794 | |
| 795 | cur_term->acl = cur_acl; |
| 796 | cur_term->neg = neg; |
| 797 | |
| 798 | if (!cur_suite) { |
| 799 | cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite)); |
| 800 | if (cur_term == NULL) |
| 801 | goto out_free_term; |
| 802 | LIST_INIT(&cur_suite->terms); |
| 803 | LIST_ADDQ(&cond->suites, &cur_suite->list); |
| 804 | } |
| 805 | LIST_ADDQ(&cur_suite->terms, &cur_term->list); |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 806 | neg = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | return cond; |
| 810 | |
| 811 | out_free_term: |
| 812 | free(cur_term); |
| 813 | out_free_suite: |
| 814 | prune_acl_cond(cond); |
| 815 | free(cond); |
| 816 | out_return: |
| 817 | return NULL; |
| 818 | } |
| 819 | |
| 820 | /* Execute condition <cond> and return 0 if test fails or 1 if test succeeds. |
| 821 | * This function only computes the condition, it does not apply the polarity |
| 822 | * required by IF/UNLESS, it's up to the caller to do this. |
| 823 | */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 824 | int acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *l4, void *l7, int dir) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 825 | { |
| 826 | __label__ fetch_next; |
| 827 | struct acl_term_suite *suite; |
| 828 | struct acl_term *term; |
| 829 | struct acl_expr *expr; |
| 830 | struct acl *acl; |
| 831 | struct acl_pattern *pattern; |
| 832 | struct acl_test test; |
| 833 | int acl_res, pat_res, suite_res, cond_res; |
| 834 | |
| 835 | /* we're doing a logical OR between conditions so we initialize to FAIL */ |
| 836 | cond_res = ACL_PAT_FAIL; |
| 837 | list_for_each_entry(suite, &cond->suites, list) { |
| 838 | /* evaluate condition suite <suite>. We stop at the first term |
| 839 | * which does not return ACL_PAT_PASS. |
| 840 | */ |
| 841 | |
| 842 | /* we're doing a logical AND between terms, so we must set the |
| 843 | * initial value to PASS. |
| 844 | */ |
| 845 | suite_res = ACL_PAT_PASS; |
| 846 | list_for_each_entry(term, &suite->terms, list) { |
| 847 | acl = term->acl; |
| 848 | |
| 849 | /* FIXME: use cache ! |
| 850 | * check acl->cache_idx for this. |
| 851 | */ |
| 852 | |
| 853 | /* ACL result not cached. Let's scan all the expressions |
| 854 | * and use the first one to match. |
| 855 | */ |
| 856 | acl_res = ACL_PAT_FAIL; |
| 857 | list_for_each_entry(expr, &acl->expr, list) { |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 858 | /* we need to reset context and flags */ |
| 859 | memset(&test, 0, sizeof(test)); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 860 | fetch_next: |
Willy Tarreau | 97be145 | 2007-06-10 11:47:14 +0200 | [diff] [blame] | 861 | if (!expr->kw->fetch(px, l4, l7, dir, expr, &test)) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 862 | continue; |
| 863 | |
| 864 | /* apply all tests to this value */ |
| 865 | list_for_each_entry(pattern, &expr->patterns, list) { |
| 866 | pat_res = expr->kw->match(&test, pattern); |
| 867 | |
| 868 | if (pat_res & ACL_PAT_MISS) { |
| 869 | /* there is at least one test which might be worth retrying later. */ |
| 870 | acl_res |= ACL_PAT_MISS; |
| 871 | continue; |
| 872 | } else if (pat_res & ACL_PAT_PASS) { |
| 873 | /* we found one ! */ |
| 874 | acl_res |= ACL_PAT_PASS; |
| 875 | break; |
| 876 | } |
| 877 | } |
| 878 | /* |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 879 | * OK now we have the result of this expression in acl_res. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 880 | * - we have the PASS bit set if at least one pattern matched ; |
| 881 | * - we have the MISS bit set if at least one pattern may match |
| 882 | * later so that we should not cache a failure ; |
| 883 | * |
| 884 | * Then if (PASS || !MISS) we can cache the result, and put |
| 885 | * (test.flags & ACL_TEST_F_VOLATILE) in the cache flags. |
| 886 | * |
| 887 | * FIXME: implement cache. |
| 888 | * |
| 889 | */ |
| 890 | |
| 891 | /* now we may have some cleanup to do */ |
| 892 | if (test.flags & ACL_TEST_F_MUST_FREE) { |
| 893 | free(test.ptr); |
| 894 | test.len = 0; |
| 895 | } |
| 896 | |
| 897 | if (acl_res & ACL_PAT_PASS) |
| 898 | break; |
| 899 | |
| 900 | /* prepare to test another expression */ |
| 901 | acl_res = ACL_PAT_FAIL; |
| 902 | |
| 903 | if (test.flags & ACL_TEST_F_FETCH_MORE) |
| 904 | goto fetch_next; |
| 905 | } |
| 906 | /* |
| 907 | * Here we have the result of an ACL (cached or not). |
| 908 | * ACLs are combined, negated or not, to form conditions. |
| 909 | */ |
| 910 | |
| 911 | acl_res &= ACL_PAT_PASS; |
| 912 | if (term->neg) |
| 913 | acl_res ^= ACL_PAT_PASS; |
| 914 | |
| 915 | suite_res &= acl_res; |
| 916 | if (!(suite_res & ACL_PAT_PASS)) |
| 917 | break; |
| 918 | } |
| 919 | cond_res |= suite_res; |
| 920 | if (cond_res & ACL_PAT_PASS) |
| 921 | break; |
| 922 | } |
| 923 | |
| 924 | return (cond_res & ACL_PAT_PASS) ? 1 : 0; |
| 925 | } |
| 926 | |
| 927 | |
| 928 | /************************************************************************/ |
| 929 | /* All supported keywords must be declared here. */ |
| 930 | /************************************************************************/ |
| 931 | |
| 932 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 933 | static struct acl_kw_list acl_kws = {{ },{ |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 934 | { "always_true", acl_parse_nothing, acl_fetch_nothing, acl_match_true }, |
| 935 | { "always_false", acl_parse_nothing, acl_fetch_nothing, acl_match_false }, |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 936 | #if 0 |
| 937 | { "time", acl_parse_time, acl_fetch_time, acl_match_time }, |
| 938 | #endif |
| 939 | { NULL, NULL, NULL, NULL } |
| 940 | }}; |
| 941 | |
| 942 | |
| 943 | __attribute__((constructor)) |
| 944 | static void __acl_init(void) |
| 945 | { |
| 946 | acl_register_keywords(&acl_kws); |
| 947 | } |
| 948 | |
| 949 | |
| 950 | /* |
| 951 | * Local variables: |
| 952 | * c-indent-level: 8 |
| 953 | * c-basic-offset: 8 |
| 954 | * End: |
| 955 | */ |