blob: df83ef4d48b165fd4aaaccf3863d0c19e7e3a346 [file] [log] [blame]
Willy Tarreaua84d3742007-05-07 00:36:48 +02001/*
2 * ACL management functions.
3 *
Willy Tarreaud4c33c82013-01-07 21:59:07 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaua84d3742007-05-07 00:36:48 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreauae8b7962007-06-09 23:10:04 +020013#include <ctype.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020014#include <stdio.h>
15#include <string.h>
16
17#include <common/config.h>
18#include <common/mini-clist.h>
19#include <common/standard.h>
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +010020#include <common/uri_auth.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020021
Willy Tarreau2b5285d2010-05-09 23:45:24 +020022#include <types/global.h>
23
Willy Tarreaua84d3742007-05-07 00:36:48 +020024#include <proto/acl.h>
Willy Tarreau34db1082012-04-19 17:16:54 +020025#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010026#include <proto/auth.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020027#include <proto/channel.h>
Willy Tarreau404e8ab2009-07-26 19:40:40 +020028#include <proto/log.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010029#include <proto/pattern.h>
Willy Tarreau0b1cd942010-05-16 22:18:27 +020030#include <proto/proxy.h>
Willy Tarreau8ed669b2013-01-11 15:49:37 +010031#include <proto/sample.h>
Willy Tarreaud28c3532012-04-19 19:28:33 +020032#include <proto/stick_table.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020033
Willy Tarreauc4262962010-05-10 23:42:40 +020034#include <ebsttree.h>
35
Willy Tarreaua84d3742007-05-07 00:36:48 +020036/* List head of all known ACL keywords */
37static struct acl_kw_list acl_keywords = {
38 .list = LIST_HEAD_INIT(acl_keywords.list)
39};
40
Willy Tarreau0cba6072013-11-28 22:21:02 +010041/* input values are 0 or 3, output is the same */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010042static inline enum acl_test_res pat2acl(struct pattern *pat)
Willy Tarreau0cba6072013-11-28 22:21:02 +010043{
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010044 if (pat)
45 return ACL_TEST_PASS;
46 else
47 return ACL_TEST_FAIL;
Willy Tarreau0cba6072013-11-28 22:21:02 +010048}
49
Willy Tarreaua5909832007-06-17 20:40:25 +020050/*
Willy Tarreaua84d3742007-05-07 00:36:48 +020051 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
52 * parsing sessions.
53 */
54void acl_register_keywords(struct acl_kw_list *kwl)
55{
56 LIST_ADDQ(&acl_keywords.list, &kwl->list);
57}
58
59/*
60 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
61 */
62void acl_unregister_keywords(struct acl_kw_list *kwl)
63{
64 LIST_DEL(&kwl->list);
65 LIST_INIT(&kwl->list);
66}
67
68/* Return a pointer to the ACL <name> within the list starting at <head>, or
69 * NULL if not found.
70 */
71struct acl *find_acl_by_name(const char *name, struct list *head)
72{
73 struct acl *acl;
74 list_for_each_entry(acl, head, list) {
75 if (strcmp(acl->name, name) == 0)
76 return acl;
77 }
78 return NULL;
79}
80
81/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
Willy Tarreau4bfa4222013-12-16 22:01:06 +010082 * <kw> contains an opening parenthesis or a comma, only the left part of it is
83 * checked.
Willy Tarreaua84d3742007-05-07 00:36:48 +020084 */
85struct acl_keyword *find_acl_kw(const char *kw)
86{
87 int index;
88 const char *kwend;
89 struct acl_kw_list *kwl;
90
Willy Tarreau4bfa4222013-12-16 22:01:06 +010091 kwend = kw;
92 while (*kwend && *kwend != '(' && *kwend != ',')
93 kwend++;
Willy Tarreaua84d3742007-05-07 00:36:48 +020094
95 list_for_each_entry(kwl, &acl_keywords.list, list) {
96 for (index = 0; kwl->kw[index].kw != NULL; index++) {
97 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
98 kwl->kw[index].kw[kwend-kw] == 0)
99 return &kwl->kw[index];
100 }
101 }
102 return NULL;
103}
104
Willy Tarreaua84d3742007-05-07 00:36:48 +0200105static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
106{
Willy Tarreau34db1082012-04-19 17:16:54 +0200107 struct arg *arg;
108
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100109 pattern_prune(&expr->pat);
Willy Tarreau34db1082012-04-19 17:16:54 +0200110
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100111 for (arg = expr->smp->arg_p; arg; arg++) {
Willy Tarreau34db1082012-04-19 17:16:54 +0200112 if (arg->type == ARGT_STOP)
113 break;
Willy Tarreau496aa012012-06-01 10:38:29 +0200114 if (arg->type == ARGT_STR || arg->unresolved) {
Willy Tarreau34db1082012-04-19 17:16:54 +0200115 free(arg->data.str.str);
116 arg->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +0200117 arg->unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +0200118 }
Willy Tarreau34db1082012-04-19 17:16:54 +0200119 }
120
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100121 if (expr->smp->arg_p != empty_arg_list)
122 free(expr->smp->arg_p);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200123 return expr;
124}
125
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200126/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
127 * not NULL, it will be filled with a pointer to an error message in case of
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200128 * error. This pointer must be freeable or NULL. <al> is an arg_list serving
129 * as a list head to report missing dependencies.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200130 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200131 * Right now, the only accepted syntax is :
132 * <subject> [<value>...]
133 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100134struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al,
135 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200136{
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100137 __label__ out_return, out_free_expr;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200138 struct acl_expr *expr;
139 struct acl_keyword *aclkw;
Thierry FOURNIER7148ce62013-12-06 19:06:43 +0100140 int patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200141 const char *arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100142 struct sample_expr *smp = NULL;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100143 int idx = 0;
144 char *ckw = NULL;
145 const char *begw;
146 const char *endw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100147 const char *endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100148 int cur_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100149 int nbargs;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100150 int operator = STD_OP_EQ;
151 int op;
152 int contain_colon, have_dot;
153 const char *dot;
154 signed long long value, minor;
155 /* The following buffer contain two numbers, a ':' separator and the final \0. */
156 char buffer[NB_LLMAX_STR + 1 + NB_LLMAX_STR + 1];
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100157 int is_loaded;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100158 int unique_id;
159 char *error;
160 struct pat_ref *ref;
161 struct pattern_expr *pattern_expr;
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100162 int load_as_map = 0;
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200163 int acl_conv_found = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200164
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100165 /* First, we look for an ACL keyword. And if we don't find one, then
166 * we look for a sample fetch expression starting with a sample fetch
167 * keyword.
Willy Tarreaubef91e72013-03-31 23:14:46 +0200168 */
Willy Tarreau131b4662013-12-13 01:08:36 +0100169
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100170 al->ctx = ARGC_ACL; // to report errors while resolving args late
Willy Tarreau131b4662013-12-13 01:08:36 +0100171 al->kw = *args;
172 al->conv = NULL;
173
Willy Tarreaua84d3742007-05-07 00:36:48 +0200174 aclkw = find_acl_kw(args[0]);
Willy Tarreau20490922014-03-17 18:04:27 +0100175 if (aclkw) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100176 /* OK we have a real ACL keyword */
Willy Tarreau9987ea92013-06-11 21:09:06 +0200177
Willy Tarreau131b4662013-12-13 01:08:36 +0100178 /* build new sample expression for this ACL */
Vincent Bernat02779b62016-04-03 13:48:43 +0200179 smp = calloc(1, sizeof(*smp));
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100180 if (!smp) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100181 memprintf(err, "out of memory when parsing ACL expression");
182 goto out_return;
183 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100184 LIST_INIT(&(smp->conv_exprs));
185 smp->fetch = aclkw->smp;
186 smp->arg_p = empty_arg_list;
Willy Tarreau34db1082012-04-19 17:16:54 +0200187
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100188 /* look for the begining of the subject arguments */
Willy Tarreau131b4662013-12-13 01:08:36 +0100189 for (arg = args[0]; *arg && *arg != '(' && *arg != ','; arg++);
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100190
Willy Tarreau131b4662013-12-13 01:08:36 +0100191 endt = arg;
192 if (*endt == '(') {
193 /* look for the end of this term and skip the opening parenthesis */
194 endt = ++arg;
195 while (*endt && *endt != ')')
196 endt++;
197 if (*endt != ')') {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100198 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw);
199 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100200 }
201 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100202
Willy Tarreau131b4662013-12-13 01:08:36 +0100203 /* At this point, we have :
204 * - args[0] : beginning of the keyword
205 * - arg : end of the keyword, first character not part of keyword
206 * nor the opening parenthesis (so first character of args
207 * if present).
208 * - endt : end of the term (=arg or last parenthesis if args are present)
209 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100210 nbargs = make_arg_list(arg, endt - arg, smp->fetch->arg_mask, &smp->arg_p,
Willy Tarreau131b4662013-12-13 01:08:36 +0100211 err, NULL, NULL, al);
212 if (nbargs < 0) {
213 /* note that make_arg_list will have set <err> here */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100214 memprintf(err, "ACL keyword '%s' : %s", aclkw->kw, *err);
215 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100216 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100217
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100218 if (!smp->arg_p) {
219 smp->arg_p = empty_arg_list;
Willy Tarreau131b4662013-12-13 01:08:36 +0100220 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100221 else if (smp->fetch->val_args && !smp->fetch->val_args(smp->arg_p, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100222 /* invalid keyword argument, error must have been
223 * set by val_args().
224 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100225 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
226 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100227 }
228 arg = endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100229
Willy Tarreau131b4662013-12-13 01:08:36 +0100230 /* look for the begining of the converters list. Those directly attached
231 * to the ACL keyword are found just after <arg> which points to the comma.
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200232 * If we find any converter, then we don't use the ACL keyword's match
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200233 * anymore but the one related to the converter's output type.
Willy Tarreau131b4662013-12-13 01:08:36 +0100234 */
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200235 cur_type = smp->fetch->out_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100236 while (*arg) {
237 struct sample_conv *conv;
238 struct sample_conv_expr *conv_expr;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100239
Willy Tarreau131b4662013-12-13 01:08:36 +0100240 if (*arg == ')') /* skip last closing parenthesis */
241 arg++;
242
243 if (*arg && *arg != ',') {
244 if (ckw)
245 memprintf(err, "ACL keyword '%s' : missing comma after conv keyword '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100246 aclkw->kw, ckw);
Willy Tarreau131b4662013-12-13 01:08:36 +0100247 else
248 memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100249 aclkw->kw);
250 goto out_free_smp;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200251 }
Willy Tarreauae52f062012-04-26 12:13:35 +0200252
Willy Tarreau131b4662013-12-13 01:08:36 +0100253 while (*arg == ',') /* then trailing commas */
254 arg++;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200255
Willy Tarreau131b4662013-12-13 01:08:36 +0100256 begw = arg; /* start of conv keyword */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100257
Willy Tarreau131b4662013-12-13 01:08:36 +0100258 if (!*begw)
259 /* none ? end of converters */
260 break;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100261
Willy Tarreau131b4662013-12-13 01:08:36 +0100262 for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++);
Willy Tarreau9ca69362013-10-22 19:10:06 +0200263
Willy Tarreau131b4662013-12-13 01:08:36 +0100264 free(ckw);
265 ckw = my_strndup(begw, endw - begw);
Willy Tarreauf75d0082013-04-07 21:20:44 +0200266
Willy Tarreau131b4662013-12-13 01:08:36 +0100267 conv = find_sample_conv(begw, endw - begw);
268 if (!conv) {
269 /* Unknown converter method */
270 memprintf(err, "ACL keyword '%s' : unknown conv method '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100271 aclkw->kw, ckw);
272 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100273 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100274
Willy Tarreau131b4662013-12-13 01:08:36 +0100275 arg = endw;
276 if (*arg == '(') {
277 /* look for the end of this term */
278 while (*arg && *arg != ')')
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100279 arg++;
Willy Tarreau131b4662013-12-13 01:08:36 +0100280 if (*arg != ')') {
281 memprintf(err, "ACL keyword '%s' : syntax error: missing ')' after conv keyword '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100282 aclkw->kw, ckw);
283 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100284 }
Willy Tarreau131b4662013-12-13 01:08:36 +0100285 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100286
Willy Tarreau131b4662013-12-13 01:08:36 +0100287 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
288 memprintf(err, "ACL keyword '%s' : returns type of conv method '%s' is unknown.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100289 aclkw->kw, ckw);
290 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100291 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100292
Willy Tarreau131b4662013-12-13 01:08:36 +0100293 /* If impossible type conversion */
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200294 if (!sample_casts[cur_type][conv->in_type]) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100295 memprintf(err, "ACL keyword '%s' : conv method '%s' cannot be applied.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100296 aclkw->kw, ckw);
297 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100298 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100299
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200300 cur_type = conv->out_type;
Vincent Bernat02779b62016-04-03 13:48:43 +0200301 conv_expr = calloc(1, sizeof(*conv_expr));
Willy Tarreau131b4662013-12-13 01:08:36 +0100302 if (!conv_expr)
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100303 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100304
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100305 LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list));
Willy Tarreau131b4662013-12-13 01:08:36 +0100306 conv_expr->conv = conv;
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200307 acl_conv_found = 1;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100308
Willy Tarreau131b4662013-12-13 01:08:36 +0100309 if (arg != endw) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100310 int err_arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100311
Willy Tarreau131b4662013-12-13 01:08:36 +0100312 if (!conv->arg_mask) {
313 memprintf(err, "ACL keyword '%s' : conv method '%s' does not support any args.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100314 aclkw->kw, ckw);
315 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100316 }
317
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100318 al->kw = smp->fetch->kw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100319 al->conv = conv_expr->conv->kw;
Willy Tarreauadaddc22013-12-13 01:30:22 +0100320 if (make_arg_list(endw + 1, arg - endw - 1, conv->arg_mask, &conv_expr->arg_p, err, NULL, &err_arg, al) < 0) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100321 memprintf(err, "ACL keyword '%s' : invalid arg %d in conv method '%s' : %s.",
Willy Tarreauadaddc22013-12-13 01:30:22 +0100322 aclkw->kw, err_arg+1, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100323 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100324 }
325
Willy Tarreau131b4662013-12-13 01:08:36 +0100326 if (!conv_expr->arg_p)
327 conv_expr->arg_p = empty_arg_list;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100328
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100329 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100330 memprintf(err, "ACL keyword '%s' : invalid args in conv method '%s' : %s.",
Willy Tarreauadaddc22013-12-13 01:30:22 +0100331 aclkw->kw, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100332 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100333 }
334 }
Willy Tarreau131b4662013-12-13 01:08:36 +0100335 else if (ARGM(conv->arg_mask)) {
336 memprintf(err, "ACL keyword '%s' : missing args for conv method '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100337 aclkw->kw, ckw);
338 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100339 }
Willy Tarreau61612d42012-04-19 18:42:05 +0200340 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200341 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100342 else {
343 /* This is not an ACL keyword, so we hope this is a sample fetch
344 * keyword that we're going to transparently use as an ACL. If
345 * so, we retrieve a completely parsed expression with args and
346 * convs already done.
347 */
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100348 smp = sample_parse_expr((char **)args, &idx, file, line, err, al);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100349 if (!smp) {
350 memprintf(err, "%s in ACL expression '%s'", *err, *args);
351 goto out_return;
352 }
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200353 cur_type = smp_expr_output_type(smp);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100354 }
355
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200356 expr = calloc(1, sizeof(*expr));
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100357 if (!expr) {
358 memprintf(err, "out of memory when parsing ACL expression");
359 goto out_return;
360 }
361
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100362 pattern_init_head(&expr->pat);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100363
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200364 expr->pat.expect_type = cur_type;
365 expr->smp = smp;
366 expr->kw = smp->fetch->kw;
367 smp = NULL; /* don't free it anymore */
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100368
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200369 if (aclkw && !acl_conv_found) {
370 expr->kw = aclkw->kw;
371 expr->pat.parse = aclkw->parse ? aclkw->parse : pat_parse_fcts[aclkw->match_type];
372 expr->pat.index = aclkw->index ? aclkw->index : pat_index_fcts[aclkw->match_type];
373 expr->pat.match = aclkw->match ? aclkw->match : pat_match_fcts[aclkw->match_type];
374 expr->pat.delete = aclkw->delete ? aclkw->delete : pat_delete_fcts[aclkw->match_type];
375 expr->pat.prune = aclkw->prune ? aclkw->prune : pat_prune_fcts[aclkw->match_type];
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100376 }
377
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100378 if (!expr->pat.parse) {
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200379 /* Parse/index/match functions depend on the expression type,
380 * so we have to map them now. Some types can be automatically
381 * converted.
382 */
383 switch (cur_type) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100384 case SMP_T_BOOL:
385 expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100386 expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100387 expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100388 expr->pat.delete = pat_delete_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100389 expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100390 expr->pat.expect_type = pat_match_types[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100391 break;
392 case SMP_T_SINT:
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100393 expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100394 expr->pat.index = pat_index_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100395 expr->pat.match = pat_match_fcts[PAT_MATCH_INT];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100396 expr->pat.delete = pat_delete_fcts[PAT_MATCH_INT];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100397 expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100398 expr->pat.expect_type = pat_match_types[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100399 break;
400 case SMP_T_IPV4:
401 case SMP_T_IPV6:
402 expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100403 expr->pat.index = pat_index_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100404 expr->pat.match = pat_match_fcts[PAT_MATCH_IP];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100405 expr->pat.delete = pat_delete_fcts[PAT_MATCH_IP];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100406 expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100407 expr->pat.expect_type = pat_match_types[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100408 break;
Thierry FOURNIER9fefbd52014-05-11 15:15:00 +0200409 case SMP_T_STR:
410 expr->pat.parse = pat_parse_fcts[PAT_MATCH_STR];
411 expr->pat.index = pat_index_fcts[PAT_MATCH_STR];
412 expr->pat.match = pat_match_fcts[PAT_MATCH_STR];
413 expr->pat.delete = pat_delete_fcts[PAT_MATCH_STR];
414 expr->pat.prune = pat_prune_fcts[PAT_MATCH_STR];
415 expr->pat.expect_type = pat_match_types[PAT_MATCH_STR];
416 break;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100417 }
418 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200419
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100420 /* Additional check to protect against common mistakes */
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100421 if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) {
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100422 Warning("parsing acl keyword '%s' :\n"
423 " no pattern to match against were provided, so this ACL will never match.\n"
424 " If this is what you intended, please add '--' to get rid of this warning.\n"
425 " If you intended to match only for existence, please use '-m found'.\n"
426 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
427 "\n",
428 args[0]);
429 }
430
Willy Tarreaua84d3742007-05-07 00:36:48 +0200431 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200432
433 /* check for options before patterns. Supported options are :
434 * -i : ignore case for all patterns by default
435 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +0200436 * -m : force matching method (must be used before -f)
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100437 * -M : load the file as map file
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100438 * -u : force the unique id of the acl
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200439 * -- : everything after this is not an option
440 */
441 patflags = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100442 is_loaded = 0;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100443 unique_id = -1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200444 while (**args == '-') {
Willy Tarreau2039bba2014-05-11 09:43:46 +0200445 if (strcmp(*args, "-i") == 0)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200446 patflags |= PAT_MF_IGNORE_CASE;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200447 else if (strcmp(*args, "-n") == 0)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200448 patflags |= PAT_MF_NO_DNS;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200449 else if (strcmp(*args, "-u") == 0) {
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100450 unique_id = strtol(args[1], &error, 10);
451 if (*error != '\0') {
452 memprintf(err, "the argument of -u must be an integer");
453 goto out_free_expr;
454 }
455
456 /* Check if this id is really unique. */
457 if (pat_ref_lookupid(unique_id)) {
458 memprintf(err, "the id is already used");
459 goto out_free_expr;
460 }
461
462 args++;
463 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200464 else if (strcmp(*args, "-f") == 0) {
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100465 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200466 memprintf(err, "matching method must be specified first (using '-m') when using a sample fetch of this type ('%s')", expr->kw);
Willy Tarreaubef91e72013-03-31 23:14:46 +0200467 goto out_free_expr;
468 }
469
Thierry FOURNIER66eb9bf2014-02-11 16:19:46 +0100470 if (!pattern_read_from_file(&expr->pat, PAT_REF_ACL, args[1], patflags, load_as_map, err, file, line))
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200471 goto out_free_expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100472 is_loaded = 1;
Willy Tarreau5adeda12013-03-31 22:13:34 +0200473 args++;
474 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200475 else if (strcmp(*args, "-m") == 0) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200476 int idx;
477
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100478 if (is_loaded) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200479 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
480 goto out_free_expr;
481 }
482
Willy Tarreau6f8fe312013-11-28 22:24:25 +0100483 idx = pat_find_match_name(args[1]);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200484 if (idx < 0) {
485 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
486 goto out_free_expr;
487 }
488
489 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
Willy Tarreau9bb49f62015-09-24 16:37:12 +0200490 if (idx != PAT_MATCH_FOUND && !sample_casts[cur_type][pat_match_types[idx]]) {
Willy Tarreau93fddf12013-03-31 22:59:32 +0200491 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200492 goto out_free_expr;
493 }
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100494 expr->pat.parse = pat_parse_fcts[idx];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100495 expr->pat.index = pat_index_fcts[idx];
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100496 expr->pat.match = pat_match_fcts[idx];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100497 expr->pat.delete = pat_delete_fcts[idx];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100498 expr->pat.prune = pat_prune_fcts[idx];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100499 expr->pat.expect_type = pat_match_types[idx];
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200500 args++;
501 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200502 else if (strcmp(*args, "-M") == 0) {
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100503 load_as_map = 1;
504 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200505 else if (strcmp(*args, "--") == 0) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200506 args++;
507 break;
508 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200509 else {
510 memprintf(err, "'%s' is not a valid ACL option. Please use '--' before any pattern beginning with a '-'", args[0]);
511 goto out_free_expr;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200512 break;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200513 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200514 args++;
515 }
516
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100517 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200518 memprintf(err, "matching method must be specified first (using '-m') when using a sample fetch of this type ('%s')", expr->kw);
Willy Tarreaubef91e72013-03-31 23:14:46 +0200519 goto out_free_expr;
520 }
521
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100522 /* Create displayed reference */
523 snprintf(trash.str, trash.size, "acl '%s' file '%s' line %d", expr->kw, file, line);
524 trash.str[trash.size - 1] = '\0';
525
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100526 /* Create new patern reference. */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100527 ref = pat_ref_newid(unique_id, trash.str, PAT_REF_ACL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100528 if (!ref) {
529 memprintf(err, "memory error");
530 goto out_free_expr;
531 }
532
533 /* Create new pattern expression associated to this reference. */
Thierry FOURNIER315ec422014-11-24 11:14:42 +0100534 pattern_expr = pattern_new_expr(&expr->pat, ref, err, NULL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100535 if (!pattern_expr)
536 goto out_free_expr;
537
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200538 /* Copy the pattern matching and indexing flags. */
539 pattern_expr->mflags = patflags;
540
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200541 /* now parse all patterns */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100542 while (**args) {
543 arg = *args;
544
545 /* Compatibility layer. Each pattern can parse only one string per pattern,
546 * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need
547 * optionnaly two operators. The first operator is the match method: eq,
548 * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions
549 * can have a compatibility syntax based on ranges:
550 *
551 * pat_parse_int():
552 *
553 * "eq x" -> "x" or "x:x"
554 * "le x" -> ":x"
555 * "lt x" -> ":y" (with y = x - 1)
556 * "ge x" -> "x:"
557 * "gt x" -> "y:" (with y = x + 1)
558 *
559 * pat_parse_dotted_ver():
560 *
561 * "eq x.y" -> "x.y" or "x.y:x.y"
562 * "le x.y" -> ":x.y"
563 * "lt x.y" -> ":w.z" (with w.z = x.y - 1)
564 * "ge x.y" -> "x.y:"
565 * "gt x.y" -> "w.z:" (with w.z = x.y + 1)
566 *
567 * If y is not present, assume that is "0".
568 *
569 * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The
570 * following block of code detect the operator, and rewrite each value
571 * in parsable string.
572 */
573 if (expr->pat.parse == pat_parse_int ||
574 expr->pat.parse == pat_parse_dotted_ver) {
575 /* Check for operator. If the argument is operator, memorise it and
576 * continue to the next argument.
577 */
578 op = get_std_op(arg);
579 if (op != -1) {
580 operator = op;
581 args++;
582 continue;
583 }
584
585 /* Check if the pattern contain ':' or '-' character. */
586 contain_colon = (strchr(arg, ':') || strchr(arg, '-'));
587
588 /* If the pattern contain ':' or '-' character, give it to the parser as is.
589 * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is.
590 * In other case, try to convert the value according with the operator.
591 */
592 if (!contain_colon && operator != STD_OP_EQ) {
593 /* Search '.' separator. */
594 dot = strchr(arg, '.');
595 if (!dot) {
596 have_dot = 0;
597 minor = 0;
598 dot = arg + strlen(arg);
599 }
600 else
601 have_dot = 1;
602
603 /* convert the integer minor part for the pat_parse_dotted_ver() function. */
604 if (expr->pat.parse == pat_parse_dotted_ver && have_dot) {
605 if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) {
606 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100607 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100608 }
609 if (minor >= 65536) {
610 memprintf(err, "'%s' contains too large a minor value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100611 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100612 }
613 }
614
615 /* convert the integer value for the pat_parse_int() function, and the
616 * integer major part for the pat_parse_dotted_ver() function.
617 */
618 if (strl2llrc(arg, dot - arg, &value) != 0) {
619 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100620 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100621 }
622 if (expr->pat.parse == pat_parse_dotted_ver) {
623 if (value >= 65536) {
624 memprintf(err, "'%s' contains too large a major value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100625 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100626 }
627 value = (value << 16) | (minor & 0xffff);
628 }
629
630 switch (operator) {
631
632 case STD_OP_EQ: /* this case is not possible. */
633 memprintf(err, "internal error");
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100634 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100635
636 case STD_OP_GT:
637 value++; /* gt = ge + 1 */
638
639 case STD_OP_GE:
640 if (expr->pat.parse == pat_parse_int)
641 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value);
642 else
643 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:",
644 value >> 16, value & 0xffff);
645 arg = buffer;
646 break;
647
648 case STD_OP_LT:
649 value--; /* lt = le - 1 */
650
651 case STD_OP_LE:
652 if (expr->pat.parse == pat_parse_int)
653 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value);
654 else
655 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld",
656 value >> 16, value & 0xffff);
657 arg = buffer;
658 break;
659 }
660 }
661 }
662
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100663 /* Add sample to the reference, and try to compile it fior each pattern
664 * using this value.
665 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200666 if (!pat_ref_add(ref, arg, NULL, err))
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100667 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100668 args++;
669 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200670
671 return expr;
672
Willy Tarreaua84d3742007-05-07 00:36:48 +0200673 out_free_expr:
674 prune_acl_expr(expr);
675 free(expr);
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100676 free(ckw);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100677 out_free_smp:
678 free(smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200679 out_return:
680 return NULL;
681}
682
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200683/* Purge everything in the acl <acl>, then return <acl>. */
684struct acl *prune_acl(struct acl *acl) {
685
686 struct acl_expr *expr, *exprb;
687
688 free(acl->name);
689
690 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
691 LIST_DEL(&expr->list);
692 prune_acl_expr(expr);
693 free(expr);
694 }
695
696 return acl;
697}
698
Willy Tarreaua84d3742007-05-07 00:36:48 +0200699/* Parse an ACL with the name starting at <args>[0], and with a list of already
700 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100701 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200702 * an anonymous one and it won't be merged with any other one. If <err> is not
703 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200704 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
705 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200706 *
707 * args syntax: <aclname> <acl_expr>
708 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100709struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al,
710 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200711{
712 __label__ out_return, out_free_acl_expr, out_free_name;
713 struct acl *cur_acl;
714 struct acl_expr *acl_expr;
715 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200716 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200717
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200718 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200719 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100720 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200721 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100722
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100723 acl_expr = parse_acl_expr(args + 1, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200724 if (!acl_expr) {
725 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200726 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200727 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200728
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200729 /* Check for args beginning with an opening parenthesis just after the
730 * subject, as this is almost certainly a typo. Right now we can only
731 * emit a warning, so let's do so.
732 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +0200733 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200734 Warning("parsing acl '%s' :\n"
735 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
736 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
737 " If you are really sure this is not an error, please insert '--' between the\n"
738 " match and the pattern to make this warning message disappear.\n",
739 args[0], args[1], args[2]);
740
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100741 if (*args[0])
742 cur_acl = find_acl_by_name(args[0], known_acl);
743 else
744 cur_acl = NULL;
745
Willy Tarreaua84d3742007-05-07 00:36:48 +0200746 if (!cur_acl) {
747 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200748 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200749 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200750 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200751 }
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200752 cur_acl = calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200753 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200754 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200755 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200756 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200757
758 LIST_INIT(&cur_acl->expr);
759 LIST_ADDQ(known_acl, &cur_acl->list);
760 cur_acl->name = name;
761 }
762
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100763 /* We want to know what features the ACL needs (typically HTTP parsing),
764 * and where it may be used. If an ACL relies on multiple matches, it is
765 * OK if at least one of them may match in the context where it is used.
766 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100767 cur_acl->use |= acl_expr->smp->fetch->use;
768 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200769 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
770 return cur_acl;
771
772 out_free_name:
773 free(name);
774 out_free_acl_expr:
775 prune_acl_expr(acl_expr);
776 free(acl_expr);
777 out_return:
778 return NULL;
779}
780
Willy Tarreau16fbe822007-06-17 11:54:31 +0200781/* Some useful ACLs provided by default. Only those used are allocated. */
782
783const struct {
784 const char *name;
785 const char *expr[4]; /* put enough for longest expression */
786} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +0200787 { .name = "TRUE", .expr = {"always_true",""}},
788 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200789 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200790 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200791 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
792 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
793 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
Daniel Schneller9ff96c72016-04-11 17:45:29 +0200794 { .name = "METH_DELETE", .expr = {"method","DELETE",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200795 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
796 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
797 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
798 { .name = "METH_POST", .expr = {"method","POST",""}},
Daniel Schneller9ff96c72016-04-11 17:45:29 +0200799 { .name = "METH_PUT", .expr = {"method","PUT",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200800 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
801 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
802 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
803 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
804 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +0200805 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +0200806 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +0200807 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200808 { .name = NULL, .expr = {""}}
809};
810
811/* Find a default ACL from the default_acl list, compile it and return it.
812 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
813 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200814 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
815 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200816 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
817 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +0200818 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200819static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100820 char **err, struct arg_list *al,
821 const char *file, int line)
Willy Tarreau16fbe822007-06-17 11:54:31 +0200822{
823 __label__ out_return, out_free_acl_expr, out_free_name;
824 struct acl *cur_acl;
825 struct acl_expr *acl_expr;
826 char *name;
827 int index;
828
829 for (index = 0; default_acl_list[index].name != NULL; index++) {
830 if (strcmp(acl_name, default_acl_list[index].name) == 0)
831 break;
832 }
833
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200834 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200835 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200836 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200837 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200838
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100839 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200840 if (!acl_expr) {
841 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200842 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200843 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200844
845 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200846 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200847 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200848 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200849 }
850
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200851 cur_acl = calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200852 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200853 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200854 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200855 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200856
857 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100858 cur_acl->use |= acl_expr->smp->fetch->use;
859 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +0200860 LIST_INIT(&cur_acl->expr);
861 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
862 if (known_acl)
863 LIST_ADDQ(known_acl, &cur_acl->list);
864
865 return cur_acl;
866
867 out_free_name:
868 free(name);
869 out_free_acl_expr:
870 prune_acl_expr(acl_expr);
871 free(acl_expr);
872 out_return:
873 return NULL;
874}
Willy Tarreaua84d3742007-05-07 00:36:48 +0200875
876/* Purge everything in the acl_cond <cond>, then return <cond>. */
877struct acl_cond *prune_acl_cond(struct acl_cond *cond)
878{
879 struct acl_term_suite *suite, *tmp_suite;
880 struct acl_term *term, *tmp_term;
881
882 /* iterate through all term suites and free all terms and all suites */
883 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
884 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
885 free(term);
886 free(suite);
887 }
888 return cond;
889}
890
891/* Parse an ACL condition starting at <args>[0], relying on a list of already
892 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200893 * case of low memory). Supports multiple conditions separated by "or". If
894 * <err> is not NULL, it will be filled with a pointer to an error message in
895 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200896 * location must either be freeable or NULL. The list <al> serves as a list head
897 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200898 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200899struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100900 enum acl_cond_pol pol, char **err, struct arg_list *al,
901 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200902{
903 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200904 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200905 const char *word;
906 struct acl *cur_acl;
907 struct acl_term *cur_term;
908 struct acl_term_suite *cur_suite;
909 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100910 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200911
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200912 cond = calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200913 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200914 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200915 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200916 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200917
918 LIST_INIT(&cond->list);
919 LIST_INIT(&cond->suites);
920 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100921 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200922
923 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100924 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200925 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200926 for (arg = 0; *args[arg]; arg++) {
927 word = args[arg];
928
929 /* remove as many exclamation marks as we can */
930 while (*word == '!') {
931 neg = !neg;
932 word++;
933 }
934
935 /* an empty word is allowed because we cannot force the user to
936 * always think about not leaving exclamation marks alone.
937 */
938 if (!*word)
939 continue;
940
Willy Tarreau16fbe822007-06-17 11:54:31 +0200941 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200942 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100943 cond->val |= suite_val;
944 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200945 cur_suite = NULL;
946 neg = 0;
947 continue;
948 }
949
Willy Tarreau95fa4692010-02-01 13:05:50 +0100950 if (strcmp(word, "{") == 0) {
951 /* we may have a complete ACL expression between two braces,
952 * find the last one.
953 */
954 int arg_end = arg + 1;
955 const char **args_new;
956
957 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
958 arg_end++;
959
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200960 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200961 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100962 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200963 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100964
965 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200966 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200967 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100968 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200969 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100970
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100971 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +0100972 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
973 args_new[arg_end - arg] = "";
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100974 cur_acl = parse_acl(args_new, known_acl, err, al, file, line);
Willy Tarreau95fa4692010-02-01 13:05:50 +0100975 free(args_new);
976
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200977 if (!cur_acl) {
978 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200979 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200980 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100981 word = args[arg + 1];
Willy Tarreau95fa4692010-02-01 13:05:50 +0100982 arg = arg_end;
983 }
984 else {
985 /* search for <word> in the known ACL names. If we do not find
986 * it, let's look for it in the default ACLs, and if found, add
987 * it to the list of ACLs of this proxy. This makes it possible
988 * to override them.
989 */
990 cur_acl = find_acl_by_name(word, known_acl);
991 if (cur_acl == NULL) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100992 cur_acl = find_acl_default(word, known_acl, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200993 if (cur_acl == NULL) {
994 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +0100995 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200996 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100997 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200998 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200999
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001000 cur_term = calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001001 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001002 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001003 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001004 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001005
1006 cur_term->acl = cur_acl;
1007 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001008
1009 /* Here it is a bit complex. The acl_term_suite is a conjunction
1010 * of many terms. It may only be used if all of its terms are
1011 * usable at the same time. So the suite's validity domain is an
1012 * AND between all ACL keywords' ones. But, the global condition
1013 * is valid if at least one term suite is OK. So it's an OR between
1014 * all of their validity domains. We could emit a warning as soon
1015 * as suite_val is null because it means that the last ACL is not
1016 * compatible with the previous ones. Let's remain simple for now.
1017 */
1018 cond->use |= cur_acl->use;
1019 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001020
1021 if (!cur_suite) {
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001022 cur_suite = calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +01001023 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001024 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001025 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001026 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001027 LIST_INIT(&cur_suite->terms);
1028 LIST_ADDQ(&cond->suites, &cur_suite->list);
1029 }
1030 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001031 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001032 }
1033
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001034 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001035 return cond;
1036
1037 out_free_term:
1038 free(cur_term);
1039 out_free_suite:
1040 prune_acl_cond(cond);
1041 free(cond);
1042 out_return:
1043 return NULL;
1044}
1045
Willy Tarreau2bbba412010-01-28 16:48:33 +01001046/* Builds an ACL condition starting at the if/unless keyword. The complete
1047 * condition is returned. NULL is returned in case of error or if the first
1048 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001049 * the line number in the condition for better error reporting, and sets the
1050 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001051 * be filled with a pointer to an error message in case of error, that the
1052 * caller is responsible for freeing. The initial location must either be
1053 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001054 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001055struct acl_cond *build_acl_cond(const char *file, int line, struct proxy *px, const char **args, char **err)
Willy Tarreau2bbba412010-01-28 16:48:33 +01001056{
Willy Tarreau0cba6072013-11-28 22:21:02 +01001057 enum acl_cond_pol pol = ACL_COND_NONE;
Willy Tarreau2bbba412010-01-28 16:48:33 +01001058 struct acl_cond *cond = NULL;
1059
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001060 if (err)
1061 *err = NULL;
1062
Willy Tarreau2bbba412010-01-28 16:48:33 +01001063 if (!strcmp(*args, "if")) {
1064 pol = ACL_COND_IF;
1065 args++;
1066 }
1067 else if (!strcmp(*args, "unless")) {
1068 pol = ACL_COND_UNLESS;
1069 args++;
1070 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001071 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001072 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001073 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001074 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001075
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001076 cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001077 if (!cond) {
1078 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001079 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001080 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001081
1082 cond->file = file;
1083 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001084 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001085 return cond;
1086}
1087
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001088/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
1089 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001090 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001091 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
1092 * function only computes the condition, it does not apply the polarity required
1093 * by IF/UNLESS, it's up to the caller to do this using something like this :
Willy Tarreau11382812008-07-09 16:18:21 +02001094 *
1095 * res = acl_pass(res);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001096 * if (res == ACL_TEST_MISS)
Willy Tarreaub6866442008-07-14 23:54:42 +02001097 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001098 * if (cond->pol == ACL_COND_UNLESS)
1099 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001100 */
Willy Tarreau192252e2015-04-04 01:47:55 +02001101enum acl_test_res acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001102{
1103 __label__ fetch_next;
1104 struct acl_term_suite *suite;
1105 struct acl_term *term;
1106 struct acl_expr *expr;
1107 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001108 struct sample smp;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001109 enum acl_test_res acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001110
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001111 /* ACLs are iterated over all values, so let's always set the flag to
1112 * indicate this to the fetch functions.
1113 */
1114 opt |= SMP_OPT_ITERATE;
1115
Willy Tarreau11382812008-07-09 16:18:21 +02001116 /* We're doing a logical OR between conditions so we initialize to FAIL.
1117 * The MISS status is propagated down from the suites.
1118 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001119 cond_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001120 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001121 /* Evaluate condition suite <suite>. We stop at the first term
Willy Tarreau0cba6072013-11-28 22:21:02 +01001122 * which returns ACL_TEST_FAIL. The MISS status is still propagated
Willy Tarreau11382812008-07-09 16:18:21 +02001123 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001124 */
1125
1126 /* we're doing a logical AND between terms, so we must set the
1127 * initial value to PASS.
1128 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001129 suite_res = ACL_TEST_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001130 list_for_each_entry(term, &suite->terms, list) {
1131 acl = term->acl;
1132
1133 /* FIXME: use cache !
1134 * check acl->cache_idx for this.
1135 */
1136
1137 /* ACL result not cached. Let's scan all the expressions
1138 * and use the first one to match.
1139 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001140 acl_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001141 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001142 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001143 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001144 fetch_next:
Willy Tarreau192252e2015-04-04 01:47:55 +02001145 if (!sample_process(px, sess, strm, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001146 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001147 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001148 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001149 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001150 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001151
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01001152 acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001153 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001154 * OK now acl_res holds the result of this expression
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001155 * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001156 *
Willy Tarreau11382812008-07-09 16:18:21 +02001157 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001158 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001159 *
1160 * FIXME: implement cache.
1161 *
1162 */
1163
Willy Tarreau11382812008-07-09 16:18:21 +02001164 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001165 if (acl_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001166 break;
1167
Willy Tarreau37406352012-04-23 16:16:37 +02001168 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001169 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001170
1171 /* sometimes we know the fetched data is subject to change
1172 * later and give another chance for a new match (eg: request
1173 * size, time, ...)
1174 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001175 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001176 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001177 }
1178 /*
1179 * Here we have the result of an ACL (cached or not).
1180 * ACLs are combined, negated or not, to form conditions.
1181 */
1182
Willy Tarreaua84d3742007-05-07 00:36:48 +02001183 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001184 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001185
1186 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001187
Willy Tarreau79c412b2013-10-30 19:30:32 +01001188 /* we're ANDing these terms, so a single FAIL or MISS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001189 if (suite_res != ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001190 break;
1191 }
1192 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001193
1194 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001195 if (cond_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001196 break;
1197 }
Willy Tarreau11382812008-07-09 16:18:21 +02001198 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001199}
1200
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001201/* Returns a pointer to the first ACL conflicting with usage at place <where>
1202 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1203 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1204 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001205 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001206const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001207{
1208 struct acl_term_suite *suite;
1209 struct acl_term *term;
1210 struct acl *acl;
1211
1212 list_for_each_entry(suite, &cond->suites, list) {
1213 list_for_each_entry(term, &suite->terms, list) {
1214 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001215 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001216 return acl;
1217 }
1218 }
1219 return NULL;
1220}
1221
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001222/* Returns a pointer to the first ACL and its first keyword to conflict with
1223 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1224 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1225 * null), or false if not conflict is found. The first useless keyword is
1226 * returned.
1227 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001228int acl_cond_kw_conflicts(const struct acl_cond *cond, unsigned int where, struct acl const **acl, char const **kw)
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001229{
1230 struct acl_term_suite *suite;
1231 struct acl_term *term;
1232 struct acl_expr *expr;
1233
1234 list_for_each_entry(suite, &cond->suites, list) {
1235 list_for_each_entry(term, &suite->terms, list) {
1236 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001237 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001238 if (acl)
1239 *acl = term->acl;
1240 if (kw)
1241 *kw = expr->kw;
1242 return 1;
1243 }
1244 }
1245 }
1246 }
1247 return 0;
1248}
1249
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001250/*
1251 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001252 * of errors or OK if everything is fine. It must be called only once sample
1253 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001254 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001255int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001256{
1257
1258 struct acl *acl;
1259 struct acl_expr *expr;
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001260 struct pattern_list *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001261 int cfgerr = 0;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001262 struct pattern_expr_list *pexp;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001263
1264 list_for_each_entry(acl, &p->acl, list) {
1265 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001266 if (!strcmp(expr->kw, "http_auth_group")) {
1267 /* Note: the ARGT_USR argument may only have been resolved earlier
1268 * by smp_resolve_args().
1269 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001270 if (expr->smp->arg_p->unresolved) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001271 Alert("Internal bug in proxy %s: %sacl %s %s() makes use of unresolved userlist '%s'. Please report this.\n",
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001272 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001273 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001274 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001275 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001276
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001277 if (LIST_ISEMPTY(&expr->pat.head)) {
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001278 Alert("proxy %s: acl %s %s(): no groups specified.\n",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001279 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001280 cfgerr++;
1281 continue;
1282 }
1283
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001284 /* For each pattern, check if the group exists. */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001285 list_for_each_entry(pexp, &expr->pat.head, list) {
1286 if (LIST_ISEMPTY(&pexp->expr->patterns)) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001287 Alert("proxy %s: acl %s %s(): no groups specified.\n",
1288 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001289 cfgerr++;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001290 continue;
1291 }
1292
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001293 list_for_each_entry(pattern, &pexp->expr->patterns, list) {
1294 /* this keyword only has one argument */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001295 if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) {
1296 Alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
1297 p->id, acl->name, expr->kw, pattern->pat.ptr.str);
1298 cfgerr++;
1299 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001300 }
1301 }
1302 }
1303 }
1304 }
1305
1306 return cfgerr;
1307}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001308
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001309/* initializes ACLs by resolving the sample fetch names they rely upon.
1310 * Returns 0 on success, otherwise an error.
1311 */
1312int init_acl()
1313{
1314 int err = 0;
1315 int index;
1316 const char *name;
1317 struct acl_kw_list *kwl;
1318 struct sample_fetch *smp;
1319
1320 list_for_each_entry(kwl, &acl_keywords.list, list) {
1321 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1322 name = kwl->kw[index].fetch_kw;
1323 if (!name)
1324 name = kwl->kw[index].kw;
1325
1326 smp = find_sample_fetch(name, strlen(name));
1327 if (!smp) {
1328 Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1329 kwl->kw[index].kw, name);
1330 err++;
1331 continue;
1332 }
1333 kwl->kw[index].smp = smp;
1334 }
1335 }
1336 return err;
1337}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001338
Willy Tarreaua84d3742007-05-07 00:36:48 +02001339/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001340/* All supported sample and ACL keywords must be declared here. */
1341/************************************************************************/
1342
1343/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001344 * Please take care of keeping this list alphabetically sorted.
1345 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001346static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001347 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001348}};
1349
Willy Tarreaua84d3742007-05-07 00:36:48 +02001350__attribute__((constructor))
1351static void __acl_init(void)
1352{
Willy Tarreaua84d3742007-05-07 00:36:48 +02001353 acl_register_keywords(&acl_kws);
1354}
1355
1356
1357/*
1358 * Local variables:
1359 * c-indent-level: 8
1360 * c-basic-offset: 8
1361 * End:
1362 */