blob: 488d75aa8cbd754e5ea5dafc36419cf6ac83f29a [file] [log] [blame]
Willy Tarreaua84d3742007-05-07 00:36:48 +02001/*
Willy Tarreau2bbba412010-01-28 16:48:33 +01002 * include/proto/acl.h
3 * This file provides interface definitions for ACL manipulation.
4 *
5 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaua84d3742007-05-07 00:36:48 +020021
22#ifndef _PROTO_ACL_H
23#define _PROTO_ACL_H
24
25#include <common/config.h>
26#include <types/acl.h>
27
28/*
29 * FIXME: we need destructor functions too !
30 */
31
Willy Tarreau11382812008-07-09 16:18:21 +020032/* Negate an acl result. This turns (ACL_PAT_FAIL, ACL_PAT_MISS, ACL_PAT_PASS)
33 * into (ACL_PAT_PASS, ACL_PAT_MISS, ACL_PAT_FAIL).
34 */
35static inline int acl_neg(int res)
36{
37 return (3 >> res);
38}
39
40/* Convert an acl result to a boolean. Only ACL_PAT_PASS returns 1. */
41static inline int acl_pass(int res)
42{
43 return (res >> 1);
44}
Willy Tarreaua84d3742007-05-07 00:36:48 +020045
46/* Return a pointer to the ACL <name> within the list starting at <head>, or
47 * NULL if not found.
48 */
49struct acl *find_acl_by_name(const char *name, struct list *head);
50
51/* Return a pointer to the ACL keyword <kw> within the list starting at <head>,
52 * or NULL if not found. Note that if <kw> contains an opening parenthesis,
53 * only the left part of it is checked.
54 */
55struct acl_keyword *find_acl_kw(const char *kw);
56
57/* Parse an ACL expression starting at <args>[0], and return it.
58 * Right now, the only accepted syntax is :
59 * <subject> [<value>...]
60 */
61struct acl_expr *parse_acl_expr(const char **args);
62
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020063/* Purge everything in the acl <acl>, then return <acl>. */
64struct acl *prune_acl(struct acl *acl);
65
Willy Tarreaua84d3742007-05-07 00:36:48 +020066/* Parse an ACL with the name starting at <args>[0], and with a list of already
67 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
68 * A pointer to that ACL is returned.
69 *
70 * args syntax: <aclname> <acl_expr>
71 */
72struct acl *parse_acl(const char **args, struct list *known_acl);
73
74/* Purge everything in the acl_cond <cond>, then return <cond>. */
75struct acl_cond *prune_acl_cond(struct acl_cond *cond);
76
77/* Parse an ACL condition starting at <args>[0], relying on a list of already
78 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
79 * case of low memory). Supports multiple conditions separated by "or".
80 */
81struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl, int pol);
82
Willy Tarreau2bbba412010-01-28 16:48:33 +010083/* Builds an ACL condition starting at the if/unless keyword. The complete
84 * condition is returned. NULL is returned in case of error or if the first
85 * word is neither "if" nor "unless". It automatically sets the file name and
86 * the line number in the condition for better error reporting, and adds the
87 * ACL requirements to the proxy's acl_requires.
88 */
89struct acl_cond *build_acl_cond(const char *file, int line, struct proxy *px, const char **args);
90
Willy Tarreau11382812008-07-09 16:18:21 +020091/* Execute condition <cond> and return either ACL_PAT_FAIL, ACL_PAT_MISS or
92 * ACL_PAT_PASS depending on the test results. This function only computes the
93 * condition, it does not apply the polarity required by IF/UNLESS, it's up to
94 * the caller to do this.
Willy Tarreaua84d3742007-05-07 00:36:48 +020095 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +020096int acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *l4, void *l7, int dir);
Willy Tarreaua84d3742007-05-07 00:36:48 +020097
Willy Tarreaudd64f8d2008-07-27 22:02:32 +020098/* Reports a pointer to the first ACL used in condition <cond> which requires
99 * at least one of the USE_FLAGS in <require>. Returns NULL if none matches.
100 */
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100101struct acl *cond_find_require(const struct acl_cond *cond, unsigned int require);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200102
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100103/*
104 * Find targets for userlist and groups in acl. Function returns the number
105 * of errors or OK if everything is fine.
106 */
107int acl_find_targets(struct proxy *p);
108
Willy Tarreaua84d3742007-05-07 00:36:48 +0200109/* Return a pointer to the ACL <name> within the list starting at <head>, or
110 * NULL if not found.
111 */
112struct acl *find_acl_by_name(const char *name, struct list *head);
113
114/*
115 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
116 * parsing sessions.
117 */
118void acl_register_keywords(struct acl_kw_list *kwl);
119
120/*
121 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
122 */
123void acl_unregister_keywords(struct acl_kw_list *kwl);
124
125
126/*
127 *
128 * The following functions are general purpose ACL matching functions.
129 *
130 */
131
132
Willy Tarreau58393e12008-07-20 10:39:22 +0200133/* ignore the current line */
134int acl_parse_nothing(const char **text, struct acl_pattern *pattern, int *opaque);
135
Willy Tarreaua84d3742007-05-07 00:36:48 +0200136/* NB: For two strings to be identical, it is required that their lengths match */
137int acl_match_str(struct acl_test *test, struct acl_pattern *pattern);
138
139/* Checks that the integer in <test> is included between min and max */
Willy Tarreauae8b7962007-06-09 23:10:04 +0200140int acl_match_int(struct acl_test *test, struct acl_pattern *pattern);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200141
142/* Parse an integer. It is put both in min and max. */
Willy Tarreauae8b7962007-06-09 23:10:04 +0200143int acl_parse_int(const char **text, struct acl_pattern *pattern, int *opaque);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200144
Willy Tarreau4a26d2f2008-07-15 16:05:33 +0200145/* Parse an version. It is put both in min and max. */
146int acl_parse_dotted_ver(const char **text, struct acl_pattern *pattern, int *opaque);
147
Willy Tarreaua84d3742007-05-07 00:36:48 +0200148/* Parse a range of integers delimited by either ':' or '-'. If only one
149 * integer is read, it is set as both min and max.
150 */
Willy Tarreauae8b7962007-06-09 23:10:04 +0200151int acl_parse_range(const char **text, struct acl_pattern *pattern, int *opaque);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200152
153/* Parse a string. It is allocated and duplicated. */
Willy Tarreauae8b7962007-06-09 23:10:04 +0200154int acl_parse_str(const char **text, struct acl_pattern *pattern, int *opaque);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200155
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100156/* Parse and concatenate strings into one. It is allocated and duplicated. */
157int acl_parse_strcat(const char **text, struct acl_pattern *pattern, int *opaque);
158
Willy Tarreauf3d25982007-05-08 22:45:09 +0200159/* Parse a regex. It is allocated. */
Willy Tarreauae8b7962007-06-09 23:10:04 +0200160int acl_parse_reg(const char **text, struct acl_pattern *pattern, int *opaque);
Willy Tarreauf3d25982007-05-08 22:45:09 +0200161
Willy Tarreaua67fad92007-05-08 19:50:09 +0200162/* Parse an IP address and an optional mask in the form addr[/mask].
163 * The addr may either be an IPv4 address or a hostname. The mask
164 * may either be a dotted mask or a number of bits. Returns 1 if OK,
165 * otherwise 0.
166 */
Willy Tarreauae8b7962007-06-09 23:10:04 +0200167int acl_parse_ip(const char **text, struct acl_pattern *pattern, int *opaque);
Willy Tarreaua67fad92007-05-08 19:50:09 +0200168
Willy Tarreau58393e12008-07-20 10:39:22 +0200169/* always fake a data retrieval */
170int acl_fetch_nothing(struct proxy *px, struct session *l4, void *l7, int dir,
171 struct acl_expr *expr, struct acl_test *test);
172
173/* always return false */
174int acl_match_nothing(struct acl_test *test, struct acl_pattern *pattern);
175
Willy Tarreaua84d3742007-05-07 00:36:48 +0200176/* Checks that the pattern matches the end of the tested string. */
177int acl_match_end(struct acl_test *test, struct acl_pattern *pattern);
178
179/* Checks that the pattern matches the beginning of the tested string. */
180int acl_match_beg(struct acl_test *test, struct acl_pattern *pattern);
181
182/* Checks that the pattern is included inside the tested string. */
183int acl_match_sub(struct acl_test *test, struct acl_pattern *pattern);
184
185/* Checks that the pattern is included inside the tested string, but enclosed
186 * between slashes or at the beginning or end of the string. Slashes at the
187 * beginning or end of the pattern are ignored.
188 */
189int acl_match_dir(struct acl_test *test, struct acl_pattern *pattern);
190
191/* Checks that the pattern is included inside the tested string, but enclosed
192 * between dots or at the beginning or end of the string. Dots at the beginning
193 * or end of the pattern are ignored.
194 */
195int acl_match_dom(struct acl_test *test, struct acl_pattern *pattern);
196
Willy Tarreaua67fad92007-05-08 19:50:09 +0200197/* Check that the IPv4 address in <test> matches the IP/mask in pattern */
198int acl_match_ip(struct acl_test *test, struct acl_pattern *pattern);
199
Willy Tarreauf3d25982007-05-08 22:45:09 +0200200/* Executes a regex. It needs to change the data. If it is marked READ_ONLY
201 * then it will be allocated and duplicated in place so that others may use
202 * it later on. Note that this is embarrassing because we always try to avoid
203 * allocating memory at run time.
204 */
205int acl_match_reg(struct acl_test *test, struct acl_pattern *pattern);
206
Willy Tarreaua84d3742007-05-07 00:36:48 +0200207#endif /* _PROTO_ACL_H */
208
209/*
210 * Local variables:
211 * c-indent-level: 8
212 * c-basic-offset: 8
213 * End:
214 */