Starts a "match" filter that compares a field of the query with a given value.
[apps/pfixtools.git] / postlicyd / match.c
1 /******************************************************************************/
2 /*          pfixtools: a collection of postfix related tools                  */
3 /*          ~~~~~~~~~                                                         */
4 /*  ________________________________________________________________________  */
5 /*                                                                            */
6 /*  Redistribution and use in source and binary forms, with or without        */
7 /*  modification, are permitted provided that the following conditions        */
8 /*  are met:                                                                  */
9 /*                                                                            */
10 /*  1. Redistributions of source code must retain the above copyright         */
11 /*     notice, this list of conditions and the following disclaimer.          */
12 /*  2. Redistributions in binary form must reproduce the above copyright      */
13 /*     notice, this list of conditions and the following disclaimer in the    */
14 /*     documentation and/or other materials provided with the distribution.   */
15 /*  3. The names of its contributors may not be used to endorse or promote    */
16 /*     products derived from this software without specific prior written     */
17 /*     permission.                                                            */
18 /*                                                                            */
19 /*  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
20 /*  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
21 /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        */
22 /*  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS    */
23 /*  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR    */
24 /*  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF      */
25 /*  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  */
26 /*  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN   */
27 /*  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)   */
28 /*  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF    */
29 /*  THE POSSIBILITY OF SUCH DAMAGE.                                           */
30 /******************************************************************************/
31
32 /*
33  * Copyright © 2008 Florent Bruneau
34  */
35
36 #include "filter.h"
37 #include "str.h"
38 #include "policy_tokens.h"
39
40 typedef struct match_condition_t {
41     postlicyd_token field;
42     bool case_sensitive;
43     enum {
44         MATCH_UNKNOWN  = 0,
45         MATCH_EQUAL,
46         MATCH_DIFFER,
47         MATCH_CONTAINS,
48         MATCH_CONTAINED,
49         MATCH_EMPTY,
50     } condition;
51
52     char *value;
53     ssize_t value_len;
54 } match_condition_t;
55 ARRAY(match_condition_t)
56
57 #define CONDITION_INIT { PTK_UNKNOWN, false, MATCH_UNKNOWN, NULL, 0 }
58
59 typedef struct match_config_t {
60     A(match_condition_t) conditions;
61     bool match_all;
62 } match_config_t;
63
64 static match_config_t *match_config_new(void)
65 {
66     return p_new(match_config_t, 1);
67 }
68
69 static inline void match_condition_wipe(match_condition_t *condition)
70 {
71     p_delete(&condition->value);
72     condition->value_len = 0;
73 }
74
75 static void match_config_delete(match_config_t **config)
76 {
77     if (*config) {
78         array_deep_wipe((*config)->conditions, match_condition_wipe);
79         p_delete(config);
80     }
81 }
82
83 static bool match_filter_constructor(filter_t *filter)
84 {
85     match_config_t *config = match_config_new();
86
87 #define PARSE_CHECK(Expr, Str, ...)                                            \
88     if (!(Expr)) {                                                             \
89         syslog(LOG_ERR, Str, ##__VA_ARGS__);                                   \
90         match_config_delete(&config);                                        \
91         return false;                                                          \
92     }
93
94     foreach (filter_param_t *param, filter->params) {
95         switch (param->type) {
96           FILTER_PARAM_PARSE_BOOLEAN(MATCH_ALL, config->match_all);
97
98           /* condition parameter is:
99            *  field_name OPERATOR value.
100            *  valid operators are:
101            *    == field_name is strictly equal to
102            *    =i field_name is case insensitively equal to
103            *    != field_name is not equal to
104            *    !i field_name is not case insensitively equal to
105            *    >= field_name contains
106            *    >i field_name contains case insensitively
107            *    <= field_name is contained
108            *    <i field_name is contained case insensitively
109            *    #= field_name is empty or not set
110            *    #i field_name is not empty
111            */
112           case ATK_CONDITION: {
113 #define     IS_OP_START(N)                                                        \
114               ((N) == '=' || (N) == '!' || (N) == '>' || (N) == '<' || (N) == '#')
115 #define     IS_OP_END(N)                                                          \
116               ((N) == '=' || (N) == 'i')
117             match_condition_t condition = CONDITION_INIT;
118             const char *p = m_strnextsp(param->value);
119             const char *n = p + 1;
120             PARSE_CHECK(isalnum(*p), "invalid field name");
121             for (n = p + 1 ; *n && (isalnum(*n) || *n == '_') ; ++n);
122             PARSE_CHECK(*n &&
123                         (isspace(*n) || IS_OP_START(*n)),
124                         "invalid condition, expected operator after field name");
125             condition.field = policy_tokenize(p, n - p);
126             PARSE_CHECK(condition.field >= PTK_HELO_NAME
127                         && condition.field < PTK_SMTPD_ACCESS_POLICY,
128                         "invalid field name %.*s", n - p, p);
129             p = m_strnextsp(n);
130             n = p + 1;
131             PARSE_CHECK(IS_OP_START(*p) && IS_OP_END(*n),
132                         "invalid operator %2s", p);
133             switch (*p) {
134 #define       CASE_OP(C, Value)                                                         \
135               case C:                                                                   \
136                 condition.condition = MATCH_ ## Value;                                  \
137                 PARSE_CHECK(*n == '=' || *n == 'i', "invalid operator modifier %c", *n);\
138                 condition.case_sensitive = !!(*n == '=');                               \
139                 break;
140               CASE_OP('=', EQUAL);
141               CASE_OP('!', DIFFER);
142               CASE_OP('>', CONTAINS);
143               CASE_OP('<', CONTAINED);
144               CASE_OP('1', EMPTY);
145 #undef        CASE_OP
146             }
147             PARSE_CHECK(condition.condition != MATCH_UNKNOWN,
148                         "invalid operator");
149             if (condition.condition != MATCH_EMPTY) {
150                 p = m_strnextsp(n + 1);
151                 PARSE_CHECK(*p, "no value defined to check the condition");
152                 condition.value_len = param->value_len - (p - param->value);
153                 condition.value     = p_dupstr(p, condition.value_len);
154             }
155             array_add(config->conditions, condition);
156           } break;
157
158           default: break;
159         }
160     }}
161
162     PARSE_CHECK(config->conditions.len > 0,
163                 "no condition defined");
164     filter->data = config;
165     return true;
166 }
167
168 static void match_filter_destructor(filter_t *filter)
169 {
170     match_config_t *config = filter->data;
171     match_config_delete(&config);
172     filter->data = config;
173 }
174
175 static inline bool match_condition(const match_condition_t *cond, const query_t *query)
176 {
177 //    const char *field = NULL;
178     return true;
179 }
180
181 static filter_result_t match_filter(const filter_t *filter, const query_t *query)
182 {
183     const match_config_t *config = filter->data;
184     foreach (const match_condition_t *condition, config->conditions) {
185         bool r = match_condition(condition, query);
186         if (!r && config->match_all) {
187             return HTK_FALSE;
188         } else if (r && !(config->match_all)) {
189             return HTK_TRUE;
190         }
191     }}
192     if (config->match_all) {
193         return HTK_TRUE;
194     } else {
195         return HTK_FALSE;
196     }
197 }
198
199 static int match_init(void)
200 {
201     filter_type_t type =  filter_register("match", match_filter_constructor,
202                                           match_filter_destructor, match_filter);
203     /* Hooks.
204      */
205     (void)filter_hook_register(type, "abort");
206     (void)filter_hook_register(type, "error");
207     (void)filter_hook_register(type, "true");
208     (void)filter_hook_register(type, "false");
209
210     /* Parameters.
211      */
212     (void)filter_param_register(type, "match_all");
213     (void)filter_param_register(type, "condition");
214     return 0;
215 }
216 module_init(match_init);