blob: 10632a7a1744841fb72267e97d6371b1d062a69f [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 unsigned long prev_type;
149 int cur_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100150 int nbargs;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100151 int operator = STD_OP_EQ;
152 int op;
153 int contain_colon, have_dot;
154 const char *dot;
155 signed long long value, minor;
156 /* The following buffer contain two numbers, a ':' separator and the final \0. */
157 char buffer[NB_LLMAX_STR + 1 + NB_LLMAX_STR + 1];
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100158 int is_loaded;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100159 int unique_id;
160 char *error;
161 struct pat_ref *ref;
162 struct pattern_expr *pattern_expr;
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100163 int load_as_map = 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 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100179 smp = calloc(1, sizeof(struct sample_expr));
180 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.
232 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100233 prev_type = smp->fetch->out_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100234 while (*arg) {
235 struct sample_conv *conv;
236 struct sample_conv_expr *conv_expr;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100237
Willy Tarreau131b4662013-12-13 01:08:36 +0100238 if (*arg == ')') /* skip last closing parenthesis */
239 arg++;
240
241 if (*arg && *arg != ',') {
242 if (ckw)
243 memprintf(err, "ACL keyword '%s' : missing comma after conv keyword '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100244 aclkw->kw, ckw);
Willy Tarreau131b4662013-12-13 01:08:36 +0100245 else
246 memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100247 aclkw->kw);
248 goto out_free_smp;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200249 }
Willy Tarreauae52f062012-04-26 12:13:35 +0200250
Willy Tarreau131b4662013-12-13 01:08:36 +0100251 while (*arg == ',') /* then trailing commas */
252 arg++;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200253
Willy Tarreau131b4662013-12-13 01:08:36 +0100254 begw = arg; /* start of conv keyword */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100255
Willy Tarreau131b4662013-12-13 01:08:36 +0100256 if (!*begw)
257 /* none ? end of converters */
258 break;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100259
Willy Tarreau131b4662013-12-13 01:08:36 +0100260 for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++);
Willy Tarreau9ca69362013-10-22 19:10:06 +0200261
Willy Tarreau131b4662013-12-13 01:08:36 +0100262 free(ckw);
263 ckw = my_strndup(begw, endw - begw);
Willy Tarreauf75d0082013-04-07 21:20:44 +0200264
Willy Tarreau131b4662013-12-13 01:08:36 +0100265 conv = find_sample_conv(begw, endw - begw);
266 if (!conv) {
267 /* Unknown converter method */
268 memprintf(err, "ACL keyword '%s' : unknown conv method '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100269 aclkw->kw, ckw);
270 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100271 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100272
Willy Tarreau131b4662013-12-13 01:08:36 +0100273 arg = endw;
274 if (*arg == '(') {
275 /* look for the end of this term */
276 while (*arg && *arg != ')')
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100277 arg++;
Willy Tarreau131b4662013-12-13 01:08:36 +0100278 if (*arg != ')') {
279 memprintf(err, "ACL keyword '%s' : syntax error: missing ')' after conv keyword '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100280 aclkw->kw, ckw);
281 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100282 }
Willy Tarreau131b4662013-12-13 01:08:36 +0100283 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100284
Willy Tarreau131b4662013-12-13 01:08:36 +0100285 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
286 memprintf(err, "ACL keyword '%s' : returns type of conv method '%s' is unknown.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100287 aclkw->kw, ckw);
288 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100289 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100290
Willy Tarreau131b4662013-12-13 01:08:36 +0100291 /* If impossible type conversion */
292 if (!sample_casts[prev_type][conv->in_type]) {
293 memprintf(err, "ACL keyword '%s' : conv method '%s' cannot be applied.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100294 aclkw->kw, ckw);
295 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100296 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100297
Willy Tarreau131b4662013-12-13 01:08:36 +0100298 prev_type = conv->out_type;
299 conv_expr = calloc(1, sizeof(struct sample_conv_expr));
300 if (!conv_expr)
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100301 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100302
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100303 LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list));
Willy Tarreau131b4662013-12-13 01:08:36 +0100304 conv_expr->conv = conv;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100305
Willy Tarreau131b4662013-12-13 01:08:36 +0100306 if (arg != endw) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100307 int err_arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100308
Willy Tarreau131b4662013-12-13 01:08:36 +0100309 if (!conv->arg_mask) {
310 memprintf(err, "ACL keyword '%s' : conv method '%s' does not support any args.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100311 aclkw->kw, ckw);
312 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100313 }
314
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100315 al->kw = smp->fetch->kw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100316 al->conv = conv_expr->conv->kw;
Willy Tarreauadaddc22013-12-13 01:30:22 +0100317 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 +0100318 memprintf(err, "ACL keyword '%s' : invalid arg %d in conv method '%s' : %s.",
Willy Tarreauadaddc22013-12-13 01:30:22 +0100319 aclkw->kw, err_arg+1, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100320 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100321 }
322
Willy Tarreau131b4662013-12-13 01:08:36 +0100323 if (!conv_expr->arg_p)
324 conv_expr->arg_p = empty_arg_list;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100325
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100326 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100327 memprintf(err, "ACL keyword '%s' : invalid args in conv method '%s' : %s.",
Willy Tarreauadaddc22013-12-13 01:30:22 +0100328 aclkw->kw, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100329 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100330 }
331 }
Willy Tarreau131b4662013-12-13 01:08:36 +0100332 else if (ARGM(conv->arg_mask)) {
333 memprintf(err, "ACL keyword '%s' : missing args for conv method '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100334 aclkw->kw, ckw);
335 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100336 }
Willy Tarreau61612d42012-04-19 18:42:05 +0200337 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200338 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100339 else {
340 /* This is not an ACL keyword, so we hope this is a sample fetch
341 * keyword that we're going to transparently use as an ACL. If
342 * so, we retrieve a completely parsed expression with args and
343 * convs already done.
344 */
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +0100345 smp = sample_parse_expr((char **)args, &idx, file, line, err, al);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100346 if (!smp) {
347 memprintf(err, "%s in ACL expression '%s'", *err, *args);
348 goto out_return;
349 }
350 }
351
352 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
353 if (!expr) {
354 memprintf(err, "out of memory when parsing ACL expression");
355 goto out_return;
356 }
357
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100358 pattern_init_head(&expr->pat);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100359
360 expr->kw = aclkw ? aclkw->kw : smp->fetch->kw;
361 expr->pat.parse = aclkw ? aclkw->parse : NULL;
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100362 expr->pat.index = aclkw ? aclkw->index : NULL;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100363 expr->pat.match = aclkw ? aclkw->match : NULL;
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100364 expr->pat.delete = aclkw ? aclkw->delete : NULL;
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100365 expr->pat.prune = aclkw ? aclkw->prune : NULL;
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100366 expr->pat.expect_type = smp->fetch->out_type;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100367 expr->smp = smp;
368 smp = NULL;
369
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100370 /* Fill NULL pointers with values provided by the pattern.c arrays */
371 if (aclkw) {
372 if (!expr->pat.parse)
373 expr->pat.parse = pat_parse_fcts[aclkw->match_type];
374
375 if (!expr->pat.index)
376 expr->pat.index = pat_index_fcts[aclkw->match_type];
377
378 if (!expr->pat.match)
379 expr->pat.match = pat_match_fcts[aclkw->match_type];
380
381 if (!expr->pat.delete)
382 expr->pat.delete = pat_delete_fcts[aclkw->match_type];
383
384 if (!expr->pat.prune)
385 expr->pat.prune = pat_prune_fcts[aclkw->match_type];
386 }
387
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100388 if (!expr->pat.parse) {
389 /* some types can be automatically converted */
390
391 switch (expr->smp ? expr->smp->fetch->out_type : aclkw->smp->out_type) {
392 case SMP_T_BOOL:
393 expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100394 expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100395 expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100396 expr->pat.delete = pat_delete_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100397 expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100398 expr->pat.expect_type = pat_match_types[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100399 break;
400 case SMP_T_SINT:
401 case SMP_T_UINT:
402 expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100403 expr->pat.index = pat_index_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100404 expr->pat.match = pat_match_fcts[PAT_MATCH_INT];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100405 expr->pat.delete = pat_delete_fcts[PAT_MATCH_INT];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100406 expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100407 expr->pat.expect_type = pat_match_types[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100408 break;
409 case SMP_T_IPV4:
410 case SMP_T_IPV6:
411 expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100412 expr->pat.index = pat_index_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100413 expr->pat.match = pat_match_fcts[PAT_MATCH_IP];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100414 expr->pat.delete = pat_delete_fcts[PAT_MATCH_IP];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100415 expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100416 expr->pat.expect_type = pat_match_types[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100417 break;
418 }
419 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200420
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100421 /* Additional check to protect against common mistakes */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100422 cur_type = smp_expr_output_type(expr->smp);
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100423 if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) {
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100424 Warning("parsing acl keyword '%s' :\n"
425 " no pattern to match against were provided, so this ACL will never match.\n"
426 " If this is what you intended, please add '--' to get rid of this warning.\n"
427 " If you intended to match only for existence, please use '-m found'.\n"
428 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
429 "\n",
430 args[0]);
431 }
432
Willy Tarreaua84d3742007-05-07 00:36:48 +0200433 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200434
435 /* check for options before patterns. Supported options are :
436 * -i : ignore case for all patterns by default
437 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +0200438 * -m : force matching method (must be used before -f)
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100439 * -M : load the file as map file
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100440 * -u : force the unique id of the acl
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200441 * -- : everything after this is not an option
442 */
443 patflags = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100444 is_loaded = 0;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100445 unique_id = -1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200446 while (**args == '-') {
447 if ((*args)[1] == 'i')
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200448 patflags |= PAT_MF_IGNORE_CASE;
Thierry FOURNIERb7729c92014-02-11 16:24:41 +0100449 else if ((*args)[1] == 'n')
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200450 patflags |= PAT_MF_NO_DNS;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100451 else if ((*args)[1] == 'u') {
452 unique_id = strtol(args[1], &error, 10);
453 if (*error != '\0') {
454 memprintf(err, "the argument of -u must be an integer");
455 goto out_free_expr;
456 }
457
458 /* Check if this id is really unique. */
459 if (pat_ref_lookupid(unique_id)) {
460 memprintf(err, "the id is already used");
461 goto out_free_expr;
462 }
463
464 args++;
465 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200466 else if ((*args)[1] == 'f') {
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100467 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200468 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 +0200469 goto out_free_expr;
470 }
471
Thierry FOURNIER66eb9bf2014-02-11 16:19:46 +0100472 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 +0200473 goto out_free_expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100474 is_loaded = 1;
Willy Tarreau5adeda12013-03-31 22:13:34 +0200475 args++;
476 }
477 else if ((*args)[1] == 'm') {
478 int idx;
479
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100480 if (is_loaded) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200481 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
482 goto out_free_expr;
483 }
484
Willy Tarreau6f8fe312013-11-28 22:24:25 +0100485 idx = pat_find_match_name(args[1]);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200486 if (idx < 0) {
487 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
488 goto out_free_expr;
489 }
490
491 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100492 if (!sample_casts[cur_type][pat_match_types[idx]]) {
Willy Tarreau93fddf12013-03-31 22:59:32 +0200493 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200494 goto out_free_expr;
495 }
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100496 expr->pat.parse = pat_parse_fcts[idx];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100497 expr->pat.index = pat_index_fcts[idx];
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100498 expr->pat.match = pat_match_fcts[idx];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100499 expr->pat.delete = pat_delete_fcts[idx];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100500 expr->pat.prune = pat_prune_fcts[idx];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100501 expr->pat.expect_type = pat_match_types[idx];
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200502 args++;
503 }
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100504 else if ((*args)[1] == 'M') {
505 load_as_map = 1;
506 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200507 else if ((*args)[1] == '-') {
508 args++;
509 break;
510 }
511 else
512 break;
513 args++;
514 }
515
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100516 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200517 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 +0200518 goto out_free_expr;
519 }
520
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100521 /* Create displayed reference */
522 snprintf(trash.str, trash.size, "acl '%s' file '%s' line %d", expr->kw, file, line);
523 trash.str[trash.size - 1] = '\0';
524
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100525 /* Create new patern reference. */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100526 ref = pat_ref_newid(unique_id, trash.str, PAT_REF_ACL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100527 if (!ref) {
528 memprintf(err, "memory error");
529 goto out_free_expr;
530 }
531
532 /* Create new pattern expression associated to this reference. */
533 pattern_expr = pattern_new_expr(&expr->pat, ref, err);
534 if (!pattern_expr)
535 goto out_free_expr;
536
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200537 /* Copy the pattern matching and indexing flags. */
538 pattern_expr->mflags = patflags;
539
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200540 /* now parse all patterns */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100541 while (**args) {
542 arg = *args;
543
544 /* Compatibility layer. Each pattern can parse only one string per pattern,
545 * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need
546 * optionnaly two operators. The first operator is the match method: eq,
547 * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions
548 * can have a compatibility syntax based on ranges:
549 *
550 * pat_parse_int():
551 *
552 * "eq x" -> "x" or "x:x"
553 * "le x" -> ":x"
554 * "lt x" -> ":y" (with y = x - 1)
555 * "ge x" -> "x:"
556 * "gt x" -> "y:" (with y = x + 1)
557 *
558 * pat_parse_dotted_ver():
559 *
560 * "eq x.y" -> "x.y" or "x.y:x.y"
561 * "le x.y" -> ":x.y"
562 * "lt x.y" -> ":w.z" (with w.z = x.y - 1)
563 * "ge x.y" -> "x.y:"
564 * "gt x.y" -> "w.z:" (with w.z = x.y + 1)
565 *
566 * If y is not present, assume that is "0".
567 *
568 * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The
569 * following block of code detect the operator, and rewrite each value
570 * in parsable string.
571 */
572 if (expr->pat.parse == pat_parse_int ||
573 expr->pat.parse == pat_parse_dotted_ver) {
574 /* Check for operator. If the argument is operator, memorise it and
575 * continue to the next argument.
576 */
577 op = get_std_op(arg);
578 if (op != -1) {
579 operator = op;
580 args++;
581 continue;
582 }
583
584 /* Check if the pattern contain ':' or '-' character. */
585 contain_colon = (strchr(arg, ':') || strchr(arg, '-'));
586
587 /* If the pattern contain ':' or '-' character, give it to the parser as is.
588 * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is.
589 * In other case, try to convert the value according with the operator.
590 */
591 if (!contain_colon && operator != STD_OP_EQ) {
592 /* Search '.' separator. */
593 dot = strchr(arg, '.');
594 if (!dot) {
595 have_dot = 0;
596 minor = 0;
597 dot = arg + strlen(arg);
598 }
599 else
600 have_dot = 1;
601
602 /* convert the integer minor part for the pat_parse_dotted_ver() function. */
603 if (expr->pat.parse == pat_parse_dotted_ver && have_dot) {
604 if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) {
605 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100606 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100607 }
608 if (minor >= 65536) {
609 memprintf(err, "'%s' contains too large a minor value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100610 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100611 }
612 }
613
614 /* convert the integer value for the pat_parse_int() function, and the
615 * integer major part for the pat_parse_dotted_ver() function.
616 */
617 if (strl2llrc(arg, dot - arg, &value) != 0) {
618 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100619 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100620 }
621 if (expr->pat.parse == pat_parse_dotted_ver) {
622 if (value >= 65536) {
623 memprintf(err, "'%s' contains too large a major value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100624 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100625 }
626 value = (value << 16) | (minor & 0xffff);
627 }
628
629 switch (operator) {
630
631 case STD_OP_EQ: /* this case is not possible. */
632 memprintf(err, "internal error");
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100633 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100634
635 case STD_OP_GT:
636 value++; /* gt = ge + 1 */
637
638 case STD_OP_GE:
639 if (expr->pat.parse == pat_parse_int)
640 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value);
641 else
642 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:",
643 value >> 16, value & 0xffff);
644 arg = buffer;
645 break;
646
647 case STD_OP_LT:
648 value--; /* lt = le - 1 */
649
650 case STD_OP_LE:
651 if (expr->pat.parse == pat_parse_int)
652 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value);
653 else
654 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld",
655 value >> 16, value & 0xffff);
656 arg = buffer;
657 break;
658 }
659 }
660 }
661
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100662 /* Add sample to the reference, and try to compile it fior each pattern
663 * using this value.
664 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200665 if (!pat_ref_add(ref, arg, NULL, err))
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100666 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100667 args++;
668 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200669
670 return expr;
671
Willy Tarreaua84d3742007-05-07 00:36:48 +0200672 out_free_expr:
673 prune_acl_expr(expr);
674 free(expr);
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100675 free(ckw);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100676 out_free_smp:
677 free(smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200678 out_return:
679 return NULL;
680}
681
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200682/* Purge everything in the acl <acl>, then return <acl>. */
683struct acl *prune_acl(struct acl *acl) {
684
685 struct acl_expr *expr, *exprb;
686
687 free(acl->name);
688
689 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
690 LIST_DEL(&expr->list);
691 prune_acl_expr(expr);
692 free(expr);
693 }
694
695 return acl;
696}
697
Willy Tarreaua84d3742007-05-07 00:36:48 +0200698/* Parse an ACL with the name starting at <args>[0], and with a list of already
699 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100700 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200701 * an anonymous one and it won't be merged with any other one. If <err> is not
702 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200703 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
704 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200705 *
706 * args syntax: <aclname> <acl_expr>
707 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100708struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al,
709 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200710{
711 __label__ out_return, out_free_acl_expr, out_free_name;
712 struct acl *cur_acl;
713 struct acl_expr *acl_expr;
714 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200715 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200716
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200717 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200718 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100719 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200720 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100721
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100722 acl_expr = parse_acl_expr(args + 1, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200723 if (!acl_expr) {
724 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200725 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200726 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200727
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200728 /* Check for args beginning with an opening parenthesis just after the
729 * subject, as this is almost certainly a typo. Right now we can only
730 * emit a warning, so let's do so.
731 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +0200732 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200733 Warning("parsing acl '%s' :\n"
734 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
735 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
736 " If you are really sure this is not an error, please insert '--' between the\n"
737 " match and the pattern to make this warning message disappear.\n",
738 args[0], args[1], args[2]);
739
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100740 if (*args[0])
741 cur_acl = find_acl_by_name(args[0], known_acl);
742 else
743 cur_acl = NULL;
744
Willy Tarreaua84d3742007-05-07 00:36:48 +0200745 if (!cur_acl) {
746 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200747 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200748 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200749 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200750 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200751 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200752 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200753 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200754 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200755 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200756
757 LIST_INIT(&cur_acl->expr);
758 LIST_ADDQ(known_acl, &cur_acl->list);
759 cur_acl->name = name;
760 }
761
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100762 /* We want to know what features the ACL needs (typically HTTP parsing),
763 * and where it may be used. If an ACL relies on multiple matches, it is
764 * OK if at least one of them may match in the context where it is used.
765 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100766 cur_acl->use |= acl_expr->smp->fetch->use;
767 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200768 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
769 return cur_acl;
770
771 out_free_name:
772 free(name);
773 out_free_acl_expr:
774 prune_acl_expr(acl_expr);
775 free(acl_expr);
776 out_return:
777 return NULL;
778}
779
Willy Tarreau16fbe822007-06-17 11:54:31 +0200780/* Some useful ACLs provided by default. Only those used are allocated. */
781
782const struct {
783 const char *name;
784 const char *expr[4]; /* put enough for longest expression */
785} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +0200786 { .name = "TRUE", .expr = {"always_true",""}},
787 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200788 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200789 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200790 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
791 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
792 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
793 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
794 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
795 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
796 { .name = "METH_POST", .expr = {"method","POST",""}},
797 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
798 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
799 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
800 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
801 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +0200802 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +0200803 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +0200804 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200805 { .name = NULL, .expr = {""}}
806};
807
808/* Find a default ACL from the default_acl list, compile it and return it.
809 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
810 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200811 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
812 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200813 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
814 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +0200815 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200816static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100817 char **err, struct arg_list *al,
818 const char *file, int line)
Willy Tarreau16fbe822007-06-17 11:54:31 +0200819{
820 __label__ out_return, out_free_acl_expr, out_free_name;
821 struct acl *cur_acl;
822 struct acl_expr *acl_expr;
823 char *name;
824 int index;
825
826 for (index = 0; default_acl_list[index].name != NULL; index++) {
827 if (strcmp(acl_name, default_acl_list[index].name) == 0)
828 break;
829 }
830
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200831 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200832 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200833 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200834 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200835
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100836 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200837 if (!acl_expr) {
838 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200839 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200840 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200841
842 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200843 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200844 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200845 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200846 }
847
Willy Tarreau16fbe822007-06-17 11:54:31 +0200848 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200849 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200850 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200851 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200852 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200853
854 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100855 cur_acl->use |= acl_expr->smp->fetch->use;
856 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +0200857 LIST_INIT(&cur_acl->expr);
858 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
859 if (known_acl)
860 LIST_ADDQ(known_acl, &cur_acl->list);
861
862 return cur_acl;
863
864 out_free_name:
865 free(name);
866 out_free_acl_expr:
867 prune_acl_expr(acl_expr);
868 free(acl_expr);
869 out_return:
870 return NULL;
871}
Willy Tarreaua84d3742007-05-07 00:36:48 +0200872
873/* Purge everything in the acl_cond <cond>, then return <cond>. */
874struct acl_cond *prune_acl_cond(struct acl_cond *cond)
875{
876 struct acl_term_suite *suite, *tmp_suite;
877 struct acl_term *term, *tmp_term;
878
879 /* iterate through all term suites and free all terms and all suites */
880 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
881 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
882 free(term);
883 free(suite);
884 }
885 return cond;
886}
887
888/* Parse an ACL condition starting at <args>[0], relying on a list of already
889 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200890 * case of low memory). Supports multiple conditions separated by "or". If
891 * <err> is not NULL, it will be filled with a pointer to an error message in
892 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200893 * location must either be freeable or NULL. The list <al> serves as a list head
894 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200895 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200896struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100897 enum acl_cond_pol pol, char **err, struct arg_list *al,
898 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200899{
900 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200901 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200902 const char *word;
903 struct acl *cur_acl;
904 struct acl_term *cur_term;
905 struct acl_term_suite *cur_suite;
906 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100907 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200908
909 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200910 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200911 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200912 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200913 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200914
915 LIST_INIT(&cond->list);
916 LIST_INIT(&cond->suites);
917 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100918 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200919
920 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100921 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200922 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200923 for (arg = 0; *args[arg]; arg++) {
924 word = args[arg];
925
926 /* remove as many exclamation marks as we can */
927 while (*word == '!') {
928 neg = !neg;
929 word++;
930 }
931
932 /* an empty word is allowed because we cannot force the user to
933 * always think about not leaving exclamation marks alone.
934 */
935 if (!*word)
936 continue;
937
Willy Tarreau16fbe822007-06-17 11:54:31 +0200938 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200939 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100940 cond->val |= suite_val;
941 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200942 cur_suite = NULL;
943 neg = 0;
944 continue;
945 }
946
Willy Tarreau95fa4692010-02-01 13:05:50 +0100947 if (strcmp(word, "{") == 0) {
948 /* we may have a complete ACL expression between two braces,
949 * find the last one.
950 */
951 int arg_end = arg + 1;
952 const char **args_new;
953
954 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
955 arg_end++;
956
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200957 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200958 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100959 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200960 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100961
962 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200963 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200964 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100965 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200966 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100967
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100968 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +0100969 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
970 args_new[arg_end - arg] = "";
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100971 cur_acl = parse_acl(args_new, known_acl, err, al, file, line);
Willy Tarreau95fa4692010-02-01 13:05:50 +0100972 free(args_new);
973
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200974 if (!cur_acl) {
975 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200976 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200977 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100978 word = args[arg + 1];
Willy Tarreau95fa4692010-02-01 13:05:50 +0100979 arg = arg_end;
980 }
981 else {
982 /* search for <word> in the known ACL names. If we do not find
983 * it, let's look for it in the default ACLs, and if found, add
984 * it to the list of ACLs of this proxy. This makes it possible
985 * to override them.
986 */
987 cur_acl = find_acl_by_name(word, known_acl);
988 if (cur_acl == NULL) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100989 cur_acl = find_acl_default(word, known_acl, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200990 if (cur_acl == NULL) {
991 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +0100992 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200993 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100994 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200995 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200996
997 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200998 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200999 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001000 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001001 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001002
1003 cur_term->acl = cur_acl;
1004 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001005
1006 /* Here it is a bit complex. The acl_term_suite is a conjunction
1007 * of many terms. It may only be used if all of its terms are
1008 * usable at the same time. So the suite's validity domain is an
1009 * AND between all ACL keywords' ones. But, the global condition
1010 * is valid if at least one term suite is OK. So it's an OR between
1011 * all of their validity domains. We could emit a warning as soon
1012 * as suite_val is null because it means that the last ACL is not
1013 * compatible with the previous ones. Let's remain simple for now.
1014 */
1015 cond->use |= cur_acl->use;
1016 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001017
1018 if (!cur_suite) {
1019 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +01001020 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001021 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001022 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001023 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001024 LIST_INIT(&cur_suite->terms);
1025 LIST_ADDQ(&cond->suites, &cur_suite->list);
1026 }
1027 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001028 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001029 }
1030
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001031 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001032 return cond;
1033
1034 out_free_term:
1035 free(cur_term);
1036 out_free_suite:
1037 prune_acl_cond(cond);
1038 free(cond);
1039 out_return:
1040 return NULL;
1041}
1042
Willy Tarreau2bbba412010-01-28 16:48:33 +01001043/* Builds an ACL condition starting at the if/unless keyword. The complete
1044 * condition is returned. NULL is returned in case of error or if the first
1045 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001046 * the line number in the condition for better error reporting, and sets the
1047 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001048 * be filled with a pointer to an error message in case of error, that the
1049 * caller is responsible for freeing. The initial location must either be
1050 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001051 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001052struct 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 +01001053{
Willy Tarreau0cba6072013-11-28 22:21:02 +01001054 enum acl_cond_pol pol = ACL_COND_NONE;
Willy Tarreau2bbba412010-01-28 16:48:33 +01001055 struct acl_cond *cond = NULL;
1056
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001057 if (err)
1058 *err = NULL;
1059
Willy Tarreau2bbba412010-01-28 16:48:33 +01001060 if (!strcmp(*args, "if")) {
1061 pol = ACL_COND_IF;
1062 args++;
1063 }
1064 else if (!strcmp(*args, "unless")) {
1065 pol = ACL_COND_UNLESS;
1066 args++;
1067 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001068 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001069 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001070 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001071 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001072
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001073 cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001074 if (!cond) {
1075 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001076 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001077 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001078
1079 cond->file = file;
1080 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001081 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001082 return cond;
1083}
1084
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001085/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
1086 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001087 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001088 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
1089 * function only computes the condition, it does not apply the polarity required
1090 * by IF/UNLESS, it's up to the caller to do this using something like this :
Willy Tarreau11382812008-07-09 16:18:21 +02001091 *
1092 * res = acl_pass(res);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001093 * if (res == ACL_TEST_MISS)
Willy Tarreaub6866442008-07-14 23:54:42 +02001094 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001095 * if (cond->pol == ACL_COND_UNLESS)
1096 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001097 */
Willy Tarreau0cba6072013-11-28 22:21:02 +01001098enum acl_test_res acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *l4, void *l7, unsigned int opt)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001099{
1100 __label__ fetch_next;
1101 struct acl_term_suite *suite;
1102 struct acl_term *term;
1103 struct acl_expr *expr;
1104 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001105 struct sample smp;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001106 enum acl_test_res acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001107
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001108 /* ACLs are iterated over all values, so let's always set the flag to
1109 * indicate this to the fetch functions.
1110 */
1111 opt |= SMP_OPT_ITERATE;
1112
Willy Tarreau11382812008-07-09 16:18:21 +02001113 /* We're doing a logical OR between conditions so we initialize to FAIL.
1114 * The MISS status is propagated down from the suites.
1115 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001116 cond_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001117 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001118 /* Evaluate condition suite <suite>. We stop at the first term
Willy Tarreau0cba6072013-11-28 22:21:02 +01001119 * which returns ACL_TEST_FAIL. The MISS status is still propagated
Willy Tarreau11382812008-07-09 16:18:21 +02001120 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001121 */
1122
1123 /* we're doing a logical AND between terms, so we must set the
1124 * initial value to PASS.
1125 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001126 suite_res = ACL_TEST_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001127 list_for_each_entry(term, &suite->terms, list) {
1128 acl = term->acl;
1129
1130 /* FIXME: use cache !
1131 * check acl->cache_idx for this.
1132 */
1133
1134 /* ACL result not cached. Let's scan all the expressions
1135 * and use the first one to match.
1136 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001137 acl_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001138 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001139 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001140 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001141 fetch_next:
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001142 if (!sample_process(px, l4, l7, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001143 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001144 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001145 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001146 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001147 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001148
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01001149 acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001150 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001151 * OK now acl_res holds the result of this expression
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001152 * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001153 *
Willy Tarreau11382812008-07-09 16:18:21 +02001154 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001155 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001156 *
1157 * FIXME: implement cache.
1158 *
1159 */
1160
Willy Tarreau11382812008-07-09 16:18:21 +02001161 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001162 if (acl_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001163 break;
1164
Willy Tarreau37406352012-04-23 16:16:37 +02001165 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001166 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001167
1168 /* sometimes we know the fetched data is subject to change
1169 * later and give another chance for a new match (eg: request
1170 * size, time, ...)
1171 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001172 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001173 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001174 }
1175 /*
1176 * Here we have the result of an ACL (cached or not).
1177 * ACLs are combined, negated or not, to form conditions.
1178 */
1179
Willy Tarreaua84d3742007-05-07 00:36:48 +02001180 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001181 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001182
1183 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001184
Willy Tarreau79c412b2013-10-30 19:30:32 +01001185 /* we're ANDing these terms, so a single FAIL or MISS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001186 if (suite_res != ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001187 break;
1188 }
1189 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001190
1191 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001192 if (cond_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001193 break;
1194 }
Willy Tarreau11382812008-07-09 16:18:21 +02001195 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001196}
1197
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001198/* Returns a pointer to the first ACL conflicting with usage at place <where>
1199 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1200 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1201 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001202 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001203const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001204{
1205 struct acl_term_suite *suite;
1206 struct acl_term *term;
1207 struct acl *acl;
1208
1209 list_for_each_entry(suite, &cond->suites, list) {
1210 list_for_each_entry(term, &suite->terms, list) {
1211 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001212 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001213 return acl;
1214 }
1215 }
1216 return NULL;
1217}
1218
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001219/* Returns a pointer to the first ACL and its first keyword to conflict with
1220 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1221 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1222 * null), or false if not conflict is found. The first useless keyword is
1223 * returned.
1224 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001225int 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 +01001226{
1227 struct acl_term_suite *suite;
1228 struct acl_term *term;
1229 struct acl_expr *expr;
1230
1231 list_for_each_entry(suite, &cond->suites, list) {
1232 list_for_each_entry(term, &suite->terms, list) {
1233 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001234 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001235 if (acl)
1236 *acl = term->acl;
1237 if (kw)
1238 *kw = expr->kw;
1239 return 1;
1240 }
1241 }
1242 }
1243 }
1244 return 0;
1245}
1246
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001247/*
1248 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001249 * of errors or OK if everything is fine. It must be called only once sample
1250 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001251 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001252int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001253{
1254
1255 struct acl *acl;
1256 struct acl_expr *expr;
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001257 struct pattern_list *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001258 int cfgerr = 0;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001259 struct pattern_expr_list *pexp;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001260
1261 list_for_each_entry(acl, &p->acl, list) {
1262 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001263 if (!strcmp(expr->kw, "http_auth_group")) {
1264 /* Note: the ARGT_USR argument may only have been resolved earlier
1265 * by smp_resolve_args().
1266 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001267 if (expr->smp->arg_p->unresolved) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001268 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 +01001269 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001270 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001271 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001272 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001273
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001274 if (LIST_ISEMPTY(&expr->pat.head)) {
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001275 Alert("proxy %s: acl %s %s(): no groups specified.\n",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001276 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001277 cfgerr++;
1278 continue;
1279 }
1280
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001281 /* For each pattern, check if the group exists. */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001282 list_for_each_entry(pexp, &expr->pat.head, list) {
1283 if (LIST_ISEMPTY(&pexp->expr->patterns)) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001284 Alert("proxy %s: acl %s %s(): no groups specified.\n",
1285 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001286 cfgerr++;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001287 continue;
1288 }
1289
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001290 list_for_each_entry(pattern, &pexp->expr->patterns, list) {
1291 /* this keyword only has one argument */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001292 if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) {
1293 Alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
1294 p->id, acl->name, expr->kw, pattern->pat.ptr.str);
1295 cfgerr++;
1296 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001297 }
1298 }
1299 }
1300 }
1301 }
1302
1303 return cfgerr;
1304}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001305
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001306/* initializes ACLs by resolving the sample fetch names they rely upon.
1307 * Returns 0 on success, otherwise an error.
1308 */
1309int init_acl()
1310{
1311 int err = 0;
1312 int index;
1313 const char *name;
1314 struct acl_kw_list *kwl;
1315 struct sample_fetch *smp;
1316
1317 list_for_each_entry(kwl, &acl_keywords.list, list) {
1318 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1319 name = kwl->kw[index].fetch_kw;
1320 if (!name)
1321 name = kwl->kw[index].kw;
1322
1323 smp = find_sample_fetch(name, strlen(name));
1324 if (!smp) {
1325 Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1326 kwl->kw[index].kw, name);
1327 err++;
1328 continue;
1329 }
1330 kwl->kw[index].smp = smp;
1331 }
1332 }
1333 return err;
1334}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001335
Willy Tarreaua84d3742007-05-07 00:36:48 +02001336/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001337/* All supported sample and ACL keywords must be declared here. */
1338/************************************************************************/
1339
1340/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001341 * Please take care of keeping this list alphabetically sorted.
1342 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001343static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001344 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001345}};
1346
Willy Tarreaua84d3742007-05-07 00:36:48 +02001347__attribute__((constructor))
1348static void __acl_init(void)
1349{
Willy Tarreaua84d3742007-05-07 00:36:48 +02001350 acl_register_keywords(&acl_kws);
1351}
1352
1353
1354/*
1355 * Local variables:
1356 * c-indent-level: 8
1357 * c-basic-offset: 8
1358 * End:
1359 */