blob: 275087de7ed5a880a525fee9033249fa55726fbe [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
Willy Tarreaudcc048a2020-06-04 19:11:43 +020017#include <haproxy/acl.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020018#include <haproxy/auth.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020019#include <haproxy/api.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020020#include <haproxy/list.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020021#include <haproxy/pattern.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020022#include <haproxy/tools.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020023
Willy Tarreauf268ee82020-06-04 17:05:57 +020024#include <haproxy/global.h>
Willy Tarreau2b5285d2010-05-09 23:45:24 +020025
Willy Tarreauaa74c4e2020-06-04 10:19:23 +020026#include <haproxy/arg.h>
Willy Tarreau404e8ab2009-07-26 19:40:40 +020027#include <proto/log.h>
Willy Tarreau0b1cd942010-05-16 22:18:27 +020028#include <proto/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020029#include <haproxy/sample.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020030#include <haproxy/stick_table.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020031
Willy Tarreau8d2b7772020-05-27 10:58:19 +020032#include <import/ebsttree.h>
Willy Tarreauc4262962010-05-10 23:42:40 +020033
Willy Tarreaua84d3742007-05-07 00:36:48 +020034/* List head of all known ACL keywords */
35static struct acl_kw_list acl_keywords = {
36 .list = LIST_HEAD_INIT(acl_keywords.list)
37};
38
Willy Tarreau0cba6072013-11-28 22:21:02 +010039/* input values are 0 or 3, output is the same */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010040static inline enum acl_test_res pat2acl(struct pattern *pat)
Willy Tarreau0cba6072013-11-28 22:21:02 +010041{
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010042 if (pat)
43 return ACL_TEST_PASS;
44 else
45 return ACL_TEST_FAIL;
Willy Tarreau0cba6072013-11-28 22:21:02 +010046}
47
Willy Tarreaua5909832007-06-17 20:40:25 +020048/*
Willy Tarreaua84d3742007-05-07 00:36:48 +020049 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
50 * parsing sessions.
51 */
52void acl_register_keywords(struct acl_kw_list *kwl)
53{
54 LIST_ADDQ(&acl_keywords.list, &kwl->list);
55}
56
57/*
58 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
59 */
60void acl_unregister_keywords(struct acl_kw_list *kwl)
61{
62 LIST_DEL(&kwl->list);
63 LIST_INIT(&kwl->list);
64}
65
66/* Return a pointer to the ACL <name> within the list starting at <head>, or
67 * NULL if not found.
68 */
69struct acl *find_acl_by_name(const char *name, struct list *head)
70{
71 struct acl *acl;
72 list_for_each_entry(acl, head, list) {
73 if (strcmp(acl->name, name) == 0)
74 return acl;
75 }
76 return NULL;
77}
78
79/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
Willy Tarreau4bfa4222013-12-16 22:01:06 +010080 * <kw> contains an opening parenthesis or a comma, only the left part of it is
81 * checked.
Willy Tarreaua84d3742007-05-07 00:36:48 +020082 */
83struct acl_keyword *find_acl_kw(const char *kw)
84{
85 int index;
86 const char *kwend;
87 struct acl_kw_list *kwl;
88
Willy Tarreau4bfa4222013-12-16 22:01:06 +010089 kwend = kw;
Willy Tarreaued2c6622020-02-14 18:27:10 +010090 while (is_idchar(*kwend))
Willy Tarreau4bfa4222013-12-16 22:01:06 +010091 kwend++;
Willy Tarreaua84d3742007-05-07 00:36:48 +020092
93 list_for_each_entry(kwl, &acl_keywords.list, list) {
94 for (index = 0; kwl->kw[index].kw != NULL; index++) {
95 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
96 kwl->kw[index].kw[kwend-kw] == 0)
97 return &kwl->kw[index];
98 }
99 }
100 return NULL;
101}
102
Willy Tarreaua84d3742007-05-07 00:36:48 +0200103static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
104{
Willy Tarreau34db1082012-04-19 17:16:54 +0200105 struct arg *arg;
Willy Tarreau145325e2017-04-12 23:03:31 +0200106 int unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +0200107
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100108 pattern_prune(&expr->pat);
Willy Tarreau34db1082012-04-19 17:16:54 +0200109
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100110 for (arg = expr->smp->arg_p; arg; arg++) {
Willy Tarreau34db1082012-04-19 17:16:54 +0200111 if (arg->type == ARGT_STOP)
112 break;
Willy Tarreau496aa012012-06-01 10:38:29 +0200113 if (arg->type == ARGT_STR || arg->unresolved) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200114 free(arg->data.str.area);
115 arg->data.str.area = NULL;
116 arg->data.str.data = 0;
Willy Tarreau145325e2017-04-12 23:03:31 +0200117 unresolved |= arg->unresolved;
Willy Tarreau496aa012012-06-01 10:38:29 +0200118 arg->unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +0200119 }
Willy Tarreau34db1082012-04-19 17:16:54 +0200120 }
121
Willy Tarreau145325e2017-04-12 23:03:31 +0200122 if (expr->smp->arg_p != empty_arg_list && !unresolved)
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100123 free(expr->smp->arg_p);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200124 return expr;
125}
126
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200127/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
128 * not NULL, it will be filled with a pointer to an error message in case of
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200129 * error. This pointer must be freeable or NULL. <al> is an arg_list serving
130 * as a list head to report missing dependencies.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200131 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200132 * Right now, the only accepted syntax is :
133 * <subject> [<value>...]
134 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100135struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al,
136 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200137{
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100138 __label__ out_return, out_free_expr;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200139 struct acl_expr *expr;
140 struct acl_keyword *aclkw;
Christopher Faulet54ceb042017-06-14 14:41:33 +0200141 int refflags, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200142 const char *arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100143 struct sample_expr *smp = NULL;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100144 int idx = 0;
145 char *ckw = NULL;
146 const char *begw;
147 const char *endw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100148 const char *endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100149 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 Tarreau6f0ddca2014-08-29 17:36:40 +0200164 int acl_conv_found = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200165
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100166 /* First, we look for an ACL keyword. And if we don't find one, then
167 * we look for a sample fetch expression starting with a sample fetch
168 * keyword.
Willy Tarreaubef91e72013-03-31 23:14:46 +0200169 */
Willy Tarreau131b4662013-12-13 01:08:36 +0100170
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100171 al->ctx = ARGC_ACL; // to report errors while resolving args late
Willy Tarreau131b4662013-12-13 01:08:36 +0100172 al->kw = *args;
173 al->conv = NULL;
174
Willy Tarreaua84d3742007-05-07 00:36:48 +0200175 aclkw = find_acl_kw(args[0]);
Willy Tarreau20490922014-03-17 18:04:27 +0100176 if (aclkw) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100177 /* OK we have a real ACL keyword */
Willy Tarreau9987ea92013-06-11 21:09:06 +0200178
Willy Tarreau131b4662013-12-13 01:08:36 +0100179 /* build new sample expression for this ACL */
Vincent Bernat02779b62016-04-03 13:48:43 +0200180 smp = calloc(1, sizeof(*smp));
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100181 if (!smp) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100182 memprintf(err, "out of memory when parsing ACL expression");
183 goto out_return;
184 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100185 LIST_INIT(&(smp->conv_exprs));
186 smp->fetch = aclkw->smp;
187 smp->arg_p = empty_arg_list;
Willy Tarreau34db1082012-04-19 17:16:54 +0200188
Joseph Herlant68082792018-11-15 14:55:09 -0800189 /* look for the beginning of the subject arguments */
Willy Tarreaued2c6622020-02-14 18:27:10 +0100190 for (arg = args[0]; is_idchar(*arg); arg++)
191 ;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100192
Willy Tarreau131b4662013-12-13 01:08:36 +0100193 /* At this point, we have :
194 * - args[0] : beginning of the keyword
195 * - arg : end of the keyword, first character not part of keyword
Willy Tarreau131b4662013-12-13 01:08:36 +0100196 */
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100197 nbargs = make_arg_list(arg, -1, smp->fetch->arg_mask, &smp->arg_p,
198 err, &endt, NULL, al);
Willy Tarreau131b4662013-12-13 01:08:36 +0100199 if (nbargs < 0) {
200 /* note that make_arg_list will have set <err> here */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100201 memprintf(err, "ACL keyword '%s' : %s", aclkw->kw, *err);
202 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100203 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100204
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100205 if (!smp->arg_p) {
206 smp->arg_p = empty_arg_list;
Willy Tarreau131b4662013-12-13 01:08:36 +0100207 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100208 else if (smp->fetch->val_args && !smp->fetch->val_args(smp->arg_p, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100209 /* invalid keyword argument, error must have been
210 * set by val_args().
211 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100212 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
213 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100214 }
215 arg = endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100216
Joseph Herlant68082792018-11-15 14:55:09 -0800217 /* look for the beginning of the converters list. Those directly attached
Willy Tarreau131b4662013-12-13 01:08:36 +0100218 * to the ACL keyword are found just after <arg> which points to the comma.
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200219 * If we find any converter, then we don't use the ACL keyword's match
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200220 * anymore but the one related to the converter's output type.
Willy Tarreau131b4662013-12-13 01:08:36 +0100221 */
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200222 cur_type = smp->fetch->out_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100223 while (*arg) {
224 struct sample_conv *conv;
225 struct sample_conv_expr *conv_expr;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100226 int err_arg;
227 int argcnt;
Willy Tarreau131b4662013-12-13 01:08:36 +0100228
229 if (*arg && *arg != ',') {
230 if (ckw)
Willy Tarreau97108e02016-11-25 07:33:24 +0100231 memprintf(err, "ACL keyword '%s' : missing comma after converter '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100232 aclkw->kw, ckw);
Willy Tarreau131b4662013-12-13 01:08:36 +0100233 else
234 memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100235 aclkw->kw);
236 goto out_free_smp;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200237 }
Willy Tarreauae52f062012-04-26 12:13:35 +0200238
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100239 /* FIXME: how long should we support such idiocies ? Maybe we
240 * should already warn ?
241 */
Willy Tarreau131b4662013-12-13 01:08:36 +0100242 while (*arg == ',') /* then trailing commas */
243 arg++;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200244
Willy Tarreau97108e02016-11-25 07:33:24 +0100245 begw = arg; /* start of converter keyword */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100246
Willy Tarreau131b4662013-12-13 01:08:36 +0100247 if (!*begw)
248 /* none ? end of converters */
249 break;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100250
Willy Tarreaued2c6622020-02-14 18:27:10 +0100251 for (endw = begw; is_idchar(*endw); endw++)
252 ;
Willy Tarreau9ca69362013-10-22 19:10:06 +0200253
Willy Tarreau131b4662013-12-13 01:08:36 +0100254 free(ckw);
255 ckw = my_strndup(begw, endw - begw);
Willy Tarreauf75d0082013-04-07 21:20:44 +0200256
Willy Tarreau131b4662013-12-13 01:08:36 +0100257 conv = find_sample_conv(begw, endw - begw);
258 if (!conv) {
259 /* Unknown converter method */
Willy Tarreau97108e02016-11-25 07:33:24 +0100260 memprintf(err, "ACL keyword '%s' : unknown converter '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100261 aclkw->kw, ckw);
262 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100263 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100264
Willy Tarreau131b4662013-12-13 01:08:36 +0100265 arg = endw;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100266
Willy Tarreau131b4662013-12-13 01:08:36 +0100267 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
Willy Tarreau97108e02016-11-25 07:33:24 +0100268 memprintf(err, "ACL keyword '%s' : returns type of converter '%s' is unknown.",
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 /* If impossible type conversion */
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200274 if (!sample_casts[cur_type][conv->in_type]) {
Willy Tarreau97108e02016-11-25 07:33:24 +0100275 memprintf(err, "ACL keyword '%s' : converter '%s' cannot be applied.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100276 aclkw->kw, ckw);
277 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100278 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100279
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200280 cur_type = conv->out_type;
Vincent Bernat02779b62016-04-03 13:48:43 +0200281 conv_expr = calloc(1, sizeof(*conv_expr));
Willy Tarreau131b4662013-12-13 01:08:36 +0100282 if (!conv_expr)
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100283 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100284
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100285 LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list));
Willy Tarreau131b4662013-12-13 01:08:36 +0100286 conv_expr->conv = conv;
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200287 acl_conv_found = 1;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100288
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100289 al->kw = smp->fetch->kw;
290 al->conv = conv_expr->conv->kw;
291 argcnt = make_arg_list(endw, -1, conv->arg_mask, &conv_expr->arg_p, err, &arg, &err_arg, al);
292 if (argcnt < 0) {
293 memprintf(err, "ACL keyword '%s' : invalid arg %d in converter '%s' : %s.",
294 aclkw->kw, err_arg+1, ckw, *err);
295 goto out_free_smp;
296 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100297
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100298 if (argcnt && !conv->arg_mask) {
299 memprintf(err, "converter '%s' does not support any args", ckw);
300 goto out_free_smp;
301 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100302
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100303 if (!conv_expr->arg_p)
304 conv_expr->arg_p = empty_arg_list;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100305
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100306 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err)) {
307 memprintf(err, "ACL keyword '%s' : invalid args in converter '%s' : %s.",
308 aclkw->kw, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100309 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100310 }
Willy Tarreau61612d42012-04-19 18:42:05 +0200311 }
Christopher Faulet361935a2019-09-13 09:50:15 +0200312 free(ckw);
313 ckw = NULL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200314 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100315 else {
316 /* This is not an ACL keyword, so we hope this is a sample fetch
317 * keyword that we're going to transparently use as an ACL. If
318 * so, we retrieve a completely parsed expression with args and
319 * convs already done.
320 */
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100321 smp = sample_parse_expr((char **)args, &idx, file, line, err, al, NULL);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100322 if (!smp) {
323 memprintf(err, "%s in ACL expression '%s'", *err, *args);
324 goto out_return;
325 }
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200326 cur_type = smp_expr_output_type(smp);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100327 }
328
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200329 expr = calloc(1, sizeof(*expr));
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100330 if (!expr) {
331 memprintf(err, "out of memory when parsing ACL expression");
Christopher Faulet361935a2019-09-13 09:50:15 +0200332 goto out_free_smp;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100333 }
334
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100335 pattern_init_head(&expr->pat);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100336
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200337 expr->pat.expect_type = cur_type;
338 expr->smp = smp;
339 expr->kw = smp->fetch->kw;
340 smp = NULL; /* don't free it anymore */
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100341
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200342 if (aclkw && !acl_conv_found) {
343 expr->kw = aclkw->kw;
344 expr->pat.parse = aclkw->parse ? aclkw->parse : pat_parse_fcts[aclkw->match_type];
345 expr->pat.index = aclkw->index ? aclkw->index : pat_index_fcts[aclkw->match_type];
346 expr->pat.match = aclkw->match ? aclkw->match : pat_match_fcts[aclkw->match_type];
347 expr->pat.delete = aclkw->delete ? aclkw->delete : pat_delete_fcts[aclkw->match_type];
348 expr->pat.prune = aclkw->prune ? aclkw->prune : pat_prune_fcts[aclkw->match_type];
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100349 }
350
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100351 if (!expr->pat.parse) {
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200352 /* Parse/index/match functions depend on the expression type,
353 * so we have to map them now. Some types can be automatically
354 * converted.
355 */
356 switch (cur_type) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100357 case SMP_T_BOOL:
358 expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100359 expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100360 expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100361 expr->pat.delete = pat_delete_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100362 expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100363 expr->pat.expect_type = pat_match_types[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100364 break;
365 case SMP_T_SINT:
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100366 expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100367 expr->pat.index = pat_index_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100368 expr->pat.match = pat_match_fcts[PAT_MATCH_INT];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100369 expr->pat.delete = pat_delete_fcts[PAT_MATCH_INT];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100370 expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100371 expr->pat.expect_type = pat_match_types[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100372 break;
Willy Tarreau78c5eec2019-04-19 11:45:20 +0200373 case SMP_T_ADDR:
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100374 case SMP_T_IPV4:
375 case SMP_T_IPV6:
376 expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100377 expr->pat.index = pat_index_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100378 expr->pat.match = pat_match_fcts[PAT_MATCH_IP];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100379 expr->pat.delete = pat_delete_fcts[PAT_MATCH_IP];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100380 expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100381 expr->pat.expect_type = pat_match_types[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100382 break;
Thierry FOURNIER9fefbd52014-05-11 15:15:00 +0200383 case SMP_T_STR:
384 expr->pat.parse = pat_parse_fcts[PAT_MATCH_STR];
385 expr->pat.index = pat_index_fcts[PAT_MATCH_STR];
386 expr->pat.match = pat_match_fcts[PAT_MATCH_STR];
387 expr->pat.delete = pat_delete_fcts[PAT_MATCH_STR];
388 expr->pat.prune = pat_prune_fcts[PAT_MATCH_STR];
389 expr->pat.expect_type = pat_match_types[PAT_MATCH_STR];
390 break;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100391 }
392 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200393
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100394 /* Additional check to protect against common mistakes */
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100395 if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100396 ha_warning("parsing acl keyword '%s' :\n"
397 " no pattern to match against were provided, so this ACL will never match.\n"
398 " If this is what you intended, please add '--' to get rid of this warning.\n"
399 " If you intended to match only for existence, please use '-m found'.\n"
400 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
401 "\n",
402 args[0]);
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100403 }
404
Willy Tarreaua84d3742007-05-07 00:36:48 +0200405 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200406
407 /* check for options before patterns. Supported options are :
408 * -i : ignore case for all patterns by default
409 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +0200410 * -m : force matching method (must be used before -f)
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100411 * -M : load the file as map file
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100412 * -u : force the unique id of the acl
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200413 * -- : everything after this is not an option
414 */
Christopher Faulet54ceb042017-06-14 14:41:33 +0200415 refflags = PAT_REF_ACL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200416 patflags = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100417 is_loaded = 0;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100418 unique_id = -1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200419 while (**args == '-') {
Willy Tarreau2039bba2014-05-11 09:43:46 +0200420 if (strcmp(*args, "-i") == 0)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200421 patflags |= PAT_MF_IGNORE_CASE;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200422 else if (strcmp(*args, "-n") == 0)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200423 patflags |= PAT_MF_NO_DNS;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200424 else if (strcmp(*args, "-u") == 0) {
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100425 unique_id = strtol(args[1], &error, 10);
426 if (*error != '\0') {
427 memprintf(err, "the argument of -u must be an integer");
428 goto out_free_expr;
429 }
430
431 /* Check if this id is really unique. */
432 if (pat_ref_lookupid(unique_id)) {
433 memprintf(err, "the id is already used");
434 goto out_free_expr;
435 }
436
437 args++;
438 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200439 else if (strcmp(*args, "-f") == 0) {
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100440 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200441 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 +0200442 goto out_free_expr;
443 }
444
Christopher Faulet54ceb042017-06-14 14:41:33 +0200445 if (!pattern_read_from_file(&expr->pat, refflags, args[1], patflags, load_as_map, err, file, line))
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200446 goto out_free_expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100447 is_loaded = 1;
Willy Tarreau5adeda12013-03-31 22:13:34 +0200448 args++;
449 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200450 else if (strcmp(*args, "-m") == 0) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200451 int idx;
452
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100453 if (is_loaded) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200454 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
455 goto out_free_expr;
456 }
457
Willy Tarreau6f8fe312013-11-28 22:24:25 +0100458 idx = pat_find_match_name(args[1]);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200459 if (idx < 0) {
460 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
461 goto out_free_expr;
462 }
463
464 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
Willy Tarreau9bb49f62015-09-24 16:37:12 +0200465 if (idx != PAT_MATCH_FOUND && !sample_casts[cur_type][pat_match_types[idx]]) {
Willy Tarreau93fddf12013-03-31 22:59:32 +0200466 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200467 goto out_free_expr;
468 }
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100469 expr->pat.parse = pat_parse_fcts[idx];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100470 expr->pat.index = pat_index_fcts[idx];
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100471 expr->pat.match = pat_match_fcts[idx];
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100472 expr->pat.delete = pat_delete_fcts[idx];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100473 expr->pat.prune = pat_prune_fcts[idx];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100474 expr->pat.expect_type = pat_match_types[idx];
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200475 args++;
476 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200477 else if (strcmp(*args, "-M") == 0) {
Christopher Faulet54ceb042017-06-14 14:41:33 +0200478 refflags |= PAT_REF_MAP;
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100479 load_as_map = 1;
480 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200481 else if (strcmp(*args, "--") == 0) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200482 args++;
483 break;
484 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200485 else {
486 memprintf(err, "'%s' is not a valid ACL option. Please use '--' before any pattern beginning with a '-'", args[0]);
487 goto out_free_expr;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200488 break;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200489 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200490 args++;
491 }
492
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100493 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200494 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 +0200495 goto out_free_expr;
496 }
497
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100498 /* Create displayed reference */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200499 snprintf(trash.area, trash.size, "acl '%s' file '%s' line %d",
500 expr->kw, file, line);
501 trash.area[trash.size - 1] = '\0';
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100502
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500503 /* Create new pattern reference. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200504 ref = pat_ref_newid(unique_id, trash.area, PAT_REF_ACL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100505 if (!ref) {
506 memprintf(err, "memory error");
507 goto out_free_expr;
508 }
509
510 /* Create new pattern expression associated to this reference. */
Emeric Brun7d27f3c2017-07-03 17:54:23 +0200511 pattern_expr = pattern_new_expr(&expr->pat, ref, patflags, err, NULL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100512 if (!pattern_expr)
513 goto out_free_expr;
514
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200515 /* now parse all patterns */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100516 while (**args) {
517 arg = *args;
518
519 /* Compatibility layer. Each pattern can parse only one string per pattern,
520 * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500521 * optionally two operators. The first operator is the match method: eq,
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100522 * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions
523 * can have a compatibility syntax based on ranges:
524 *
525 * pat_parse_int():
526 *
527 * "eq x" -> "x" or "x:x"
528 * "le x" -> ":x"
529 * "lt x" -> ":y" (with y = x - 1)
530 * "ge x" -> "x:"
531 * "gt x" -> "y:" (with y = x + 1)
532 *
533 * pat_parse_dotted_ver():
534 *
535 * "eq x.y" -> "x.y" or "x.y:x.y"
536 * "le x.y" -> ":x.y"
537 * "lt x.y" -> ":w.z" (with w.z = x.y - 1)
538 * "ge x.y" -> "x.y:"
539 * "gt x.y" -> "w.z:" (with w.z = x.y + 1)
540 *
541 * If y is not present, assume that is "0".
542 *
543 * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The
544 * following block of code detect the operator, and rewrite each value
545 * in parsable string.
546 */
547 if (expr->pat.parse == pat_parse_int ||
548 expr->pat.parse == pat_parse_dotted_ver) {
549 /* Check for operator. If the argument is operator, memorise it and
550 * continue to the next argument.
551 */
552 op = get_std_op(arg);
553 if (op != -1) {
554 operator = op;
555 args++;
556 continue;
557 }
558
559 /* Check if the pattern contain ':' or '-' character. */
560 contain_colon = (strchr(arg, ':') || strchr(arg, '-'));
561
562 /* If the pattern contain ':' or '-' character, give it to the parser as is.
563 * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is.
564 * In other case, try to convert the value according with the operator.
565 */
566 if (!contain_colon && operator != STD_OP_EQ) {
567 /* Search '.' separator. */
568 dot = strchr(arg, '.');
569 if (!dot) {
570 have_dot = 0;
571 minor = 0;
572 dot = arg + strlen(arg);
573 }
574 else
575 have_dot = 1;
576
577 /* convert the integer minor part for the pat_parse_dotted_ver() function. */
578 if (expr->pat.parse == pat_parse_dotted_ver && have_dot) {
579 if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) {
580 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100581 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100582 }
583 if (minor >= 65536) {
584 memprintf(err, "'%s' contains too large a minor value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100585 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100586 }
587 }
588
589 /* convert the integer value for the pat_parse_int() function, and the
590 * integer major part for the pat_parse_dotted_ver() function.
591 */
592 if (strl2llrc(arg, dot - arg, &value) != 0) {
593 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100594 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100595 }
596 if (expr->pat.parse == pat_parse_dotted_ver) {
597 if (value >= 65536) {
598 memprintf(err, "'%s' contains too large a major value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100599 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100600 }
601 value = (value << 16) | (minor & 0xffff);
602 }
603
604 switch (operator) {
605
606 case STD_OP_EQ: /* this case is not possible. */
607 memprintf(err, "internal error");
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100608 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100609
610 case STD_OP_GT:
611 value++; /* gt = ge + 1 */
612
613 case STD_OP_GE:
614 if (expr->pat.parse == pat_parse_int)
615 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value);
616 else
617 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:",
618 value >> 16, value & 0xffff);
619 arg = buffer;
620 break;
621
622 case STD_OP_LT:
623 value--; /* lt = le - 1 */
624
625 case STD_OP_LE:
626 if (expr->pat.parse == pat_parse_int)
627 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value);
628 else
629 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld",
630 value >> 16, value & 0xffff);
631 arg = buffer;
632 break;
633 }
634 }
635 }
636
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100637 /* Add sample to the reference, and try to compile it fior each pattern
638 * using this value.
639 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200640 if (!pat_ref_add(ref, arg, NULL, err))
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100641 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100642 args++;
643 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200644
645 return expr;
646
Willy Tarreaua84d3742007-05-07 00:36:48 +0200647 out_free_expr:
648 prune_acl_expr(expr);
649 free(expr);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100650 out_free_smp:
Christopher Faulet361935a2019-09-13 09:50:15 +0200651 free(ckw);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100652 free(smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200653 out_return:
654 return NULL;
655}
656
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200657/* Purge everything in the acl <acl>, then return <acl>. */
658struct acl *prune_acl(struct acl *acl) {
659
660 struct acl_expr *expr, *exprb;
661
662 free(acl->name);
663
664 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
665 LIST_DEL(&expr->list);
666 prune_acl_expr(expr);
667 free(expr);
668 }
669
670 return acl;
671}
672
Willy Tarreaua84d3742007-05-07 00:36:48 +0200673/* Parse an ACL with the name starting at <args>[0], and with a list of already
674 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100675 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200676 * an anonymous one and it won't be merged with any other one. If <err> is not
677 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200678 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
679 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200680 *
681 * args syntax: <aclname> <acl_expr>
682 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100683struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al,
684 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200685{
686 __label__ out_return, out_free_acl_expr, out_free_name;
687 struct acl *cur_acl;
688 struct acl_expr *acl_expr;
689 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200690 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200691
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200692 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200693 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100694 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200695 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100696
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100697 acl_expr = parse_acl_expr(args + 1, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200698 if (!acl_expr) {
699 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200700 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200701 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200702
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200703 /* Check for args beginning with an opening parenthesis just after the
704 * subject, as this is almost certainly a typo. Right now we can only
705 * emit a warning, so let's do so.
706 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +0200707 if (!strchr(args[1], '(') && *args[2] == '(')
Christopher Faulet767a84b2017-11-24 16:50:31 +0100708 ha_warning("parsing acl '%s' :\n"
709 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
710 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
711 " If you are really sure this is not an error, please insert '--' between the\n"
712 " match and the pattern to make this warning message disappear.\n",
713 args[0], args[1], args[2]);
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200714
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100715 if (*args[0])
716 cur_acl = find_acl_by_name(args[0], known_acl);
717 else
718 cur_acl = NULL;
719
Willy Tarreaua84d3742007-05-07 00:36:48 +0200720 if (!cur_acl) {
721 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200722 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200723 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200724 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200725 }
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200726 cur_acl = calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200727 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200728 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200729 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200730 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200731
732 LIST_INIT(&cur_acl->expr);
733 LIST_ADDQ(known_acl, &cur_acl->list);
734 cur_acl->name = name;
735 }
736
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100737 /* We want to know what features the ACL needs (typically HTTP parsing),
738 * and where it may be used. If an ACL relies on multiple matches, it is
739 * OK if at least one of them may match in the context where it is used.
740 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100741 cur_acl->use |= acl_expr->smp->fetch->use;
742 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200743 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
744 return cur_acl;
745
746 out_free_name:
747 free(name);
748 out_free_acl_expr:
749 prune_acl_expr(acl_expr);
750 free(acl_expr);
751 out_return:
752 return NULL;
753}
754
Willy Tarreau16fbe822007-06-17 11:54:31 +0200755/* Some useful ACLs provided by default. Only those used are allocated. */
756
757const struct {
758 const char *name;
759 const char *expr[4]; /* put enough for longest expression */
760} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +0200761 { .name = "TRUE", .expr = {"always_true",""}},
762 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200763 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200764 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200765 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
766 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
767 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
Daniel Schneller9ff96c72016-04-11 17:45:29 +0200768 { .name = "METH_DELETE", .expr = {"method","DELETE",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200769 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
770 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
771 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
772 { .name = "METH_POST", .expr = {"method","POST",""}},
Daniel Schneller9ff96c72016-04-11 17:45:29 +0200773 { .name = "METH_PUT", .expr = {"method","PUT",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200774 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
775 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
776 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
777 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
778 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +0200779 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +0200780 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +0200781 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200782 { .name = NULL, .expr = {""}}
783};
784
785/* Find a default ACL from the default_acl list, compile it and return it.
786 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
787 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200788 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
789 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200790 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
791 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +0200792 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200793static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100794 char **err, struct arg_list *al,
795 const char *file, int line)
Willy Tarreau16fbe822007-06-17 11:54:31 +0200796{
797 __label__ out_return, out_free_acl_expr, out_free_name;
798 struct acl *cur_acl;
799 struct acl_expr *acl_expr;
800 char *name;
801 int index;
802
803 for (index = 0; default_acl_list[index].name != NULL; index++) {
804 if (strcmp(acl_name, default_acl_list[index].name) == 0)
805 break;
806 }
807
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200808 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200809 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200810 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200811 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200812
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100813 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200814 if (!acl_expr) {
815 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200816 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200817 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200818
819 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200820 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200821 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200822 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200823 }
824
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200825 cur_acl = calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200826 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200827 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200828 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200829 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200830
831 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100832 cur_acl->use |= acl_expr->smp->fetch->use;
833 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +0200834 LIST_INIT(&cur_acl->expr);
835 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
836 if (known_acl)
837 LIST_ADDQ(known_acl, &cur_acl->list);
838
839 return cur_acl;
840
841 out_free_name:
842 free(name);
843 out_free_acl_expr:
844 prune_acl_expr(acl_expr);
845 free(acl_expr);
846 out_return:
847 return NULL;
848}
Willy Tarreaua84d3742007-05-07 00:36:48 +0200849
850/* Purge everything in the acl_cond <cond>, then return <cond>. */
851struct acl_cond *prune_acl_cond(struct acl_cond *cond)
852{
853 struct acl_term_suite *suite, *tmp_suite;
854 struct acl_term *term, *tmp_term;
855
856 /* iterate through all term suites and free all terms and all suites */
857 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
858 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
859 free(term);
860 free(suite);
861 }
862 return cond;
863}
864
865/* Parse an ACL condition starting at <args>[0], relying on a list of already
866 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200867 * case of low memory). Supports multiple conditions separated by "or". If
868 * <err> is not NULL, it will be filled with a pointer to an error message in
869 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200870 * location must either be freeable or NULL. The list <al> serves as a list head
871 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200872 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200873struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100874 enum acl_cond_pol pol, char **err, struct arg_list *al,
875 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200876{
877 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200878 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200879 const char *word;
880 struct acl *cur_acl;
881 struct acl_term *cur_term;
882 struct acl_term_suite *cur_suite;
883 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100884 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200885
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200886 cond = calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200887 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200888 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200889 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200890 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200891
892 LIST_INIT(&cond->list);
893 LIST_INIT(&cond->suites);
894 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100895 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200896
897 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100898 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200899 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200900 for (arg = 0; *args[arg]; arg++) {
901 word = args[arg];
902
903 /* remove as many exclamation marks as we can */
904 while (*word == '!') {
905 neg = !neg;
906 word++;
907 }
908
909 /* an empty word is allowed because we cannot force the user to
910 * always think about not leaving exclamation marks alone.
911 */
912 if (!*word)
913 continue;
914
Willy Tarreau16fbe822007-06-17 11:54:31 +0200915 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200916 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100917 cond->val |= suite_val;
918 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200919 cur_suite = NULL;
920 neg = 0;
921 continue;
922 }
923
Willy Tarreau95fa4692010-02-01 13:05:50 +0100924 if (strcmp(word, "{") == 0) {
925 /* we may have a complete ACL expression between two braces,
926 * find the last one.
927 */
928 int arg_end = arg + 1;
929 const char **args_new;
930
931 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
932 arg_end++;
933
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200934 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200935 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100936 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200937 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100938
939 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200940 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200941 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100942 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200943 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100944
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100945 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +0100946 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
947 args_new[arg_end - arg] = "";
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100948 cur_acl = parse_acl(args_new, known_acl, err, al, file, line);
Willy Tarreau95fa4692010-02-01 13:05:50 +0100949 free(args_new);
950
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200951 if (!cur_acl) {
952 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200953 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200954 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100955 arg = arg_end;
956 }
957 else {
958 /* search for <word> in the known ACL names. If we do not find
959 * it, let's look for it in the default ACLs, and if found, add
960 * it to the list of ACLs of this proxy. This makes it possible
961 * to override them.
962 */
963 cur_acl = find_acl_by_name(word, known_acl);
964 if (cur_acl == NULL) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100965 cur_acl = find_acl_default(word, known_acl, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200966 if (cur_acl == NULL) {
967 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +0100968 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200969 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100970 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200971 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200972
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200973 cur_term = calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200974 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200975 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200976 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200977 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200978
979 cur_term->acl = cur_acl;
980 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100981
982 /* Here it is a bit complex. The acl_term_suite is a conjunction
983 * of many terms. It may only be used if all of its terms are
984 * usable at the same time. So the suite's validity domain is an
985 * AND between all ACL keywords' ones. But, the global condition
986 * is valid if at least one term suite is OK. So it's an OR between
987 * all of their validity domains. We could emit a warning as soon
988 * as suite_val is null because it means that the last ACL is not
989 * compatible with the previous ones. Let's remain simple for now.
990 */
991 cond->use |= cur_acl->use;
992 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200993
994 if (!cur_suite) {
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200995 cur_suite = calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +0100996 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200997 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200998 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200999 }
Willy Tarreaua84d3742007-05-07 00:36:48 +02001000 LIST_INIT(&cur_suite->terms);
1001 LIST_ADDQ(&cond->suites, &cur_suite->list);
1002 }
1003 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +02001004 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001005 }
1006
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001007 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001008 return cond;
1009
1010 out_free_term:
1011 free(cur_term);
1012 out_free_suite:
1013 prune_acl_cond(cond);
1014 free(cond);
1015 out_return:
1016 return NULL;
1017}
1018
Willy Tarreau2bbba412010-01-28 16:48:33 +01001019/* Builds an ACL condition starting at the if/unless keyword. The complete
1020 * condition is returned. NULL is returned in case of error or if the first
1021 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001022 * the line number in the condition for better error reporting, and sets the
1023 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001024 * be filled with a pointer to an error message in case of error, that the
1025 * caller is responsible for freeing. The initial location must either be
1026 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001027 */
Christopher Faulet1b421ea2017-09-22 14:38:56 +02001028struct acl_cond *build_acl_cond(const char *file, int line, struct list *known_acl,
1029 struct proxy *px, const char **args, char **err)
Willy Tarreau2bbba412010-01-28 16:48:33 +01001030{
Willy Tarreau0cba6072013-11-28 22:21:02 +01001031 enum acl_cond_pol pol = ACL_COND_NONE;
Willy Tarreau2bbba412010-01-28 16:48:33 +01001032 struct acl_cond *cond = NULL;
1033
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001034 if (err)
1035 *err = NULL;
1036
Willy Tarreau2bbba412010-01-28 16:48:33 +01001037 if (!strcmp(*args, "if")) {
1038 pol = ACL_COND_IF;
1039 args++;
1040 }
1041 else if (!strcmp(*args, "unless")) {
1042 pol = ACL_COND_UNLESS;
1043 args++;
1044 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001045 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001046 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001047 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001048 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001049
Christopher Faulet1b421ea2017-09-22 14:38:56 +02001050 cond = parse_acl_cond(args, known_acl, pol, err, &px->conf.args, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001051 if (!cond) {
1052 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001053 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001054 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001055
1056 cond->file = file;
1057 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001058 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001059 return cond;
1060}
1061
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001062/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
1063 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001064 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001065 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
1066 * function only computes the condition, it does not apply the polarity required
1067 * by IF/UNLESS, it's up to the caller to do this using something like this :
Willy Tarreau11382812008-07-09 16:18:21 +02001068 *
1069 * res = acl_pass(res);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001070 * if (res == ACL_TEST_MISS)
Willy Tarreaub6866442008-07-14 23:54:42 +02001071 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001072 * if (cond->pol == ACL_COND_UNLESS)
1073 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001074 */
Willy Tarreau192252e2015-04-04 01:47:55 +02001075enum acl_test_res acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001076{
1077 __label__ fetch_next;
1078 struct acl_term_suite *suite;
1079 struct acl_term *term;
1080 struct acl_expr *expr;
1081 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001082 struct sample smp;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001083 enum acl_test_res acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001084
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001085 /* ACLs are iterated over all values, so let's always set the flag to
1086 * indicate this to the fetch functions.
1087 */
1088 opt |= SMP_OPT_ITERATE;
1089
Willy Tarreau11382812008-07-09 16:18:21 +02001090 /* We're doing a logical OR between conditions so we initialize to FAIL.
1091 * The MISS status is propagated down from the suites.
1092 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001093 cond_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001094 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001095 /* Evaluate condition suite <suite>. We stop at the first term
Willy Tarreau0cba6072013-11-28 22:21:02 +01001096 * which returns ACL_TEST_FAIL. The MISS status is still propagated
Willy Tarreau11382812008-07-09 16:18:21 +02001097 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001098 */
1099
1100 /* we're doing a logical AND between terms, so we must set the
1101 * initial value to PASS.
1102 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001103 suite_res = ACL_TEST_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001104 list_for_each_entry(term, &suite->terms, list) {
1105 acl = term->acl;
1106
1107 /* FIXME: use cache !
1108 * check acl->cache_idx for this.
1109 */
1110
1111 /* ACL result not cached. Let's scan all the expressions
1112 * and use the first one to match.
1113 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001114 acl_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001115 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001116 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001117 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001118 fetch_next:
Willy Tarreau192252e2015-04-04 01:47:55 +02001119 if (!sample_process(px, sess, strm, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001120 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001121 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001122 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001123 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001124 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001125
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01001126 acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001127 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001128 * OK now acl_res holds the result of this expression
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001129 * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001130 *
Willy Tarreau11382812008-07-09 16:18:21 +02001131 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001132 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001133 *
1134 * FIXME: implement cache.
1135 *
1136 */
1137
Willy Tarreau11382812008-07-09 16:18:21 +02001138 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001139 if (acl_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001140 break;
1141
Willy Tarreau37406352012-04-23 16:16:37 +02001142 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001143 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001144
1145 /* sometimes we know the fetched data is subject to change
1146 * later and give another chance for a new match (eg: request
1147 * size, time, ...)
1148 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001149 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001150 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001151 }
1152 /*
1153 * Here we have the result of an ACL (cached or not).
1154 * ACLs are combined, negated or not, to form conditions.
1155 */
1156
Willy Tarreaua84d3742007-05-07 00:36:48 +02001157 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001158 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001159
1160 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001161
Willy Tarreau79c412b2013-10-30 19:30:32 +01001162 /* we're ANDing these terms, so a single FAIL or MISS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001163 if (suite_res != ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001164 break;
1165 }
1166 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001167
1168 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001169 if (cond_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001170 break;
1171 }
Willy Tarreau11382812008-07-09 16:18:21 +02001172 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001173}
1174
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001175/* Returns a pointer to the first ACL conflicting with usage at place <where>
1176 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1177 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1178 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001179 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001180const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001181{
1182 struct acl_term_suite *suite;
1183 struct acl_term *term;
1184 struct acl *acl;
1185
1186 list_for_each_entry(suite, &cond->suites, list) {
1187 list_for_each_entry(term, &suite->terms, list) {
1188 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001189 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001190 return acl;
1191 }
1192 }
1193 return NULL;
1194}
1195
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001196/* Returns a pointer to the first ACL and its first keyword to conflict with
1197 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1198 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1199 * null), or false if not conflict is found. The first useless keyword is
1200 * returned.
1201 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001202int 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 +01001203{
1204 struct acl_term_suite *suite;
1205 struct acl_term *term;
1206 struct acl_expr *expr;
1207
1208 list_for_each_entry(suite, &cond->suites, list) {
1209 list_for_each_entry(term, &suite->terms, list) {
1210 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001211 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001212 if (acl)
1213 *acl = term->acl;
1214 if (kw)
1215 *kw = expr->kw;
1216 return 1;
1217 }
1218 }
1219 }
1220 }
1221 return 0;
1222}
1223
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001224/*
1225 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001226 * of errors or OK if everything is fine. It must be called only once sample
1227 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001228 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001229int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001230{
1231
1232 struct acl *acl;
1233 struct acl_expr *expr;
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001234 struct pattern_list *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001235 int cfgerr = 0;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001236 struct pattern_expr_list *pexp;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001237
1238 list_for_each_entry(acl, &p->acl, list) {
1239 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001240 if (!strcmp(expr->kw, "http_auth_group")) {
1241 /* Note: the ARGT_USR argument may only have been resolved earlier
1242 * by smp_resolve_args().
1243 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001244 if (expr->smp->arg_p->unresolved) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("Internal bug in proxy %s: %sacl %s %s() makes use of unresolved userlist '%s'. Please report this.\n",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001246 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw,
1247 expr->smp->arg_p->data.str.area);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001248 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001249 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001250 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001251
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001252 if (LIST_ISEMPTY(&expr->pat.head)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001253 ha_alert("proxy %s: acl %s %s(): no groups specified.\n",
1254 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001255 cfgerr++;
1256 continue;
1257 }
1258
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001259 /* For each pattern, check if the group exists. */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001260 list_for_each_entry(pexp, &expr->pat.head, list) {
1261 if (LIST_ISEMPTY(&pexp->expr->patterns)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001262 ha_alert("proxy %s: acl %s %s(): no groups specified.\n",
1263 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001264 cfgerr++;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001265 continue;
1266 }
1267
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001268 list_for_each_entry(pattern, &pexp->expr->patterns, list) {
1269 /* this keyword only has one argument */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001270 if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 ha_alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
1272 p->id, acl->name, expr->kw, pattern->pat.ptr.str);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001273 cfgerr++;
1274 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001275 }
1276 }
1277 }
1278 }
1279 }
1280
1281 return cfgerr;
1282}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001283
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001284/* initializes ACLs by resolving the sample fetch names they rely upon.
1285 * Returns 0 on success, otherwise an error.
1286 */
1287int init_acl()
1288{
1289 int err = 0;
1290 int index;
1291 const char *name;
1292 struct acl_kw_list *kwl;
1293 struct sample_fetch *smp;
1294
1295 list_for_each_entry(kwl, &acl_keywords.list, list) {
1296 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1297 name = kwl->kw[index].fetch_kw;
1298 if (!name)
1299 name = kwl->kw[index].kw;
1300
1301 smp = find_sample_fetch(name, strlen(name));
1302 if (!smp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001303 ha_alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1304 kwl->kw[index].kw, name);
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001305 err++;
1306 continue;
1307 }
1308 kwl->kw[index].smp = smp;
1309 }
1310 }
1311 return err;
1312}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001313
Willy Tarreaua84d3742007-05-07 00:36:48 +02001314/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001315/* All supported sample and ACL keywords must be declared here. */
1316/************************************************************************/
1317
1318/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001319 * Please take care of keeping this list alphabetically sorted.
1320 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001321static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001322 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001323}};
1324
Willy Tarreau0108d902018-11-25 19:14:37 +01001325INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001326
1327/*
1328 * Local variables:
1329 * c-indent-level: 8
1330 * c-basic-offset: 8
1331 * End:
1332 */