blob: f11026942e6f07bf69cc75844a5eb100c62b40e7 [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 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200134struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200135{
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100136 __label__ out_return, out_free_expr;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200137 struct acl_expr *expr;
138 struct acl_keyword *aclkw;
Thierry FOURNIER7148ce62013-12-06 19:06:43 +0100139 int patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200140 const char *arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100141 struct sample_expr *smp = NULL;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100142 int idx = 0;
143 char *ckw = NULL;
144 const char *begw;
145 const char *endw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100146 const char *endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100147 unsigned long prev_type;
148 int cur_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100149 int nbargs;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100150 int operator = STD_OP_EQ;
151 int op;
152 int contain_colon, have_dot;
153 const char *dot;
154 signed long long value, minor;
155 /* The following buffer contain two numbers, a ':' separator and the final \0. */
156 char buffer[NB_LLMAX_STR + 1 + NB_LLMAX_STR + 1];
Willy Tarreaua84d3742007-05-07 00:36:48 +0200157
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100158 /* First, we look for an ACL keyword. And if we don't find one, then
159 * we look for a sample fetch expression starting with a sample fetch
160 * keyword.
Willy Tarreaubef91e72013-03-31 23:14:46 +0200161 */
Willy Tarreau131b4662013-12-13 01:08:36 +0100162
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100163 al->ctx = ARGC_ACL; // to report errors while resolving args late
Willy Tarreau131b4662013-12-13 01:08:36 +0100164 al->kw = *args;
165 al->conv = NULL;
166
Willy Tarreaua84d3742007-05-07 00:36:48 +0200167 aclkw = find_acl_kw(args[0]);
Willy Tarreau20490922014-03-17 18:04:27 +0100168 if (aclkw) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100169 /* OK we have a real ACL keyword */
Willy Tarreau9987ea92013-06-11 21:09:06 +0200170
Willy Tarreau131b4662013-12-13 01:08:36 +0100171 /* build new sample expression for this ACL */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100172 smp = calloc(1, sizeof(struct sample_expr));
173 if (!smp) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100174 memprintf(err, "out of memory when parsing ACL expression");
175 goto out_return;
176 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100177 LIST_INIT(&(smp->conv_exprs));
178 smp->fetch = aclkw->smp;
179 smp->arg_p = empty_arg_list;
Willy Tarreau34db1082012-04-19 17:16:54 +0200180
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100181 /* look for the begining of the subject arguments */
Willy Tarreau131b4662013-12-13 01:08:36 +0100182 for (arg = args[0]; *arg && *arg != '(' && *arg != ','; arg++);
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100183
Willy Tarreau131b4662013-12-13 01:08:36 +0100184 endt = arg;
185 if (*endt == '(') {
186 /* look for the end of this term and skip the opening parenthesis */
187 endt = ++arg;
188 while (*endt && *endt != ')')
189 endt++;
190 if (*endt != ')') {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100191 memprintf(err, "missing closing ')' after arguments to ACL keyword '%s'", aclkw->kw);
192 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100193 }
194 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100195
Willy Tarreau131b4662013-12-13 01:08:36 +0100196 /* At this point, we have :
197 * - args[0] : beginning of the keyword
198 * - arg : end of the keyword, first character not part of keyword
199 * nor the opening parenthesis (so first character of args
200 * if present).
201 * - endt : end of the term (=arg or last parenthesis if args are present)
202 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100203 nbargs = make_arg_list(arg, endt - arg, smp->fetch->arg_mask, &smp->arg_p,
Willy Tarreau131b4662013-12-13 01:08:36 +0100204 err, NULL, NULL, al);
205 if (nbargs < 0) {
206 /* note that make_arg_list will have set <err> here */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100207 memprintf(err, "ACL keyword '%s' : %s", aclkw->kw, *err);
208 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100209 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100210
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100211 if (!smp->arg_p) {
212 smp->arg_p = empty_arg_list;
Willy Tarreau131b4662013-12-13 01:08:36 +0100213 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100214 else if (smp->fetch->val_args && !smp->fetch->val_args(smp->arg_p, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100215 /* invalid keyword argument, error must have been
216 * set by val_args().
217 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100218 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
219 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100220 }
221 arg = endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100222
Willy Tarreau131b4662013-12-13 01:08:36 +0100223 /* look for the begining of the converters list. Those directly attached
224 * to the ACL keyword are found just after <arg> which points to the comma.
225 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100226 prev_type = smp->fetch->out_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100227 while (*arg) {
228 struct sample_conv *conv;
229 struct sample_conv_expr *conv_expr;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100230
Willy Tarreau131b4662013-12-13 01:08:36 +0100231 if (*arg == ')') /* skip last closing parenthesis */
232 arg++;
233
234 if (*arg && *arg != ',') {
235 if (ckw)
236 memprintf(err, "ACL keyword '%s' : missing comma after conv keyword '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100237 aclkw->kw, ckw);
Willy Tarreau131b4662013-12-13 01:08:36 +0100238 else
239 memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100240 aclkw->kw);
241 goto out_free_smp;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200242 }
Willy Tarreauae52f062012-04-26 12:13:35 +0200243
Willy Tarreau131b4662013-12-13 01:08:36 +0100244 while (*arg == ',') /* then trailing commas */
245 arg++;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200246
Willy Tarreau131b4662013-12-13 01:08:36 +0100247 begw = arg; /* start of conv keyword */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100248
Willy Tarreau131b4662013-12-13 01:08:36 +0100249 if (!*begw)
250 /* none ? end of converters */
251 break;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100252
Willy Tarreau131b4662013-12-13 01:08:36 +0100253 for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++);
Willy Tarreau9ca69362013-10-22 19:10:06 +0200254
Willy Tarreau131b4662013-12-13 01:08:36 +0100255 free(ckw);
256 ckw = my_strndup(begw, endw - begw);
Willy Tarreauf75d0082013-04-07 21:20:44 +0200257
Willy Tarreau131b4662013-12-13 01:08:36 +0100258 conv = find_sample_conv(begw, endw - begw);
259 if (!conv) {
260 /* Unknown converter method */
261 memprintf(err, "ACL keyword '%s' : unknown conv method '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100262 aclkw->kw, ckw);
263 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100264 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100265
Willy Tarreau131b4662013-12-13 01:08:36 +0100266 arg = endw;
267 if (*arg == '(') {
268 /* look for the end of this term */
269 while (*arg && *arg != ')')
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100270 arg++;
Willy Tarreau131b4662013-12-13 01:08:36 +0100271 if (*arg != ')') {
272 memprintf(err, "ACL keyword '%s' : syntax error: missing ')' after conv keyword '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100273 aclkw->kw, ckw);
274 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100275 }
Willy Tarreau131b4662013-12-13 01:08:36 +0100276 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100277
Willy Tarreau131b4662013-12-13 01:08:36 +0100278 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
279 memprintf(err, "ACL keyword '%s' : returns type of conv method '%s' is unknown.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100280 aclkw->kw, ckw);
281 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100282 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100283
Willy Tarreau131b4662013-12-13 01:08:36 +0100284 /* If impossible type conversion */
285 if (!sample_casts[prev_type][conv->in_type]) {
286 memprintf(err, "ACL keyword '%s' : conv method '%s' cannot be applied.",
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 prev_type = conv->out_type;
292 conv_expr = calloc(1, sizeof(struct sample_conv_expr));
293 if (!conv_expr)
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100294 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100295
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100296 LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list));
Willy Tarreau131b4662013-12-13 01:08:36 +0100297 conv_expr->conv = conv;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100298
Willy Tarreau131b4662013-12-13 01:08:36 +0100299 if (arg != endw) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100300 int err_arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100301
Willy Tarreau131b4662013-12-13 01:08:36 +0100302 if (!conv->arg_mask) {
303 memprintf(err, "ACL keyword '%s' : conv method '%s' does not support any args.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100304 aclkw->kw, ckw);
305 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100306 }
307
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100308 al->kw = smp->fetch->kw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100309 al->conv = conv_expr->conv->kw;
Willy Tarreauadaddc22013-12-13 01:30:22 +0100310 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 +0100311 memprintf(err, "ACL keyword '%s' : invalid arg %d in conv method '%s' : %s.",
Willy Tarreauadaddc22013-12-13 01:30:22 +0100312 aclkw->kw, err_arg+1, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100313 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100314 }
315
Willy Tarreau131b4662013-12-13 01:08:36 +0100316 if (!conv_expr->arg_p)
317 conv_expr->arg_p = empty_arg_list;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100318
Willy Tarreauadaddc22013-12-13 01:30:22 +0100319 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100320 memprintf(err, "ACL keyword '%s' : invalid args in conv method '%s' : %s.",
Willy Tarreauadaddc22013-12-13 01:30:22 +0100321 aclkw->kw, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100322 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100323 }
324 }
Willy Tarreau131b4662013-12-13 01:08:36 +0100325 else if (ARGM(conv->arg_mask)) {
326 memprintf(err, "ACL keyword '%s' : missing args for conv method '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100327 aclkw->kw, ckw);
328 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100329 }
Willy Tarreau61612d42012-04-19 18:42:05 +0200330 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200331 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100332 else {
333 /* This is not an ACL keyword, so we hope this is a sample fetch
334 * keyword that we're going to transparently use as an ACL. If
335 * so, we retrieve a completely parsed expression with args and
336 * convs already done.
337 */
338 smp = sample_parse_expr((char **)args, &idx, err, al);
339 if (!smp) {
340 memprintf(err, "%s in ACL expression '%s'", *err, *args);
341 goto out_return;
342 }
343 }
344
345 expr = (struct acl_expr *)calloc(1, sizeof(*expr));
346 if (!expr) {
347 memprintf(err, "out of memory when parsing ACL expression");
348 goto out_return;
349 }
350
351 pattern_init_expr(&expr->pat);
352
353 expr->kw = aclkw ? aclkw->kw : smp->fetch->kw;
354 expr->pat.parse = aclkw ? aclkw->parse : NULL;
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100355 expr->pat.index = aclkw ? aclkw->index : NULL;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100356 expr->pat.match = aclkw ? aclkw->match : NULL;
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100357 expr->pat.delete = aclkw ? aclkw->delete : NULL;
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100358 expr->pat.prune = aclkw ? aclkw->prune : NULL;
Thierry FOURNIER55d0b102014-01-15 11:25:26 +0100359 expr->pat.find_smp = aclkw ? aclkw->find_smp : NULL;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100360 expr->smp = smp;
361 smp = NULL;
362
363 if (!expr->pat.parse) {
364 /* some types can be automatically converted */
365
366 switch (expr->smp ? expr->smp->fetch->out_type : aclkw->smp->out_type) {
367 case SMP_T_BOOL:
368 expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100369 expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100370 expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100371 expr->pat.delete = pat_delete_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100372 expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER55d0b102014-01-15 11:25:26 +0100373 expr->pat.find_smp = pat_find_smp_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100374 break;
375 case SMP_T_SINT:
376 case SMP_T_UINT:
377 expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100378 expr->pat.index = pat_index_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100379 expr->pat.match = pat_match_fcts[PAT_MATCH_INT];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100380 expr->pat.delete = pat_delete_fcts[PAT_MATCH_INT];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100381 expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT];
Thierry FOURNIER55d0b102014-01-15 11:25:26 +0100382 expr->pat.find_smp = pat_find_smp_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100383 break;
384 case SMP_T_IPV4:
385 case SMP_T_IPV6:
386 expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100387 expr->pat.index = pat_index_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100388 expr->pat.match = pat_match_fcts[PAT_MATCH_IP];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100389 expr->pat.delete = pat_delete_fcts[PAT_MATCH_IP];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100390 expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP];
Thierry FOURNIER55d0b102014-01-15 11:25:26 +0100391 expr->pat.find_smp = pat_find_smp_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100392 break;
393 }
394 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200395
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100396 /* Additional check to protect against common mistakes */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100397 cur_type = smp_expr_output_type(expr->smp);
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100398 if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) {
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100399 Warning("parsing acl keyword '%s' :\n"
400 " no pattern to match against were provided, so this ACL will never match.\n"
401 " If this is what you intended, please add '--' to get rid of this warning.\n"
402 " If you intended to match only for existence, please use '-m found'.\n"
403 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
404 "\n",
405 args[0]);
406 }
407
Willy Tarreaua84d3742007-05-07 00:36:48 +0200408 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200409
410 /* check for options before patterns. Supported options are :
411 * -i : ignore case for all patterns by default
412 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +0200413 * -m : force matching method (must be used before -f)
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200414 * -- : everything after this is not an option
415 */
416 patflags = 0;
417 while (**args == '-') {
418 if ((*args)[1] == 'i')
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100419 patflags |= PAT_F_IGNORE_CASE;
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200420 else if ((*args)[1] == 'f') {
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100421 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200422 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 +0200423 goto out_free_expr;
424 }
425
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100426 if (!pattern_read_from_file(&expr->pat, args[1], patflags | PAT_F_FROM_FILE, err))
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200427 goto out_free_expr;
Willy Tarreau5adeda12013-03-31 22:13:34 +0200428 args++;
429 }
430 else if ((*args)[1] == 'm') {
431 int idx;
432
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100433 if (!LIST_ISEMPTY(&expr->pat.patterns) || !eb_is_empty(&expr->pat.pattern_tree)) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200434 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
435 goto out_free_expr;
436 }
437
Willy Tarreau6f8fe312013-11-28 22:24:25 +0100438 idx = pat_find_match_name(args[1]);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200439 if (idx < 0) {
440 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
441 goto out_free_expr;
442 }
443
444 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100445 if (!sample_casts[cur_type][pat_match_types[idx]]) {
Willy Tarreau93fddf12013-03-31 22:59:32 +0200446 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200447 goto out_free_expr;
448 }
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100449 expr->pat.parse = pat_parse_fcts[idx];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100450 expr->pat.index = pat_index_fcts[idx];
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100451 expr->pat.match = pat_match_fcts[idx];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100452 expr->pat.delete = pat_delete_fcts[idx];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100453 expr->pat.prune = pat_prune_fcts[idx];
Thierry FOURNIER55d0b102014-01-15 11:25:26 +0100454 expr->pat.find_smp = pat_find_smp_fcts[idx];
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200455 args++;
456 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200457 else if ((*args)[1] == '-') {
458 args++;
459 break;
460 }
461 else
462 break;
463 args++;
464 }
465
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100466 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200467 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 +0200468 goto out_free_expr;
469 }
470
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200471 /* now parse all patterns */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100472 while (**args) {
473 arg = *args;
474
475 /* Compatibility layer. Each pattern can parse only one string per pattern,
476 * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need
477 * optionnaly two operators. The first operator is the match method: eq,
478 * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions
479 * can have a compatibility syntax based on ranges:
480 *
481 * pat_parse_int():
482 *
483 * "eq x" -> "x" or "x:x"
484 * "le x" -> ":x"
485 * "lt x" -> ":y" (with y = x - 1)
486 * "ge x" -> "x:"
487 * "gt x" -> "y:" (with y = x + 1)
488 *
489 * pat_parse_dotted_ver():
490 *
491 * "eq x.y" -> "x.y" or "x.y:x.y"
492 * "le x.y" -> ":x.y"
493 * "lt x.y" -> ":w.z" (with w.z = x.y - 1)
494 * "ge x.y" -> "x.y:"
495 * "gt x.y" -> "w.z:" (with w.z = x.y + 1)
496 *
497 * If y is not present, assume that is "0".
498 *
499 * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The
500 * following block of code detect the operator, and rewrite each value
501 * in parsable string.
502 */
503 if (expr->pat.parse == pat_parse_int ||
504 expr->pat.parse == pat_parse_dotted_ver) {
505 /* Check for operator. If the argument is operator, memorise it and
506 * continue to the next argument.
507 */
508 op = get_std_op(arg);
509 if (op != -1) {
510 operator = op;
511 args++;
512 continue;
513 }
514
515 /* Check if the pattern contain ':' or '-' character. */
516 contain_colon = (strchr(arg, ':') || strchr(arg, '-'));
517
518 /* If the pattern contain ':' or '-' character, give it to the parser as is.
519 * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is.
520 * In other case, try to convert the value according with the operator.
521 */
522 if (!contain_colon && operator != STD_OP_EQ) {
523 /* Search '.' separator. */
524 dot = strchr(arg, '.');
525 if (!dot) {
526 have_dot = 0;
527 minor = 0;
528 dot = arg + strlen(arg);
529 }
530 else
531 have_dot = 1;
532
533 /* convert the integer minor part for the pat_parse_dotted_ver() function. */
534 if (expr->pat.parse == pat_parse_dotted_ver && have_dot) {
535 if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) {
536 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100537 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100538 }
539 if (minor >= 65536) {
540 memprintf(err, "'%s' contains too large a minor value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100541 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100542 }
543 }
544
545 /* convert the integer value for the pat_parse_int() function, and the
546 * integer major part for the pat_parse_dotted_ver() function.
547 */
548 if (strl2llrc(arg, dot - arg, &value) != 0) {
549 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100550 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100551 }
552 if (expr->pat.parse == pat_parse_dotted_ver) {
553 if (value >= 65536) {
554 memprintf(err, "'%s' contains too large a major value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100555 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100556 }
557 value = (value << 16) | (minor & 0xffff);
558 }
559
560 switch (operator) {
561
562 case STD_OP_EQ: /* this case is not possible. */
563 memprintf(err, "internal error");
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100564 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100565
566 case STD_OP_GT:
567 value++; /* gt = ge + 1 */
568
569 case STD_OP_GE:
570 if (expr->pat.parse == pat_parse_int)
571 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value);
572 else
573 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:",
574 value >> 16, value & 0xffff);
575 arg = buffer;
576 break;
577
578 case STD_OP_LT:
579 value--; /* lt = le - 1 */
580
581 case STD_OP_LE:
582 if (expr->pat.parse == pat_parse_int)
583 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value);
584 else
585 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld",
586 value >> 16, value & 0xffff);
587 arg = buffer;
588 break;
589 }
590 }
591 }
592
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100593 if (!pattern_register(&expr->pat, arg, NULL, patflags, err))
594 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100595 args++;
596 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200597
598 return expr;
599
Willy Tarreaua84d3742007-05-07 00:36:48 +0200600 out_free_expr:
601 prune_acl_expr(expr);
602 free(expr);
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100603 free(ckw);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100604 out_free_smp:
605 free(smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200606 out_return:
607 return NULL;
608}
609
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200610/* Purge everything in the acl <acl>, then return <acl>. */
611struct acl *prune_acl(struct acl *acl) {
612
613 struct acl_expr *expr, *exprb;
614
615 free(acl->name);
616
617 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
618 LIST_DEL(&expr->list);
619 prune_acl_expr(expr);
620 free(expr);
621 }
622
623 return acl;
624}
625
Willy Tarreaua84d3742007-05-07 00:36:48 +0200626/* Parse an ACL with the name starting at <args>[0], and with a list of already
627 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100628 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200629 * an anonymous one and it won't be merged with any other one. If <err> is not
630 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200631 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
632 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200633 *
634 * args syntax: <aclname> <acl_expr>
635 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200636struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200637{
638 __label__ out_return, out_free_acl_expr, out_free_name;
639 struct acl *cur_acl;
640 struct acl_expr *acl_expr;
641 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200642 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200643
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200644 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200645 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100646 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200647 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100648
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200649 acl_expr = parse_acl_expr(args + 1, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200650 if (!acl_expr) {
651 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200652 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200653 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200654
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200655 /* Check for args beginning with an opening parenthesis just after the
656 * subject, as this is almost certainly a typo. Right now we can only
657 * emit a warning, so let's do so.
658 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +0200659 if (!strchr(args[1], '(') && *args[2] == '(')
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200660 Warning("parsing acl '%s' :\n"
661 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
662 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
663 " If you are really sure this is not an error, please insert '--' between the\n"
664 " match and the pattern to make this warning message disappear.\n",
665 args[0], args[1], args[2]);
666
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100667 if (*args[0])
668 cur_acl = find_acl_by_name(args[0], known_acl);
669 else
670 cur_acl = NULL;
671
Willy Tarreaua84d3742007-05-07 00:36:48 +0200672 if (!cur_acl) {
673 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200674 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200675 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200676 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200677 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200678 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200679 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200680 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200681 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200682 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200683
684 LIST_INIT(&cur_acl->expr);
685 LIST_ADDQ(known_acl, &cur_acl->list);
686 cur_acl->name = name;
687 }
688
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100689 /* We want to know what features the ACL needs (typically HTTP parsing),
690 * and where it may be used. If an ACL relies on multiple matches, it is
691 * OK if at least one of them may match in the context where it is used.
692 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100693 cur_acl->use |= acl_expr->smp->fetch->use;
694 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200695 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
696 return cur_acl;
697
698 out_free_name:
699 free(name);
700 out_free_acl_expr:
701 prune_acl_expr(acl_expr);
702 free(acl_expr);
703 out_return:
704 return NULL;
705}
706
Willy Tarreau16fbe822007-06-17 11:54:31 +0200707/* Some useful ACLs provided by default. Only those used are allocated. */
708
709const struct {
710 const char *name;
711 const char *expr[4]; /* put enough for longest expression */
712} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +0200713 { .name = "TRUE", .expr = {"always_true",""}},
714 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200715 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200716 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200717 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
718 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
719 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
720 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
721 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
722 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
723 { .name = "METH_POST", .expr = {"method","POST",""}},
724 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
725 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
726 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
727 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
728 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +0200729 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +0200730 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +0200731 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200732 { .name = NULL, .expr = {""}}
733};
734
735/* Find a default ACL from the default_acl list, compile it and return it.
736 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
737 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200738 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
739 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200740 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
741 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +0200742 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200743static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
744 char **err, struct arg_list *al)
Willy Tarreau16fbe822007-06-17 11:54:31 +0200745{
746 __label__ out_return, out_free_acl_expr, out_free_name;
747 struct acl *cur_acl;
748 struct acl_expr *acl_expr;
749 char *name;
750 int index;
751
752 for (index = 0; default_acl_list[index].name != NULL; index++) {
753 if (strcmp(acl_name, default_acl_list[index].name) == 0)
754 break;
755 }
756
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200757 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200758 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200759 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200760 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200761
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200762 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200763 if (!acl_expr) {
764 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200765 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200766 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200767
768 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200769 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200770 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200771 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200772 }
773
Willy Tarreau16fbe822007-06-17 11:54:31 +0200774 cur_acl = (struct acl *)calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200775 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200776 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200777 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200778 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200779
780 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100781 cur_acl->use |= acl_expr->smp->fetch->use;
782 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +0200783 LIST_INIT(&cur_acl->expr);
784 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
785 if (known_acl)
786 LIST_ADDQ(known_acl, &cur_acl->list);
787
788 return cur_acl;
789
790 out_free_name:
791 free(name);
792 out_free_acl_expr:
793 prune_acl_expr(acl_expr);
794 free(acl_expr);
795 out_return:
796 return NULL;
797}
Willy Tarreaua84d3742007-05-07 00:36:48 +0200798
799/* Purge everything in the acl_cond <cond>, then return <cond>. */
800struct acl_cond *prune_acl_cond(struct acl_cond *cond)
801{
802 struct acl_term_suite *suite, *tmp_suite;
803 struct acl_term *term, *tmp_term;
804
805 /* iterate through all term suites and free all terms and all suites */
806 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
807 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
808 free(term);
809 free(suite);
810 }
811 return cond;
812}
813
814/* Parse an ACL condition starting at <args>[0], relying on a list of already
815 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200816 * case of low memory). Supports multiple conditions separated by "or". If
817 * <err> is not NULL, it will be filled with a pointer to an error message in
818 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200819 * location must either be freeable or NULL. The list <al> serves as a list head
820 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200821 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200822struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
Willy Tarreau0cba6072013-11-28 22:21:02 +0100823 enum acl_cond_pol pol, char **err, struct arg_list *al)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200824{
825 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200826 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200827 const char *word;
828 struct acl *cur_acl;
829 struct acl_term *cur_term;
830 struct acl_term_suite *cur_suite;
831 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100832 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200833
834 cond = (struct acl_cond *)calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200835 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200836 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200837 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200838 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200839
840 LIST_INIT(&cond->list);
841 LIST_INIT(&cond->suites);
842 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100843 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200844
845 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100846 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200847 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200848 for (arg = 0; *args[arg]; arg++) {
849 word = args[arg];
850
851 /* remove as many exclamation marks as we can */
852 while (*word == '!') {
853 neg = !neg;
854 word++;
855 }
856
857 /* an empty word is allowed because we cannot force the user to
858 * always think about not leaving exclamation marks alone.
859 */
860 if (!*word)
861 continue;
862
Willy Tarreau16fbe822007-06-17 11:54:31 +0200863 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200864 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100865 cond->val |= suite_val;
866 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200867 cur_suite = NULL;
868 neg = 0;
869 continue;
870 }
871
Willy Tarreau95fa4692010-02-01 13:05:50 +0100872 if (strcmp(word, "{") == 0) {
873 /* we may have a complete ACL expression between two braces,
874 * find the last one.
875 */
876 int arg_end = arg + 1;
877 const char **args_new;
878
879 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
880 arg_end++;
881
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200882 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200883 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100884 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200885 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100886
887 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200888 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200889 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100890 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200891 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100892
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100893 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +0100894 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
895 args_new[arg_end - arg] = "";
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200896 cur_acl = parse_acl(args_new, known_acl, err, al);
Willy Tarreau95fa4692010-02-01 13:05:50 +0100897 free(args_new);
898
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200899 if (!cur_acl) {
900 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200901 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200902 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100903 word = args[arg + 1];
Willy Tarreau95fa4692010-02-01 13:05:50 +0100904 arg = arg_end;
905 }
906 else {
907 /* search for <word> in the known ACL names. If we do not find
908 * it, let's look for it in the default ACLs, and if found, add
909 * it to the list of ACLs of this proxy. This makes it possible
910 * to override them.
911 */
912 cur_acl = find_acl_by_name(word, known_acl);
913 if (cur_acl == NULL) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200914 cur_acl = find_acl_default(word, known_acl, err, al);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200915 if (cur_acl == NULL) {
916 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +0100917 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200918 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100919 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200920 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200921
922 cur_term = (struct acl_term *)calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200923 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200924 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200925 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200926 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200927
928 cur_term->acl = cur_acl;
929 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100930
931 /* Here it is a bit complex. The acl_term_suite is a conjunction
932 * of many terms. It may only be used if all of its terms are
933 * usable at the same time. So the suite's validity domain is an
934 * AND between all ACL keywords' ones. But, the global condition
935 * is valid if at least one term suite is OK. So it's an OR between
936 * all of their validity domains. We could emit a warning as soon
937 * as suite_val is null because it means that the last ACL is not
938 * compatible with the previous ones. Let's remain simple for now.
939 */
940 cond->use |= cur_acl->use;
941 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200942
943 if (!cur_suite) {
944 cur_suite = (struct acl_term_suite *)calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +0100945 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200946 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200947 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200948 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200949 LIST_INIT(&cur_suite->terms);
950 LIST_ADDQ(&cond->suites, &cur_suite->list);
951 }
952 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +0200953 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200954 }
955
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100956 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200957 return cond;
958
959 out_free_term:
960 free(cur_term);
961 out_free_suite:
962 prune_acl_cond(cond);
963 free(cond);
964 out_return:
965 return NULL;
966}
967
Willy Tarreau2bbba412010-01-28 16:48:33 +0100968/* Builds an ACL condition starting at the if/unless keyword. The complete
969 * condition is returned. NULL is returned in case of error or if the first
970 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +0100971 * the line number in the condition for better error reporting, and sets the
972 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200973 * be filled with a pointer to an error message in case of error, that the
974 * caller is responsible for freeing. The initial location must either be
975 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +0100976 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200977struct 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 +0100978{
Willy Tarreau0cba6072013-11-28 22:21:02 +0100979 enum acl_cond_pol pol = ACL_COND_NONE;
Willy Tarreau2bbba412010-01-28 16:48:33 +0100980 struct acl_cond *cond = NULL;
981
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200982 if (err)
983 *err = NULL;
984
Willy Tarreau2bbba412010-01-28 16:48:33 +0100985 if (!strcmp(*args, "if")) {
986 pol = ACL_COND_IF;
987 args++;
988 }
989 else if (!strcmp(*args, "unless")) {
990 pol = ACL_COND_UNLESS;
991 args++;
992 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200993 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200994 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +0100995 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200996 }
Willy Tarreau2bbba412010-01-28 16:48:33 +0100997
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200998 cond = parse_acl_cond(args, &px->acl, pol, err, &px->conf.args);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200999 if (!cond) {
1000 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001001 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001002 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001003
1004 cond->file = file;
1005 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001006 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001007 return cond;
1008}
1009
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001010/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
1011 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001012 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001013 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
1014 * function only computes the condition, it does not apply the polarity required
1015 * by IF/UNLESS, it's up to the caller to do this using something like this :
Willy Tarreau11382812008-07-09 16:18:21 +02001016 *
1017 * res = acl_pass(res);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001018 * if (res == ACL_TEST_MISS)
Willy Tarreaub6866442008-07-14 23:54:42 +02001019 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001020 * if (cond->pol == ACL_COND_UNLESS)
1021 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001022 */
Willy Tarreau0cba6072013-11-28 22:21:02 +01001023enum 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 +02001024{
1025 __label__ fetch_next;
1026 struct acl_term_suite *suite;
1027 struct acl_term *term;
1028 struct acl_expr *expr;
1029 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001030 struct sample smp;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001031 enum acl_test_res acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001032
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001033 /* ACLs are iterated over all values, so let's always set the flag to
1034 * indicate this to the fetch functions.
1035 */
1036 opt |= SMP_OPT_ITERATE;
1037
Willy Tarreau11382812008-07-09 16:18:21 +02001038 /* We're doing a logical OR between conditions so we initialize to FAIL.
1039 * The MISS status is propagated down from the suites.
1040 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001041 cond_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001042 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001043 /* Evaluate condition suite <suite>. We stop at the first term
Willy Tarreau0cba6072013-11-28 22:21:02 +01001044 * which returns ACL_TEST_FAIL. The MISS status is still propagated
Willy Tarreau11382812008-07-09 16:18:21 +02001045 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001046 */
1047
1048 /* we're doing a logical AND between terms, so we must set the
1049 * initial value to PASS.
1050 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001051 suite_res = ACL_TEST_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001052 list_for_each_entry(term, &suite->terms, list) {
1053 acl = term->acl;
1054
1055 /* FIXME: use cache !
1056 * check acl->cache_idx for this.
1057 */
1058
1059 /* ACL result not cached. Let's scan all the expressions
1060 * and use the first one to match.
1061 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001062 acl_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001063 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001064 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001065 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001066 fetch_next:
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001067 if (!sample_process(px, l4, l7, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001068 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001069 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001070 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001071 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001072 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001073
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01001074 acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001075 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001076 * OK now acl_res holds the result of this expression
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001077 * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001078 *
Willy Tarreau11382812008-07-09 16:18:21 +02001079 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001080 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001081 *
1082 * FIXME: implement cache.
1083 *
1084 */
1085
Willy Tarreau11382812008-07-09 16:18:21 +02001086 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001087 if (acl_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001088 break;
1089
Willy Tarreau37406352012-04-23 16:16:37 +02001090 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001091 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001092
1093 /* sometimes we know the fetched data is subject to change
1094 * later and give another chance for a new match (eg: request
1095 * size, time, ...)
1096 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001097 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001098 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001099 }
1100 /*
1101 * Here we have the result of an ACL (cached or not).
1102 * ACLs are combined, negated or not, to form conditions.
1103 */
1104
Willy Tarreaua84d3742007-05-07 00:36:48 +02001105 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001106 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001107
1108 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001109
Willy Tarreau79c412b2013-10-30 19:30:32 +01001110 /* we're ANDing these terms, so a single FAIL or MISS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001111 if (suite_res != ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001112 break;
1113 }
1114 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001115
1116 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001117 if (cond_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001118 break;
1119 }
Willy Tarreau11382812008-07-09 16:18:21 +02001120 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001121}
1122
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001123/* Returns a pointer to the first ACL conflicting with usage at place <where>
1124 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1125 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1126 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001127 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001128const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001129{
1130 struct acl_term_suite *suite;
1131 struct acl_term *term;
1132 struct acl *acl;
1133
1134 list_for_each_entry(suite, &cond->suites, list) {
1135 list_for_each_entry(term, &suite->terms, list) {
1136 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001137 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001138 return acl;
1139 }
1140 }
1141 return NULL;
1142}
1143
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001144/* Returns a pointer to the first ACL and its first keyword to conflict with
1145 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1146 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1147 * null), or false if not conflict is found. The first useless keyword is
1148 * returned.
1149 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001150int 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 +01001151{
1152 struct acl_term_suite *suite;
1153 struct acl_term *term;
1154 struct acl_expr *expr;
1155
1156 list_for_each_entry(suite, &cond->suites, list) {
1157 list_for_each_entry(term, &suite->terms, list) {
1158 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001159 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001160 if (acl)
1161 *acl = term->acl;
1162 if (kw)
1163 *kw = expr->kw;
1164 return 1;
1165 }
1166 }
1167 }
1168 }
1169 return 0;
1170}
1171
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001172/*
1173 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001174 * of errors or OK if everything is fine. It must be called only once sample
1175 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001176 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001177int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001178{
1179
1180 struct acl *acl;
1181 struct acl_expr *expr;
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001182 struct pattern_list *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001183 int cfgerr = 0;
1184
1185 list_for_each_entry(acl, &p->acl, list) {
1186 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001187 if (!strcmp(expr->kw, "http_auth_group")) {
1188 /* Note: the ARGT_USR argument may only have been resolved earlier
1189 * by smp_resolve_args().
1190 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001191 if (expr->smp->arg_p->unresolved) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001192 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 +01001193 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw, expr->smp->arg_p->data.str.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001194 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001195 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001196 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001197
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +01001198 if (LIST_ISEMPTY(&expr->pat.patterns)) {
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001199 Alert("proxy %s: acl %s %s(): no groups specified.\n",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001200 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001201 cfgerr++;
1202 continue;
1203 }
1204
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001205 /* For each pattern, check if the group exists. */
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +01001206 list_for_each_entry(pattern, &expr->pat.patterns, list) {
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001207 if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001208 Alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001209 p->id, acl->name, expr->kw, pattern->pat.ptr.str);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001210 cfgerr++;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001211 }
1212 }
1213 }
1214 }
1215 }
1216
1217 return cfgerr;
1218}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001219
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001220/* initializes ACLs by resolving the sample fetch names they rely upon.
1221 * Returns 0 on success, otherwise an error.
1222 */
1223int init_acl()
1224{
1225 int err = 0;
1226 int index;
1227 const char *name;
1228 struct acl_kw_list *kwl;
1229 struct sample_fetch *smp;
1230
1231 list_for_each_entry(kwl, &acl_keywords.list, list) {
1232 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1233 name = kwl->kw[index].fetch_kw;
1234 if (!name)
1235 name = kwl->kw[index].kw;
1236
1237 smp = find_sample_fetch(name, strlen(name));
1238 if (!smp) {
1239 Alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1240 kwl->kw[index].kw, name);
1241 err++;
1242 continue;
1243 }
1244 kwl->kw[index].smp = smp;
1245 }
1246 }
1247 return err;
1248}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001249
Willy Tarreaua84d3742007-05-07 00:36:48 +02001250/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001251/* All supported sample and ACL keywords must be declared here. */
1252/************************************************************************/
1253
1254/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001255 * Please take care of keeping this list alphabetically sorted.
1256 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001257static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001258 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001259}};
1260
Willy Tarreaua84d3742007-05-07 00:36:48 +02001261__attribute__((constructor))
1262static void __acl_init(void)
1263{
Willy Tarreaua84d3742007-05-07 00:36:48 +02001264 acl_register_keywords(&acl_kws);
1265}
1266
1267
1268/*
1269 * Local variables:
1270 * c-indent-level: 8
1271 * c-basic-offset: 8
1272 * End:
1273 */