blob: b65852f59a736105e6856ae4831a1f540a886713 [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 Tarreaub2551052020-06-09 09:07:15 +020017#include <import/ebsttree.h>
18
Willy Tarreaudcc048a2020-06-04 19:11:43 +020019#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020020#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/arg.h>
22#include <haproxy/auth.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020023#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020025#include <haproxy/list.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020026#include <haproxy/pattern.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020027#include <haproxy/proxy-t.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020028#include <haproxy/sample.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020029#include <haproxy/stick_table.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/tools.h>
Willy Tarreauc4262962010-05-10 23:42:40 +020031
Willy Tarreaua84d3742007-05-07 00:36:48 +020032/* List head of all known ACL keywords */
33static struct acl_kw_list acl_keywords = {
34 .list = LIST_HEAD_INIT(acl_keywords.list)
35};
36
Willy Tarreau0cba6072013-11-28 22:21:02 +010037/* input values are 0 or 3, output is the same */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010038static inline enum acl_test_res pat2acl(struct pattern *pat)
Willy Tarreau0cba6072013-11-28 22:21:02 +010039{
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010040 if (pat)
41 return ACL_TEST_PASS;
42 else
43 return ACL_TEST_FAIL;
Willy Tarreau0cba6072013-11-28 22:21:02 +010044}
45
Willy Tarreaua5909832007-06-17 20:40:25 +020046/*
Willy Tarreaua84d3742007-05-07 00:36:48 +020047 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
48 * parsing sessions.
49 */
50void acl_register_keywords(struct acl_kw_list *kwl)
51{
52 LIST_ADDQ(&acl_keywords.list, &kwl->list);
53}
54
55/*
56 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
57 */
58void acl_unregister_keywords(struct acl_kw_list *kwl)
59{
60 LIST_DEL(&kwl->list);
61 LIST_INIT(&kwl->list);
62}
63
64/* Return a pointer to the ACL <name> within the list starting at <head>, or
65 * NULL if not found.
66 */
67struct acl *find_acl_by_name(const char *name, struct list *head)
68{
69 struct acl *acl;
70 list_for_each_entry(acl, head, list) {
71 if (strcmp(acl->name, name) == 0)
72 return acl;
73 }
74 return NULL;
75}
76
77/* Return a pointer to the ACL keyword <kw>, or NULL if not found. Note that if
Willy Tarreau4bfa4222013-12-16 22:01:06 +010078 * <kw> contains an opening parenthesis or a comma, only the left part of it is
79 * checked.
Willy Tarreaua84d3742007-05-07 00:36:48 +020080 */
81struct acl_keyword *find_acl_kw(const char *kw)
82{
83 int index;
84 const char *kwend;
85 struct acl_kw_list *kwl;
86
Willy Tarreau4bfa4222013-12-16 22:01:06 +010087 kwend = kw;
Willy Tarreaued2c6622020-02-14 18:27:10 +010088 while (is_idchar(*kwend))
Willy Tarreau4bfa4222013-12-16 22:01:06 +010089 kwend++;
Willy Tarreaua84d3742007-05-07 00:36:48 +020090
91 list_for_each_entry(kwl, &acl_keywords.list, list) {
92 for (index = 0; kwl->kw[index].kw != NULL; index++) {
93 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
94 kwl->kw[index].kw[kwend-kw] == 0)
95 return &kwl->kw[index];
96 }
97 }
98 return NULL;
99}
100
Willy Tarreaua84d3742007-05-07 00:36:48 +0200101static struct acl_expr *prune_acl_expr(struct acl_expr *expr)
102{
Willy Tarreau34db1082012-04-19 17:16:54 +0200103 struct arg *arg;
Willy Tarreau145325e2017-04-12 23:03:31 +0200104 int unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +0200105
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100106 pattern_prune(&expr->pat);
Willy Tarreau34db1082012-04-19 17:16:54 +0200107
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100108 for (arg = expr->smp->arg_p; arg; arg++) {
Willy Tarreau34db1082012-04-19 17:16:54 +0200109 if (arg->type == ARGT_STOP)
110 break;
Willy Tarreau496aa012012-06-01 10:38:29 +0200111 if (arg->type == ARGT_STR || arg->unresolved) {
Christopher Faulet6ad7df42020-08-07 11:45:18 +0200112 chunk_destroy(&arg->data.str);
Willy Tarreau145325e2017-04-12 23:03:31 +0200113 unresolved |= arg->unresolved;
Willy Tarreau496aa012012-06-01 10:38:29 +0200114 arg->unresolved = 0;
Willy Tarreau34db1082012-04-19 17:16:54 +0200115 }
Willy Tarreau34db1082012-04-19 17:16:54 +0200116 }
117
Tim Duesterhus9fa0df52020-07-04 11:49:38 +0200118 release_sample_expr(expr->smp);
119
Willy Tarreaua84d3742007-05-07 00:36:48 +0200120 return expr;
121}
122
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200123/* Parse an ACL expression starting at <args>[0], and return it. If <err> is
124 * not NULL, it will be filled with a pointer to an error message in case of
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200125 * error. This pointer must be freeable or NULL. <al> is an arg_list serving
126 * as a list head to report missing dependencies.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200127 *
Willy Tarreaua84d3742007-05-07 00:36:48 +0200128 * Right now, the only accepted syntax is :
129 * <subject> [<value>...]
130 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100131struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al,
132 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200133{
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100134 __label__ out_return, out_free_expr;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200135 struct acl_expr *expr;
136 struct acl_keyword *aclkw;
Christopher Faulet54ceb042017-06-14 14:41:33 +0200137 int refflags, patflags;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200138 const char *arg;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100139 struct sample_expr *smp = NULL;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100140 int idx = 0;
141 char *ckw = NULL;
142 const char *begw;
143 const char *endw;
Willy Tarreau131b4662013-12-13 01:08:36 +0100144 const char *endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100145 int cur_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100146 int nbargs;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100147 int operator = STD_OP_EQ;
148 int op;
149 int contain_colon, have_dot;
150 const char *dot;
151 signed long long value, minor;
152 /* The following buffer contain two numbers, a ':' separator and the final \0. */
153 char buffer[NB_LLMAX_STR + 1 + NB_LLMAX_STR + 1];
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100154 int is_loaded;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100155 int unique_id;
156 char *error;
157 struct pat_ref *ref;
158 struct pattern_expr *pattern_expr;
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100159 int load_as_map = 0;
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200160 int acl_conv_found = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200161
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100162 /* First, we look for an ACL keyword. And if we don't find one, then
163 * we look for a sample fetch expression starting with a sample fetch
164 * keyword.
Willy Tarreaubef91e72013-03-31 23:14:46 +0200165 */
Willy Tarreau131b4662013-12-13 01:08:36 +0100166
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100167 al->ctx = ARGC_ACL; // to report errors while resolving args late
Willy Tarreau131b4662013-12-13 01:08:36 +0100168 al->kw = *args;
169 al->conv = NULL;
170
Willy Tarreaua84d3742007-05-07 00:36:48 +0200171 aclkw = find_acl_kw(args[0]);
Willy Tarreau20490922014-03-17 18:04:27 +0100172 if (aclkw) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100173 /* OK we have a real ACL keyword */
Willy Tarreau9987ea92013-06-11 21:09:06 +0200174
Willy Tarreau131b4662013-12-13 01:08:36 +0100175 /* build new sample expression for this ACL */
Vincent Bernat02779b62016-04-03 13:48:43 +0200176 smp = calloc(1, sizeof(*smp));
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100177 if (!smp) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100178 memprintf(err, "out of memory when parsing ACL expression");
179 goto out_return;
180 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100181 LIST_INIT(&(smp->conv_exprs));
182 smp->fetch = aclkw->smp;
183 smp->arg_p = empty_arg_list;
Willy Tarreau34db1082012-04-19 17:16:54 +0200184
Joseph Herlant68082792018-11-15 14:55:09 -0800185 /* look for the beginning of the subject arguments */
Willy Tarreaued2c6622020-02-14 18:27:10 +0100186 for (arg = args[0]; is_idchar(*arg); arg++)
187 ;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100188
Willy Tarreau131b4662013-12-13 01:08:36 +0100189 /* At this point, we have :
190 * - args[0] : beginning of the keyword
191 * - arg : end of the keyword, first character not part of keyword
Willy Tarreau131b4662013-12-13 01:08:36 +0100192 */
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100193 nbargs = make_arg_list(arg, -1, smp->fetch->arg_mask, &smp->arg_p,
194 err, &endt, NULL, al);
Willy Tarreau131b4662013-12-13 01:08:36 +0100195 if (nbargs < 0) {
196 /* note that make_arg_list will have set <err> here */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100197 memprintf(err, "ACL keyword '%s' : %s", aclkw->kw, *err);
198 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100199 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100200
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100201 if (!smp->arg_p) {
202 smp->arg_p = empty_arg_list;
Willy Tarreau131b4662013-12-13 01:08:36 +0100203 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100204 else if (smp->fetch->val_args && !smp->fetch->val_args(smp->arg_p, err)) {
Willy Tarreau131b4662013-12-13 01:08:36 +0100205 /* invalid keyword argument, error must have been
206 * set by val_args().
207 */
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100208 memprintf(err, "in argument to '%s', %s", aclkw->kw, *err);
209 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100210 }
211 arg = endt;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100212
Joseph Herlant68082792018-11-15 14:55:09 -0800213 /* look for the beginning of the converters list. Those directly attached
Willy Tarreau131b4662013-12-13 01:08:36 +0100214 * to the ACL keyword are found just after <arg> which points to the comma.
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200215 * If we find any converter, then we don't use the ACL keyword's match
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200216 * anymore but the one related to the converter's output type.
Willy Tarreau131b4662013-12-13 01:08:36 +0100217 */
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200218 cur_type = smp->fetch->out_type;
Willy Tarreau131b4662013-12-13 01:08:36 +0100219 while (*arg) {
220 struct sample_conv *conv;
221 struct sample_conv_expr *conv_expr;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100222 int err_arg;
223 int argcnt;
Willy Tarreau131b4662013-12-13 01:08:36 +0100224
225 if (*arg && *arg != ',') {
226 if (ckw)
Willy Tarreau97108e02016-11-25 07:33:24 +0100227 memprintf(err, "ACL keyword '%s' : missing comma after converter '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100228 aclkw->kw, ckw);
Willy Tarreau131b4662013-12-13 01:08:36 +0100229 else
230 memprintf(err, "ACL keyword '%s' : missing comma after fetch keyword.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100231 aclkw->kw);
232 goto out_free_smp;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200233 }
Willy Tarreauae52f062012-04-26 12:13:35 +0200234
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100235 /* FIXME: how long should we support such idiocies ? Maybe we
236 * should already warn ?
237 */
Willy Tarreau131b4662013-12-13 01:08:36 +0100238 while (*arg == ',') /* then trailing commas */
239 arg++;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200240
Willy Tarreau97108e02016-11-25 07:33:24 +0100241 begw = arg; /* start of converter keyword */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100242
Willy Tarreau131b4662013-12-13 01:08:36 +0100243 if (!*begw)
244 /* none ? end of converters */
245 break;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100246
Willy Tarreaued2c6622020-02-14 18:27:10 +0100247 for (endw = begw; is_idchar(*endw); endw++)
248 ;
Willy Tarreau9ca69362013-10-22 19:10:06 +0200249
Willy Tarreau131b4662013-12-13 01:08:36 +0100250 free(ckw);
251 ckw = my_strndup(begw, endw - begw);
Willy Tarreauf75d0082013-04-07 21:20:44 +0200252
Willy Tarreau131b4662013-12-13 01:08:36 +0100253 conv = find_sample_conv(begw, endw - begw);
254 if (!conv) {
255 /* Unknown converter method */
Willy Tarreau97108e02016-11-25 07:33:24 +0100256 memprintf(err, "ACL keyword '%s' : unknown converter '%s'.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100257 aclkw->kw, ckw);
258 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100259 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100260
Willy Tarreau131b4662013-12-13 01:08:36 +0100261 arg = endw;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100262
Willy Tarreau131b4662013-12-13 01:08:36 +0100263 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
Willy Tarreau97108e02016-11-25 07:33:24 +0100264 memprintf(err, "ACL keyword '%s' : returns type of converter '%s' is unknown.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100265 aclkw->kw, ckw);
266 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100267 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100268
Willy Tarreau131b4662013-12-13 01:08:36 +0100269 /* If impossible type conversion */
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200270 if (!sample_casts[cur_type][conv->in_type]) {
Willy Tarreau97108e02016-11-25 07:33:24 +0100271 memprintf(err, "ACL keyword '%s' : converter '%s' cannot be applied.",
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100272 aclkw->kw, ckw);
273 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100274 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100275
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200276 cur_type = conv->out_type;
Vincent Bernat02779b62016-04-03 13:48:43 +0200277 conv_expr = calloc(1, sizeof(*conv_expr));
Willy Tarreau131b4662013-12-13 01:08:36 +0100278 if (!conv_expr)
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100279 goto out_free_smp;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100280
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100281 LIST_ADDQ(&(smp->conv_exprs), &(conv_expr->list));
Willy Tarreau131b4662013-12-13 01:08:36 +0100282 conv_expr->conv = conv;
Willy Tarreau6f0ddca2014-08-29 17:36:40 +0200283 acl_conv_found = 1;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100284
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100285 al->kw = smp->fetch->kw;
286 al->conv = conv_expr->conv->kw;
287 argcnt = make_arg_list(endw, -1, conv->arg_mask, &conv_expr->arg_p, err, &arg, &err_arg, al);
288 if (argcnt < 0) {
289 memprintf(err, "ACL keyword '%s' : invalid arg %d in converter '%s' : %s.",
290 aclkw->kw, err_arg+1, ckw, *err);
291 goto out_free_smp;
292 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100293
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100294 if (argcnt && !conv->arg_mask) {
295 memprintf(err, "converter '%s' does not support any args", ckw);
296 goto out_free_smp;
297 }
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100298
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100299 if (!conv_expr->arg_p)
300 conv_expr->arg_p = empty_arg_list;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100301
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100302 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err)) {
303 memprintf(err, "ACL keyword '%s' : invalid args in converter '%s' : %s.",
304 aclkw->kw, ckw, *err);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100305 goto out_free_smp;
Willy Tarreau131b4662013-12-13 01:08:36 +0100306 }
Willy Tarreau61612d42012-04-19 18:42:05 +0200307 }
Christopher Faulet361935a2019-09-13 09:50:15 +0200308 free(ckw);
309 ckw = NULL;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200310 }
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100311 else {
312 /* This is not an ACL keyword, so we hope this is a sample fetch
313 * keyword that we're going to transparently use as an ACL. If
314 * so, we retrieve a completely parsed expression with args and
315 * convs already done.
316 */
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100317 smp = sample_parse_expr((char **)args, &idx, file, line, err, al, NULL);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100318 if (!smp) {
319 memprintf(err, "%s in ACL expression '%s'", *err, *args);
320 goto out_return;
321 }
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200322 cur_type = smp_expr_output_type(smp);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100323 }
324
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200325 expr = calloc(1, sizeof(*expr));
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100326 if (!expr) {
327 memprintf(err, "out of memory when parsing ACL expression");
Christopher Faulet361935a2019-09-13 09:50:15 +0200328 goto out_free_smp;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100329 }
330
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100331 pattern_init_head(&expr->pat);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100332
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200333 expr->pat.expect_type = cur_type;
334 expr->smp = smp;
335 expr->kw = smp->fetch->kw;
336 smp = NULL; /* don't free it anymore */
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100337
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200338 if (aclkw && !acl_conv_found) {
339 expr->kw = aclkw->kw;
340 expr->pat.parse = aclkw->parse ? aclkw->parse : pat_parse_fcts[aclkw->match_type];
341 expr->pat.index = aclkw->index ? aclkw->index : pat_index_fcts[aclkw->match_type];
342 expr->pat.match = aclkw->match ? aclkw->match : pat_match_fcts[aclkw->match_type];
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200343 expr->pat.prune = aclkw->prune ? aclkw->prune : pat_prune_fcts[aclkw->match_type];
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100344 }
345
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100346 if (!expr->pat.parse) {
Willy Tarreauaa4e32e2014-08-29 19:09:48 +0200347 /* Parse/index/match functions depend on the expression type,
348 * so we have to map them now. Some types can be automatically
349 * converted.
350 */
351 switch (cur_type) {
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100352 case SMP_T_BOOL:
353 expr->pat.parse = pat_parse_fcts[PAT_MATCH_BOOL];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100354 expr->pat.index = pat_index_fcts[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100355 expr->pat.match = pat_match_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100356 expr->pat.prune = pat_prune_fcts[PAT_MATCH_BOOL];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100357 expr->pat.expect_type = pat_match_types[PAT_MATCH_BOOL];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100358 break;
359 case SMP_T_SINT:
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100360 expr->pat.parse = pat_parse_fcts[PAT_MATCH_INT];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100361 expr->pat.index = pat_index_fcts[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100362 expr->pat.match = pat_match_fcts[PAT_MATCH_INT];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100363 expr->pat.prune = pat_prune_fcts[PAT_MATCH_INT];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100364 expr->pat.expect_type = pat_match_types[PAT_MATCH_INT];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100365 break;
Willy Tarreau78c5eec2019-04-19 11:45:20 +0200366 case SMP_T_ADDR:
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100367 case SMP_T_IPV4:
368 case SMP_T_IPV6:
369 expr->pat.parse = pat_parse_fcts[PAT_MATCH_IP];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100370 expr->pat.index = pat_index_fcts[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100371 expr->pat.match = pat_match_fcts[PAT_MATCH_IP];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100372 expr->pat.prune = pat_prune_fcts[PAT_MATCH_IP];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100373 expr->pat.expect_type = pat_match_types[PAT_MATCH_IP];
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100374 break;
Thierry FOURNIER9fefbd52014-05-11 15:15:00 +0200375 case SMP_T_STR:
376 expr->pat.parse = pat_parse_fcts[PAT_MATCH_STR];
377 expr->pat.index = pat_index_fcts[PAT_MATCH_STR];
378 expr->pat.match = pat_match_fcts[PAT_MATCH_STR];
Thierry FOURNIER9fefbd52014-05-11 15:15:00 +0200379 expr->pat.prune = pat_prune_fcts[PAT_MATCH_STR];
380 expr->pat.expect_type = pat_match_types[PAT_MATCH_STR];
381 break;
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100382 }
383 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200384
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100385 /* Additional check to protect against common mistakes */
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100386 if (expr->pat.parse && cur_type != SMP_T_BOOL && !*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100387 ha_warning("parsing acl keyword '%s' :\n"
388 " no pattern to match against were provided, so this ACL will never match.\n"
389 " If this is what you intended, please add '--' to get rid of this warning.\n"
390 " If you intended to match only for existence, please use '-m found'.\n"
391 " If you wanted to force an int to match as a bool, please use '-m bool'.\n"
392 "\n",
393 args[0]);
Willy Tarreau3c3dfd52013-11-04 18:09:12 +0100394 }
395
Willy Tarreaua84d3742007-05-07 00:36:48 +0200396 args++;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200397
398 /* check for options before patterns. Supported options are :
399 * -i : ignore case for all patterns by default
400 * -f : read patterns from those files
Willy Tarreau5adeda12013-03-31 22:13:34 +0200401 * -m : force matching method (must be used before -f)
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100402 * -M : load the file as map file
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100403 * -u : force the unique id of the acl
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200404 * -- : everything after this is not an option
405 */
Christopher Faulet54ceb042017-06-14 14:41:33 +0200406 refflags = PAT_REF_ACL;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200407 patflags = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100408 is_loaded = 0;
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100409 unique_id = -1;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200410 while (**args == '-') {
Willy Tarreau2039bba2014-05-11 09:43:46 +0200411 if (strcmp(*args, "-i") == 0)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200412 patflags |= PAT_MF_IGNORE_CASE;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200413 else if (strcmp(*args, "-n") == 0)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200414 patflags |= PAT_MF_NO_DNS;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200415 else if (strcmp(*args, "-u") == 0) {
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100416 unique_id = strtol(args[1], &error, 10);
417 if (*error != '\0') {
418 memprintf(err, "the argument of -u must be an integer");
419 goto out_free_expr;
420 }
421
422 /* Check if this id is really unique. */
423 if (pat_ref_lookupid(unique_id)) {
424 memprintf(err, "the id is already used");
425 goto out_free_expr;
426 }
427
428 args++;
429 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200430 else if (strcmp(*args, "-f") == 0) {
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100431 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200432 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 +0200433 goto out_free_expr;
434 }
435
Christopher Faulet54ceb042017-06-14 14:41:33 +0200436 if (!pattern_read_from_file(&expr->pat, refflags, args[1], patflags, load_as_map, err, file, line))
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200437 goto out_free_expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100438 is_loaded = 1;
Willy Tarreau5adeda12013-03-31 22:13:34 +0200439 args++;
440 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200441 else if (strcmp(*args, "-m") == 0) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200442 int idx;
443
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100444 if (is_loaded) {
Willy Tarreau5adeda12013-03-31 22:13:34 +0200445 memprintf(err, "'-m' must only be specified before patterns and files in parsing ACL expression");
446 goto out_free_expr;
447 }
448
Willy Tarreau6f8fe312013-11-28 22:24:25 +0100449 idx = pat_find_match_name(args[1]);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200450 if (idx < 0) {
451 memprintf(err, "unknown matching method '%s' when parsing ACL expression", args[1]);
452 goto out_free_expr;
453 }
454
455 /* Note: -m found is always valid, bool/int are compatible, str/bin/reg/len are compatible */
Willy Tarreau9bb49f62015-09-24 16:37:12 +0200456 if (idx != PAT_MATCH_FOUND && !sample_casts[cur_type][pat_match_types[idx]]) {
Willy Tarreau93fddf12013-03-31 22:59:32 +0200457 memprintf(err, "matching method '%s' cannot be used with fetch keyword '%s'", args[1], expr->kw);
Willy Tarreau5adeda12013-03-31 22:13:34 +0200458 goto out_free_expr;
459 }
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100460 expr->pat.parse = pat_parse_fcts[idx];
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100461 expr->pat.index = pat_index_fcts[idx];
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100462 expr->pat.match = pat_match_fcts[idx];
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100463 expr->pat.prune = pat_prune_fcts[idx];
Thierry FOURNIER5d344082014-01-27 14:19:53 +0100464 expr->pat.expect_type = pat_match_types[idx];
Willy Tarreau2b5285d2010-05-09 23:45:24 +0200465 args++;
466 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200467 else if (strcmp(*args, "-M") == 0) {
Christopher Faulet54ceb042017-06-14 14:41:33 +0200468 refflags |= PAT_REF_MAP;
Thierry FOURNIER9860c412014-01-29 14:23:29 +0100469 load_as_map = 1;
470 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200471 else if (strcmp(*args, "--") == 0) {
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200472 args++;
473 break;
474 }
Willy Tarreau2039bba2014-05-11 09:43:46 +0200475 else {
476 memprintf(err, "'%s' is not a valid ACL option. Please use '--' before any pattern beginning with a '-'", args[0]);
477 goto out_free_expr;
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200478 break;
Willy Tarreau2039bba2014-05-11 09:43:46 +0200479 }
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200480 args++;
481 }
482
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +0100483 if (!expr->pat.parse) {
Willy Tarreau9987ea92013-06-11 21:09:06 +0200484 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 +0200485 goto out_free_expr;
486 }
487
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100488 /* Create displayed reference */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200489 snprintf(trash.area, trash.size, "acl '%s' file '%s' line %d",
490 expr->kw, file, line);
491 trash.area[trash.size - 1] = '\0';
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100492
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500493 /* Create new pattern reference. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200494 ref = pat_ref_newid(unique_id, trash.area, PAT_REF_ACL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100495 if (!ref) {
496 memprintf(err, "memory error");
497 goto out_free_expr;
498 }
499
500 /* Create new pattern expression associated to this reference. */
Emeric Brun7d27f3c2017-07-03 17:54:23 +0200501 pattern_expr = pattern_new_expr(&expr->pat, ref, patflags, err, NULL);
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100502 if (!pattern_expr)
503 goto out_free_expr;
504
Willy Tarreauc8d7c962007-06-17 08:20:33 +0200505 /* now parse all patterns */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100506 while (**args) {
507 arg = *args;
508
509 /* Compatibility layer. Each pattern can parse only one string per pattern,
510 * but the pat_parser_int() and pat_parse_dotted_ver() parsers were need
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500511 * optionally two operators. The first operator is the match method: eq,
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100512 * le, lt, ge and gt. pat_parse_int() and pat_parse_dotted_ver() functions
513 * can have a compatibility syntax based on ranges:
514 *
515 * pat_parse_int():
516 *
517 * "eq x" -> "x" or "x:x"
518 * "le x" -> ":x"
519 * "lt x" -> ":y" (with y = x - 1)
520 * "ge x" -> "x:"
521 * "gt x" -> "y:" (with y = x + 1)
522 *
523 * pat_parse_dotted_ver():
524 *
525 * "eq x.y" -> "x.y" or "x.y:x.y"
526 * "le x.y" -> ":x.y"
527 * "lt x.y" -> ":w.z" (with w.z = x.y - 1)
528 * "ge x.y" -> "x.y:"
529 * "gt x.y" -> "w.z:" (with w.z = x.y + 1)
530 *
531 * If y is not present, assume that is "0".
532 *
533 * The syntax eq, le, lt, ge and gt are proper to the acl syntax. The
534 * following block of code detect the operator, and rewrite each value
535 * in parsable string.
536 */
537 if (expr->pat.parse == pat_parse_int ||
538 expr->pat.parse == pat_parse_dotted_ver) {
539 /* Check for operator. If the argument is operator, memorise it and
540 * continue to the next argument.
541 */
542 op = get_std_op(arg);
543 if (op != -1) {
544 operator = op;
545 args++;
546 continue;
547 }
548
549 /* Check if the pattern contain ':' or '-' character. */
550 contain_colon = (strchr(arg, ':') || strchr(arg, '-'));
551
552 /* If the pattern contain ':' or '-' character, give it to the parser as is.
553 * If no contain ':' and operator is STD_OP_EQ, give it to the parser as is.
554 * In other case, try to convert the value according with the operator.
555 */
556 if (!contain_colon && operator != STD_OP_EQ) {
557 /* Search '.' separator. */
558 dot = strchr(arg, '.');
559 if (!dot) {
560 have_dot = 0;
561 minor = 0;
562 dot = arg + strlen(arg);
563 }
564 else
565 have_dot = 1;
566
567 /* convert the integer minor part for the pat_parse_dotted_ver() function. */
568 if (expr->pat.parse == pat_parse_dotted_ver && have_dot) {
569 if (strl2llrc(dot+1, strlen(dot+1), &minor) != 0) {
570 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100571 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100572 }
573 if (minor >= 65536) {
574 memprintf(err, "'%s' contains too large a minor value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100575 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100576 }
577 }
578
579 /* convert the integer value for the pat_parse_int() function, and the
580 * integer major part for the pat_parse_dotted_ver() function.
581 */
582 if (strl2llrc(arg, dot - arg, &value) != 0) {
583 memprintf(err, "'%s' is neither a number nor a supported operator", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100584 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100585 }
586 if (expr->pat.parse == pat_parse_dotted_ver) {
587 if (value >= 65536) {
588 memprintf(err, "'%s' contains too large a major value", arg);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100589 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100590 }
591 value = (value << 16) | (minor & 0xffff);
592 }
593
594 switch (operator) {
595
596 case STD_OP_EQ: /* this case is not possible. */
597 memprintf(err, "internal error");
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100598 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100599
600 case STD_OP_GT:
601 value++; /* gt = ge + 1 */
Tim Duesterhus588b3142020-05-29 14:35:51 +0200602 /* fall through */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100603
604 case STD_OP_GE:
605 if (expr->pat.parse == pat_parse_int)
606 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld:", value);
607 else
608 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, "%lld.%lld:",
609 value >> 16, value & 0xffff);
610 arg = buffer;
611 break;
612
613 case STD_OP_LT:
614 value--; /* lt = le - 1 */
Tim Duesterhus588b3142020-05-29 14:35:51 +0200615 /* fall through */
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100616
617 case STD_OP_LE:
618 if (expr->pat.parse == pat_parse_int)
619 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld", value);
620 else
621 snprintf(buffer, NB_LLMAX_STR+NB_LLMAX_STR+2, ":%lld.%lld",
622 value >> 16, value & 0xffff);
623 arg = buffer;
624 break;
625 }
626 }
627 }
628
Thierry FOURNIER3534d882014-01-20 17:01:44 +0100629 /* Add sample to the reference, and try to compile it fior each pattern
630 * using this value.
631 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200632 if (!pat_ref_add(ref, arg, NULL, err))
Thierry FOURNIERb9b08462013-12-13 15:12:32 +0100633 goto out_free_expr;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100634 args++;
635 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200636
637 return expr;
638
Willy Tarreaua84d3742007-05-07 00:36:48 +0200639 out_free_expr:
640 prune_acl_expr(expr);
641 free(expr);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100642 out_free_smp:
Christopher Faulet361935a2019-09-13 09:50:15 +0200643 free(ckw);
Willy Tarreauc37a3c72013-12-13 01:24:09 +0100644 free(smp);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200645 out_return:
646 return NULL;
647}
648
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200649/* Purge everything in the acl <acl>, then return <acl>. */
650struct acl *prune_acl(struct acl *acl) {
651
652 struct acl_expr *expr, *exprb;
653
654 free(acl->name);
655
656 list_for_each_entry_safe(expr, exprb, &acl->expr, list) {
657 LIST_DEL(&expr->list);
658 prune_acl_expr(expr);
659 free(expr);
660 }
661
662 return acl;
663}
664
Willy Tarreaua84d3742007-05-07 00:36:48 +0200665/* Parse an ACL with the name starting at <args>[0], and with a list of already
666 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100667 * A pointer to that ACL is returned. If the ACL has an empty name, then it's
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200668 * an anonymous one and it won't be merged with any other one. If <err> is not
669 * NULL, it will be filled with an appropriate error. This pointer must be
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200670 * freeable or NULL. <al> is the arg_list serving as a head for unresolved
671 * dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200672 *
673 * args syntax: <aclname> <acl_expr>
674 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100675struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al,
676 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200677{
678 __label__ out_return, out_free_acl_expr, out_free_name;
679 struct acl *cur_acl;
680 struct acl_expr *acl_expr;
681 char *name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200682 const char *pos;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200683
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200684 if (**args && (pos = invalid_char(*args))) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200685 memprintf(err, "invalid character in ACL name : '%c'", *pos);
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100686 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200687 }
Willy Tarreau2e74c3f2007-12-02 18:45:09 +0100688
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100689 acl_expr = parse_acl_expr(args + 1, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200690 if (!acl_expr) {
691 /* parse_acl_expr will have filled <err> here */
Willy Tarreaua84d3742007-05-07 00:36:48 +0200692 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200693 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200694
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200695 /* Check for args beginning with an opening parenthesis just after the
696 * subject, as this is almost certainly a typo. Right now we can only
697 * emit a warning, so let's do so.
698 */
Krzysztof Piotr Oledzki4cdd8312009-10-05 00:23:35 +0200699 if (!strchr(args[1], '(') && *args[2] == '(')
Christopher Faulet767a84b2017-11-24 16:50:31 +0100700 ha_warning("parsing acl '%s' :\n"
701 " matching '%s' for pattern '%s' is likely a mistake and probably\n"
702 " not what you want. Maybe you need to remove the extraneous space before '('.\n"
703 " If you are really sure this is not an error, please insert '--' between the\n"
704 " match and the pattern to make this warning message disappear.\n",
705 args[0], args[1], args[2]);
Willy Tarreau404e8ab2009-07-26 19:40:40 +0200706
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100707 if (*args[0])
708 cur_acl = find_acl_by_name(args[0], known_acl);
709 else
710 cur_acl = NULL;
711
Willy Tarreaua84d3742007-05-07 00:36:48 +0200712 if (!cur_acl) {
713 name = strdup(args[0]);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200714 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200715 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200716 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200717 }
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200718 cur_acl = calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200719 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200720 memprintf(err, "out of memory when parsing ACL");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200721 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200722 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200723
724 LIST_INIT(&cur_acl->expr);
725 LIST_ADDQ(known_acl, &cur_acl->list);
726 cur_acl->name = name;
727 }
728
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100729 /* We want to know what features the ACL needs (typically HTTP parsing),
730 * and where it may be used. If an ACL relies on multiple matches, it is
731 * OK if at least one of them may match in the context where it is used.
732 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100733 cur_acl->use |= acl_expr->smp->fetch->use;
734 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200735 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
736 return cur_acl;
737
738 out_free_name:
739 free(name);
740 out_free_acl_expr:
741 prune_acl_expr(acl_expr);
742 free(acl_expr);
743 out_return:
744 return NULL;
745}
746
Willy Tarreau16fbe822007-06-17 11:54:31 +0200747/* Some useful ACLs provided by default. Only those used are allocated. */
748
749const struct {
750 const char *name;
751 const char *expr[4]; /* put enough for longest expression */
752} default_acl_list[] = {
Willy Tarreau58393e12008-07-20 10:39:22 +0200753 { .name = "TRUE", .expr = {"always_true",""}},
754 { .name = "FALSE", .expr = {"always_false",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200755 { .name = "LOCALHOST", .expr = {"src","127.0.0.1/8",""}},
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200756 { .name = "HTTP", .expr = {"req_proto_http",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200757 { .name = "HTTP_1.0", .expr = {"req_ver","1.0",""}},
758 { .name = "HTTP_1.1", .expr = {"req_ver","1.1",""}},
759 { .name = "METH_CONNECT", .expr = {"method","CONNECT",""}},
Daniel Schneller9ff96c72016-04-11 17:45:29 +0200760 { .name = "METH_DELETE", .expr = {"method","DELETE",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200761 { .name = "METH_GET", .expr = {"method","GET","HEAD",""}},
762 { .name = "METH_HEAD", .expr = {"method","HEAD",""}},
763 { .name = "METH_OPTIONS", .expr = {"method","OPTIONS",""}},
764 { .name = "METH_POST", .expr = {"method","POST",""}},
Daniel Schneller9ff96c72016-04-11 17:45:29 +0200765 { .name = "METH_PUT", .expr = {"method","PUT",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200766 { .name = "METH_TRACE", .expr = {"method","TRACE",""}},
767 { .name = "HTTP_URL_ABS", .expr = {"url_reg","^[^/:]*://",""}},
768 { .name = "HTTP_URL_SLASH", .expr = {"url_beg","/",""}},
769 { .name = "HTTP_URL_STAR", .expr = {"url","*",""}},
770 { .name = "HTTP_CONTENT", .expr = {"hdr_val(content-length)","gt","0",""}},
Emeric Brunbede3d02009-06-30 17:54:00 +0200771 { .name = "RDP_COOKIE", .expr = {"req_rdp_cookie_cnt","gt","0",""}},
Willy Tarreauc6317702008-07-20 09:29:50 +0200772 { .name = "REQ_CONTENT", .expr = {"req_len","gt","0",""}},
Willy Tarreaub6fb4202008-07-20 11:18:28 +0200773 { .name = "WAIT_END", .expr = {"wait_end",""}},
Willy Tarreau16fbe822007-06-17 11:54:31 +0200774 { .name = NULL, .expr = {""}}
775};
776
777/* Find a default ACL from the default_acl list, compile it and return it.
778 * If the ACL is not found, NULL is returned. In theory, it cannot fail,
779 * except when default ACLs are broken, in which case it will return NULL.
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200780 * If <known_acl> is not NULL, the ACL will be queued at its tail. If <err> is
781 * not NULL, it will be filled with an error message if an error occurs. This
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200782 * pointer must be freeable or NULL. <al> is an arg_list serving as a list head
783 * to report missing dependencies.
Willy Tarreau16fbe822007-06-17 11:54:31 +0200784 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200785static struct acl *find_acl_default(const char *acl_name, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100786 char **err, struct arg_list *al,
787 const char *file, int line)
Willy Tarreau16fbe822007-06-17 11:54:31 +0200788{
789 __label__ out_return, out_free_acl_expr, out_free_name;
790 struct acl *cur_acl;
791 struct acl_expr *acl_expr;
792 char *name;
793 int index;
794
795 for (index = 0; default_acl_list[index].name != NULL; index++) {
796 if (strcmp(acl_name, default_acl_list[index].name) == 0)
797 break;
798 }
799
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200800 if (default_acl_list[index].name == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200801 memprintf(err, "no such ACL : '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200802 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200803 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200804
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100805 acl_expr = parse_acl_expr((const char **)default_acl_list[index].expr, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200806 if (!acl_expr) {
807 /* parse_acl_expr must have filled err here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200808 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200809 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200810
811 name = strdup(acl_name);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200812 if (!name) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200813 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200814 goto out_free_acl_expr;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200815 }
816
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200817 cur_acl = calloc(1, sizeof(*cur_acl));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200818 if (cur_acl == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200819 memprintf(err, "out of memory when building default ACL '%s'", acl_name);
Willy Tarreau16fbe822007-06-17 11:54:31 +0200820 goto out_free_name;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200821 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200822
823 cur_acl->name = name;
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100824 cur_acl->use |= acl_expr->smp->fetch->use;
825 cur_acl->val |= acl_expr->smp->fetch->val;
Willy Tarreau16fbe822007-06-17 11:54:31 +0200826 LIST_INIT(&cur_acl->expr);
827 LIST_ADDQ(&cur_acl->expr, &acl_expr->list);
828 if (known_acl)
829 LIST_ADDQ(known_acl, &cur_acl->list);
830
831 return cur_acl;
832
833 out_free_name:
834 free(name);
835 out_free_acl_expr:
836 prune_acl_expr(acl_expr);
837 free(acl_expr);
838 out_return:
839 return NULL;
840}
Willy Tarreaua84d3742007-05-07 00:36:48 +0200841
842/* Purge everything in the acl_cond <cond>, then return <cond>. */
843struct acl_cond *prune_acl_cond(struct acl_cond *cond)
844{
845 struct acl_term_suite *suite, *tmp_suite;
846 struct acl_term *term, *tmp_term;
847
848 /* iterate through all term suites and free all terms and all suites */
849 list_for_each_entry_safe(suite, tmp_suite, &cond->suites, list) {
850 list_for_each_entry_safe(term, tmp_term, &suite->terms, list)
851 free(term);
852 free(suite);
853 }
854 return cond;
855}
856
857/* Parse an ACL condition starting at <args>[0], relying on a list of already
858 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200859 * case of low memory). Supports multiple conditions separated by "or". If
860 * <err> is not NULL, it will be filled with a pointer to an error message in
861 * case of error, that the caller is responsible for freeing. The initial
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200862 * location must either be freeable or NULL. The list <al> serves as a list head
863 * for unresolved dependencies.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200864 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200865struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100866 enum acl_cond_pol pol, char **err, struct arg_list *al,
867 const char *file, int line)
Willy Tarreaua84d3742007-05-07 00:36:48 +0200868{
869 __label__ out_return, out_free_suite, out_free_term;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200870 int arg, neg;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200871 const char *word;
872 struct acl *cur_acl;
873 struct acl_term *cur_term;
874 struct acl_term_suite *cur_suite;
875 struct acl_cond *cond;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100876 unsigned int suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200877
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200878 cond = calloc(1, sizeof(*cond));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200879 if (cond == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200880 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200881 goto out_return;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200882 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200883
884 LIST_INIT(&cond->list);
885 LIST_INIT(&cond->suites);
886 cond->pol = pol;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100887 cond->val = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200888
889 cur_suite = NULL;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100890 suite_val = ~0U;
Willy Tarreau74b98a82007-06-16 19:35:18 +0200891 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200892 for (arg = 0; *args[arg]; arg++) {
893 word = args[arg];
894
895 /* remove as many exclamation marks as we can */
896 while (*word == '!') {
897 neg = !neg;
898 word++;
899 }
900
901 /* an empty word is allowed because we cannot force the user to
902 * always think about not leaving exclamation marks alone.
903 */
904 if (!*word)
905 continue;
906
Willy Tarreau16fbe822007-06-17 11:54:31 +0200907 if (strcasecmp(word, "or") == 0 || strcmp(word, "||") == 0) {
Willy Tarreaua84d3742007-05-07 00:36:48 +0200908 /* new term suite */
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100909 cond->val |= suite_val;
910 suite_val = ~0U;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200911 cur_suite = NULL;
912 neg = 0;
913 continue;
914 }
915
Willy Tarreau95fa4692010-02-01 13:05:50 +0100916 if (strcmp(word, "{") == 0) {
917 /* we may have a complete ACL expression between two braces,
918 * find the last one.
919 */
920 int arg_end = arg + 1;
921 const char **args_new;
922
923 while (*args[arg_end] && strcmp(args[arg_end], "}") != 0)
924 arg_end++;
925
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200926 if (!*args[arg_end]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200927 memprintf(err, "missing closing '}' in condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100928 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200929 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100930
931 args_new = calloc(1, (arg_end - arg + 1) * sizeof(*args_new));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200932 if (!args_new) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200933 memprintf(err, "out of memory when parsing condition");
Willy Tarreau95fa4692010-02-01 13:05:50 +0100934 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200935 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100936
Willy Tarreau2a56c5e2010-03-15 16:13:29 +0100937 args_new[0] = "";
Willy Tarreau95fa4692010-02-01 13:05:50 +0100938 memcpy(args_new + 1, args + arg + 1, (arg_end - arg) * sizeof(*args_new));
939 args_new[arg_end - arg] = "";
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100940 cur_acl = parse_acl(args_new, known_acl, err, al, file, line);
Willy Tarreau95fa4692010-02-01 13:05:50 +0100941 free(args_new);
942
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200943 if (!cur_acl) {
944 /* note that parse_acl() must have filled <err> here */
Willy Tarreau16fbe822007-06-17 11:54:31 +0200945 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200946 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100947 arg = arg_end;
948 }
949 else {
950 /* search for <word> in the known ACL names. If we do not find
951 * it, let's look for it in the default ACLs, and if found, add
952 * it to the list of ACLs of this proxy. This makes it possible
953 * to override them.
954 */
955 cur_acl = find_acl_by_name(word, known_acl);
956 if (cur_acl == NULL) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +0100957 cur_acl = find_acl_default(word, known_acl, err, al, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200958 if (cur_acl == NULL) {
959 /* note that find_acl_default() must have filled <err> here */
Willy Tarreau95fa4692010-02-01 13:05:50 +0100960 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200961 }
Willy Tarreau95fa4692010-02-01 13:05:50 +0100962 }
Willy Tarreau16fbe822007-06-17 11:54:31 +0200963 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200964
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200965 cur_term = calloc(1, sizeof(*cur_term));
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200966 if (cur_term == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200967 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200968 goto out_free_suite;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200969 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200970
971 cur_term->acl = cur_acl;
972 cur_term->neg = neg;
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100973
974 /* Here it is a bit complex. The acl_term_suite is a conjunction
975 * of many terms. It may only be used if all of its terms are
976 * usable at the same time. So the suite's validity domain is an
977 * AND between all ACL keywords' ones. But, the global condition
978 * is valid if at least one term suite is OK. So it's an OR between
979 * all of their validity domains. We could emit a warning as soon
980 * as suite_val is null because it means that the last ACL is not
981 * compatible with the previous ones. Let's remain simple for now.
982 */
983 cond->use |= cur_acl->use;
984 suite_val &= cur_acl->val;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200985
986 if (!cur_suite) {
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200987 cur_suite = calloc(1, sizeof(*cur_suite));
Willy Tarreauf678b7f2013-01-24 00:25:39 +0100988 if (cur_suite == NULL) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200989 memprintf(err, "out of memory when parsing condition");
Willy Tarreaua84d3742007-05-07 00:36:48 +0200990 goto out_free_term;
Willy Tarreaub7451bb2012-04-27 12:38:15 +0200991 }
Willy Tarreaua84d3742007-05-07 00:36:48 +0200992 LIST_INIT(&cur_suite->terms);
993 LIST_ADDQ(&cond->suites, &cur_suite->list);
994 }
995 LIST_ADDQ(&cur_suite->terms, &cur_term->list);
Willy Tarreau74b98a82007-06-16 19:35:18 +0200996 neg = 0;
Willy Tarreaua84d3742007-05-07 00:36:48 +0200997 }
998
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100999 cond->val |= suite_val;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001000 return cond;
1001
1002 out_free_term:
1003 free(cur_term);
1004 out_free_suite:
1005 prune_acl_cond(cond);
1006 free(cond);
1007 out_return:
1008 return NULL;
1009}
1010
Willy Tarreau2bbba412010-01-28 16:48:33 +01001011/* Builds an ACL condition starting at the if/unless keyword. The complete
1012 * condition is returned. NULL is returned in case of error or if the first
1013 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +01001014 * the line number in the condition for better error reporting, and sets the
1015 * HTTP intiailization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001016 * be filled with a pointer to an error message in case of error, that the
1017 * caller is responsible for freeing. The initial location must either be
1018 * freeable or NULL.
Willy Tarreau2bbba412010-01-28 16:48:33 +01001019 */
Christopher Faulet1b421ea2017-09-22 14:38:56 +02001020struct acl_cond *build_acl_cond(const char *file, int line, struct list *known_acl,
1021 struct proxy *px, const char **args, char **err)
Willy Tarreau2bbba412010-01-28 16:48:33 +01001022{
Willy Tarreau0cba6072013-11-28 22:21:02 +01001023 enum acl_cond_pol pol = ACL_COND_NONE;
Willy Tarreau2bbba412010-01-28 16:48:33 +01001024 struct acl_cond *cond = NULL;
1025
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001026 if (err)
1027 *err = NULL;
1028
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001029 if (strcmp(*args, "if") == 0) {
Willy Tarreau2bbba412010-01-28 16:48:33 +01001030 pol = ACL_COND_IF;
1031 args++;
1032 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001033 else if (strcmp(*args, "unless") == 0) {
Willy Tarreau2bbba412010-01-28 16:48:33 +01001034 pol = ACL_COND_UNLESS;
1035 args++;
1036 }
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001037 else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001038 memprintf(err, "conditions must start with either 'if' or 'unless'");
Willy Tarreau2bbba412010-01-28 16:48:33 +01001039 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001040 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001041
Christopher Faulet1b421ea2017-09-22 14:38:56 +02001042 cond = parse_acl_cond(args, known_acl, pol, err, &px->conf.args, file, line);
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001043 if (!cond) {
1044 /* note that parse_acl_cond must have filled <err> here */
Willy Tarreau2bbba412010-01-28 16:48:33 +01001045 return NULL;
Willy Tarreaub7451bb2012-04-27 12:38:15 +02001046 }
Willy Tarreau2bbba412010-01-28 16:48:33 +01001047
1048 cond->file = file;
1049 cond->line = line;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001050 px->http_needed |= !!(cond->use & SMP_USE_HTTP_ANY);
Willy Tarreau2bbba412010-01-28 16:48:33 +01001051 return cond;
1052}
1053
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001054/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
1055 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001056 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001057 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
1058 * function only computes the condition, it does not apply the polarity required
1059 * by IF/UNLESS, it's up to the caller to do this using something like this :
Willy Tarreau11382812008-07-09 16:18:21 +02001060 *
1061 * res = acl_pass(res);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001062 * if (res == ACL_TEST_MISS)
Willy Tarreaub6866442008-07-14 23:54:42 +02001063 * return 0;
Willy Tarreau11382812008-07-09 16:18:21 +02001064 * if (cond->pol == ACL_COND_UNLESS)
1065 * res = !res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001066 */
Willy Tarreau192252e2015-04-04 01:47:55 +02001067enum 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 +02001068{
1069 __label__ fetch_next;
1070 struct acl_term_suite *suite;
1071 struct acl_term *term;
1072 struct acl_expr *expr;
1073 struct acl *acl;
Willy Tarreau37406352012-04-23 16:16:37 +02001074 struct sample smp;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001075 enum acl_test_res acl_res, suite_res, cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001076
Willy Tarreau7a777ed2012-04-26 11:44:02 +02001077 /* ACLs are iterated over all values, so let's always set the flag to
1078 * indicate this to the fetch functions.
1079 */
1080 opt |= SMP_OPT_ITERATE;
1081
Willy Tarreau11382812008-07-09 16:18:21 +02001082 /* We're doing a logical OR between conditions so we initialize to FAIL.
1083 * The MISS status is propagated down from the suites.
1084 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001085 cond_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001086 list_for_each_entry(suite, &cond->suites, list) {
Willy Tarreau11382812008-07-09 16:18:21 +02001087 /* Evaluate condition suite <suite>. We stop at the first term
Willy Tarreau0cba6072013-11-28 22:21:02 +01001088 * which returns ACL_TEST_FAIL. The MISS status is still propagated
Willy Tarreau11382812008-07-09 16:18:21 +02001089 * in case of uncertainty in the result.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001090 */
1091
1092 /* we're doing a logical AND between terms, so we must set the
1093 * initial value to PASS.
1094 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001095 suite_res = ACL_TEST_PASS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001096 list_for_each_entry(term, &suite->terms, list) {
1097 acl = term->acl;
1098
1099 /* FIXME: use cache !
1100 * check acl->cache_idx for this.
1101 */
1102
1103 /* ACL result not cached. Let's scan all the expressions
1104 * and use the first one to match.
1105 */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001106 acl_res = ACL_TEST_FAIL;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001107 list_for_each_entry(expr, &acl->expr, list) {
Willy Tarreaud41f8d82007-06-10 10:06:18 +02001108 /* we need to reset context and flags */
Willy Tarreau37406352012-04-23 16:16:37 +02001109 memset(&smp, 0, sizeof(smp));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001110 fetch_next:
Willy Tarreau192252e2015-04-04 01:47:55 +02001111 if (!sample_process(px, sess, strm, opt, expr->smp, &smp)) {
Willy Tarreaub6866442008-07-14 23:54:42 +02001112 /* maybe we could not fetch because of missing data */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001113 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001114 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001115 continue;
Willy Tarreaub6866442008-07-14 23:54:42 +02001116 }
Willy Tarreauc4262962010-05-10 23:42:40 +02001117
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01001118 acl_res |= pat2acl(pattern_exec_match(&expr->pat, &smp, 0));
Willy Tarreaua84d3742007-05-07 00:36:48 +02001119 /*
Willy Tarreau11382812008-07-09 16:18:21 +02001120 * OK now acl_res holds the result of this expression
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001121 * as one of ACL_TEST_FAIL, ACL_TEST_MISS or ACL_TEST_PASS.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001122 *
Willy Tarreau11382812008-07-09 16:18:21 +02001123 * Then if (!MISS) we can cache the result, and put
Willy Tarreau37406352012-04-23 16:16:37 +02001124 * (smp.flags & SMP_F_VOLATILE) in the cache flags.
Willy Tarreaua84d3742007-05-07 00:36:48 +02001125 *
1126 * FIXME: implement cache.
1127 *
1128 */
1129
Willy Tarreau11382812008-07-09 16:18:21 +02001130 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001131 if (acl_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001132 break;
1133
Willy Tarreau37406352012-04-23 16:16:37 +02001134 if (smp.flags & SMP_F_NOT_LAST)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001135 goto fetch_next;
Willy Tarreaub6866442008-07-14 23:54:42 +02001136
1137 /* sometimes we know the fetched data is subject to change
1138 * later and give another chance for a new match (eg: request
1139 * size, time, ...)
1140 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001141 if (smp.flags & SMP_F_MAY_CHANGE && !(opt & SMP_OPT_FINAL))
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001142 acl_res |= ACL_TEST_MISS;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001143 }
1144 /*
1145 * Here we have the result of an ACL (cached or not).
1146 * ACLs are combined, negated or not, to form conditions.
1147 */
1148
Willy Tarreaua84d3742007-05-07 00:36:48 +02001149 if (term->neg)
Willy Tarreau11382812008-07-09 16:18:21 +02001150 acl_res = acl_neg(acl_res);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001151
1152 suite_res &= acl_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001153
Willy Tarreau79c412b2013-10-30 19:30:32 +01001154 /* we're ANDing these terms, so a single FAIL or MISS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001155 if (suite_res != ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001156 break;
1157 }
1158 cond_res |= suite_res;
Willy Tarreau11382812008-07-09 16:18:21 +02001159
1160 /* we're ORing these terms, so a single PASS is enough */
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001161 if (cond_res == ACL_TEST_PASS)
Willy Tarreaua84d3742007-05-07 00:36:48 +02001162 break;
1163 }
Willy Tarreau11382812008-07-09 16:18:21 +02001164 return cond_res;
Willy Tarreaua84d3742007-05-07 00:36:48 +02001165}
1166
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001167/* Returns a pointer to the first ACL conflicting with usage at place <where>
1168 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
1169 * no conflict is found. Only full conflicts are detected (ACL is not usable).
1170 * Use the next function to check for useless keywords.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001171 */
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001172const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where)
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001173{
1174 struct acl_term_suite *suite;
1175 struct acl_term *term;
1176 struct acl *acl;
1177
1178 list_for_each_entry(suite, &cond->suites, list) {
1179 list_for_each_entry(term, &suite->terms, list) {
1180 acl = term->acl;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001181 if (!(acl->val & where))
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001182 return acl;
1183 }
1184 }
1185 return NULL;
1186}
1187
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001188/* Returns a pointer to the first ACL and its first keyword to conflict with
1189 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
1190 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
1191 * null), or false if not conflict is found. The first useless keyword is
1192 * returned.
1193 */
Willy Tarreau93fddf12013-03-31 22:59:32 +02001194int 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 +01001195{
1196 struct acl_term_suite *suite;
1197 struct acl_term *term;
1198 struct acl_expr *expr;
1199
1200 list_for_each_entry(suite, &cond->suites, list) {
1201 list_for_each_entry(term, &suite->terms, list) {
1202 list_for_each_entry(expr, &term->acl->expr, list) {
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001203 if (!(expr->smp->fetch->val & where)) {
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001204 if (acl)
1205 *acl = term->acl;
1206 if (kw)
1207 *kw = expr->kw;
1208 return 1;
1209 }
1210 }
1211 }
1212 }
1213 return 0;
1214}
1215
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001216/*
1217 * Find targets for userlist and groups in acl. Function returns the number
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001218 * of errors or OK if everything is fine. It must be called only once sample
1219 * fetch arguments have been resolved (after smp_resolve_args()).
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001220 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001221int acl_find_targets(struct proxy *p)
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001222{
1223
1224 struct acl *acl;
1225 struct acl_expr *expr;
Thierry FOURNIER3ead5b92013-12-13 12:12:18 +01001226 struct pattern_list *pattern;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001227 int cfgerr = 0;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001228 struct pattern_expr_list *pexp;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001229
1230 list_for_each_entry(acl, &p->acl, list) {
1231 list_for_each_entry(expr, &acl->expr, list) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001232 if (strcmp(expr->kw, "http_auth_group") == 0) {
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001233 /* Note: the ARGT_USR argument may only have been resolved earlier
1234 * by smp_resolve_args().
1235 */
Thierry FOURNIER348971e2013-11-21 10:50:10 +01001236 if (expr->smp->arg_p->unresolved) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001237 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 +02001238 p->id, *acl->name ? "" : "anonymous ", acl->name, expr->kw,
1239 expr->smp->arg_p->data.str.area);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001240 cfgerr++;
Willy Tarreau496aa012012-06-01 10:38:29 +02001241 continue;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001242 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001243
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001244 if (LIST_ISEMPTY(&expr->pat.head)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("proxy %s: acl %s %s(): no groups specified.\n",
1246 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001247 cfgerr++;
1248 continue;
1249 }
1250
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001251 /* For each pattern, check if the group exists. */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001252 list_for_each_entry(pexp, &expr->pat.head, list) {
1253 if (LIST_ISEMPTY(&pexp->expr->patterns)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001254 ha_alert("proxy %s: acl %s %s(): no groups specified.\n",
1255 p->id, acl->name, expr->kw);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001256 cfgerr++;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001257 continue;
1258 }
1259
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001260 list_for_each_entry(pattern, &pexp->expr->patterns, list) {
1261 /* this keyword only has one argument */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001262 if (!check_group(expr->smp->arg_p->data.usr, pattern->pat.ptr.str)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001263 ha_alert("proxy %s: acl %s %s(): invalid group '%s'.\n",
1264 p->id, acl->name, expr->kw, pattern->pat.ptr.str);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001265 cfgerr++;
1266 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001267 }
1268 }
1269 }
1270 }
1271 }
1272
1273 return cfgerr;
1274}
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001275
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001276/* initializes ACLs by resolving the sample fetch names they rely upon.
1277 * Returns 0 on success, otherwise an error.
1278 */
1279int init_acl()
1280{
1281 int err = 0;
1282 int index;
1283 const char *name;
1284 struct acl_kw_list *kwl;
1285 struct sample_fetch *smp;
1286
1287 list_for_each_entry(kwl, &acl_keywords.list, list) {
1288 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1289 name = kwl->kw[index].fetch_kw;
1290 if (!name)
1291 name = kwl->kw[index].kw;
1292
1293 smp = find_sample_fetch(name, strlen(name));
1294 if (!smp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001295 ha_alert("Critical internal error: ACL keyword '%s' relies on sample fetch '%s' which was not registered!\n",
1296 kwl->kw[index].kw, name);
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001297 err++;
1298 continue;
1299 }
1300 kwl->kw[index].smp = smp;
1301 }
1302 }
1303 return err;
1304}
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001305
Willy Tarreaua84d3742007-05-07 00:36:48 +02001306/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001307/* All supported sample and ACL keywords must be declared here. */
1308/************************************************************************/
1309
1310/* Note: must not be declared <const> as its list will be overwritten.
Willy Tarreau61612d42012-04-19 18:42:05 +02001311 * Please take care of keeping this list alphabetically sorted.
1312 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001313static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001314 { /* END */ },
Willy Tarreaua84d3742007-05-07 00:36:48 +02001315}};
1316
Willy Tarreau0108d902018-11-25 19:14:37 +01001317INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreaua84d3742007-05-07 00:36:48 +02001318
1319/*
1320 * Local variables:
1321 * c-indent-level: 8
1322 * c-basic-offset: 8
1323 * End:
1324 */