Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ACL management functions. |
| 3 | * |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 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> |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 20 | #include <common/uri_auth.h> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 22 | #include <types/global.h> |
| 23 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 24 | #include <proto/acl.h> |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 25 | #include <proto/arg.h> |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 26 | #include <proto/auth.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 27 | #include <proto/channel.h> |
Willy Tarreau | 404e8ab | 2009-07-26 19:40:40 +0200 | [diff] [blame] | 28 | #include <proto/log.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 29 | #include <proto/pattern.h> |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 30 | #include <proto/proxy.h> |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 31 | #include <proto/sample.h> |
Willy Tarreau | d28c353 | 2012-04-19 19:28:33 +0200 | [diff] [blame] | 32 | #include <proto/stick_table.h> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 33 | |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 34 | #include <ebsttree.h> |
| 35 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 36 | /* List head of all known ACL keywords */ |
| 37 | static struct acl_kw_list acl_keywords = { |
| 38 | .list = LIST_HEAD_INIT(acl_keywords.list) |
| 39 | }; |
| 40 | |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 41 | /* input values are 0 or 3, output is the same */ |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 42 | static inline enum acl_test_res pat2acl(struct pattern *pat) |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 43 | { |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 44 | if (pat) |
| 45 | return ACL_TEST_PASS; |
| 46 | else |
| 47 | return ACL_TEST_FAIL; |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 48 | } |
| 49 | |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 50 | /* |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 51 | * Registers the ACL keyword list <kwl> as a list of valid keywords for next |
| 52 | * parsing sessions. |
| 53 | */ |
| 54 | void acl_register_keywords(struct acl_kw_list *kwl) |
| 55 | { |
| 56 | LIST_ADDQ(&acl_keywords.list, &kwl->list); |
| 57 | } |
| 58 | |
| 59 | /* |
| 60 | * Unregisters the ACL keyword list <kwl> from the list of valid keywords. |
| 61 | */ |
| 62 | void acl_unregister_keywords(struct acl_kw_list *kwl) |
| 63 | { |
| 64 | LIST_DEL(&kwl->list); |
| 65 | LIST_INIT(&kwl->list); |
| 66 | } |
| 67 | |
| 68 | /* Return a pointer to the ACL <name> within the list starting at <head>, or |
| 69 | * NULL if not found. |
| 70 | */ |
| 71 | struct acl *find_acl_by_name(const char *name, struct list *head) |
| 72 | { |
| 73 | struct acl *acl; |
| 74 | list_for_each_entry(acl, head, list) { |
| 75 | if (strcmp(acl->name, name) == 0) |
| 76 | return acl; |
| 77 | } |
| 78 | return NULL; |
| 79 | } |
| 80 | |
| 81 | /* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if |
Willy Tarreau | 4bfa422 | 2013-12-16 22:01:06 +0100 | [diff] [blame] | 82 | * <kw> contains an opening parenthesis or a comma, only the left part of it is |
| 83 | * checked. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 84 | */ |
| 85 | struct acl_keyword *find_acl_kw(const char *kw) |
| 86 | { |
| 87 | int index; |
| 88 | const char *kwend; |
| 89 | struct acl_kw_list *kwl; |
| 90 | |
Willy Tarreau | 4bfa422 | 2013-12-16 22:01:06 +0100 | [diff] [blame] | 91 | kwend = kw; |
| 92 | while (*kwend && *kwend != '(' && *kwend != ',') |
| 93 | kwend++; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 94 | |
| 95 | list_for_each_entry(kwl, &acl_keywords.list, list) { |
| 96 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 97 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 98 | kwl->kw[index].kw[kwend-kw] == 0) |
| 99 | return &kwl->kw[index]; |
| 100 | } |
| 101 | } |
| 102 | return NULL; |
| 103 | } |
| 104 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 105 | static struct acl_expr *prune_acl_expr(struct acl_expr *expr) |
| 106 | { |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 107 | struct arg *arg; |
Willy Tarreau | 145325e | 2017-04-12 23:03:31 +0200 | [diff] [blame] | 108 | int unresolved = 0; |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 109 | |
Thierry FOURNIER | 6f7203d | 2014-01-14 16:24:51 +0100 | [diff] [blame] | 110 | pattern_prune(&expr->pat); |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 111 | |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 112 | for (arg = expr->smp->arg_p; arg; arg++) { |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 113 | if (arg->type == ARGT_STOP) |
| 114 | break; |
Willy Tarreau | 496aa01 | 2012-06-01 10:38:29 +0200 | [diff] [blame] | 115 | if (arg->type == ARGT_STR || arg->unresolved) { |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 116 | free(arg->data.str.str); |
| 117 | arg->data.str.str = NULL; |
Willy Tarreau | bcfe23a | 2017-04-19 11:13:48 +0200 | [diff] [blame] | 118 | arg->data.str.len = 0; |
Willy Tarreau | 145325e | 2017-04-12 23:03:31 +0200 | [diff] [blame] | 119 | unresolved |= arg->unresolved; |
Willy Tarreau | 496aa01 | 2012-06-01 10:38:29 +0200 | [diff] [blame] | 120 | arg->unresolved = 0; |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 121 | } |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 122 | } |
| 123 | |
Willy Tarreau | 145325e | 2017-04-12 23:03:31 +0200 | [diff] [blame] | 124 | if (expr->smp->arg_p != empty_arg_list && !unresolved) |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 125 | free(expr->smp->arg_p); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 126 | return expr; |
| 127 | } |
| 128 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 129 | /* Parse an ACL expression starting at <args>[0], and return it. If <err> is |
| 130 | * not NULL, it will be filled with a pointer to an error message in case of |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 131 | * error. This pointer must be freeable or NULL. <al> is an arg_list serving |
| 132 | * as a list head to report missing dependencies. |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 133 | * |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 134 | * Right now, the only accepted syntax is : |
| 135 | * <subject> [<value>...] |
| 136 | */ |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 137 | struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al, |
| 138 | const char *file, int line) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 139 | { |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 140 | __label__ out_return, out_free_expr; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 141 | struct acl_expr *expr; |
| 142 | struct acl_keyword *aclkw; |
Christopher Faulet | 54ceb04 | 2017-06-14 14:41:33 +0200 | [diff] [blame] | 143 | int refflags, patflags; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 144 | const char *arg; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 145 | struct sample_expr *smp = NULL; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 146 | int idx = 0; |
| 147 | char *ckw = NULL; |
| 148 | const char *begw; |
| 149 | const char *endw; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 150 | const char *endt; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 151 | int cur_type; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 152 | int nbargs; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 153 | int operator = STD_OP_EQ; |
| 154 | int op; |
| 155 | int contain_colon, have_dot; |
| 156 | const char *dot; |
| 157 | signed long long value, minor; |
| 158 | /* The following buffer contain two numbers, a ':' separator and the final \0. */ |
| 159 | char buffer[NB_LLMAX_STR + 1 + NB_LLMAX_STR + 1]; |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 160 | int is_loaded; |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 161 | int unique_id; |
| 162 | char *error; |
| 163 | struct pat_ref *ref; |
| 164 | struct pattern_expr *pattern_expr; |
Thierry FOURNIER | 9860c41 | 2014-01-29 14:23:29 +0100 | [diff] [blame] | 165 | int load_as_map = 0; |
Willy Tarreau | 6f0ddca | 2014-08-29 17:36:40 +0200 | [diff] [blame] | 166 | int acl_conv_found = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 167 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 168 | /* First, we look for an ACL keyword. And if we don't find one, then |
| 169 | * we look for a sample fetch expression starting with a sample fetch |
| 170 | * keyword. |
Willy Tarreau | bef91e7 | 2013-03-31 23:14:46 +0200 | [diff] [blame] | 171 | */ |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 172 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 173 | al->ctx = ARGC_ACL; // to report errors while resolving args late |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 174 | al->kw = *args; |
| 175 | al->conv = NULL; |
| 176 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 177 | aclkw = find_acl_kw(args[0]); |
Willy Tarreau | 2049092 | 2014-03-17 18:04:27 +0100 | [diff] [blame] | 178 | if (aclkw) { |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 179 | /* OK we have a real ACL keyword */ |
Willy Tarreau | 9987ea9 | 2013-06-11 21:09:06 +0200 | [diff] [blame] | 180 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 181 | /* build new sample expression for this ACL */ |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 182 | smp = calloc(1, sizeof(*smp)); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 183 | if (!smp) { |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 184 | memprintf(err, "out of memory when parsing ACL expression"); |
| 185 | goto out_return; |
| 186 | } |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 187 | LIST_INIT(&(smp->conv_exprs)); |
| 188 | smp->fetch = aclkw->smp; |
| 189 | smp->arg_p = empty_arg_list; |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 190 | |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 191 | /* look for the begining of the subject arguments */ |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 192 | for (arg = args[0]; *arg && *arg != '(' && *arg != ','; arg++); |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 193 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 194 | endt = arg; |
| 195 | if (*endt == '(') { |
| 196 | /* look for the end of this term and skip the opening parenthesis */ |
| 197 | endt = ++arg; |
| 198 | while (*endt && *endt != ')') |
| 199 | endt++; |
| 200 | if (*endt != ')') { |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 201 | memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw); |
| 202 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 203 | } |
| 204 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 205 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 206 | /* At this point, we have : |
| 207 | * - args[0] : beginning of the keyword |
| 208 | * - arg : end of the keyword, first character not part of keyword |
| 209 | * nor the opening parenthesis (so first character of args |
| 210 | * if present). |
| 211 | * - endt : end of the term (=arg or last parenthesis if args are present) |
| 212 | */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 213 | nbargs = make_arg_list(arg, endt - arg, smp->fetch->arg_mask, &smp->arg_p, |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 214 | err, NULL, NULL, al); |
| 215 | if (nbargs < 0) { |
| 216 | /* note that make_arg_list will have set <err> here */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 217 | memprintf(err, "ACL keyword '%s' : %s", aclkw->kw, *err); |
| 218 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 219 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 220 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 221 | if (!smp->arg_p) { |
| 222 | smp->arg_p = empty_arg_list; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 223 | } |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 224 | else if (smp->fetch->val_args && !smp->fetch->val_args(smp->arg_p, err)) { |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 225 | /* invalid keyword argument, error must have been |
| 226 | * set by val_args(). |
| 227 | */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 228 | memprintf(err, "in argument to '%s', %s", aclkw->kw, *err); |
| 229 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 230 | } |
| 231 | arg = endt; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 232 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 233 | /* look for the begining of the converters list. Those directly attached |
| 234 | * to the ACL keyword are found just after <arg> which points to the comma. |
Willy Tarreau | 6f0ddca | 2014-08-29 17:36:40 +0200 | [diff] [blame] | 235 | * If we find any converter, then we don't use the ACL keyword's match |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 236 | * anymore but the one related to the converter's output type. |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 237 | */ |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 238 | cur_type = smp->fetch->out_type; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 239 | while (*arg) { |
| 240 | struct sample_conv *conv; |
| 241 | struct sample_conv_expr *conv_expr; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 242 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 243 | if (*arg == ')') /* skip last closing parenthesis */ |
| 244 | arg++; |
| 245 | |
| 246 | if (*arg && *arg != ',') { |
| 247 | if (ckw) |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 248 | memprintf(err, "ACL keyword '%s' : missing comma after converter '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 249 | aclkw->kw, ckw); |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 250 | else |
| 251 | memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 252 | aclkw->kw); |
| 253 | goto out_free_smp; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 254 | } |
Willy Tarreau | ae52f06 | 2012-04-26 12:13:35 +0200 | [diff] [blame] | 255 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 256 | while (*arg == ',') /* then trailing commas */ |
| 257 | arg++; |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 258 | |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 259 | begw = arg; /* start of converter keyword */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 260 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 261 | if (!*begw) |
| 262 | /* none ? end of converters */ |
| 263 | break; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 264 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 265 | for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++); |
Willy Tarreau | 9ca6936 | 2013-10-22 19:10:06 +0200 | [diff] [blame] | 266 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 267 | free(ckw); |
| 268 | ckw = my_strndup(begw, endw - begw); |
Willy Tarreau | f75d008 | 2013-04-07 21:20:44 +0200 | [diff] [blame] | 269 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 270 | conv = find_sample_conv(begw, endw - begw); |
| 271 | if (!conv) { |
| 272 | /* Unknown converter method */ |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 273 | memprintf(err, "ACL keyword '%s' : unknown converter '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 274 | aclkw->kw, ckw); |
| 275 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 276 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 277 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 278 | arg = endw; |
| 279 | if (*arg == '(') { |
| 280 | /* look for the end of this term */ |
| 281 | while (*arg && *arg != ')') |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 282 | arg++; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 283 | if (*arg != ')') { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 284 | memprintf(err, "ACL keyword '%s' : syntax error: missing ')' after converter '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 285 | aclkw->kw, ckw); |
| 286 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 287 | } |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 288 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 289 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 290 | if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 291 | memprintf(err, "ACL keyword '%s' : returns type of converter '%s' is unknown.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 292 | aclkw->kw, ckw); |
| 293 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 294 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 295 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 296 | /* If impossible type conversion */ |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 297 | if (!sample_casts[cur_type][conv->in_type]) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 298 | memprintf(err, "ACL keyword '%s' : converter '%s' cannot be applied.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 299 | aclkw->kw, ckw); |
| 300 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 301 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 302 | |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 303 | cur_type = conv->out_type; |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 304 | conv_expr = calloc(1, sizeof(*conv_expr)); |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 305 | if (!conv_expr) |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 306 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 307 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 308 | LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list)); |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 309 | conv_expr->conv = conv; |
Willy Tarreau | 6f0ddca | 2014-08-29 17:36:40 +0200 | [diff] [blame] | 310 | acl_conv_found = 1; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 311 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 312 | if (arg != endw) { |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 313 | int err_arg; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 314 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 315 | if (!conv->arg_mask) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 316 | memprintf(err, "ACL keyword '%s' : converter '%s' does not support any args.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 317 | aclkw->kw, ckw); |
| 318 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 319 | } |
| 320 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 321 | al->kw = smp->fetch->kw; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 322 | al->conv = conv_expr->conv->kw; |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 323 | if (make_arg_list(endw + 1, arg - endw - 1, conv->arg_mask, &conv_expr->arg_p, err, NULL, &err_arg, al) < 0) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 324 | memprintf(err, "ACL keyword '%s' : invalid arg %d in converter '%s' : %s.", |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 325 | aclkw->kw, err_arg+1, ckw, *err); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 326 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 327 | } |
| 328 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 329 | if (!conv_expr->arg_p) |
| 330 | conv_expr->arg_p = empty_arg_list; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 331 | |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 332 | if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err)) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 333 | memprintf(err, "ACL keyword '%s' : invalid args in converter '%s' : %s.", |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 334 | aclkw->kw, ckw, *err); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 335 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 336 | } |
| 337 | } |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 338 | else if (ARGM(conv->arg_mask)) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 339 | memprintf(err, "ACL keyword '%s' : missing args for converter '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 340 | aclkw->kw, ckw); |
| 341 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 342 | } |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 343 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 344 | } |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 345 | else { |
| 346 | /* This is not an ACL keyword, so we hope this is a sample fetch |
| 347 | * keyword that we're going to transparently use as an ACL. If |
| 348 | * so, we retrieve a completely parsed expression with args and |
| 349 | * convs already done. |
| 350 | */ |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 351 | smp = sample_parse_expr((char **)args, &idx, file, line, err, al); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 352 | if (!smp) { |
| 353 | memprintf(err, "%s in ACL expression '%s'", *err, *args); |
| 354 | goto out_return; |
| 355 | } |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 356 | cur_type = smp_expr_output_type(smp); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 357 | } |
| 358 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 359 | expr = calloc(1, sizeof(*expr)); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 360 | if (!expr) { |
| 361 | memprintf(err, "out of memory when parsing ACL expression"); |
| 362 | goto out_return; |
| 363 | } |
| 364 | |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 365 | pattern_init_head(&expr->pat); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 366 | |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 367 | expr->pat.expect_type = cur_type; |
| 368 | expr->smp = smp; |
| 369 | expr->kw = smp->fetch->kw; |
| 370 | smp = NULL; /* don't free it anymore */ |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 371 | |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 372 | if (aclkw && !acl_conv_found) { |
| 373 | expr->kw = aclkw->kw; |
| 374 | expr->pat.parse = aclkw->parse ? aclkw->parse : pat_parse_fcts[aclkw->match_type]; |
| 375 | expr->pat.index = aclkw->index ? aclkw->index : pat_index_fcts[aclkw->match_type]; |
| 376 | expr->pat.match = aclkw->match ? aclkw->match : pat_match_fcts[aclkw->match_type]; |
| 377 | expr->pat.delete = aclkw->delete ? aclkw->delete : pat_delete_fcts[aclkw->match_type]; |
| 378 | expr->pat.prune = aclkw->prune ? aclkw->prune : pat_prune_fcts[aclkw->match_type]; |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 379 | } |
| 380 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 381 | if (!expr->pat.parse) { |
Willy Tarreau | aa4e32e | 2014-08-29 19:09:48 +0200 | [diff] [blame] | 382 | /* Parse/index/match functions depend on the expression type, |
| 383 | * so we have to map them now. Some types can be automatically |
| 384 | * converted. |
| 385 | */ |
| 386 | switch (cur_type) { |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 387 | case SMP_T_BOOL: |
| 388 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL]; |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 389 | expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL]; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 390 | expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL]; |
Thierry FOURNIER | b113650 | 2014-01-15 11:38:49 +0100 | [diff] [blame] | 391 | expr->pat.delete = pat_delete_fcts[PAT_MATCH_BOOL]; |
Thierry FOURNIER | 6f7203d | 2014-01-14 16:24:51 +0100 | [diff] [blame] | 392 | expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL]; |
Thierry FOURNIER | 5d34408 | 2014-01-27 14:19:53 +0100 | [diff] [blame] | 393 | expr->pat.expect_type = pat_match_types[PAT_MATCH_BOOL]; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 394 | break; |
| 395 | case SMP_T_SINT: |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 396 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT]; |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 397 | expr->pat.index = pat_index_fcts[PAT_MATCH_INT]; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 398 | expr->pat.match = pat_match_fcts[PAT_MATCH_INT]; |
Thierry FOURNIER | b113650 | 2014-01-15 11:38:49 +0100 | [diff] [blame] | 399 | expr->pat.delete = pat_delete_fcts[PAT_MATCH_INT]; |
Thierry FOURNIER | 6f7203d | 2014-01-14 16:24:51 +0100 | [diff] [blame] | 400 | expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT]; |
Thierry FOURNIER | 5d34408 | 2014-01-27 14:19:53 +0100 | [diff] [blame] | 401 | expr->pat.expect_type = pat_match_types[PAT_MATCH_INT]; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 402 | break; |
| 403 | case SMP_T_IPV4: |
| 404 | case SMP_T_IPV6: |
| 405 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP]; |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 406 | expr->pat.index = pat_index_fcts[PAT_MATCH_IP]; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 407 | expr->pat.match = pat_match_fcts[PAT_MATCH_IP]; |
Thierry FOURNIER | b113650 | 2014-01-15 11:38:49 +0100 | [diff] [blame] | 408 | expr->pat.delete = pat_delete_fcts[PAT_MATCH_IP]; |
Thierry FOURNIER | 6f7203d | 2014-01-14 16:24:51 +0100 | [diff] [blame] | 409 | expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP]; |
Thierry FOURNIER | 5d34408 | 2014-01-27 14:19:53 +0100 | [diff] [blame] | 410 | expr->pat.expect_type = pat_match_types[PAT_MATCH_IP]; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 411 | break; |
Thierry FOURNIER | 9fefbd5 | 2014-05-11 15:15:00 +0200 | [diff] [blame] | 412 | case SMP_T_STR: |
| 413 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_STR]; |
| 414 | expr->pat.index = pat_index_fcts[PAT_MATCH_STR]; |
| 415 | expr->pat.match = pat_match_fcts[PAT_MATCH_STR]; |
| 416 | expr->pat.delete = pat_delete_fcts[PAT_MATCH_STR]; |
| 417 | expr->pat.prune = pat_prune_fcts[PAT_MATCH_STR]; |
| 418 | expr->pat.expect_type = pat_match_types[PAT_MATCH_STR]; |
| 419 | break; |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 420 | } |
| 421 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 422 | |
Willy Tarreau | 3c3dfd5 | 2013-11-04 18:09:12 +0100 | [diff] [blame] | 423 | /* Additional check to protect against common mistakes */ |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 424 | if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) { |
Willy Tarreau | 3c3dfd5 | 2013-11-04 18:09:12 +0100 | [diff] [blame] | 425 | Warning("parsing acl keyword '%s' :\n" |
| 426 | " no pattern to match against were provided, so this ACL will never match.\n" |
| 427 | " If this is what you intended, please add '--' to get rid of this warning.\n" |
| 428 | " If you intended to match only for existence, please use '-m found'.\n" |
| 429 | " If you wanted to force an int to match as a bool, please use '-m bool'.\n" |
| 430 | "\n", |
| 431 | args[0]); |
| 432 | } |
| 433 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 434 | args++; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 435 | |
| 436 | /* check for options before patterns. Supported options are : |
| 437 | * -i : ignore case for all patterns by default |
| 438 | * -f : read patterns from those files |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 439 | * -m : force matching method (must be used before -f) |
Thierry FOURNIER | 9860c41 | 2014-01-29 14:23:29 +0100 | [diff] [blame] | 440 | * -M : load the file as map file |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 441 | * -u : force the unique id of the acl |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 442 | * -- : everything after this is not an option |
| 443 | */ |
Christopher Faulet | 54ceb04 | 2017-06-14 14:41:33 +0200 | [diff] [blame] | 444 | refflags = PAT_REF_ACL; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 445 | patflags = 0; |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 446 | is_loaded = 0; |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 447 | unique_id = -1; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 448 | while (**args == '-') { |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 449 | if (strcmp(*args, "-i") == 0) |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 450 | patflags |= PAT_MF_IGNORE_CASE; |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 451 | else if (strcmp(*args, "-n") == 0) |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 452 | patflags |= PAT_MF_NO_DNS; |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 453 | else if (strcmp(*args, "-u") == 0) { |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 454 | unique_id = strtol(args[1], &error, 10); |
| 455 | if (*error != '\0') { |
| 456 | memprintf(err, "the argument of -u must be an integer"); |
| 457 | goto out_free_expr; |
| 458 | } |
| 459 | |
| 460 | /* Check if this id is really unique. */ |
| 461 | if (pat_ref_lookupid(unique_id)) { |
| 462 | memprintf(err, "the id is already used"); |
| 463 | goto out_free_expr; |
| 464 | } |
| 465 | |
| 466 | args++; |
| 467 | } |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 468 | else if (strcmp(*args, "-f") == 0) { |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 469 | if (!expr->pat.parse) { |
Willy Tarreau | 9987ea9 | 2013-06-11 21:09:06 +0200 | [diff] [blame] | 470 | memprintf(err, "matching method must be specified first (using '-m') when using a sample fetch of this type ('%s')", expr->kw); |
Willy Tarreau | bef91e7 | 2013-03-31 23:14:46 +0200 | [diff] [blame] | 471 | goto out_free_expr; |
| 472 | } |
| 473 | |
Christopher Faulet | 54ceb04 | 2017-06-14 14:41:33 +0200 | [diff] [blame] | 474 | if (!pattern_read_from_file(&expr->pat, refflags, args[1], patflags, load_as_map, err, file, line)) |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 475 | goto out_free_expr; |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 476 | is_loaded = 1; |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 477 | args++; |
| 478 | } |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 479 | else if (strcmp(*args, "-m") == 0) { |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 480 | int idx; |
| 481 | |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 482 | if (is_loaded) { |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 483 | memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression"); |
| 484 | goto out_free_expr; |
| 485 | } |
| 486 | |
Willy Tarreau | 6f8fe31 | 2013-11-28 22:24:25 +0100 | [diff] [blame] | 487 | idx = pat_find_match_name(args[1]); |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 488 | if (idx < 0) { |
| 489 | memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]); |
| 490 | goto out_free_expr; |
| 491 | } |
| 492 | |
| 493 | /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */ |
Willy Tarreau | 9bb49f6 | 2015-09-24 16:37:12 +0200 | [diff] [blame] | 494 | if (idx != PAT_MATCH_FOUND && !sample_casts[cur_type][pat_match_types[idx]]) { |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 495 | memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw); |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 496 | goto out_free_expr; |
| 497 | } |
Thierry FOURNIER | e3ded59 | 2013-12-06 15:36:54 +0100 | [diff] [blame] | 498 | expr->pat.parse = pat_parse_fcts[idx]; |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 499 | expr->pat.index = pat_index_fcts[idx]; |
Thierry FOURNIER | e3ded59 | 2013-12-06 15:36:54 +0100 | [diff] [blame] | 500 | expr->pat.match = pat_match_fcts[idx]; |
Thierry FOURNIER | b113650 | 2014-01-15 11:38:49 +0100 | [diff] [blame] | 501 | expr->pat.delete = pat_delete_fcts[idx]; |
Thierry FOURNIER | 6f7203d | 2014-01-14 16:24:51 +0100 | [diff] [blame] | 502 | expr->pat.prune = pat_prune_fcts[idx]; |
Thierry FOURNIER | 5d34408 | 2014-01-27 14:19:53 +0100 | [diff] [blame] | 503 | expr->pat.expect_type = pat_match_types[idx]; |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 504 | args++; |
| 505 | } |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 506 | else if (strcmp(*args, "-M") == 0) { |
Christopher Faulet | 54ceb04 | 2017-06-14 14:41:33 +0200 | [diff] [blame] | 507 | refflags |= PAT_REF_MAP; |
Thierry FOURNIER | 9860c41 | 2014-01-29 14:23:29 +0100 | [diff] [blame] | 508 | load_as_map = 1; |
| 509 | } |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 510 | else if (strcmp(*args, "--") == 0) { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 511 | args++; |
| 512 | break; |
| 513 | } |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 514 | else { |
| 515 | memprintf(err, "'%s' is not a valid ACL option. Please use '--' before any pattern beginning with a '-'", args[0]); |
| 516 | goto out_free_expr; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 517 | break; |
Willy Tarreau | 2039bba | 2014-05-11 09:43:46 +0200 | [diff] [blame] | 518 | } |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 519 | args++; |
| 520 | } |
| 521 | |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 522 | if (!expr->pat.parse) { |
Willy Tarreau | 9987ea9 | 2013-06-11 21:09:06 +0200 | [diff] [blame] | 523 | memprintf(err, "matching method must be specified first (using '-m') when using a sample fetch of this type ('%s')", expr->kw); |
Willy Tarreau | bef91e7 | 2013-03-31 23:14:46 +0200 | [diff] [blame] | 524 | goto out_free_expr; |
| 525 | } |
| 526 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 527 | /* Create displayed reference */ |
| 528 | snprintf(trash.str, trash.size, "acl '%s' file '%s' line %d", expr->kw, file, line); |
| 529 | trash.str[trash.size - 1] = '\0'; |
| 530 | |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 531 | /* Create new patern reference. */ |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 532 | ref = pat_ref_newid(unique_id, trash.str, PAT_REF_ACL); |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 533 | if (!ref) { |
| 534 | memprintf(err, "memory error"); |
| 535 | goto out_free_expr; |
| 536 | } |
| 537 | |
| 538 | /* Create new pattern expression associated to this reference. */ |
Emeric Brun | 7d27f3c | 2017-07-03 17:54:23 +0200 | [diff] [blame] | 539 | pattern_expr = pattern_new_expr(&expr->pat, ref, patflags, err, NULL); |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 540 | if (!pattern_expr) |
| 541 | goto out_free_expr; |
| 542 | |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 543 | /* now parse all patterns */ |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 544 | while (**args) { |
| 545 | arg = *args; |
| 546 | |
| 547 | /* Compatibility layer. Each pattern can parse only one string per pattern, |
| 548 | * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need |
| 549 | * optionnaly two operators. The first operator is the match method: eq, |
| 550 | * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions |
| 551 | * can have a compatibility syntax based on ranges: |
| 552 | * |
| 553 | * pat_parse_int(): |
| 554 | * |
| 555 | * "eq x" -> "x" or "x:x" |
| 556 | * "le x" -> ":x" |
| 557 | * "lt x" -> ":y" (with y = x - 1) |
| 558 | * "ge x" -> "x:" |
| 559 | * "gt x" -> "y:" (with y = x + 1) |
| 560 | * |
| 561 | * pat_parse_dotted_ver(): |
| 562 | * |
| 563 | * "eq x.y" -> "x.y" or "x.y:x.y" |
| 564 | * "le x.y" -> ":x.y" |
| 565 | * "lt x.y" -> ":w.z" (with w.z = x.y - 1) |
| 566 | * "ge x.y" -> "x.y:" |
| 567 | * "gt x.y" -> "w.z:" (with w.z = x.y + 1) |
| 568 | * |
| 569 | * If y is not present, assume that is "0". |
| 570 | * |
| 571 | * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The |
| 572 | * following block of code detect the operator, and rewrite each value |
| 573 | * in parsable string. |
| 574 | */ |
| 575 | if (expr->pat.parse == pat_parse_int || |
| 576 | expr->pat.parse == pat_parse_dotted_ver) { |
| 577 | /* Check for operator. If the argument is operator, memorise it and |
| 578 | * continue to the next argument. |
| 579 | */ |
| 580 | op = get_std_op(arg); |
| 581 | if (op != -1) { |
| 582 | operator = op; |
| 583 | args++; |
| 584 | continue; |
| 585 | } |
| 586 | |
| 587 | /* Check if the pattern contain ':' or '-' character. */ |
| 588 | contain_colon = (strchr(arg, ':') || strchr(arg, '-')); |
| 589 | |
| 590 | /* If the pattern contain ':' or '-' character, give it to the parser as is. |
| 591 | * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is. |
| 592 | * In other case, try to convert the value according with the operator. |
| 593 | */ |
| 594 | if (!contain_colon && operator != STD_OP_EQ) { |
| 595 | /* Search '.' separator. */ |
| 596 | dot = strchr(arg, '.'); |
| 597 | if (!dot) { |
| 598 | have_dot = 0; |
| 599 | minor = 0; |
| 600 | dot = arg + strlen(arg); |
| 601 | } |
| 602 | else |
| 603 | have_dot = 1; |
| 604 | |
| 605 | /* convert the integer minor part for the pat_parse_dotted_ver() function. */ |
| 606 | if (expr->pat.parse == pat_parse_dotted_ver && have_dot) { |
| 607 | if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) { |
| 608 | memprintf(err, "'%s' is neither a number nor a supported operator", arg); |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 609 | goto out_free_expr; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 610 | } |
| 611 | if (minor >= 65536) { |
| 612 | memprintf(err, "'%s' contains too large a minor value", arg); |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 613 | goto out_free_expr; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 614 | } |
| 615 | } |
| 616 | |
| 617 | /* convert the integer value for the pat_parse_int() function, and the |
| 618 | * integer major part for the pat_parse_dotted_ver() function. |
| 619 | */ |
| 620 | if (strl2llrc(arg, dot - arg, &value) != 0) { |
| 621 | memprintf(err, "'%s' is neither a number nor a supported operator", arg); |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 622 | goto out_free_expr; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 623 | } |
| 624 | if (expr->pat.parse == pat_parse_dotted_ver) { |
| 625 | if (value >= 65536) { |
| 626 | memprintf(err, "'%s' contains too large a major value", arg); |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 627 | goto out_free_expr; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 628 | } |
| 629 | value = (value << 16) | (minor & 0xffff); |
| 630 | } |
| 631 | |
| 632 | switch (operator) { |
| 633 | |
| 634 | case STD_OP_EQ: /* this case is not possible. */ |
| 635 | memprintf(err, "internal error"); |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 636 | goto out_free_expr; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 637 | |
| 638 | case STD_OP_GT: |
| 639 | value++; /* gt = ge + 1 */ |
| 640 | |
| 641 | case STD_OP_GE: |
| 642 | if (expr->pat.parse == pat_parse_int) |
| 643 | snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value); |
| 644 | else |
| 645 | snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:", |
| 646 | value >> 16, value & 0xffff); |
| 647 | arg = buffer; |
| 648 | break; |
| 649 | |
| 650 | case STD_OP_LT: |
| 651 | value--; /* lt = le - 1 */ |
| 652 | |
| 653 | case STD_OP_LE: |
| 654 | if (expr->pat.parse == pat_parse_int) |
| 655 | snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value); |
| 656 | else |
| 657 | snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld", |
| 658 | value >> 16, value & 0xffff); |
| 659 | arg = buffer; |
| 660 | break; |
| 661 | } |
| 662 | } |
| 663 | } |
| 664 | |
Thierry FOURNIER | 3534d88 | 2014-01-20 17:01:44 +0100 | [diff] [blame] | 665 | /* Add sample to the reference, and try to compile it fior each pattern |
| 666 | * using this value. |
| 667 | */ |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 668 | if (!pat_ref_add(ref, arg, NULL, err)) |
Thierry FOURNIER | b9b0846 | 2013-12-13 15:12:32 +0100 | [diff] [blame] | 669 | goto out_free_expr; |
Thierry FOURNIER | 511e947 | 2014-01-23 17:40:34 +0100 | [diff] [blame] | 670 | args++; |
| 671 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 672 | |
| 673 | return expr; |
| 674 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 675 | out_free_expr: |
| 676 | prune_acl_expr(expr); |
| 677 | free(expr); |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 678 | free(ckw); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 679 | out_free_smp: |
| 680 | free(smp); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 681 | out_return: |
| 682 | return NULL; |
| 683 | } |
| 684 | |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 685 | /* Purge everything in the acl <acl>, then return <acl>. */ |
| 686 | struct acl *prune_acl(struct acl *acl) { |
| 687 | |
| 688 | struct acl_expr *expr, *exprb; |
| 689 | |
| 690 | free(acl->name); |
| 691 | |
| 692 | list_for_each_entry_safe(expr, exprb, &acl->expr, list) { |
| 693 | LIST_DEL(&expr->list); |
| 694 | prune_acl_expr(expr); |
| 695 | free(expr); |
| 696 | } |
| 697 | |
| 698 | return acl; |
| 699 | } |
| 700 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 701 | /* Parse an ACL with the name starting at <args>[0], and with a list of already |
| 702 | * known ACLs in <acl>. If the ACL was not in the list, it will be added. |
Willy Tarreau | 2a56c5e | 2010-03-15 16:13:29 +0100 | [diff] [blame] | 703 | * A pointer to that ACL is returned. If the ACL has an empty name, then it's |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 704 | * an anonymous one and it won't be merged with any other one. If <err> is not |
| 705 | * NULL, it will be filled with an appropriate error. This pointer must be |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 706 | * freeable or NULL. <al> is the arg_list serving as a head for unresolved |
| 707 | * dependencies. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 708 | * |
| 709 | * args syntax: <aclname> <acl_expr> |
| 710 | */ |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 711 | struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al, |
| 712 | const char *file, int line) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 713 | { |
| 714 | __label__ out_return, out_free_acl_expr, out_free_name; |
| 715 | struct acl *cur_acl; |
| 716 | struct acl_expr *acl_expr; |
| 717 | char *name; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 718 | const char *pos; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 719 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 720 | if (**args && (pos = invalid_char(*args))) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 721 | memprintf(err, "invalid character in ACL name : '%c'", *pos); |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 722 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 723 | } |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 724 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 725 | acl_expr = parse_acl_expr(args + 1, err, al, file, line); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 726 | if (!acl_expr) { |
| 727 | /* parse_acl_expr will have filled <err> here */ |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 728 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 729 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 730 | |
Willy Tarreau | 404e8ab | 2009-07-26 19:40:40 +0200 | [diff] [blame] | 731 | /* Check for args beginning with an opening parenthesis just after the |
| 732 | * subject, as this is almost certainly a typo. Right now we can only |
| 733 | * emit a warning, so let's do so. |
| 734 | */ |
Krzysztof Piotr Oledzki | 4cdd831 | 2009-10-05 00:23:35 +0200 | [diff] [blame] | 735 | if (!strchr(args[1], '(') && *args[2] == '(') |
Willy Tarreau | 404e8ab | 2009-07-26 19:40:40 +0200 | [diff] [blame] | 736 | Warning("parsing acl '%s' :\n" |
| 737 | " matching '%s' for pattern '%s' is likely a mistake and probably\n" |
| 738 | " not what you want. Maybe you need to remove the extraneous space before '('.\n" |
| 739 | " If you are really sure this is not an error, please insert '--' between the\n" |
| 740 | " match and the pattern to make this warning message disappear.\n", |
| 741 | args[0], args[1], args[2]); |
| 742 | |
Willy Tarreau | 2a56c5e | 2010-03-15 16:13:29 +0100 | [diff] [blame] | 743 | if (*args[0]) |
| 744 | cur_acl = find_acl_by_name(args[0], known_acl); |
| 745 | else |
| 746 | cur_acl = NULL; |
| 747 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 748 | if (!cur_acl) { |
| 749 | name = strdup(args[0]); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 750 | if (!name) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 751 | memprintf(err, "out of memory when parsing ACL"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 752 | goto out_free_acl_expr; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 753 | } |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 754 | cur_acl = calloc(1, sizeof(*cur_acl)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 755 | if (cur_acl == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 756 | memprintf(err, "out of memory when parsing ACL"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 757 | goto out_free_name; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 758 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 759 | |
| 760 | LIST_INIT(&cur_acl->expr); |
| 761 | LIST_ADDQ(known_acl, &cur_acl->list); |
| 762 | cur_acl->name = name; |
| 763 | } |
| 764 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 765 | /* We want to know what features the ACL needs (typically HTTP parsing), |
| 766 | * and where it may be used. If an ACL relies on multiple matches, it is |
| 767 | * OK if at least one of them may match in the context where it is used. |
| 768 | */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 769 | cur_acl->use |= acl_expr->smp->fetch->use; |
| 770 | cur_acl->val |= acl_expr->smp->fetch->val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 771 | LIST_ADDQ(&cur_acl->expr, &acl_expr->list); |
| 772 | return cur_acl; |
| 773 | |
| 774 | out_free_name: |
| 775 | free(name); |
| 776 | out_free_acl_expr: |
| 777 | prune_acl_expr(acl_expr); |
| 778 | free(acl_expr); |
| 779 | out_return: |
| 780 | return NULL; |
| 781 | } |
| 782 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 783 | /* Some useful ACLs provided by default. Only those used are allocated. */ |
| 784 | |
| 785 | const struct { |
| 786 | const char *name; |
| 787 | const char *expr[4]; /* put enough for longest expression */ |
| 788 | } default_acl_list[] = { |
Willy Tarreau | 58393e1 | 2008-07-20 10:39:22 +0200 | [diff] [blame] | 789 | { .name = "TRUE", .expr = {"always_true",""}}, |
| 790 | { .name = "FALSE", .expr = {"always_false",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 791 | { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}}, |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 792 | { .name = "HTTP", .expr = {"req_proto_http",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 793 | { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}}, |
| 794 | { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}}, |
| 795 | { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}}, |
Daniel Schneller | 9ff96c7 | 2016-04-11 17:45:29 +0200 | [diff] [blame] | 796 | { .name = "METH_DELETE", .expr = {"method","DELETE",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 797 | { .name = "METH_GET", .expr = {"method","GET","HEAD",""}}, |
| 798 | { .name = "METH_HEAD", .expr = {"method","HEAD",""}}, |
| 799 | { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}}, |
| 800 | { .name = "METH_POST", .expr = {"method","POST",""}}, |
Daniel Schneller | 9ff96c7 | 2016-04-11 17:45:29 +0200 | [diff] [blame] | 801 | { .name = "METH_PUT", .expr = {"method","PUT",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 802 | { .name = "METH_TRACE", .expr = {"method","TRACE",""}}, |
| 803 | { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}}, |
| 804 | { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}}, |
| 805 | { .name = "HTTP_URL_STAR", .expr = {"url","*",""}}, |
| 806 | { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}}, |
Emeric Brun | bede3d0 | 2009-06-30 17:54:00 +0200 | [diff] [blame] | 807 | { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}}, |
Willy Tarreau | c631770 | 2008-07-20 09:29:50 +0200 | [diff] [blame] | 808 | { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}}, |
Willy Tarreau | b6fb420 | 2008-07-20 11:18:28 +0200 | [diff] [blame] | 809 | { .name = "WAIT_END", .expr = {"wait_end",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 810 | { .name = NULL, .expr = {""}} |
| 811 | }; |
| 812 | |
| 813 | /* Find a default ACL from the default_acl list, compile it and return it. |
| 814 | * If the ACL is not found, NULL is returned. In theory, it cannot fail, |
| 815 | * except when default ACLs are broken, in which case it will return NULL. |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 816 | * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is |
| 817 | * not NULL, it will be filled with an error message if an error occurs. This |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 818 | * pointer must be freeable or NULL. <al> is an arg_list serving as a list head |
| 819 | * to report missing dependencies. |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 820 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 821 | static struct acl *find_acl_default(const char *acl_name, struct list *known_acl, |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 822 | char **err, struct arg_list *al, |
| 823 | const char *file, int line) |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 824 | { |
| 825 | __label__ out_return, out_free_acl_expr, out_free_name; |
| 826 | struct acl *cur_acl; |
| 827 | struct acl_expr *acl_expr; |
| 828 | char *name; |
| 829 | int index; |
| 830 | |
| 831 | for (index = 0; default_acl_list[index].name != NULL; index++) { |
| 832 | if (strcmp(acl_name, default_acl_list[index].name) == 0) |
| 833 | break; |
| 834 | } |
| 835 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 836 | if (default_acl_list[index].name == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 837 | memprintf(err, "no such ACL : '%s'", acl_name); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 838 | return NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 839 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 840 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 841 | acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al, file, line); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 842 | if (!acl_expr) { |
| 843 | /* parse_acl_expr must have filled err here */ |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 844 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 845 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 846 | |
| 847 | name = strdup(acl_name); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 848 | if (!name) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 849 | memprintf(err, "out of memory when building default ACL '%s'", acl_name); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 850 | goto out_free_acl_expr; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 851 | } |
| 852 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 853 | cur_acl = calloc(1, sizeof(*cur_acl)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 854 | if (cur_acl == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 855 | memprintf(err, "out of memory when building default ACL '%s'", acl_name); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 856 | goto out_free_name; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 857 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 858 | |
| 859 | cur_acl->name = name; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 860 | cur_acl->use |= acl_expr->smp->fetch->use; |
| 861 | cur_acl->val |= acl_expr->smp->fetch->val; |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 862 | LIST_INIT(&cur_acl->expr); |
| 863 | LIST_ADDQ(&cur_acl->expr, &acl_expr->list); |
| 864 | if (known_acl) |
| 865 | LIST_ADDQ(known_acl, &cur_acl->list); |
| 866 | |
| 867 | return cur_acl; |
| 868 | |
| 869 | out_free_name: |
| 870 | free(name); |
| 871 | out_free_acl_expr: |
| 872 | prune_acl_expr(acl_expr); |
| 873 | free(acl_expr); |
| 874 | out_return: |
| 875 | return NULL; |
| 876 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 877 | |
| 878 | /* Purge everything in the acl_cond <cond>, then return <cond>. */ |
| 879 | struct acl_cond *prune_acl_cond(struct acl_cond *cond) |
| 880 | { |
| 881 | struct acl_term_suite *suite, *tmp_suite; |
| 882 | struct acl_term *term, *tmp_term; |
| 883 | |
| 884 | /* iterate through all term suites and free all terms and all suites */ |
| 885 | list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) { |
| 886 | list_for_each_entry_safe(term, tmp_term, &suite->terms, list) |
| 887 | free(term); |
| 888 | free(suite); |
| 889 | } |
| 890 | return cond; |
| 891 | } |
| 892 | |
| 893 | /* Parse an ACL condition starting at <args>[0], relying on a list of already |
| 894 | * known ACLs passed in <known_acl>. The new condition is returned (or NULL in |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 895 | * case of low memory). Supports multiple conditions separated by "or". If |
| 896 | * <err> is not NULL, it will be filled with a pointer to an error message in |
| 897 | * case of error, that the caller is responsible for freeing. The initial |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 898 | * location must either be freeable or NULL. The list <al> serves as a list head |
| 899 | * for unresolved dependencies. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 900 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 901 | struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 902 | enum acl_cond_pol pol, char **err, struct arg_list *al, |
| 903 | const char *file, int line) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 904 | { |
| 905 | __label__ out_return, out_free_suite, out_free_term; |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 906 | int arg, neg; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 907 | const char *word; |
| 908 | struct acl *cur_acl; |
| 909 | struct acl_term *cur_term; |
| 910 | struct acl_term_suite *cur_suite; |
| 911 | struct acl_cond *cond; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 912 | unsigned int suite_val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 913 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 914 | cond = calloc(1, sizeof(*cond)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 915 | if (cond == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 916 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 917 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 918 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 919 | |
| 920 | LIST_INIT(&cond->list); |
| 921 | LIST_INIT(&cond->suites); |
| 922 | cond->pol = pol; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 923 | cond->val = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 924 | |
| 925 | cur_suite = NULL; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 926 | suite_val = ~0U; |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 927 | neg = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 928 | for (arg = 0; *args[arg]; arg++) { |
| 929 | word = args[arg]; |
| 930 | |
| 931 | /* remove as many exclamation marks as we can */ |
| 932 | while (*word == '!') { |
| 933 | neg = !neg; |
| 934 | word++; |
| 935 | } |
| 936 | |
| 937 | /* an empty word is allowed because we cannot force the user to |
| 938 | * always think about not leaving exclamation marks alone. |
| 939 | */ |
| 940 | if (!*word) |
| 941 | continue; |
| 942 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 943 | if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) { |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 944 | /* new term suite */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 945 | cond->val |= suite_val; |
| 946 | suite_val = ~0U; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 947 | cur_suite = NULL; |
| 948 | neg = 0; |
| 949 | continue; |
| 950 | } |
| 951 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 952 | if (strcmp(word, "{") == 0) { |
| 953 | /* we may have a complete ACL expression between two braces, |
| 954 | * find the last one. |
| 955 | */ |
| 956 | int arg_end = arg + 1; |
| 957 | const char **args_new; |
| 958 | |
| 959 | while (*args[arg_end] && strcmp(args[arg_end], "}") != 0) |
| 960 | arg_end++; |
| 961 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 962 | if (!*args[arg_end]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 963 | memprintf(err, "missing closing '}' in condition"); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 964 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 965 | } |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 966 | |
| 967 | args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 968 | if (!args_new) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 969 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 970 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 971 | } |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 972 | |
Willy Tarreau | 2a56c5e | 2010-03-15 16:13:29 +0100 | [diff] [blame] | 973 | args_new[0] = ""; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 974 | memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new)); |
| 975 | args_new[arg_end - arg] = ""; |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 976 | cur_acl = parse_acl(args_new, known_acl, err, al, file, line); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 977 | free(args_new); |
| 978 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 979 | if (!cur_acl) { |
| 980 | /* note that parse_acl() must have filled <err> here */ |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 981 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 982 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 983 | word = args[arg + 1]; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 984 | arg = arg_end; |
| 985 | } |
| 986 | else { |
| 987 | /* search for <word> in the known ACL names. If we do not find |
| 988 | * it, let's look for it in the default ACLs, and if found, add |
| 989 | * it to the list of ACLs of this proxy. This makes it possible |
| 990 | * to override them. |
| 991 | */ |
| 992 | cur_acl = find_acl_by_name(word, known_acl); |
| 993 | if (cur_acl == NULL) { |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 994 | cur_acl = find_acl_default(word, known_acl, err, al, file, line); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 995 | if (cur_acl == NULL) { |
| 996 | /* note that find_acl_default() must have filled <err> here */ |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 997 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 998 | } |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 999 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 1000 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1001 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1002 | cur_term = calloc(1, sizeof(*cur_term)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1003 | if (cur_term == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1004 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1005 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1006 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1007 | |
| 1008 | cur_term->acl = cur_acl; |
| 1009 | cur_term->neg = neg; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1010 | |
| 1011 | /* Here it is a bit complex. The acl_term_suite is a conjunction |
| 1012 | * of many terms. It may only be used if all of its terms are |
| 1013 | * usable at the same time. So the suite's validity domain is an |
| 1014 | * AND between all ACL keywords' ones. But, the global condition |
| 1015 | * is valid if at least one term suite is OK. So it's an OR between |
| 1016 | * all of their validity domains. We could emit a warning as soon |
| 1017 | * as suite_val is null because it means that the last ACL is not |
| 1018 | * compatible with the previous ones. Let's remain simple for now. |
| 1019 | */ |
| 1020 | cond->use |= cur_acl->use; |
| 1021 | suite_val &= cur_acl->val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1022 | |
| 1023 | if (!cur_suite) { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1024 | cur_suite = calloc(1, sizeof(*cur_suite)); |
Willy Tarreau | f678b7f | 2013-01-24 00:25:39 +0100 | [diff] [blame] | 1025 | if (cur_suite == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1026 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1027 | goto out_free_term; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1028 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1029 | LIST_INIT(&cur_suite->terms); |
| 1030 | LIST_ADDQ(&cond->suites, &cur_suite->list); |
| 1031 | } |
| 1032 | LIST_ADDQ(&cur_suite->terms, &cur_term->list); |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 1033 | neg = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1034 | } |
| 1035 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1036 | cond->val |= suite_val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1037 | return cond; |
| 1038 | |
| 1039 | out_free_term: |
| 1040 | free(cur_term); |
| 1041 | out_free_suite: |
| 1042 | prune_acl_cond(cond); |
| 1043 | free(cond); |
| 1044 | out_return: |
| 1045 | return NULL; |
| 1046 | } |
| 1047 | |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1048 | /* Builds an ACL condition starting at the if/unless keyword. The complete |
| 1049 | * condition is returned. NULL is returned in case of error or if the first |
| 1050 | * word is neither "if" nor "unless". It automatically sets the file name and |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 1051 | * the line number in the condition for better error reporting, and sets the |
| 1052 | * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1053 | * be filled with a pointer to an error message in case of error, that the |
| 1054 | * caller is responsible for freeing. The initial location must either be |
| 1055 | * freeable or NULL. |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1056 | */ |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1057 | struct acl_cond *build_acl_cond(const char *file, int line, struct proxy *px, const char **args, char **err) |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1058 | { |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 1059 | enum acl_cond_pol pol = ACL_COND_NONE; |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1060 | struct acl_cond *cond = NULL; |
| 1061 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1062 | if (err) |
| 1063 | *err = NULL; |
| 1064 | |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1065 | if (!strcmp(*args, "if")) { |
| 1066 | pol = ACL_COND_IF; |
| 1067 | args++; |
| 1068 | } |
| 1069 | else if (!strcmp(*args, "unless")) { |
| 1070 | pol = ACL_COND_UNLESS; |
| 1071 | args++; |
| 1072 | } |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1073 | else { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1074 | memprintf(err, "conditions must start with either 'if' or 'unless'"); |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1075 | return NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1076 | } |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1077 | |
Thierry FOURNIER | 0d6ba51 | 2014-02-11 03:31:34 +0100 | [diff] [blame] | 1078 | cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args, file, line); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1079 | if (!cond) { |
| 1080 | /* note that parse_acl_cond must have filled <err> here */ |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1081 | return NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 1082 | } |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1083 | |
| 1084 | cond->file = file; |
| 1085 | cond->line = line; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1086 | px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY); |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 1087 | return cond; |
| 1088 | } |
| 1089 | |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1090 | /* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or |
| 1091 | * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1092 | * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1093 | * data is being examined. The function automatically sets SMP_OPT_ITERATE. This |
| 1094 | * function only computes the condition, it does not apply the polarity required |
| 1095 | * by IF/UNLESS, it's up to the caller to do this using something like this : |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1096 | * |
| 1097 | * res = acl_pass(res); |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1098 | * if (res == ACL_TEST_MISS) |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 1099 | * return 0; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1100 | * if (cond->pol == ACL_COND_UNLESS) |
| 1101 | * res = !res; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1102 | */ |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1103 | enum acl_test_res acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1104 | { |
| 1105 | __label__ fetch_next; |
| 1106 | struct acl_term_suite *suite; |
| 1107 | struct acl_term *term; |
| 1108 | struct acl_expr *expr; |
| 1109 | struct acl *acl; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1110 | struct sample smp; |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 1111 | enum acl_test_res acl_res, suite_res, cond_res; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1112 | |
Willy Tarreau | 7a777ed | 2012-04-26 11:44:02 +0200 | [diff] [blame] | 1113 | /* ACLs are iterated over all values, so let's always set the flag to |
| 1114 | * indicate this to the fetch functions. |
| 1115 | */ |
| 1116 | opt |= SMP_OPT_ITERATE; |
| 1117 | |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1118 | /* We're doing a logical OR between conditions so we initialize to FAIL. |
| 1119 | * The MISS status is propagated down from the suites. |
| 1120 | */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1121 | cond_res = ACL_TEST_FAIL; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1122 | list_for_each_entry(suite, &cond->suites, list) { |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1123 | /* Evaluate condition suite <suite>. We stop at the first term |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 1124 | * which returns ACL_TEST_FAIL. The MISS status is still propagated |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1125 | * in case of uncertainty in the result. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1126 | */ |
| 1127 | |
| 1128 | /* we're doing a logical AND between terms, so we must set the |
| 1129 | * initial value to PASS. |
| 1130 | */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1131 | suite_res = ACL_TEST_PASS; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1132 | list_for_each_entry(term, &suite->terms, list) { |
| 1133 | acl = term->acl; |
| 1134 | |
| 1135 | /* FIXME: use cache ! |
| 1136 | * check acl->cache_idx for this. |
| 1137 | */ |
| 1138 | |
| 1139 | /* ACL result not cached. Let's scan all the expressions |
| 1140 | * and use the first one to match. |
| 1141 | */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1142 | acl_res = ACL_TEST_FAIL; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1143 | list_for_each_entry(expr, &acl->expr, list) { |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 1144 | /* we need to reset context and flags */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1145 | memset(&smp, 0, sizeof(smp)); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1146 | fetch_next: |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1147 | if (!sample_process(px, sess, strm, opt, expr->smp, &smp)) { |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 1148 | /* maybe we could not fetch because of missing data */ |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1149 | if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL)) |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1150 | acl_res |= ACL_TEST_MISS; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1151 | continue; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 1152 | } |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 1153 | |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 1154 | acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0)); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1155 | /* |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1156 | * OK now acl_res holds the result of this expression |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1157 | * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1158 | * |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1159 | * Then if (!MISS) we can cache the result, and put |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1160 | * (smp.flags & SMP_F_VOLATILE) in the cache flags. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1161 | * |
| 1162 | * FIXME: implement cache. |
| 1163 | * |
| 1164 | */ |
| 1165 | |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1166 | /* we're ORing these terms, so a single PASS is enough */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1167 | if (acl_res == ACL_TEST_PASS) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1168 | break; |
| 1169 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1170 | if (smp.flags & SMP_F_NOT_LAST) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1171 | goto fetch_next; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 1172 | |
| 1173 | /* sometimes we know the fetched data is subject to change |
| 1174 | * later and give another chance for a new match (eg: request |
| 1175 | * size, time, ...) |
| 1176 | */ |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1177 | if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL)) |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1178 | acl_res |= ACL_TEST_MISS; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1179 | } |
| 1180 | /* |
| 1181 | * Here we have the result of an ACL (cached or not). |
| 1182 | * ACLs are combined, negated or not, to form conditions. |
| 1183 | */ |
| 1184 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1185 | if (term->neg) |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1186 | acl_res = acl_neg(acl_res); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1187 | |
| 1188 | suite_res &= acl_res; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1189 | |
Willy Tarreau | 79c412b | 2013-10-30 19:30:32 +0100 | [diff] [blame] | 1190 | /* we're ANDing these terms, so a single FAIL or MISS is enough */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1191 | if (suite_res != ACL_TEST_PASS) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1192 | break; |
| 1193 | } |
| 1194 | cond_res |= suite_res; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1195 | |
| 1196 | /* we're ORing these terms, so a single PASS is enough */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1197 | if (cond_res == ACL_TEST_PASS) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1198 | break; |
| 1199 | } |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 1200 | return cond_res; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1201 | } |
| 1202 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1203 | /* Returns a pointer to the first ACL conflicting with usage at place <where> |
| 1204 | * which is one of the SMP_VAL_* bits indicating a check place, or NULL if |
| 1205 | * no conflict is found. Only full conflicts are detected (ACL is not usable). |
| 1206 | * Use the next function to check for useless keywords. |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 1207 | */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1208 | const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where) |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 1209 | { |
| 1210 | struct acl_term_suite *suite; |
| 1211 | struct acl_term *term; |
| 1212 | struct acl *acl; |
| 1213 | |
| 1214 | list_for_each_entry(suite, &cond->suites, list) { |
| 1215 | list_for_each_entry(term, &suite->terms, list) { |
| 1216 | acl = term->acl; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1217 | if (!(acl->val & where)) |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 1218 | return acl; |
| 1219 | } |
| 1220 | } |
| 1221 | return NULL; |
| 1222 | } |
| 1223 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1224 | /* Returns a pointer to the first ACL and its first keyword to conflict with |
| 1225 | * usage at place <where> which is one of the SMP_VAL_* bits indicating a check |
| 1226 | * place. Returns true if a conflict is found, with <acl> and <kw> set (if non |
| 1227 | * null), or false if not conflict is found. The first useless keyword is |
| 1228 | * returned. |
| 1229 | */ |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 1230 | int acl_cond_kw_conflicts(const struct acl_cond *cond, unsigned int where, struct acl const **acl, char const **kw) |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1231 | { |
| 1232 | struct acl_term_suite *suite; |
| 1233 | struct acl_term *term; |
| 1234 | struct acl_expr *expr; |
| 1235 | |
| 1236 | list_for_each_entry(suite, &cond->suites, list) { |
| 1237 | list_for_each_entry(term, &suite->terms, list) { |
| 1238 | list_for_each_entry(expr, &term->acl->expr, list) { |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1239 | if (!(expr->smp->fetch->val & where)) { |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1240 | if (acl) |
| 1241 | *acl = term->acl; |
| 1242 | if (kw) |
| 1243 | *kw = expr->kw; |
| 1244 | return 1; |
| 1245 | } |
| 1246 | } |
| 1247 | } |
| 1248 | } |
| 1249 | return 0; |
| 1250 | } |
| 1251 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1252 | /* |
| 1253 | * Find targets for userlist and groups in acl. Function returns the number |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1254 | * of errors or OK if everything is fine. It must be called only once sample |
| 1255 | * fetch arguments have been resolved (after smp_resolve_args()). |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1256 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1257 | int acl_find_targets(struct proxy *p) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1258 | { |
| 1259 | |
| 1260 | struct acl *acl; |
| 1261 | struct acl_expr *expr; |
Thierry FOURNIER | 3ead5b9 | 2013-12-13 12:12:18 +0100 | [diff] [blame] | 1262 | struct pattern_list *pattern; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1263 | int cfgerr = 0; |
Thierry FOURNIER | c5959fd | 2014-01-20 14:29:33 +0100 | [diff] [blame] | 1264 | struct pattern_expr_list *pexp; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1265 | |
| 1266 | list_for_each_entry(acl, &p->acl, list) { |
| 1267 | list_for_each_entry(expr, &acl->expr, list) { |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1268 | if (!strcmp(expr->kw, "http_auth_group")) { |
| 1269 | /* Note: the ARGT_USR argument may only have been resolved earlier |
| 1270 | * by smp_resolve_args(). |
| 1271 | */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1272 | if (expr->smp->arg_p->unresolved) { |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1273 | Alert("Internal bug in proxy %s: %sacl %s %s() makes use of unresolved userlist '%s'. Please report this.\n", |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1274 | p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1275 | cfgerr++; |
Willy Tarreau | 496aa01 | 2012-06-01 10:38:29 +0200 | [diff] [blame] | 1276 | continue; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1277 | } |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1278 | |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 1279 | if (LIST_ISEMPTY(&expr->pat.head)) { |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1280 | Alert("proxy %s: acl %s %s(): no groups specified.\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 1281 | p->id, acl->name, expr->kw); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1282 | cfgerr++; |
| 1283 | continue; |
| 1284 | } |
| 1285 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1286 | /* For each pattern, check if the group exists. */ |
Thierry FOURNIER | c5959fd | 2014-01-20 14:29:33 +0100 | [diff] [blame] | 1287 | list_for_each_entry(pexp, &expr->pat.head, list) { |
| 1288 | if (LIST_ISEMPTY(&pexp->expr->patterns)) { |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 1289 | Alert("proxy %s: acl %s %s(): no groups specified.\n", |
| 1290 | p->id, acl->name, expr->kw); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1291 | cfgerr++; |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 1292 | continue; |
| 1293 | } |
| 1294 | |
Thierry FOURNIER | c5959fd | 2014-01-20 14:29:33 +0100 | [diff] [blame] | 1295 | list_for_each_entry(pattern, &pexp->expr->patterns, list) { |
| 1296 | /* this keyword only has one argument */ |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 1297 | if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) { |
| 1298 | Alert("proxy %s: acl %s %s(): invalid group '%s'.\n", |
| 1299 | p->id, acl->name, expr->kw, pattern->pat.ptr.str); |
| 1300 | cfgerr++; |
| 1301 | } |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1302 | } |
| 1303 | } |
| 1304 | } |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | return cfgerr; |
| 1309 | } |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 1310 | |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 1311 | /* initializes ACLs by resolving the sample fetch names they rely upon. |
| 1312 | * Returns 0 on success, otherwise an error. |
| 1313 | */ |
| 1314 | int init_acl() |
| 1315 | { |
| 1316 | int err = 0; |
| 1317 | int index; |
| 1318 | const char *name; |
| 1319 | struct acl_kw_list *kwl; |
| 1320 | struct sample_fetch *smp; |
| 1321 | |
| 1322 | list_for_each_entry(kwl, &acl_keywords.list, list) { |
| 1323 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1324 | name = kwl->kw[index].fetch_kw; |
| 1325 | if (!name) |
| 1326 | name = kwl->kw[index].kw; |
| 1327 | |
| 1328 | smp = find_sample_fetch(name, strlen(name)); |
| 1329 | if (!smp) { |
| 1330 | Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n", |
| 1331 | kwl->kw[index].kw, name); |
| 1332 | err++; |
| 1333 | continue; |
| 1334 | } |
| 1335 | kwl->kw[index].smp = smp; |
| 1336 | } |
| 1337 | } |
| 1338 | return err; |
| 1339 | } |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1340 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1341 | /************************************************************************/ |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1342 | /* All supported sample and ACL keywords must be declared here. */ |
| 1343 | /************************************************************************/ |
| 1344 | |
| 1345 | /* Note: must not be declared <const> as its list will be overwritten. |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1346 | * Please take care of keeping this list alphabetically sorted. |
| 1347 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1348 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1349 | { /* END */ }, |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1350 | }}; |
| 1351 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1352 | __attribute__((constructor)) |
| 1353 | static void __acl_init(void) |
| 1354 | { |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1355 | acl_register_keywords(&acl_kws); |
| 1356 | } |
| 1357 | |
| 1358 | |
| 1359 | /* |
| 1360 | * Local variables: |
| 1361 | * c-indent-level: 8 |
| 1362 | * c-basic-offset: 8 |
| 1363 | * End: |
| 1364 | */ |