blob: 8d14c68d6f82f9d1ea789fb96a386ef7e41a172b [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
370 if (!expr->pat.parse) {
371 /* some types can be automatically converted */
372
373 switch (expr->smp ? expr->smp->fetch->out_type : aclkw->smp->out_type) {
374 case SMP_T_BOOL:
375 expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100376 expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100377 expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100378 expr->pat.delete = pat_delete_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100379 expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100380 expr->pat.expect_type = pat_match_types[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100381 break;
382 case SMP_T_SINT:
383 case SMP_T_UINT:
384 expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100385 expr->pat.index = pat_index_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100386 expr->pat.match = pat_match_fcts[PAT_MATCH_INT];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100387 expr->pat.delete = pat_delete_fcts[PAT_MATCH_INT];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100388 expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100389 expr->pat.expect_type = pat_match_types[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100390 break;
391 case SMP_T_IPV4:
392 case SMP_T_IPV6:
393 expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100394 expr->pat.index = pat_index_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100395 expr->pat.match = pat_match_fcts[PAT_MATCH_IP];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100396 expr->pat.delete = pat_delete_fcts[PAT_MATCH_IP];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100397 expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100398 expr->pat.expect_type = pat_match_types[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100399 break;
400 }
401 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200402
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100403 /* Additional check to protect against common mistakes */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100404 cur_type = smp_expr_output_type(expr->smp);
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100405 if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) {
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100406 Warning("parsing acl keyword '%s' :\n"
407 " no pattern to match against were provided, so this ACL will never match.\n"
408 " If this is what you intended, please add '--' to get rid of this warning.\n"
409 " If you intended to match only for existence, please use '-m found'.\n"
410 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
411 "\n",
412 args[0]);
413 }
414
Willy Tarreaua84d3742007-05-07 00:36:48 +0200415 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200416
417 /* check for options before patterns. Supported options are :
418 * -i : ignore case for all patterns by default
419 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +0200420 * -m : force matching method (must be used before -f)
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100421 * -M : load the file as map file
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100422 * -u : force the unique id of the acl
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200423 * -- : everything after this is not an option
424 */
425 patflags = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100426 is_loaded = 0;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100427 unique_id = -1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200428 while (**args == '-') {
429 if ((*args)[1] == 'i')
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100430 patflags |= PAT_F_IGNORE_CASE;
Thierry FOURNIERb7729c92014-02-11 16:24:41 +0100431 else if ((*args)[1] == 'n')
432 patflags |= PAT_F_NO_DNS;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100433 else if ((*args)[1] == 'u') {
434 unique_id = strtol(args[1], &error, 10);
435 if (*error != '\0') {
436 memprintf(err, "the argument of -u must be an integer");
437 goto out_free_expr;
438 }
439
440 /* Check if this id is really unique. */
441 if (pat_ref_lookupid(unique_id)) {
442 memprintf(err, "the id is already used");
443 goto out_free_expr;
444 }
445
446 args++;
447 }
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200448 else if ((*args)[1] == 'f') {
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100449 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200450 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 +0200451 goto out_free_expr;
452 }
453
Thierry FOURNIER66eb9bf2014-02-11 16:19:46 +0100454 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 +0200455 goto out_free_expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100456 is_loaded = 1;
Willy Tarreau5adeda12013-03-31 22:13:34 +0200457 args++;
458 }
459 else if ((*args)[1] == 'm') {
460 int idx;
461
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100462 if (is_loaded) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200463 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
464 goto out_free_expr;
465 }
466
Willy Tarreau6f8fe312013-11-28 22:24:25 +0100467 idx = pat_find_match_name(args[1]);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200468 if (idx < 0) {
469 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
470 goto out_free_expr;
471 }
472
473 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100474 if (!sample_casts[cur_type][pat_match_types[idx]]) {
Willy Tarreau93fddf12013-03-31 22:59:32 +0200475 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200476 goto out_free_expr;
477 }
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100478 expr->pat.parse = pat_parse_fcts[idx];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100479 expr->pat.index = pat_index_fcts[idx];
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100480 expr->pat.match = pat_match_fcts[idx];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100481 expr->pat.delete = pat_delete_fcts[idx];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100482 expr->pat.prune = pat_prune_fcts[idx];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100483 expr->pat.expect_type = pat_match_types[idx];
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200484 args++;
485 }
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100486 else if ((*args)[1] == 'M') {
487 load_as_map = 1;
488 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200489 else if ((*args)[1] == '-') {
490 args++;
491 break;
492 }
493 else
494 break;
495 args++;
496 }
497
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100498 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200499 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 +0200500 goto out_free_expr;
501 }
502
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100503 /* Create displayed reference */
504 snprintf(trash.str, trash.size, "acl '%s' file '%s' line %d", expr->kw, file, line);
505 trash.str[trash.size - 1] = '\0';
506
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100507 /* Create new patern reference. */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100508 ref = pat_ref_newid(unique_id, trash.str, PAT_REF_ACL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100509 if (!ref) {
510 memprintf(err, "memory error");
511 goto out_free_expr;
512 }
513
514 /* Create new pattern expression associated to this reference. */
515 pattern_expr = pattern_new_expr(&expr->pat, ref, err);
516 if (!pattern_expr)
517 goto out_free_expr;
518
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200519 /* now parse all patterns */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100520 while (**args) {
521 arg = *args;
522
523 /* Compatibility layer. Each pattern can parse only one string per pattern,
524 * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need
525 * optionnaly two operators. The first operator is the match method: eq,
526 * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions
527 * can have a compatibility syntax based on ranges:
528 *
529 * pat_parse_int():
530 *
531 * "eq x" -> "x" or "x:x"
532 * "le x" -> ":x"
533 * "lt x" -> ":y" (with y = x - 1)
534 * "ge x" -> "x:"
535 * "gt x" -> "y:" (with y = x + 1)
536 *
537 * pat_parse_dotted_ver():
538 *
539 * "eq x.y" -> "x.y" or "x.y:x.y"
540 * "le x.y" -> ":x.y"
541 * "lt x.y" -> ":w.z" (with w.z = x.y - 1)
542 * "ge x.y" -> "x.y:"
543 * "gt x.y" -> "w.z:" (with w.z = x.y + 1)
544 *
545 * If y is not present, assume that is "0".
546 *
547 * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The
548 * following block of code detect the operator, and rewrite each value
549 * in parsable string.
550 */
551 if (expr->pat.parse == pat_parse_int ||
552 expr->pat.parse == pat_parse_dotted_ver) {
553 /* Check for operator. If the argument is operator, memorise it and
554 * continue to the next argument.
555 */
556 op = get_std_op(arg);
557 if (op != -1) {
558 operator = op;
559 args++;
560 continue;
561 }
562
563 /* Check if the pattern contain ':' or '-' character. */
564 contain_colon = (strchr(arg, ':') || strchr(arg, '-'));
565
566 /* If the pattern contain ':' or '-' character, give it to the parser as is.
567 * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is.
568 * In other case, try to convert the value according with the operator.
569 */
570 if (!contain_colon && operator != STD_OP_EQ) {
571 /* Search '.' separator. */
572 dot = strchr(arg, '.');
573 if (!dot) {
574 have_dot = 0;
575 minor = 0;
576 dot = arg + strlen(arg);
577 }
578 else
579 have_dot = 1;
580
581 /* convert the integer minor part for the pat_parse_dotted_ver() function. */
582 if (expr->pat.parse == pat_parse_dotted_ver && have_dot) {
583 if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) {
584 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100585 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100586 }
587 if (minor >= 65536) {
588 memprintf(err, "'%s' contains too large a minor value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100589 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100590 }
591 }
592
593 /* convert the integer value for the pat_parse_int() function, and the
594 * integer major part for the pat_parse_dotted_ver() function.
595 */
596 if (strl2llrc(arg, dot - arg, &value) != 0) {
597 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100598 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100599 }
600 if (expr->pat.parse == pat_parse_dotted_ver) {
601 if (value >= 65536) {
602 memprintf(err, "'%s' contains too large a major value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100603 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100604 }
605 value = (value << 16) | (minor & 0xffff);
606 }
607
608 switch (operator) {
609
610 case STD_OP_EQ: /* this case is not possible. */
611 memprintf(err, "internal error");
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100612 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100613
614 case STD_OP_GT:
615 value++; /* gt = ge + 1 */
616
617 case STD_OP_GE:
618 if (expr->pat.parse == pat_parse_int)
619 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value);
620 else
621 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:",
622 value >> 16, value & 0xffff);
623 arg = buffer;
624 break;
625
626 case STD_OP_LT:
627 value--; /* lt = le - 1 */
628
629 case STD_OP_LE:
630 if (expr->pat.parse == pat_parse_int)
631 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value);
632 else
633 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld",
634 value >> 16, value & 0xffff);
635 arg = buffer;
636 break;
637 }
638 }
639 }
640
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100641 /* Add sample to the reference, and try to compile it fior each pattern
642 * using this value.
643 */
644 if (!pat_ref_add(ref, arg, NULL, err))
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100645 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100646 args++;
647 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200648
649 return expr;
650
Willy Tarreaua84d3742007-05-07 00:36:48 +0200651 out_free_expr:
652 prune_acl_expr(expr);
653 free(expr);
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100654 free(ckw);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100655 out_free_smp:
656 free(smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200657 out_return:
658 return NULL;
659}
660
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200661/* Purge everything in the acl <acl>, then return <acl>. */
662struct acl *prune_acl(struct acl *acl) {
663
664 struct acl_expr *expr, *exprb;
665
666 free(acl->name);
667
668 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
669 LIST_DEL(&expr->list);
670 prune_acl_expr(expr);
671 free(expr);
672 }
673
674 return acl;
675}
676
Willy Tarreaua84d3742007-05-07 00:36:48 +0200677/* Parse an ACL with the name starting at <args>[0], and with a list of already
678 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100679 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200680 * an anonymous one and it won't be merged with any other one. If <err> is not
681 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200682 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
683 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200684 *
685 * args syntax: <aclname> <acl_expr>
686 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100687struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al,
688 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200689{
690 __label__ out_return, out_free_acl_expr, out_free_name;
691 struct acl *cur_acl;
692 struct acl_expr *acl_expr;
693 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200694 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200695
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200696 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200697 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100698 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200699 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100700
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100701 acl_expr = parse_acl_expr(args + 1, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200702 if (!acl_expr) {
703 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200704 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200705 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200706
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200707 /* Check for args beginning with an opening parenthesis just after the
708 * subject, as this is almost certainly a typo. Right now we can only
709 * emit a warning, so let's do so.
710 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +0200711 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200712 Warning("parsing acl '%s' :\n"
713 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
714 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
715 " If you are really sure this is not an error, please insert '--' between the\n"
716 " match and the pattern to make this warning message disappear.\n",
717 args[0], args[1], args[2]);
718
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100719 if (*args[0])
720 cur_acl = find_acl_by_name(args[0], known_acl);
721 else
722 cur_acl = NULL;
723
Willy Tarreaua84d3742007-05-07 00:36:48 +0200724 if (!cur_acl) {
725 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200726 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200727 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200728 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200729 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200730 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200731 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200732 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200733 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200734 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200735
736 LIST_INIT(&cur_acl->expr);
737 LIST_ADDQ(known_acl, &cur_acl->list);
738 cur_acl->name = name;
739 }
740
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100741 /* We want to know what features the ACL needs (typically HTTP parsing),
742 * and where it may be used. If an ACL relies on multiple matches, it is
743 * OK if at least one of them may match in the context where it is used.
744 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100745 cur_acl->use |= acl_expr->smp->fetch->use;
746 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200747 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
748 return cur_acl;
749
750 out_free_name:
751 free(name);
752 out_free_acl_expr:
753 prune_acl_expr(acl_expr);
754 free(acl_expr);
755 out_return:
756 return NULL;
757}
758
Willy Tarreau16fbe822007-06-17 11:54:31 +0200759/* Some useful ACLs provided by default. Only those used are allocated. */
760
761const struct {
762 const char *name;
763 const char *expr[4]; /* put enough for longest expression */
764} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +0200765 { .name = "TRUE", .expr = {"always_true",""}},
766 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200767 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200768 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200769 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
770 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
771 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
772 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
773 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
774 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
775 { .name = "METH_POST", .expr = {"method","POST",""}},
776 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
777 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
778 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
779 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
780 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +0200781 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +0200782 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +0200783 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200784 { .name = NULL, .expr = {""}}
785};
786
787/* Find a default ACL from the default_acl list, compile it and return it.
788 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
789 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200790 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
791 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200792 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
793 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +0200794 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200795static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100796 char **err, struct arg_list *al,
797 const char *file, int line)
Willy Tarreau16fbe822007-06-17 11:54:31 +0200798{
799 __label__ out_return, out_free_acl_expr, out_free_name;
800 struct acl *cur_acl;
801 struct acl_expr *acl_expr;
802 char *name;
803 int index;
804
805 for (index = 0; default_acl_list[index].name != NULL; index++) {
806 if (strcmp(acl_name, default_acl_list[index].name) == 0)
807 break;
808 }
809
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200810 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200811 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200812 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200813 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200814
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100815 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200816 if (!acl_expr) {
817 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200818 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200819 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200820
821 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200822 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200823 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200824 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200825 }
826
Willy Tarreau16fbe822007-06-17 11:54:31 +0200827 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200828 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200829 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200830 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200831 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200832
833 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100834 cur_acl->use |= acl_expr->smp->fetch->use;
835 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +0200836 LIST_INIT(&cur_acl->expr);
837 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
838 if (known_acl)
839 LIST_ADDQ(known_acl, &cur_acl->list);
840
841 return cur_acl;
842
843 out_free_name:
844 free(name);
845 out_free_acl_expr:
846 prune_acl_expr(acl_expr);
847 free(acl_expr);
848 out_return:
849 return NULL;
850}
Willy Tarreaua84d3742007-05-07 00:36:48 +0200851
852/* Purge everything in the acl_cond <cond>, then return <cond>. */
853struct acl_cond *prune_acl_cond(struct acl_cond *cond)
854{
855 struct acl_term_suite *suite, *tmp_suite;
856 struct acl_term *term, *tmp_term;
857
858 /* iterate through all term suites and free all terms and all suites */
859 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
860 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
861 free(term);
862 free(suite);
863 }
864 return cond;
865}
866
867/* Parse an ACL condition starting at <args>[0], relying on a list of already
868 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200869 * case of low memory). Supports multiple conditions separated by "or". If
870 * <err> is not NULL, it will be filled with a pointer to an error message in
871 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200872 * location must either be freeable or NULL. The list <al> serves as a list head
873 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200874 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200875struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100876 enum acl_cond_pol pol, char **err, struct arg_list *al,
877 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200878{
879 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200880 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200881 const char *word;
882 struct acl *cur_acl;
883 struct acl_term *cur_term;
884 struct acl_term_suite *cur_suite;
885 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100886 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200887
888 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200889 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200890 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200891 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200892 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200893
894 LIST_INIT(&cond->list);
895 LIST_INIT(&cond->suites);
896 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100897 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200898
899 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100900 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200901 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200902 for (arg = 0; *args[arg]; arg++) {
903 word = args[arg];
904
905 /* remove as many exclamation marks as we can */
906 while (*word == '!') {
907 neg = !neg;
908 word++;
909 }
910
911 /* an empty word is allowed because we cannot force the user to
912 * always think about not leaving exclamation marks alone.
913 */
914 if (!*word)
915 continue;
916
Willy Tarreau16fbe822007-06-17 11:54:31 +0200917 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200918 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100919 cond->val |= suite_val;
920 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200921 cur_suite = NULL;
922 neg = 0;
923 continue;
924 }
925
Willy Tarreau95fa4692010-02-01 13:05:50 +0100926 if (strcmp(word, "{") == 0) {
927 /* we may have a complete ACL expression between two braces,
928 * find the last one.
929 */
930 int arg_end = arg + 1;
931 const char **args_new;
932
933 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
934 arg_end++;
935
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200936 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200937 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100938 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200939 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100940
941 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200942 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200943 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100944 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200945 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100946
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100947 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +0100948 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
949 args_new[arg_end - arg] = "";
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100950 cur_acl = parse_acl(args_new, known_acl, err, al, file, line);
Willy Tarreau95fa4692010-02-01 13:05:50 +0100951 free(args_new);
952
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200953 if (!cur_acl) {
954 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200955 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200956 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100957 word = args[arg + 1];
Willy Tarreau95fa4692010-02-01 13:05:50 +0100958 arg = arg_end;
959 }
960 else {
961 /* search for <word> in the known ACL names. If we do not find
962 * it, let's look for it in the default ACLs, and if found, add
963 * it to the list of ACLs of this proxy. This makes it possible
964 * to override them.
965 */
966 cur_acl = find_acl_by_name(word, known_acl);
967 if (cur_acl == NULL) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100968 cur_acl = find_acl_default(word, known_acl, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200969 if (cur_acl == NULL) {
970 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +0100971 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200972 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100973 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200974 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200975
976 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200977 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200978 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200979 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200980 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200981
982 cur_term->acl = cur_acl;
983 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100984
985 /* Here it is a bit complex. The acl_term_suite is a conjunction
986 * of many terms. It may only be used if all of its terms are
987 * usable at the same time. So the suite's validity domain is an
988 * AND between all ACL keywords' ones. But, the global condition
989 * is valid if at least one term suite is OK. So it's an OR between
990 * all of their validity domains. We could emit a warning as soon
991 * as suite_val is null because it means that the last ACL is not
992 * compatible with the previous ones. Let's remain simple for now.
993 */
994 cond->use |= cur_acl->use;
995 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200996
997 if (!cur_suite) {
998 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +0100999 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001000 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +02001001 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001002 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001003 LIST_INIT(&cur_suite->terms);
1004 LIST_ADDQ(&cond->suites, &cur_suite->list);
1005 }
1006 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001007 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001008 }
1009
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001010 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001011 return cond;
1012
1013 out_free_term:
1014 free(cur_term);
1015 out_free_suite:
1016 prune_acl_cond(cond);
1017 free(cond);
1018 out_return:
1019 return NULL;
1020}
1021
Willy Tarreau2bbba412010-01-28 16:48:33 +01001022/* Builds an ACL condition starting at the if/unless keyword. The complete
1023 * condition is returned. NULL is returned in case of error or if the first
1024 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001025 * the line number in the condition for better error reporting, and sets the
1026 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001027 * be filled with a pointer to an error message in case of error, that the
1028 * caller is responsible for freeing. The initial location must either be
1029 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001030 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001031struct 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 +01001032{
Willy Tarreau0cba6072013-11-28 22:21:02 +01001033 enum acl_cond_pol pol = ACL_COND_NONE;
Willy Tarreau2bbba412010-01-28 16:48:33 +01001034 struct acl_cond *cond = NULL;
1035
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001036 if (err)
1037 *err = NULL;
1038
Willy Tarreau2bbba412010-01-28 16:48:33 +01001039 if (!strcmp(*args, "if")) {
1040 pol = ACL_COND_IF;
1041 args++;
1042 }
1043 else if (!strcmp(*args, "unless")) {
1044 pol = ACL_COND_UNLESS;
1045 args++;
1046 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001047 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001048 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001049 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001050 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001051
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001052 cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001053 if (!cond) {
1054 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001055 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001056 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001057
1058 cond->file = file;
1059 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001060 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001061 return cond;
1062}
1063
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001064/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
1065 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001066 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001067 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
1068 * function only computes the condition, it does not apply the polarity required
1069 * by IF/UNLESS, it's up to the caller to do this using something like this :
Willy Tarreau11382812008-07-09 16:18:21 +02001070 *
1071 * res = acl_pass(res);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001072 * if (res == ACL_TEST_MISS)
Willy Tarreaub6866442008-07-14 23:54:42 +02001073 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001074 * if (cond->pol == ACL_COND_UNLESS)
1075 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001076 */
Willy Tarreau0cba6072013-11-28 22:21:02 +01001077enum 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 +02001078{
1079 __label__ fetch_next;
1080 struct acl_term_suite *suite;
1081 struct acl_term *term;
1082 struct acl_expr *expr;
1083 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001084 struct sample smp;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001085 enum acl_test_res acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001086
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001087 /* ACLs are iterated over all values, so let's always set the flag to
1088 * indicate this to the fetch functions.
1089 */
1090 opt |= SMP_OPT_ITERATE;
1091
Willy Tarreau11382812008-07-09 16:18:21 +02001092 /* We're doing a logical OR between conditions so we initialize to FAIL.
1093 * The MISS status is propagated down from the suites.
1094 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001095 cond_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001096 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001097 /* Evaluate condition suite <suite>. We stop at the first term
Willy Tarreau0cba6072013-11-28 22:21:02 +01001098 * which returns ACL_TEST_FAIL. The MISS status is still propagated
Willy Tarreau11382812008-07-09 16:18:21 +02001099 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001100 */
1101
1102 /* we're doing a logical AND between terms, so we must set the
1103 * initial value to PASS.
1104 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001105 suite_res = ACL_TEST_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001106 list_for_each_entry(term, &suite->terms, list) {
1107 acl = term->acl;
1108
1109 /* FIXME: use cache !
1110 * check acl->cache_idx for this.
1111 */
1112
1113 /* ACL result not cached. Let's scan all the expressions
1114 * and use the first one to match.
1115 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001116 acl_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001117 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001118 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001119 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001120 fetch_next:
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001121 if (!sample_process(px, l4, l7, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001122 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001123 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001124 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001125 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001126 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001127
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01001128 acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001129 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001130 * OK now acl_res holds the result of this expression
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001131 * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001132 *
Willy Tarreau11382812008-07-09 16:18:21 +02001133 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001134 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001135 *
1136 * FIXME: implement cache.
1137 *
1138 */
1139
Willy Tarreau11382812008-07-09 16:18:21 +02001140 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001141 if (acl_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001142 break;
1143
Willy Tarreau37406352012-04-23 16:16:37 +02001144 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001145 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001146
1147 /* sometimes we know the fetched data is subject to change
1148 * later and give another chance for a new match (eg: request
1149 * size, time, ...)
1150 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001151 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001152 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001153 }
1154 /*
1155 * Here we have the result of an ACL (cached or not).
1156 * ACLs are combined, negated or not, to form conditions.
1157 */
1158
Willy Tarreaua84d3742007-05-07 00:36:48 +02001159 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001160 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001161
1162 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001163
Willy Tarreau79c412b2013-10-30 19:30:32 +01001164 /* we're ANDing these terms, so a single FAIL or MISS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001165 if (suite_res != ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001166 break;
1167 }
1168 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001169
1170 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001171 if (cond_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001172 break;
1173 }
Willy Tarreau11382812008-07-09 16:18:21 +02001174 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001175}
1176
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001177/* Returns a pointer to the first ACL conflicting with usage at place <where>
1178 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1179 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1180 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001181 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001182const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001183{
1184 struct acl_term_suite *suite;
1185 struct acl_term *term;
1186 struct acl *acl;
1187
1188 list_for_each_entry(suite, &cond->suites, list) {
1189 list_for_each_entry(term, &suite->terms, list) {
1190 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001191 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001192 return acl;
1193 }
1194 }
1195 return NULL;
1196}
1197
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001198/* Returns a pointer to the first ACL and its first keyword to conflict with
1199 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1200 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1201 * null), or false if not conflict is found. The first useless keyword is
1202 * returned.
1203 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001204int 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 +01001205{
1206 struct acl_term_suite *suite;
1207 struct acl_term *term;
1208 struct acl_expr *expr;
1209
1210 list_for_each_entry(suite, &cond->suites, list) {
1211 list_for_each_entry(term, &suite->terms, list) {
1212 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001213 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001214 if (acl)
1215 *acl = term->acl;
1216 if (kw)
1217 *kw = expr->kw;
1218 return 1;
1219 }
1220 }
1221 }
1222 }
1223 return 0;
1224}
1225
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001226/*
1227 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001228 * of errors or OK if everything is fine. It must be called only once sample
1229 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001230 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001231int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001232{
1233
1234 struct acl *acl;
1235 struct acl_expr *expr;
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001236 struct pattern_list *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001237 int cfgerr = 0;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001238 struct pattern_expr_list *pexp;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001239
1240 list_for_each_entry(acl, &p->acl, list) {
1241 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001242 if (!strcmp(expr->kw, "http_auth_group")) {
1243 /* Note: the ARGT_USR argument may only have been resolved earlier
1244 * by smp_resolve_args().
1245 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001246 if (expr->smp->arg_p->unresolved) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001247 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 +01001248 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001249 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001250 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001251 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001252
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001253 if (LIST_ISEMPTY(&expr->pat.head)) {
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001254 Alert("proxy %s: acl %s %s(): no groups specified.\n",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001255 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001256 cfgerr++;
1257 continue;
1258 }
1259
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001260 /* For each pattern, check if the group exists. */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001261 list_for_each_entry(pexp, &expr->pat.head, list) {
1262 if (LIST_ISEMPTY(&pexp->expr->patterns)) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001263 Alert("proxy %s: acl %s %s(): no groups specified.\n",
1264 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001265 cfgerr++;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001266 continue;
1267 }
1268
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001269 list_for_each_entry(pattern, &pexp->expr->patterns, list) {
1270 /* this keyword only has one argument */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001271 if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) {
1272 Alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
1273 p->id, acl->name, expr->kw, pattern->pat.ptr.str);
1274 cfgerr++;
1275 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001276 }
1277 }
1278 }
1279 }
1280 }
1281
1282 return cfgerr;
1283}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001284
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001285/* initializes ACLs by resolving the sample fetch names they rely upon.
1286 * Returns 0 on success, otherwise an error.
1287 */
1288int init_acl()
1289{
1290 int err = 0;
1291 int index;
1292 const char *name;
1293 struct acl_kw_list *kwl;
1294 struct sample_fetch *smp;
1295
1296 list_for_each_entry(kwl, &acl_keywords.list, list) {
1297 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1298 name = kwl->kw[index].fetch_kw;
1299 if (!name)
1300 name = kwl->kw[index].kw;
1301
1302 smp = find_sample_fetch(name, strlen(name));
1303 if (!smp) {
1304 Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1305 kwl->kw[index].kw, name);
1306 err++;
1307 continue;
1308 }
1309 kwl->kw[index].smp = smp;
1310 }
1311 }
1312 return err;
1313}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001314
Willy Tarreaua84d3742007-05-07 00:36:48 +02001315/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001316/* All supported sample and ACL keywords must be declared here. */
1317/************************************************************************/
1318
1319/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001320 * Please take care of keeping this list alphabetically sorted.
1321 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001322static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001323 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001324}};
1325
Willy Tarreaua84d3742007-05-07 00:36:48 +02001326__attribute__((constructor))
1327static void __acl_init(void)
1328{
Willy Tarreaua84d3742007-05-07 00:36:48 +02001329 acl_register_keywords(&acl_kws);
1330}
1331
1332
1333/*
1334 * Local variables:
1335 * c-indent-level: 8
1336 * c-basic-offset: 8
1337 * End:
1338 */