Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ACL management functions. |
| 3 | * |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | ae8b796 | 2007-06-09 23:10:04 +0200 | [diff] [blame] | 13 | #include <ctype.h> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 14 | #include <stdio.h> |
| 15 | #include <string.h> |
| 16 | |
| 17 | #include <common/config.h> |
| 18 | #include <common/mini-clist.h> |
| 19 | #include <common/standard.h> |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 20 | #include <common/uri_auth.h> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 22 | #include <types/global.h> |
| 23 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 24 | #include <proto/acl.h> |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 25 | #include <proto/arg.h> |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 26 | #include <proto/auth.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 27 | #include <proto/channel.h> |
Willy Tarreau | 404e8ab | 2009-07-26 19:40:40 +0200 | [diff] [blame] | 28 | #include <proto/log.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 29 | #include <proto/pattern.h> |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 30 | #include <proto/proxy.h> |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 31 | #include <proto/sample.h> |
Willy Tarreau | d28c353 | 2012-04-19 19:28:33 +0200 | [diff] [blame] | 32 | #include <proto/stick_table.h> |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 33 | |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 34 | #include <ebsttree.h> |
| 35 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 36 | /* List head of all known ACL keywords */ |
| 37 | static struct acl_kw_list acl_keywords = { |
| 38 | .list = LIST_HEAD_INIT(acl_keywords.list) |
| 39 | }; |
| 40 | |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 41 | /* input values are 0 or 3, output is the same */ |
| 42 | static inline enum acl_test_res pat2acl(enum pat_match_res res) |
| 43 | { |
| 44 | return (enum acl_test_res)res; |
| 45 | } |
| 46 | |
Willy Tarreau | a590983 | 2007-06-17 20:40:25 +0200 | [diff] [blame] | 47 | /* |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 48 | * Registers the ACL keyword list <kwl> as a list of valid keywords for next |
| 49 | * parsing sessions. |
| 50 | */ |
| 51 | void acl_register_keywords(struct acl_kw_list *kwl) |
| 52 | { |
| 53 | LIST_ADDQ(&acl_keywords.list, &kwl->list); |
| 54 | } |
| 55 | |
| 56 | /* |
| 57 | * Unregisters the ACL keyword list <kwl> from the list of valid keywords. |
| 58 | */ |
| 59 | void acl_unregister_keywords(struct acl_kw_list *kwl) |
| 60 | { |
| 61 | LIST_DEL(&kwl->list); |
| 62 | LIST_INIT(&kwl->list); |
| 63 | } |
| 64 | |
| 65 | /* Return a pointer to the ACL <name> within the list starting at <head>, or |
| 66 | * NULL if not found. |
| 67 | */ |
| 68 | struct acl *find_acl_by_name(const char *name, struct list *head) |
| 69 | { |
| 70 | struct acl *acl; |
| 71 | list_for_each_entry(acl, head, list) { |
| 72 | if (strcmp(acl->name, name) == 0) |
| 73 | return acl; |
| 74 | } |
| 75 | return NULL; |
| 76 | } |
| 77 | |
| 78 | /* 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] | 79 | * <kw> contains an opening parenthesis or a comma, only the left part of it is |
| 80 | * checked. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 81 | */ |
| 82 | struct acl_keyword *find_acl_kw(const char *kw) |
| 83 | { |
| 84 | int index; |
| 85 | const char *kwend; |
| 86 | struct acl_kw_list *kwl; |
| 87 | |
Willy Tarreau | 4bfa422 | 2013-12-16 22:01:06 +0100 | [diff] [blame] | 88 | kwend = kw; |
| 89 | while (*kwend && *kwend != '(' && *kwend != ',') |
| 90 | kwend++; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 91 | |
| 92 | list_for_each_entry(kwl, &acl_keywords.list, list) { |
| 93 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 94 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 95 | kwl->kw[index].kw[kwend-kw] == 0) |
| 96 | return &kwl->kw[index]; |
| 97 | } |
| 98 | } |
| 99 | return NULL; |
| 100 | } |
| 101 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 102 | static struct acl_expr *prune_acl_expr(struct acl_expr *expr) |
| 103 | { |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 104 | struct arg *arg; |
| 105 | |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 106 | pattern_prune_expr(&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) { |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 112 | free(arg->data.str.str); |
| 113 | arg->data.str.str = NULL; |
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 | |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 118 | if (expr->smp->arg_p != empty_arg_list) |
| 119 | free(expr->smp->arg_p); |
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 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 131 | struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 132 | { |
| 133 | __label__ out_return, out_free_expr, out_free_pattern; |
| 134 | struct acl_expr *expr; |
| 135 | struct acl_keyword *aclkw; |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 136 | struct pattern *pattern; |
Thierry FOURNIER | 7148ce6 | 2013-12-06 19:06:43 +0100 | [diff] [blame] | 137 | int 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 | unsigned long prev_type; |
| 146 | int cur_type; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 147 | int nbargs; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 148 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 149 | /* First, we look for an ACL keyword. And if we don't find one, then |
| 150 | * we look for a sample fetch expression starting with a sample fetch |
| 151 | * keyword. |
Willy Tarreau | bef91e7 | 2013-03-31 23:14:46 +0200 | [diff] [blame] | 152 | */ |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 153 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 154 | al->ctx = ARGC_ACL; // to report errors while resolving args late |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 155 | al->kw = *args; |
| 156 | al->conv = NULL; |
| 157 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 158 | aclkw = find_acl_kw(args[0]); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 159 | if (aclkw && aclkw->parse) { |
| 160 | /* OK we have a real ACL keyword */ |
Willy Tarreau | 9987ea9 | 2013-06-11 21:09:06 +0200 | [diff] [blame] | 161 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 162 | /* build new sample expression for this ACL */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 163 | smp = calloc(1, sizeof(struct sample_expr)); |
| 164 | if (!smp) { |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 165 | memprintf(err, "out of memory when parsing ACL expression"); |
| 166 | goto out_return; |
| 167 | } |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 168 | LIST_INIT(&(smp->conv_exprs)); |
| 169 | smp->fetch = aclkw->smp; |
| 170 | smp->arg_p = empty_arg_list; |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 171 | |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 172 | /* look for the begining of the subject arguments */ |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 173 | for (arg = args[0]; *arg && *arg != '(' && *arg != ','; arg++); |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 174 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 175 | endt = arg; |
| 176 | if (*endt == '(') { |
| 177 | /* look for the end of this term and skip the opening parenthesis */ |
| 178 | endt = ++arg; |
| 179 | while (*endt && *endt != ')') |
| 180 | endt++; |
| 181 | if (*endt != ')') { |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 182 | memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw); |
| 183 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 184 | } |
| 185 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 186 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 187 | /* At this point, we have : |
| 188 | * - args[0] : beginning of the keyword |
| 189 | * - arg : end of the keyword, first character not part of keyword |
| 190 | * nor the opening parenthesis (so first character of args |
| 191 | * if present). |
| 192 | * - endt : end of the term (=arg or last parenthesis if args are present) |
| 193 | */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 194 | nbargs = make_arg_list(arg, endt - arg, smp->fetch->arg_mask, &smp->arg_p, |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 195 | err, NULL, NULL, al); |
| 196 | if (nbargs < 0) { |
| 197 | /* note that make_arg_list will have set <err> here */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 198 | memprintf(err, "ACL keyword '%s' : %s", aclkw->kw, *err); |
| 199 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 200 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 201 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 202 | if (!smp->arg_p) { |
| 203 | smp->arg_p = empty_arg_list; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 204 | } |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 205 | 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] | 206 | /* invalid keyword argument, error must have been |
| 207 | * set by val_args(). |
| 208 | */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 209 | memprintf(err, "in argument to '%s', %s", aclkw->kw, *err); |
| 210 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 211 | } |
| 212 | arg = endt; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 213 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 214 | /* look for the begining of the converters list. Those directly attached |
| 215 | * to the ACL keyword are found just after <arg> which points to the comma. |
| 216 | */ |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 217 | prev_type = smp->fetch->out_type; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 218 | while (*arg) { |
| 219 | struct sample_conv *conv; |
| 220 | struct sample_conv_expr *conv_expr; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 221 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 222 | if (*arg == ')') /* skip last closing parenthesis */ |
| 223 | arg++; |
| 224 | |
| 225 | if (*arg && *arg != ',') { |
| 226 | if (ckw) |
| 227 | memprintf(err, "ACL keyword '%s' : missing comma after conv keyword '%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 | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 235 | while (*arg == ',') /* then trailing commas */ |
| 236 | arg++; |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 237 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 238 | begw = arg; /* start of conv keyword */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 239 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 240 | if (!*begw) |
| 241 | /* none ? end of converters */ |
| 242 | break; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 243 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 244 | for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++); |
Willy Tarreau | 9ca6936 | 2013-10-22 19:10:06 +0200 | [diff] [blame] | 245 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 246 | free(ckw); |
| 247 | ckw = my_strndup(begw, endw - begw); |
Willy Tarreau | f75d008 | 2013-04-07 21:20:44 +0200 | [diff] [blame] | 248 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 249 | conv = find_sample_conv(begw, endw - begw); |
| 250 | if (!conv) { |
| 251 | /* Unknown converter method */ |
| 252 | memprintf(err, "ACL keyword '%s' : unknown conv method '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 253 | aclkw->kw, ckw); |
| 254 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 255 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 256 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 257 | arg = endw; |
| 258 | if (*arg == '(') { |
| 259 | /* look for the end of this term */ |
| 260 | while (*arg && *arg != ')') |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 261 | arg++; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 262 | if (*arg != ')') { |
| 263 | memprintf(err, "ACL keyword '%s' : syntax error: missing ')' after conv keyword '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 264 | aclkw->kw, ckw); |
| 265 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 266 | } |
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 (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) { |
| 270 | memprintf(err, "ACL keyword '%s' : returns type of conv method '%s' is unknown.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 271 | aclkw->kw, ckw); |
| 272 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 273 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 274 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 275 | /* If impossible type conversion */ |
| 276 | if (!sample_casts[prev_type][conv->in_type]) { |
| 277 | memprintf(err, "ACL keyword '%s' : conv method '%s' cannot be applied.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 278 | aclkw->kw, ckw); |
| 279 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 280 | } |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 281 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 282 | prev_type = conv->out_type; |
| 283 | conv_expr = calloc(1, sizeof(struct sample_conv_expr)); |
| 284 | if (!conv_expr) |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 285 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 286 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 287 | LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list)); |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 288 | conv_expr->conv = conv; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 289 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 290 | if (arg != endw) { |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 291 | int err_arg; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 292 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 293 | if (!conv->arg_mask) { |
| 294 | memprintf(err, "ACL keyword '%s' : conv method '%s' does not support any args.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 295 | aclkw->kw, ckw); |
| 296 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 297 | } |
| 298 | |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 299 | al->kw = smp->fetch->kw; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 300 | al->conv = conv_expr->conv->kw; |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 301 | if (make_arg_list(endw + 1, arg - endw - 1, conv->arg_mask, &conv_expr->arg_p, err, NULL, &err_arg, al) < 0) { |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 302 | memprintf(err, "ACL keyword '%s' : invalid arg %d in conv method '%s' : %s.", |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 303 | aclkw->kw, err_arg+1, ckw, *err); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 304 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 305 | } |
| 306 | |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 307 | if (!conv_expr->arg_p) |
| 308 | conv_expr->arg_p = empty_arg_list; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 309 | |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 310 | if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, err)) { |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 311 | memprintf(err, "ACL keyword '%s' : invalid args in conv method '%s' : %s.", |
Willy Tarreau | adaddc2 | 2013-12-13 01:30:22 +0100 | [diff] [blame] | 312 | aclkw->kw, ckw, *err); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 313 | goto out_free_smp; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 314 | } |
| 315 | } |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 316 | else if (ARGM(conv->arg_mask)) { |
| 317 | memprintf(err, "ACL keyword '%s' : missing args for conv method '%s'.", |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 318 | aclkw->kw, ckw); |
| 319 | goto out_free_smp; |
Willy Tarreau | 131b466 | 2013-12-13 01:08:36 +0100 | [diff] [blame] | 320 | } |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 321 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 322 | } |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 323 | else { |
| 324 | /* This is not an ACL keyword, so we hope this is a sample fetch |
| 325 | * keyword that we're going to transparently use as an ACL. If |
| 326 | * so, we retrieve a completely parsed expression with args and |
| 327 | * convs already done. |
| 328 | */ |
| 329 | smp = sample_parse_expr((char **)args, &idx, err, al); |
| 330 | if (!smp) { |
| 331 | memprintf(err, "%s in ACL expression '%s'", *err, *args); |
| 332 | goto out_return; |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | expr = (struct acl_expr *)calloc(1, sizeof(*expr)); |
| 337 | if (!expr) { |
| 338 | memprintf(err, "out of memory when parsing ACL expression"); |
| 339 | goto out_return; |
| 340 | } |
| 341 | |
| 342 | pattern_init_expr(&expr->pat); |
| 343 | |
| 344 | expr->kw = aclkw ? aclkw->kw : smp->fetch->kw; |
| 345 | expr->pat.parse = aclkw ? aclkw->parse : NULL; |
| 346 | expr->pat.match = aclkw ? aclkw->match : NULL; |
| 347 | expr->smp = smp; |
| 348 | smp = NULL; |
| 349 | |
| 350 | if (!expr->pat.parse) { |
| 351 | /* some types can be automatically converted */ |
| 352 | |
| 353 | switch (expr->smp ? expr->smp->fetch->out_type : aclkw->smp->out_type) { |
| 354 | case SMP_T_BOOL: |
| 355 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL]; |
| 356 | expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL]; |
| 357 | break; |
| 358 | case SMP_T_SINT: |
| 359 | case SMP_T_UINT: |
| 360 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT]; |
| 361 | expr->pat.match = pat_match_fcts[PAT_MATCH_INT]; |
| 362 | break; |
| 363 | case SMP_T_IPV4: |
| 364 | case SMP_T_IPV6: |
| 365 | expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP]; |
| 366 | expr->pat.match = pat_match_fcts[PAT_MATCH_IP]; |
| 367 | break; |
| 368 | } |
| 369 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 370 | |
Willy Tarreau | 3c3dfd5 | 2013-11-04 18:09:12 +0100 | [diff] [blame] | 371 | /* Additional check to protect against common mistakes */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 372 | cur_type = smp_expr_output_type(expr->smp); |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 373 | if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) { |
Willy Tarreau | 3c3dfd5 | 2013-11-04 18:09:12 +0100 | [diff] [blame] | 374 | Warning("parsing acl keyword '%s' :\n" |
| 375 | " no pattern to match against were provided, so this ACL will never match.\n" |
| 376 | " If this is what you intended, please add '--' to get rid of this warning.\n" |
| 377 | " If you intended to match only for existence, please use '-m found'.\n" |
| 378 | " If you wanted to force an int to match as a bool, please use '-m bool'.\n" |
| 379 | "\n", |
| 380 | args[0]); |
| 381 | } |
| 382 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 383 | args++; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 384 | |
| 385 | /* check for options before patterns. Supported options are : |
| 386 | * -i : ignore case for all patterns by default |
| 387 | * -f : read patterns from those files |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 388 | * -m : force matching method (must be used before -f) |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 389 | * -- : everything after this is not an option |
| 390 | */ |
| 391 | patflags = 0; |
| 392 | while (**args == '-') { |
| 393 | if ((*args)[1] == 'i') |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 394 | patflags |= PAT_F_IGNORE_CASE; |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 395 | else if ((*args)[1] == 'f') { |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 396 | if (!expr->pat.parse) { |
Willy Tarreau | 9987ea9 | 2013-06-11 21:09:06 +0200 | [diff] [blame] | 397 | 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] | 398 | goto out_free_expr; |
| 399 | } |
| 400 | |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 401 | if (!pattern_read_from_file(&expr->pat, args[1], patflags | PAT_F_FROM_FILE, err)) |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 402 | goto out_free_expr; |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 403 | args++; |
| 404 | } |
| 405 | else if ((*args)[1] == 'm') { |
| 406 | int idx; |
| 407 | |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 408 | if (!LIST_ISEMPTY(&expr->pat.patterns) || !eb_is_empty(&expr->pat.pattern_tree)) { |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 409 | memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression"); |
| 410 | goto out_free_expr; |
| 411 | } |
| 412 | |
Willy Tarreau | 6f8fe31 | 2013-11-28 22:24:25 +0100 | [diff] [blame] | 413 | idx = pat_find_match_name(args[1]); |
Willy Tarreau | 5adeda1 | 2013-03-31 22:13:34 +0200 | [diff] [blame] | 414 | if (idx < 0) { |
| 415 | memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]); |
| 416 | goto out_free_expr; |
| 417 | } |
| 418 | |
| 419 | /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */ |
Thierry FOURNIER | e3ded59 | 2013-12-06 15:36:54 +0100 | [diff] [blame] | 420 | if (!sample_casts[cur_type][pat_match_types[idx]]) { |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 421 | 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] | 422 | goto out_free_expr; |
| 423 | } |
Thierry FOURNIER | e3ded59 | 2013-12-06 15:36:54 +0100 | [diff] [blame] | 424 | expr->pat.parse = pat_parse_fcts[idx]; |
| 425 | expr->pat.match = pat_match_fcts[idx]; |
Willy Tarreau | 2b5285d | 2010-05-09 23:45:24 +0200 | [diff] [blame] | 426 | args++; |
| 427 | } |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 428 | else if ((*args)[1] == '-') { |
| 429 | args++; |
| 430 | break; |
| 431 | } |
| 432 | else |
| 433 | break; |
| 434 | args++; |
| 435 | } |
| 436 | |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 437 | if (!expr->pat.parse) { |
Willy Tarreau | 9987ea9 | 2013-06-11 21:09:06 +0200 | [diff] [blame] | 438 | 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] | 439 | goto out_free_expr; |
| 440 | } |
| 441 | |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 442 | /* now parse all patterns */ |
Thierry FOURNIER | 7148ce6 | 2013-12-06 19:06:43 +0100 | [diff] [blame] | 443 | pattern = NULL; |
| 444 | if (!pattern_register(&expr->pat, args, NULL, &pattern, patflags, err)) |
| 445 | goto out_free_pattern; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 446 | |
| 447 | return expr; |
| 448 | |
| 449 | out_free_pattern: |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 450 | pattern_free(pattern); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 451 | out_free_expr: |
| 452 | prune_acl_expr(expr); |
| 453 | free(expr); |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 454 | free(ckw); |
Willy Tarreau | c37a3c7 | 2013-12-13 01:24:09 +0100 | [diff] [blame] | 455 | out_free_smp: |
| 456 | free(smp); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 457 | out_return: |
| 458 | return NULL; |
| 459 | } |
| 460 | |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 461 | /* Purge everything in the acl <acl>, then return <acl>. */ |
| 462 | struct acl *prune_acl(struct acl *acl) { |
| 463 | |
| 464 | struct acl_expr *expr, *exprb; |
| 465 | |
| 466 | free(acl->name); |
| 467 | |
| 468 | list_for_each_entry_safe(expr, exprb, &acl->expr, list) { |
| 469 | LIST_DEL(&expr->list); |
| 470 | prune_acl_expr(expr); |
| 471 | free(expr); |
| 472 | } |
| 473 | |
| 474 | return acl; |
| 475 | } |
| 476 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 477 | /* Parse an ACL with the name starting at <args>[0], and with a list of already |
| 478 | * 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] | 479 | * 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] | 480 | * an anonymous one and it won't be merged with any other one. If <err> is not |
| 481 | * 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] | 482 | * freeable or NULL. <al> is the arg_list serving as a head for unresolved |
| 483 | * dependencies. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 484 | * |
| 485 | * args syntax: <aclname> <acl_expr> |
| 486 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 487 | struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 488 | { |
| 489 | __label__ out_return, out_free_acl_expr, out_free_name; |
| 490 | struct acl *cur_acl; |
| 491 | struct acl_expr *acl_expr; |
| 492 | char *name; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 493 | const char *pos; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 494 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 495 | if (**args && (pos = invalid_char(*args))) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 496 | memprintf(err, "invalid character in ACL name : '%c'", *pos); |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 497 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 498 | } |
Willy Tarreau | 2e74c3f | 2007-12-02 18:45:09 +0100 | [diff] [blame] | 499 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 500 | acl_expr = parse_acl_expr(args + 1, err, al); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 501 | if (!acl_expr) { |
| 502 | /* parse_acl_expr will have filled <err> here */ |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 503 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 504 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 505 | |
Willy Tarreau | 404e8ab | 2009-07-26 19:40:40 +0200 | [diff] [blame] | 506 | /* Check for args beginning with an opening parenthesis just after the |
| 507 | * subject, as this is almost certainly a typo. Right now we can only |
| 508 | * emit a warning, so let's do so. |
| 509 | */ |
Krzysztof Piotr Oledzki | 4cdd831 | 2009-10-05 00:23:35 +0200 | [diff] [blame] | 510 | if (!strchr(args[1], '(') && *args[2] == '(') |
Willy Tarreau | 404e8ab | 2009-07-26 19:40:40 +0200 | [diff] [blame] | 511 | Warning("parsing acl '%s' :\n" |
| 512 | " matching '%s' for pattern '%s' is likely a mistake and probably\n" |
| 513 | " not what you want. Maybe you need to remove the extraneous space before '('.\n" |
| 514 | " If you are really sure this is not an error, please insert '--' between the\n" |
| 515 | " match and the pattern to make this warning message disappear.\n", |
| 516 | args[0], args[1], args[2]); |
| 517 | |
Willy Tarreau | 2a56c5e | 2010-03-15 16:13:29 +0100 | [diff] [blame] | 518 | if (*args[0]) |
| 519 | cur_acl = find_acl_by_name(args[0], known_acl); |
| 520 | else |
| 521 | cur_acl = NULL; |
| 522 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 523 | if (!cur_acl) { |
| 524 | name = strdup(args[0]); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 525 | if (!name) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 526 | memprintf(err, "out of memory when parsing ACL"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 527 | goto out_free_acl_expr; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 528 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 529 | cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 530 | if (cur_acl == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 531 | memprintf(err, "out of memory when parsing ACL"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 532 | goto out_free_name; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 533 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 534 | |
| 535 | LIST_INIT(&cur_acl->expr); |
| 536 | LIST_ADDQ(known_acl, &cur_acl->list); |
| 537 | cur_acl->name = name; |
| 538 | } |
| 539 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 540 | /* We want to know what features the ACL needs (typically HTTP parsing), |
| 541 | * and where it may be used. If an ACL relies on multiple matches, it is |
| 542 | * OK if at least one of them may match in the context where it is used. |
| 543 | */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 544 | cur_acl->use |= acl_expr->smp->fetch->use; |
| 545 | cur_acl->val |= acl_expr->smp->fetch->val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 546 | LIST_ADDQ(&cur_acl->expr, &acl_expr->list); |
| 547 | return cur_acl; |
| 548 | |
| 549 | out_free_name: |
| 550 | free(name); |
| 551 | out_free_acl_expr: |
| 552 | prune_acl_expr(acl_expr); |
| 553 | free(acl_expr); |
| 554 | out_return: |
| 555 | return NULL; |
| 556 | } |
| 557 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 558 | /* Some useful ACLs provided by default. Only those used are allocated. */ |
| 559 | |
| 560 | const struct { |
| 561 | const char *name; |
| 562 | const char *expr[4]; /* put enough for longest expression */ |
| 563 | } default_acl_list[] = { |
Willy Tarreau | 58393e1 | 2008-07-20 10:39:22 +0200 | [diff] [blame] | 564 | { .name = "TRUE", .expr = {"always_true",""}}, |
| 565 | { .name = "FALSE", .expr = {"always_false",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 566 | { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}}, |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 567 | { .name = "HTTP", .expr = {"req_proto_http",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 568 | { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}}, |
| 569 | { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}}, |
| 570 | { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}}, |
| 571 | { .name = "METH_GET", .expr = {"method","GET","HEAD",""}}, |
| 572 | { .name = "METH_HEAD", .expr = {"method","HEAD",""}}, |
| 573 | { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}}, |
| 574 | { .name = "METH_POST", .expr = {"method","POST",""}}, |
| 575 | { .name = "METH_TRACE", .expr = {"method","TRACE",""}}, |
| 576 | { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}}, |
| 577 | { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}}, |
| 578 | { .name = "HTTP_URL_STAR", .expr = {"url","*",""}}, |
| 579 | { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}}, |
Emeric Brun | bede3d0 | 2009-06-30 17:54:00 +0200 | [diff] [blame] | 580 | { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}}, |
Willy Tarreau | c631770 | 2008-07-20 09:29:50 +0200 | [diff] [blame] | 581 | { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}}, |
Willy Tarreau | b6fb420 | 2008-07-20 11:18:28 +0200 | [diff] [blame] | 582 | { .name = "WAIT_END", .expr = {"wait_end",""}}, |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 583 | { .name = NULL, .expr = {""}} |
| 584 | }; |
| 585 | |
| 586 | /* Find a default ACL from the default_acl list, compile it and return it. |
| 587 | * If the ACL is not found, NULL is returned. In theory, it cannot fail, |
| 588 | * 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] | 589 | * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is |
| 590 | * 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] | 591 | * pointer must be freeable or NULL. <al> is an arg_list serving as a list head |
| 592 | * to report missing dependencies. |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 593 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 594 | static struct acl *find_acl_default(const char *acl_name, struct list *known_acl, |
| 595 | char **err, struct arg_list *al) |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 596 | { |
| 597 | __label__ out_return, out_free_acl_expr, out_free_name; |
| 598 | struct acl *cur_acl; |
| 599 | struct acl_expr *acl_expr; |
| 600 | char *name; |
| 601 | int index; |
| 602 | |
| 603 | for (index = 0; default_acl_list[index].name != NULL; index++) { |
| 604 | if (strcmp(acl_name, default_acl_list[index].name) == 0) |
| 605 | break; |
| 606 | } |
| 607 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 608 | if (default_acl_list[index].name == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 609 | memprintf(err, "no such ACL : '%s'", acl_name); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 610 | return NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 611 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 612 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 613 | acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 614 | if (!acl_expr) { |
| 615 | /* parse_acl_expr must have filled err here */ |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 616 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 617 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 618 | |
| 619 | name = strdup(acl_name); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 620 | if (!name) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 621 | memprintf(err, "out of memory when building default ACL '%s'", acl_name); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 622 | goto out_free_acl_expr; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 623 | } |
| 624 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 625 | cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 626 | if (cur_acl == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 627 | memprintf(err, "out of memory when building default ACL '%s'", acl_name); |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 628 | goto out_free_name; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 629 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 630 | |
| 631 | cur_acl->name = name; |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 632 | cur_acl->use |= acl_expr->smp->fetch->use; |
| 633 | cur_acl->val |= acl_expr->smp->fetch->val; |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 634 | LIST_INIT(&cur_acl->expr); |
| 635 | LIST_ADDQ(&cur_acl->expr, &acl_expr->list); |
| 636 | if (known_acl) |
| 637 | LIST_ADDQ(known_acl, &cur_acl->list); |
| 638 | |
| 639 | return cur_acl; |
| 640 | |
| 641 | out_free_name: |
| 642 | free(name); |
| 643 | out_free_acl_expr: |
| 644 | prune_acl_expr(acl_expr); |
| 645 | free(acl_expr); |
| 646 | out_return: |
| 647 | return NULL; |
| 648 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 649 | |
| 650 | /* Purge everything in the acl_cond <cond>, then return <cond>. */ |
| 651 | struct acl_cond *prune_acl_cond(struct acl_cond *cond) |
| 652 | { |
| 653 | struct acl_term_suite *suite, *tmp_suite; |
| 654 | struct acl_term *term, *tmp_term; |
| 655 | |
| 656 | /* iterate through all term suites and free all terms and all suites */ |
| 657 | list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) { |
| 658 | list_for_each_entry_safe(term, tmp_term, &suite->terms, list) |
| 659 | free(term); |
| 660 | free(suite); |
| 661 | } |
| 662 | return cond; |
| 663 | } |
| 664 | |
| 665 | /* Parse an ACL condition starting at <args>[0], relying on a list of already |
| 666 | * 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] | 667 | * case of low memory). Supports multiple conditions separated by "or". If |
| 668 | * <err> is not NULL, it will be filled with a pointer to an error message in |
| 669 | * case of error, that the caller is responsible for freeing. The initial |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 670 | * location must either be freeable or NULL. The list <al> serves as a list head |
| 671 | * for unresolved dependencies. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 672 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 673 | struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 674 | enum acl_cond_pol pol, char **err, struct arg_list *al) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 675 | { |
| 676 | __label__ out_return, out_free_suite, out_free_term; |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 677 | int arg, neg; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 678 | const char *word; |
| 679 | struct acl *cur_acl; |
| 680 | struct acl_term *cur_term; |
| 681 | struct acl_term_suite *cur_suite; |
| 682 | struct acl_cond *cond; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 683 | unsigned int suite_val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 684 | |
| 685 | cond = (struct acl_cond *)calloc(1, sizeof(*cond)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 686 | if (cond == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 687 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 688 | goto out_return; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 689 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 690 | |
| 691 | LIST_INIT(&cond->list); |
| 692 | LIST_INIT(&cond->suites); |
| 693 | cond->pol = pol; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 694 | cond->val = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 695 | |
| 696 | cur_suite = NULL; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 697 | suite_val = ~0U; |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 698 | neg = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 699 | for (arg = 0; *args[arg]; arg++) { |
| 700 | word = args[arg]; |
| 701 | |
| 702 | /* remove as many exclamation marks as we can */ |
| 703 | while (*word == '!') { |
| 704 | neg = !neg; |
| 705 | word++; |
| 706 | } |
| 707 | |
| 708 | /* an empty word is allowed because we cannot force the user to |
| 709 | * always think about not leaving exclamation marks alone. |
| 710 | */ |
| 711 | if (!*word) |
| 712 | continue; |
| 713 | |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 714 | if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) { |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 715 | /* new term suite */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 716 | cond->val |= suite_val; |
| 717 | suite_val = ~0U; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 718 | cur_suite = NULL; |
| 719 | neg = 0; |
| 720 | continue; |
| 721 | } |
| 722 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 723 | if (strcmp(word, "{") == 0) { |
| 724 | /* we may have a complete ACL expression between two braces, |
| 725 | * find the last one. |
| 726 | */ |
| 727 | int arg_end = arg + 1; |
| 728 | const char **args_new; |
| 729 | |
| 730 | while (*args[arg_end] && strcmp(args[arg_end], "}") != 0) |
| 731 | arg_end++; |
| 732 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 733 | if (!*args[arg_end]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 734 | memprintf(err, "missing closing '}' in condition"); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 735 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 736 | } |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 737 | |
| 738 | args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 739 | if (!args_new) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 740 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 741 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 742 | } |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 743 | |
Willy Tarreau | 2a56c5e | 2010-03-15 16:13:29 +0100 | [diff] [blame] | 744 | args_new[0] = ""; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 745 | memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new)); |
| 746 | args_new[arg_end - arg] = ""; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 747 | cur_acl = parse_acl(args_new, known_acl, err, al); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 748 | free(args_new); |
| 749 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 750 | if (!cur_acl) { |
| 751 | /* note that parse_acl() must have filled <err> here */ |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 752 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 753 | } |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 754 | word = args[arg + 1]; |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 755 | arg = arg_end; |
| 756 | } |
| 757 | else { |
| 758 | /* search for <word> in the known ACL names. If we do not find |
| 759 | * it, let's look for it in the default ACLs, and if found, add |
| 760 | * it to the list of ACLs of this proxy. This makes it possible |
| 761 | * to override them. |
| 762 | */ |
| 763 | cur_acl = find_acl_by_name(word, known_acl); |
| 764 | if (cur_acl == NULL) { |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 765 | cur_acl = find_acl_default(word, known_acl, err, al); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 766 | if (cur_acl == NULL) { |
| 767 | /* note that find_acl_default() must have filled <err> here */ |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 768 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 769 | } |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 770 | } |
Willy Tarreau | 16fbe82 | 2007-06-17 11:54:31 +0200 | [diff] [blame] | 771 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 772 | |
| 773 | cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term)); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 774 | if (cur_term == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 775 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 776 | goto out_free_suite; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 777 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 778 | |
| 779 | cur_term->acl = cur_acl; |
| 780 | cur_term->neg = neg; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 781 | |
| 782 | /* Here it is a bit complex. The acl_term_suite is a conjunction |
| 783 | * of many terms. It may only be used if all of its terms are |
| 784 | * usable at the same time. So the suite's validity domain is an |
| 785 | * AND between all ACL keywords' ones. But, the global condition |
| 786 | * is valid if at least one term suite is OK. So it's an OR between |
| 787 | * all of their validity domains. We could emit a warning as soon |
| 788 | * as suite_val is null because it means that the last ACL is not |
| 789 | * compatible with the previous ones. Let's remain simple for now. |
| 790 | */ |
| 791 | cond->use |= cur_acl->use; |
| 792 | suite_val &= cur_acl->val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 793 | |
| 794 | if (!cur_suite) { |
| 795 | cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite)); |
Willy Tarreau | f678b7f | 2013-01-24 00:25:39 +0100 | [diff] [blame] | 796 | if (cur_suite == NULL) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 797 | memprintf(err, "out of memory when parsing condition"); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 798 | goto out_free_term; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 799 | } |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 800 | LIST_INIT(&cur_suite->terms); |
| 801 | LIST_ADDQ(&cond->suites, &cur_suite->list); |
| 802 | } |
| 803 | LIST_ADDQ(&cur_suite->terms, &cur_term->list); |
Willy Tarreau | 74b98a8 | 2007-06-16 19:35:18 +0200 | [diff] [blame] | 804 | neg = 0; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 805 | } |
| 806 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 807 | cond->val |= suite_val; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 808 | return cond; |
| 809 | |
| 810 | out_free_term: |
| 811 | free(cur_term); |
| 812 | out_free_suite: |
| 813 | prune_acl_cond(cond); |
| 814 | free(cond); |
| 815 | out_return: |
| 816 | return NULL; |
| 817 | } |
| 818 | |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 819 | /* Builds an ACL condition starting at the if/unless keyword. The complete |
| 820 | * condition is returned. NULL is returned in case of error or if the first |
| 821 | * 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] | 822 | * the line number in the condition for better error reporting, and sets the |
| 823 | * 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] | 824 | * be filled with a pointer to an error message in case of error, that the |
| 825 | * caller is responsible for freeing. The initial location must either be |
| 826 | * freeable or NULL. |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 827 | */ |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 828 | struct acl_cond *build_acl_cond(const char *file, int line, struct proxy *px, const char **args, char **err) |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 829 | { |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 830 | enum acl_cond_pol pol = ACL_COND_NONE; |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 831 | struct acl_cond *cond = NULL; |
| 832 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 833 | if (err) |
| 834 | *err = NULL; |
| 835 | |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 836 | if (!strcmp(*args, "if")) { |
| 837 | pol = ACL_COND_IF; |
| 838 | args++; |
| 839 | } |
| 840 | else if (!strcmp(*args, "unless")) { |
| 841 | pol = ACL_COND_UNLESS; |
| 842 | args++; |
| 843 | } |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 844 | else { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 845 | memprintf(err, "conditions must start with either 'if' or 'unless'"); |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 846 | return NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 847 | } |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 848 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 849 | cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args); |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 850 | if (!cond) { |
| 851 | /* note that parse_acl_cond must have filled <err> here */ |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 852 | return NULL; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 853 | } |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 854 | |
| 855 | cond->file = file; |
| 856 | cond->line = line; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 857 | px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY); |
Willy Tarreau | 2bbba41 | 2010-01-28 16:48:33 +0100 | [diff] [blame] | 858 | return cond; |
| 859 | } |
| 860 | |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 861 | /* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or |
| 862 | * 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] | 863 | * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 864 | * data is being examined. The function automatically sets SMP_OPT_ITERATE. This |
| 865 | * function only computes the condition, it does not apply the polarity required |
| 866 | * 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] | 867 | * |
| 868 | * res = acl_pass(res); |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 869 | * if (res == ACL_TEST_MISS) |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 870 | * return 0; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 871 | * if (cond->pol == ACL_COND_UNLESS) |
| 872 | * res = !res; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 873 | */ |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 874 | enum acl_test_res acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *l4, void *l7, unsigned int opt) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 875 | { |
| 876 | __label__ fetch_next; |
| 877 | struct acl_term_suite *suite; |
| 878 | struct acl_term *term; |
| 879 | struct acl_expr *expr; |
| 880 | struct acl *acl; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 881 | struct sample smp; |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 882 | enum acl_test_res acl_res, suite_res, cond_res; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 883 | |
Willy Tarreau | 7a777ed | 2012-04-26 11:44:02 +0200 | [diff] [blame] | 884 | /* ACLs are iterated over all values, so let's always set the flag to |
| 885 | * indicate this to the fetch functions. |
| 886 | */ |
| 887 | opt |= SMP_OPT_ITERATE; |
| 888 | |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 889 | /* We're doing a logical OR between conditions so we initialize to FAIL. |
| 890 | * The MISS status is propagated down from the suites. |
| 891 | */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 892 | cond_res = ACL_TEST_FAIL; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 893 | list_for_each_entry(suite, &cond->suites, list) { |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 894 | /* Evaluate condition suite <suite>. We stop at the first term |
Willy Tarreau | 0cba607 | 2013-11-28 22:21:02 +0100 | [diff] [blame] | 895 | * which returns ACL_TEST_FAIL. The MISS status is still propagated |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 896 | * in case of uncertainty in the result. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 897 | */ |
| 898 | |
| 899 | /* we're doing a logical AND between terms, so we must set the |
| 900 | * initial value to PASS. |
| 901 | */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 902 | suite_res = ACL_TEST_PASS; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 903 | list_for_each_entry(term, &suite->terms, list) { |
| 904 | acl = term->acl; |
| 905 | |
| 906 | /* FIXME: use cache ! |
| 907 | * check acl->cache_idx for this. |
| 908 | */ |
| 909 | |
| 910 | /* ACL result not cached. Let's scan all the expressions |
| 911 | * and use the first one to match. |
| 912 | */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 913 | acl_res = ACL_TEST_FAIL; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 914 | list_for_each_entry(expr, &acl->expr, list) { |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 915 | /* we need to reset context and flags */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 916 | memset(&smp, 0, sizeof(smp)); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 917 | fetch_next: |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 918 | if (!sample_process(px, l4, l7, opt, expr->smp, &smp)) { |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 919 | /* maybe we could not fetch because of missing data */ |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 920 | if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL)) |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 921 | acl_res |= ACL_TEST_MISS; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 922 | continue; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 923 | } |
Willy Tarreau | c426296 | 2010-05-10 23:42:40 +0200 | [diff] [blame] | 924 | |
Thierry FOURNIER | 7609064 | 2013-12-10 15:03:38 +0100 | [diff] [blame] | 925 | acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, NULL, NULL, NULL)); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 926 | /* |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 927 | * OK now acl_res holds the result of this expression |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 928 | * 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] | 929 | * |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 930 | * Then if (!MISS) we can cache the result, and put |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 931 | * (smp.flags & SMP_F_VOLATILE) in the cache flags. |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 932 | * |
| 933 | * FIXME: implement cache. |
| 934 | * |
| 935 | */ |
| 936 | |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 937 | /* we're ORing these terms, so a single PASS is enough */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 938 | if (acl_res == ACL_TEST_PASS) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 939 | break; |
| 940 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 941 | if (smp.flags & SMP_F_NOT_LAST) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 942 | goto fetch_next; |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 943 | |
| 944 | /* sometimes we know the fetched data is subject to change |
| 945 | * later and give another chance for a new match (eg: request |
| 946 | * size, time, ...) |
| 947 | */ |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 948 | if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL)) |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 949 | acl_res |= ACL_TEST_MISS; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 950 | } |
| 951 | /* |
| 952 | * Here we have the result of an ACL (cached or not). |
| 953 | * ACLs are combined, negated or not, to form conditions. |
| 954 | */ |
| 955 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 956 | if (term->neg) |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 957 | acl_res = acl_neg(acl_res); |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 958 | |
| 959 | suite_res &= acl_res; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 960 | |
Willy Tarreau | 79c412b | 2013-10-30 19:30:32 +0100 | [diff] [blame] | 961 | /* 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] | 962 | if (suite_res != ACL_TEST_PASS) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 963 | break; |
| 964 | } |
| 965 | cond_res |= suite_res; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 966 | |
| 967 | /* we're ORing these terms, so a single PASS is enough */ |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 968 | if (cond_res == ACL_TEST_PASS) |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 969 | break; |
| 970 | } |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 971 | return cond_res; |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 972 | } |
| 973 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 974 | /* Returns a pointer to the first ACL conflicting with usage at place <where> |
| 975 | * which is one of the SMP_VAL_* bits indicating a check place, or NULL if |
| 976 | * no conflict is found. Only full conflicts are detected (ACL is not usable). |
| 977 | * Use the next function to check for useless keywords. |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 978 | */ |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 979 | 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] | 980 | { |
| 981 | struct acl_term_suite *suite; |
| 982 | struct acl_term *term; |
| 983 | struct acl *acl; |
| 984 | |
| 985 | list_for_each_entry(suite, &cond->suites, list) { |
| 986 | list_for_each_entry(term, &suite->terms, list) { |
| 987 | acl = term->acl; |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 988 | if (!(acl->val & where)) |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 989 | return acl; |
| 990 | } |
| 991 | } |
| 992 | return NULL; |
| 993 | } |
| 994 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 995 | /* Returns a pointer to the first ACL and its first keyword to conflict with |
| 996 | * usage at place <where> which is one of the SMP_VAL_* bits indicating a check |
| 997 | * place. Returns true if a conflict is found, with <acl> and <kw> set (if non |
| 998 | * null), or false if not conflict is found. The first useless keyword is |
| 999 | * returned. |
| 1000 | */ |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 1001 | 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] | 1002 | { |
| 1003 | struct acl_term_suite *suite; |
| 1004 | struct acl_term *term; |
| 1005 | struct acl_expr *expr; |
| 1006 | |
| 1007 | list_for_each_entry(suite, &cond->suites, list) { |
| 1008 | list_for_each_entry(term, &suite->terms, list) { |
| 1009 | list_for_each_entry(expr, &term->acl->expr, list) { |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1010 | if (!(expr->smp->fetch->val & where)) { |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 1011 | if (acl) |
| 1012 | *acl = term->acl; |
| 1013 | if (kw) |
| 1014 | *kw = expr->kw; |
| 1015 | return 1; |
| 1016 | } |
| 1017 | } |
| 1018 | } |
| 1019 | } |
| 1020 | return 0; |
| 1021 | } |
| 1022 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1023 | /* |
| 1024 | * Find targets for userlist and groups in acl. Function returns the number |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1025 | * of errors or OK if everything is fine. It must be called only once sample |
| 1026 | * fetch arguments have been resolved (after smp_resolve_args()). |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1027 | */ |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1028 | int acl_find_targets(struct proxy *p) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1029 | { |
| 1030 | |
| 1031 | struct acl *acl; |
| 1032 | struct acl_expr *expr; |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 1033 | struct pattern *pattern; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1034 | int cfgerr = 0; |
| 1035 | |
| 1036 | list_for_each_entry(acl, &p->acl, list) { |
| 1037 | list_for_each_entry(expr, &acl->expr, list) { |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1038 | if (!strcmp(expr->kw, "http_auth_group")) { |
| 1039 | /* Note: the ARGT_USR argument may only have been resolved earlier |
| 1040 | * by smp_resolve_args(). |
| 1041 | */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1042 | if (expr->smp->arg_p->unresolved) { |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1043 | Alert("Internal bug in proxy %s: %sacl %s %s() makes use of unresolved userlist '%s'. Please report this.\n", |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1044 | p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1045 | cfgerr++; |
Willy Tarreau | 496aa01 | 2012-06-01 10:38:29 +0200 | [diff] [blame] | 1046 | continue; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1047 | } |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1048 | |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 1049 | if (LIST_ISEMPTY(&expr->pat.patterns)) { |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1050 | Alert("proxy %s: acl %s %s(): no groups specified.\n", |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 1051 | p->id, acl->name, expr->kw); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1052 | cfgerr++; |
| 1053 | continue; |
| 1054 | } |
| 1055 | |
Thierry FOURNIER | d163e1c | 2013-11-28 11:41:23 +0100 | [diff] [blame] | 1056 | list_for_each_entry(pattern, &expr->pat.patterns, list) { |
Willy Tarreau | 7d1df41 | 2012-11-23 23:47:36 +0100 | [diff] [blame] | 1057 | /* this keyword only has one argument */ |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 1058 | pattern->val.group_mask = auth_resolve_groups(expr->smp->arg_p->data.usr, pattern->ptr.str); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1059 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1060 | if (!pattern->val.group_mask) { |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1061 | Alert("proxy %s: acl %s %s(): invalid group '%s'.\n", |
| 1062 | p->id, acl->name, expr->kw, pattern->ptr.str); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1063 | cfgerr++; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1064 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1065 | free(pattern->ptr.str); |
| 1066 | pattern->ptr.str = NULL; |
| 1067 | pattern->len = 0; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1068 | } |
| 1069 | } |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | return cfgerr; |
| 1074 | } |
Willy Tarreau | dd64f8d | 2008-07-27 22:02:32 +0200 | [diff] [blame] | 1075 | |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 1076 | /* initializes ACLs by resolving the sample fetch names they rely upon. |
| 1077 | * Returns 0 on success, otherwise an error. |
| 1078 | */ |
| 1079 | int init_acl() |
| 1080 | { |
| 1081 | int err = 0; |
| 1082 | int index; |
| 1083 | const char *name; |
| 1084 | struct acl_kw_list *kwl; |
| 1085 | struct sample_fetch *smp; |
| 1086 | |
| 1087 | list_for_each_entry(kwl, &acl_keywords.list, list) { |
| 1088 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1089 | name = kwl->kw[index].fetch_kw; |
| 1090 | if (!name) |
| 1091 | name = kwl->kw[index].kw; |
| 1092 | |
| 1093 | smp = find_sample_fetch(name, strlen(name)); |
| 1094 | if (!smp) { |
| 1095 | Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n", |
| 1096 | kwl->kw[index].kw, name); |
| 1097 | err++; |
| 1098 | continue; |
| 1099 | } |
| 1100 | kwl->kw[index].smp = smp; |
| 1101 | } |
| 1102 | } |
| 1103 | return err; |
| 1104 | } |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1105 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1106 | /************************************************************************/ |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1107 | /* All supported sample and ACL keywords must be declared here. */ |
| 1108 | /************************************************************************/ |
| 1109 | |
| 1110 | /* Note: must not be declared <const> as its list will be overwritten. |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1111 | * Please take care of keeping this list alphabetically sorted. |
| 1112 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1113 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1114 | { /* END */ }, |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1115 | }}; |
| 1116 | |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1117 | __attribute__((constructor)) |
| 1118 | static void __acl_init(void) |
| 1119 | { |
Willy Tarreau | a84d374 | 2007-05-07 00:36:48 +0200 | [diff] [blame] | 1120 | acl_register_keywords(&acl_kws); |
| 1121 | } |
| 1122 | |
| 1123 | |
| 1124 | /* |
| 1125 | * Local variables: |
| 1126 | * c-indent-level: 8 |
| 1127 | * c-basic-offset: 8 |
| 1128 | * End: |
| 1129 | */ |