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