blob: 82782d413e48ebd32e428ead398087679d1248a4 [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 *
Willy Tarreaud4c33c82013-01-07 21:59:07 +01005 * Copyright (C) 2000-2013 Willy Tarreau - w@1wt.eu
Willy Tarreau2bbba412010-01-28 16:48:33 +01006 *
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>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020027#include <proto/sample.h>
Willy Tarreaua84d3742007-05-07 00:36:48 +020028
29/*
30 * FIXME: we need destructor functions too !
31 */
32
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010033/* Negate an acl result. This turns (ACL_MATCH_FAIL, ACL_MATCH_MISS,
34 * ACL_MATCH_PASS) into (ACL_MATCH_PASS, ACL_MATCH_MISS, ACL_MATCH_FAIL).
Willy Tarreau11382812008-07-09 16:18:21 +020035 */
Willy Tarreau0cba6072013-11-28 22:21:02 +010036static inline enum acl_test_res acl_neg(enum acl_test_res res)
Willy Tarreau11382812008-07-09 16:18:21 +020037{
38 return (3 >> res);
39}
40
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010041/* Convert an acl result to a boolean. Only ACL_MATCH_PASS returns 1. */
Willy Tarreau0cba6072013-11-28 22:21:02 +010042static inline int acl_pass(enum acl_test_res res)
Willy Tarreau11382812008-07-09 16:18:21 +020043{
44 return (res >> 1);
45}
Willy Tarreaua84d3742007-05-07 00:36:48 +020046
47/* Return a pointer to the ACL <name> within the list starting at <head>, or
48 * NULL if not found.
49 */
50struct acl *find_acl_by_name(const char *name, struct list *head);
51
52/* Return a pointer to the ACL keyword <kw> within the list starting at <head>,
53 * or NULL if not found. Note that if <kw> contains an opening parenthesis,
54 * only the left part of it is checked.
55 */
56struct acl_keyword *find_acl_kw(const char *kw);
57
58/* Parse an ACL expression starting at <args>[0], and return it.
59 * Right now, the only accepted syntax is :
60 * <subject> [<value>...]
61 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +020062struct acl_expr *parse_acl_expr(const char **args, char **err, struct arg_list *al);
Willy Tarreaua84d3742007-05-07 00:36:48 +020063
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +020064/* Purge everything in the acl <acl>, then return <acl>. */
65struct acl *prune_acl(struct acl *acl);
66
Willy Tarreaua84d3742007-05-07 00:36:48 +020067/* Parse an ACL with the name starting at <args>[0], and with a list of already
68 * known ACLs in <acl>. If the ACL was not in the list, it will be added.
69 * A pointer to that ACL is returned.
70 *
71 * args syntax: <aclname> <acl_expr>
72 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +020073struct acl *parse_acl(const char **args, struct list *known_acl, char **err, struct arg_list *al);
Willy Tarreaua84d3742007-05-07 00:36:48 +020074
75/* Purge everything in the acl_cond <cond>, then return <cond>. */
76struct acl_cond *prune_acl_cond(struct acl_cond *cond);
77
78/* Parse an ACL condition starting at <args>[0], relying on a list of already
79 * known ACLs passed in <known_acl>. The new condition is returned (or NULL in
80 * case of low memory). Supports multiple conditions separated by "or".
81 */
Willy Tarreau0cba6072013-11-28 22:21:02 +010082struct acl_cond *parse_acl_cond(const char **args, struct list *known_acl,
83 enum acl_cond_pol pol, char **err, struct arg_list *al);
Willy Tarreaua84d3742007-05-07 00:36:48 +020084
Willy Tarreau2bbba412010-01-28 16:48:33 +010085/* Builds an ACL condition starting at the if/unless keyword. The complete
86 * condition is returned. NULL is returned in case of error or if the first
87 * word is neither "if" nor "unless". It automatically sets the file name and
Willy Tarreau25320b22013-03-24 07:22:08 +010088 * the line number in the condition for better error reporting, and sets the
89 * HTTP initialization requirements in the proxy. If <err> is not NULL, it will
Willy Tarreaub7451bb2012-04-27 12:38:15 +020090 * be set to an error message upon errors, that the caller will have to free.
Willy Tarreau2bbba412010-01-28 16:48:33 +010091 */
Willy Tarreaub7451bb2012-04-27 12:38:15 +020092struct acl_cond *build_acl_cond(const char *file, int line, struct proxy *px, const char **args, char **err);
Willy Tarreau2bbba412010-01-28 16:48:33 +010093
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010094/* Execute condition <cond> and return either ACL_TEST_FAIL, ACL_TEST_MISS or
95 * ACL_TEST_PASS depending on the test results. ACL_TEST_MISS may only be
96 * returned if <opt> does not contain SMP_OPT_FINAL, indicating that incomplete
97 * data is being examined. The function automatically sets SMP_OPT_ITERATE. This
98 * function only computes the condition, it does not apply the polarity required
99 * by IF/UNLESS, it's up to the caller to do this.
Willy Tarreaua84d3742007-05-07 00:36:48 +0200100 */
Willy Tarreau0cba6072013-11-28 22:21:02 +0100101enum acl_test_res acl_exec_cond(struct acl_cond *cond, struct proxy *px, struct session *l4, void *l7, unsigned int opt);
Willy Tarreaua84d3742007-05-07 00:36:48 +0200102
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100103/* Returns a pointer to the first ACL conflicting with usage at place <where>
104 * which is one of the SMP_VAL_* bits indicating a check place, or NULL if
105 * no conflict is found. Only full conflicts are detected (ACL is not usable).
106 * Use the next function to check for useless keywords.
107 */
108const struct acl *acl_cond_conflicts(const struct acl_cond *cond, unsigned int where);
109
110/* Returns a pointer to the first ACL and its first keyword to conflict with
111 * usage at place <where> which is one of the SMP_VAL_* bits indicating a check
112 * place. Returns true if a conflict is found, with <acl> and <kw> set (if non
113 * null), or false if not conflict is found. The first useless keyword is
114 * returned.
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200115 */
Willy Tarreau93fddf12013-03-31 22:59:32 +0200116int acl_cond_kw_conflicts(const struct acl_cond *cond, unsigned int where, struct acl const **acl, char const **kw);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200117
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100118/*
119 * Find targets for userlist and groups in acl. Function returns the number
120 * of errors or OK if everything is fine.
121 */
122int acl_find_targets(struct proxy *p);
123
Willy Tarreaua84d3742007-05-07 00:36:48 +0200124/* Return a pointer to the ACL <name> within the list starting at <head>, or
125 * NULL if not found.
126 */
127struct acl *find_acl_by_name(const char *name, struct list *head);
128
129/*
130 * Registers the ACL keyword list <kwl> as a list of valid keywords for next
131 * parsing sessions.
132 */
133void acl_register_keywords(struct acl_kw_list *kwl);
134
135/*
136 * Unregisters the ACL keyword list <kwl> from the list of valid keywords.
137 */
138void acl_unregister_keywords(struct acl_kw_list *kwl);
139
Willy Tarreau8ed669b2013-01-11 15:49:37 +0100140/* initializes ACLs by resolving the sample fetch names they rely upon.
141 * Returns 0 on success, otherwise an error.
142 */
143int init_acl();
144
Willy Tarreauf3d25982007-05-08 22:45:09 +0200145
Willy Tarreaua84d3742007-05-07 00:36:48 +0200146#endif /* _PROTO_ACL_H */
147
148/*
149 * Local variables:
150 * c-indent-level: 8
151 * c-basic-offset: 8
152 * End:
153 */