blob: 9132bc3ca0418eb5c3f2a7d84bf2eeda11608aa5 [file] [log] [blame]
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001/*
2 * Pattern management functions.
3 *
4 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
5 *
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
13#include <ctype.h>
14#include <stdio.h>
Jerome Magnin556a94a2020-01-17 18:01:20 +010015#include <errno.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010016
17#include <common/config.h>
18#include <common/standard.h>
19
20#include <types/global.h>
21#include <types/pattern.h>
22
Thierry FOURNIER46006bd2014-03-21 21:45:15 +010023#include <proto/log.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010024#include <proto/pattern.h>
Thierry FOURNIERe3ded592013-12-06 15:36:54 +010025#include <proto/sample.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010026
27#include <ebsttree.h>
Willy Tarreauf3045d22015-04-29 16:24:50 +020028#include <import/lru.h>
29#include <import/xxhash.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010030
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010031char *pat_match_names[PAT_MATCH_NUM] = {
32 [PAT_MATCH_FOUND] = "found",
33 [PAT_MATCH_BOOL] = "bool",
34 [PAT_MATCH_INT] = "int",
35 [PAT_MATCH_IP] = "ip",
36 [PAT_MATCH_BIN] = "bin",
37 [PAT_MATCH_LEN] = "len",
38 [PAT_MATCH_STR] = "str",
39 [PAT_MATCH_BEG] = "beg",
40 [PAT_MATCH_SUB] = "sub",
41 [PAT_MATCH_DIR] = "dir",
42 [PAT_MATCH_DOM] = "dom",
43 [PAT_MATCH_END] = "end",
44 [PAT_MATCH_REG] = "reg",
Thierry Fournier8feaa662016-02-10 22:55:20 +010045 [PAT_MATCH_REGM] = "regm",
Thierry FOURNIERed66c292013-11-28 11:05:19 +010046};
47
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +020048int (*pat_parse_fcts[PAT_MATCH_NUM])(const char *, struct pattern *, int, char **) = {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010049 [PAT_MATCH_FOUND] = pat_parse_nothing,
50 [PAT_MATCH_BOOL] = pat_parse_nothing,
51 [PAT_MATCH_INT] = pat_parse_int,
52 [PAT_MATCH_IP] = pat_parse_ip,
53 [PAT_MATCH_BIN] = pat_parse_bin,
Thierry FOURNIER5d344082014-01-27 14:19:53 +010054 [PAT_MATCH_LEN] = pat_parse_int,
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010055 [PAT_MATCH_STR] = pat_parse_str,
56 [PAT_MATCH_BEG] = pat_parse_str,
57 [PAT_MATCH_SUB] = pat_parse_str,
58 [PAT_MATCH_DIR] = pat_parse_str,
59 [PAT_MATCH_DOM] = pat_parse_str,
60 [PAT_MATCH_END] = pat_parse_str,
61 [PAT_MATCH_REG] = pat_parse_reg,
Thierry Fournier8feaa662016-02-10 22:55:20 +010062 [PAT_MATCH_REGM] = pat_parse_reg,
Thierry FOURNIERed66c292013-11-28 11:05:19 +010063};
64
Thierry FOURNIERb9b08462013-12-13 15:12:32 +010065int (*pat_index_fcts[PAT_MATCH_NUM])(struct pattern_expr *, struct pattern *, char **) = {
66 [PAT_MATCH_FOUND] = pat_idx_list_val,
67 [PAT_MATCH_BOOL] = pat_idx_list_val,
68 [PAT_MATCH_INT] = pat_idx_list_val,
69 [PAT_MATCH_IP] = pat_idx_tree_ip,
70 [PAT_MATCH_BIN] = pat_idx_list_ptr,
71 [PAT_MATCH_LEN] = pat_idx_list_val,
72 [PAT_MATCH_STR] = pat_idx_tree_str,
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +020073 [PAT_MATCH_BEG] = pat_idx_tree_pfx,
Thierry FOURNIERb9b08462013-12-13 15:12:32 +010074 [PAT_MATCH_SUB] = pat_idx_list_str,
75 [PAT_MATCH_DIR] = pat_idx_list_str,
76 [PAT_MATCH_DOM] = pat_idx_list_str,
77 [PAT_MATCH_END] = pat_idx_list_str,
78 [PAT_MATCH_REG] = pat_idx_list_reg,
Thierry Fournier8feaa662016-02-10 22:55:20 +010079 [PAT_MATCH_REGM] = pat_idx_list_regm,
Thierry FOURNIERb9b08462013-12-13 15:12:32 +010080};
81
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +010082void (*pat_delete_fcts[PAT_MATCH_NUM])(struct pattern_expr *, struct pat_ref_elt *) = {
Thierry FOURNIERb1136502014-01-15 11:38:49 +010083 [PAT_MATCH_FOUND] = pat_del_list_val,
84 [PAT_MATCH_BOOL] = pat_del_list_val,
85 [PAT_MATCH_INT] = pat_del_list_val,
86 [PAT_MATCH_IP] = pat_del_tree_ip,
87 [PAT_MATCH_BIN] = pat_del_list_ptr,
88 [PAT_MATCH_LEN] = pat_del_list_val,
89 [PAT_MATCH_STR] = pat_del_tree_str,
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +020090 [PAT_MATCH_BEG] = pat_del_tree_str,
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +010091 [PAT_MATCH_SUB] = pat_del_list_ptr,
92 [PAT_MATCH_DIR] = pat_del_list_ptr,
93 [PAT_MATCH_DOM] = pat_del_list_ptr,
94 [PAT_MATCH_END] = pat_del_list_ptr,
Thierry FOURNIERb1136502014-01-15 11:38:49 +010095 [PAT_MATCH_REG] = pat_del_list_reg,
Thierry Fournier8feaa662016-02-10 22:55:20 +010096 [PAT_MATCH_REGM] = pat_del_list_reg,
Thierry FOURNIERb1136502014-01-15 11:38:49 +010097};
98
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +010099void (*pat_prune_fcts[PAT_MATCH_NUM])(struct pattern_expr *) = {
100 [PAT_MATCH_FOUND] = pat_prune_val,
101 [PAT_MATCH_BOOL] = pat_prune_val,
102 [PAT_MATCH_INT] = pat_prune_val,
103 [PAT_MATCH_IP] = pat_prune_val,
104 [PAT_MATCH_BIN] = pat_prune_ptr,
105 [PAT_MATCH_LEN] = pat_prune_val,
106 [PAT_MATCH_STR] = pat_prune_ptr,
107 [PAT_MATCH_BEG] = pat_prune_ptr,
108 [PAT_MATCH_SUB] = pat_prune_ptr,
109 [PAT_MATCH_DIR] = pat_prune_ptr,
110 [PAT_MATCH_DOM] = pat_prune_ptr,
111 [PAT_MATCH_END] = pat_prune_ptr,
112 [PAT_MATCH_REG] = pat_prune_reg,
Thierry Fournier8feaa662016-02-10 22:55:20 +0100113 [PAT_MATCH_REGM] = pat_prune_reg,
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100114};
115
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100116struct pattern *(*pat_match_fcts[PAT_MATCH_NUM])(struct sample *, struct pattern_expr *, int) = {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100117 [PAT_MATCH_FOUND] = NULL,
118 [PAT_MATCH_BOOL] = pat_match_nothing,
119 [PAT_MATCH_INT] = pat_match_int,
120 [PAT_MATCH_IP] = pat_match_ip,
121 [PAT_MATCH_BIN] = pat_match_bin,
122 [PAT_MATCH_LEN] = pat_match_len,
123 [PAT_MATCH_STR] = pat_match_str,
124 [PAT_MATCH_BEG] = pat_match_beg,
125 [PAT_MATCH_SUB] = pat_match_sub,
126 [PAT_MATCH_DIR] = pat_match_dir,
127 [PAT_MATCH_DOM] = pat_match_dom,
128 [PAT_MATCH_END] = pat_match_end,
129 [PAT_MATCH_REG] = pat_match_reg,
Thierry Fournier8feaa662016-02-10 22:55:20 +0100130 [PAT_MATCH_REGM] = pat_match_regm,
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100131};
132
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100133/* Just used for checking configuration compatibility */
134int pat_match_types[PAT_MATCH_NUM] = {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200135 [PAT_MATCH_FOUND] = SMP_T_SINT,
136 [PAT_MATCH_BOOL] = SMP_T_SINT,
137 [PAT_MATCH_INT] = SMP_T_SINT,
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100138 [PAT_MATCH_IP] = SMP_T_ADDR,
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100139 [PAT_MATCH_BIN] = SMP_T_BIN,
140 [PAT_MATCH_LEN] = SMP_T_STR,
141 [PAT_MATCH_STR] = SMP_T_STR,
142 [PAT_MATCH_BEG] = SMP_T_STR,
143 [PAT_MATCH_SUB] = SMP_T_STR,
144 [PAT_MATCH_DIR] = SMP_T_STR,
145 [PAT_MATCH_DOM] = SMP_T_STR,
146 [PAT_MATCH_END] = SMP_T_STR,
147 [PAT_MATCH_REG] = SMP_T_STR,
Thierry Fournier8feaa662016-02-10 22:55:20 +0100148 [PAT_MATCH_REGM] = SMP_T_STR,
Thierry FOURNIERe3ded592013-12-06 15:36:54 +0100149};
150
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +0100151/* this struct is used to return information */
Emeric Brunb5997f72017-07-03 11:34:05 +0200152static THREAD_LOCAL struct pattern static_pattern;
153static THREAD_LOCAL struct sample_data static_sample_data;
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +0100154
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100155/* This is the root of the list of all pattern_ref avalaibles. */
156struct list pattern_reference = LIST_HEAD_INIT(pattern_reference);
157
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200158static THREAD_LOCAL struct lru64_head *pat_lru_tree;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200159static unsigned long long pat_lru_seed;
160
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100161/*
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100162 *
163 * The following functions are not exported and are used by internals process
164 * of pattern matching
165 *
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100166 */
167
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100168/* Background: Fast way to find a zero byte in a word
169 * http://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
170 * hasZeroByte = (v - 0x01010101UL) & ~v & 0x80808080UL;
171 *
172 * To look for 4 different byte values, xor the word with those bytes and
173 * then check for zero bytes:
174 *
175 * v = (((unsigned char)c * 0x1010101U) ^ delimiter)
176 * where <delimiter> is the 4 byte values to look for (as an uint)
177 * and <c> is the character that is being tested
178 */
179static inline unsigned int is_delimiter(unsigned char c, unsigned int mask)
180{
181 mask ^= (c * 0x01010101); /* propagate the char to all 4 bytes */
182 return (mask - 0x01010101) & ~mask & 0x80808080U;
183}
184
185static inline unsigned int make_4delim(unsigned char d1, unsigned char d2, unsigned char d3, unsigned char d4)
186{
187 return d1 << 24 | d2 << 16 | d3 << 8 | d4;
188}
189
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100190
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100191/*
192 *
193 * These functions are exported and may be used by any other component.
194 *
Willy Tarreau5def8ef2014-08-29 15:19:33 +0200195 * The following functions are used for parsing pattern matching input value.
196 * The <text> contain the string to be parsed. <pattern> must be a preallocated
197 * pattern. The pat_parse_* functions fill this structure with the parsed value.
198 * <err> is filled with an error message built with memprintf() function. It is
199 * allowed to use a trash as a temporary storage for the returned pattern, as
200 * the next call after these functions will be pat_idx_*.
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100201 *
Willy Tarreau5def8ef2014-08-29 15:19:33 +0200202 * In success case, the pat_parse_* function returns 1. If the function
203 * fails, it returns 0 and <err> is filled.
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100204 */
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100205
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100206/* ignore the current line */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200207int pat_parse_nothing(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100208{
209 return 1;
210}
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100211
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100212/* Parse a string. It is allocated and duplicated. */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200213int pat_parse_str(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100214{
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100215 pattern->type = SMP_T_STR;
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100216 pattern->ptr.str = (char *)text;
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100217 pattern->len = strlen(text);
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100218 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100219}
220
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100221/* Parse a binary written in hexa. It is allocated. */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200222int pat_parse_bin(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100223{
Willy Tarreau83061a82018-07-13 11:56:34 +0200224 struct buffer *trash;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100225
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100226 pattern->type = SMP_T_BIN;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100227 trash = get_trash_chunk();
228 pattern->len = trash->size;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200229 pattern->ptr.str = trash->area;
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100230 return !!parse_binary(text, &pattern->ptr.str, &pattern->len, err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100231}
232
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100233/* Parse a regex. It is allocated. */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200234int pat_parse_reg(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100235{
Thierry FOURNIER0b6d15f2014-01-29 19:35:16 +0100236 pattern->ptr.str = (char *)text;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100237 return 1;
238}
239
240/* Parse a range of positive integers delimited by either ':' or '-'. If only
241 * one integer is read, it is set as both min and max. An operator may be
242 * specified as the prefix, among this list of 5 :
243 *
244 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
245 *
246 * The default operator is "eq". It supports range matching. Ranges are
247 * rejected for other operators. The operator may be changed at any time.
248 * The operator is stored in the 'opaque' argument.
249 *
250 * If err is non-NULL, an error message will be returned there on errors and
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100251 * the caller will have to free it. The function returns zero on error, and
252 * non-zero on success.
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100253 *
254 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200255int pat_parse_int(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100256{
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100257 const char *ptr = text;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100258
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200259 pattern->type = SMP_T_SINT;
Thierry FOURNIER7148ce62013-12-06 19:06:43 +0100260
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100261 /* Empty string is not valid */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100262 if (!*text)
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100263 goto not_valid_range;
264
265 /* Search ':' or '-' separator. */
266 while (*ptr != '\0' && *ptr != ':' && *ptr != '-')
267 ptr++;
268
269 /* If separator not found. */
270 if (!*ptr) {
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100271 if (strl2llrc(text, ptr - text, &pattern->val.range.min) != 0) {
272 memprintf(err, "'%s' is not a number", text);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100273 return 0;
274 }
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100275 pattern->val.range.max = pattern->val.range.min;
276 pattern->val.range.min_set = 1;
277 pattern->val.range.max_set = 1;
278 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100279 }
280
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100281 /* If the separator is the first character. */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100282 if (ptr == text && *(ptr + 1) != '\0') {
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100283 if (strl2llrc(ptr + 1, strlen(ptr + 1), &pattern->val.range.max) != 0)
284 goto not_valid_range;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100285
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100286 pattern->val.range.min_set = 0;
287 pattern->val.range.max_set = 1;
288 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100289 }
290
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100291 /* If separator is the last character. */
292 if (*(ptr + 1) == '\0') {
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100293 if (strl2llrc(text, ptr - text, &pattern->val.range.min) != 0)
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100294 goto not_valid_range;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100295
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100296 pattern->val.range.min_set = 1;
297 pattern->val.range.max_set = 0;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100298 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100299 }
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100300
301 /* Else, parse two numbers. */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100302 if (strl2llrc(text, ptr - text, &pattern->val.range.min) != 0)
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100303 goto not_valid_range;
304
305 if (strl2llrc(ptr + 1, strlen(ptr + 1), &pattern->val.range.max) != 0)
306 goto not_valid_range;
307
308 if (pattern->val.range.min > pattern->val.range.max)
309 goto not_valid_range;
310
311 pattern->val.range.min_set = 1;
312 pattern->val.range.max_set = 1;
313 return 1;
314
315 not_valid_range:
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100316 memprintf(err, "'%s' is not a valid number range", text);
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100317 return 0;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100318}
319
320/* Parse a range of positive 2-component versions delimited by either ':' or
321 * '-'. The version consists in a major and a minor, both of which must be
322 * smaller than 65536, because internally they will be represented as a 32-bit
323 * integer.
324 * If only one version is read, it is set as both min and max. Just like for
325 * pure integers, an operator may be specified as the prefix, among this list
326 * of 5 :
327 *
328 * 0:eq, 1:gt, 2:ge, 3:lt, 4:le
329 *
330 * The default operator is "eq". It supports range matching. Ranges are
331 * rejected for other operators. The operator may be changed at any time.
332 * The operator is stored in the 'opaque' argument. This allows constructs
333 * such as the following one :
334 *
335 * acl obsolete_ssl ssl_req_proto lt 3
336 * acl unsupported_ssl ssl_req_proto gt 3.1
337 * acl valid_ssl ssl_req_proto 3.0-3.1
338 *
339 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200340int pat_parse_dotted_ver(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100341{
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100342 const char *ptr = text;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100343
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200344 pattern->type = SMP_T_SINT;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100345
346 /* Search ':' or '-' separator. */
347 while (*ptr != '\0' && *ptr != ':' && *ptr != '-')
348 ptr++;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100349
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100350 /* If separator not found. */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100351 if (*ptr == '\0' && ptr > text) {
352 if (strl2llrc_dotted(text, ptr-text, &pattern->val.range.min) != 0) {
353 memprintf(err, "'%s' is not a dotted number", text);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100354 return 0;
355 }
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100356 pattern->val.range.max = pattern->val.range.min;
357 pattern->val.range.min_set = 1;
358 pattern->val.range.max_set = 1;
359 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100360 }
361
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100362 /* If the separator is the first character. */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100363 if (ptr == text && *(ptr+1) != '\0') {
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100364 if (strl2llrc_dotted(ptr+1, strlen(ptr+1), &pattern->val.range.max) != 0) {
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100365 memprintf(err, "'%s' is not a valid dotted number range", text);
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100366 return 0;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100367 }
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100368 pattern->val.range.min_set = 0;
369 pattern->val.range.max_set = 1;
370 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100371 }
372
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100373 /* If separator is the last character. */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100374 if (ptr == &text[strlen(text)-1]) {
375 if (strl2llrc_dotted(text, ptr-text, &pattern->val.range.min) != 0) {
376 memprintf(err, "'%s' is not a valid dotted number range", text);
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100377 return 0;
378 }
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100379 pattern->val.range.min_set = 1;
380 pattern->val.range.max_set = 0;
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100381 return 1;
382 }
383
384 /* Else, parse two numbers. */
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100385 if (strl2llrc_dotted(text, ptr-text, &pattern->val.range.min) != 0) {
386 memprintf(err, "'%s' is not a valid dotted number range", text);
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100387 return 0;
388 }
389 if (strl2llrc_dotted(ptr+1, strlen(ptr+1), &pattern->val.range.max) != 0) {
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100390 memprintf(err, "'%s' is not a valid dotted number range", text);
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100391 return 0;
392 }
393 if (pattern->val.range.min > pattern->val.range.max) {
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100394 memprintf(err, "'%s' is not a valid dotted number range", text);
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100395 return 0;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100396 }
Thierry FOURNIER511e9472014-01-23 17:40:34 +0100397 pattern->val.range.min_set = 1;
398 pattern->val.range.max_set = 1;
399 return 1;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100400}
401
402/* Parse an IP address and an optional mask in the form addr[/mask].
403 * The addr may either be an IPv4 address or a hostname. The mask
404 * may either be a dotted mask or a number of bits. Returns 1 if OK,
405 * otherwise 0. NOTE: IP address patterns are typed (IPV4/IPV6).
406 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200407int pat_parse_ip(const char *text, struct pattern *pattern, int mflags, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100408{
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200409 if (str2net(text, !(mflags & PAT_MF_NO_DNS) && (global.mode & MODE_STARTING),
Thierry FOURNIERfc7ac7b2014-02-11 15:23:04 +0100410 &pattern->val.ipv4.addr, &pattern->val.ipv4.mask)) {
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100411 pattern->type = SMP_T_IPV4;
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100412 return 1;
413 }
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100414 else if (str62net(text, &pattern->val.ipv6.addr, &pattern->val.ipv6.mask)) {
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100415 pattern->type = SMP_T_IPV6;
416 return 1;
417 }
418 else {
Thierry FOURNIER580c32c2014-01-24 10:58:12 +0100419 memprintf(err, "'%s' is not a valid IPv4 or IPv6 address", text);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100420 return 0;
421 }
422}
423
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100424/*
425 *
426 * These functions are exported and may be used by any other component.
427 *
Joseph Herlant4189d672018-11-15 10:22:31 -0800428 * This function just takes a sample <smp> and checks if this sample matches
429 * with the pattern <pattern>. This function returns only PAT_MATCH or
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100430 * PAT_NOMATCH.
431 *
432 */
433
434/* always return false */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100435struct pattern *pat_match_nothing(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100436{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200437 if (smp->data.u.sint) {
Thierry FOURNIERe5978bf2014-03-17 19:53:10 +0100438 if (fill) {
Thierry FOURNIER503bb092015-08-19 08:35:43 +0200439 static_pattern.data = NULL;
Thierry FOURNIERe5978bf2014-03-17 19:53:10 +0100440 static_pattern.ref = NULL;
Thierry FOURNIERe5978bf2014-03-17 19:53:10 +0100441 static_pattern.type = 0;
442 static_pattern.ptr.str = NULL;
443 }
444 return &static_pattern;
445 }
446 else
447 return NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100448}
449
450
Joseph Herlant4189d672018-11-15 10:22:31 -0800451/* NB: For two strings to be identical, it is required that their length match */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100452struct pattern *pat_match_str(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100453{
454 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100455 struct ebmb_node *node;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100456 struct pattern_tree *elt;
457 struct pattern_list *lst;
458 struct pattern *pattern;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200459 struct pattern *ret = NULL;
460 struct lru64 *lru = NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100461
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100462 /* Lookup a string in the expression's pattern tree. */
463 if (!eb_is_empty(&expr->pattern_tree)) {
Christopher Faulet135899e2020-06-30 18:52:32 +0200464 char prev = 0;
465
466 if (smp->data.u.str.data < smp->data.u.str.size) {
467 /* we may have to force a trailing zero on the test pattern and
468 * the buffer is large enough to accommodate it.
469 */
470 prev = smp->data.u.str.area[smp->data.u.str.data];
471 if (prev)
472 smp->data.u.str.area[smp->data.u.str.data] = '\0';
473 }
474 else {
475 /* Otherwise, the sample is duplicated. A trailing zero
476 * is automatically added to the string.
477 */
478 if (!smp_dup(smp))
479 return NULL;
480 }
481
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200482 node = ebst_lookup(&expr->pattern_tree, smp->data.u.str.area);
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100483 if (prev)
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200484 smp->data.u.str.area[smp->data.u.str.data] = prev;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100485 if (node) {
486 if (fill) {
487 elt = ebmb_entry(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +0200488 static_pattern.data = elt->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +0100489 static_pattern.ref = elt->ref;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200490 static_pattern.sflags = PAT_SF_TREE;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100491 static_pattern.type = SMP_T_STR;
492 static_pattern.ptr.str = (char *)elt->node.key;
493 }
494 return &static_pattern;
495 }
496 }
497
498 /* look in the list */
Willy Tarreauf3045d22015-04-29 16:24:50 +0200499 if (pat_lru_tree) {
Willy Tarreauaee93142015-05-04 17:18:42 +0200500 unsigned long long seed = pat_lru_seed ^ (long)expr;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200501
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200502 lru = lru64_get(XXH64(smp->data.u.str.area, smp->data.u.str.data, seed),
Willy Tarreauf3045d22015-04-29 16:24:50 +0200503 pat_lru_tree, expr, expr->revision);
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200504 if (lru && lru->domain) {
Emeric Brunb5997f72017-07-03 11:34:05 +0200505 ret = lru->data;
Emeric Brunb5997f72017-07-03 11:34:05 +0200506 return ret;
507 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200508 }
509
Emeric Brunb5997f72017-07-03 11:34:05 +0200510
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100511 list_for_each_entry(lst, &expr->patterns, list) {
512 pattern = &lst->pat;
513
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200514 if (pattern->len != smp->data.u.str.data)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100515 continue;
516
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200517 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200518 if ((icase && strncasecmp(pattern->ptr.str, smp->data.u.str.area, smp->data.u.str.data) == 0) ||
519 (!icase && strncmp(pattern->ptr.str, smp->data.u.str.area, smp->data.u.str.data) == 0)) {
Willy Tarreauf3045d22015-04-29 16:24:50 +0200520 ret = pattern;
521 break;
522 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100523 }
524
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200525 if (lru)
Emeric Brunb5997f72017-07-03 11:34:05 +0200526 lru64_commit(lru, ret, expr, expr->revision, NULL);
Willy Tarreauf3045d22015-04-29 16:24:50 +0200527
528 return ret;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100529}
530
531/* NB: For two binaries buf to be identical, it is required that their lengths match */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100532struct pattern *pat_match_bin(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100533{
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100534 struct pattern_list *lst;
535 struct pattern *pattern;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200536 struct pattern *ret = NULL;
537 struct lru64 *lru = NULL;
538
539 if (pat_lru_tree) {
Willy Tarreauaee93142015-05-04 17:18:42 +0200540 unsigned long long seed = pat_lru_seed ^ (long)expr;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100541
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200542 lru = lru64_get(XXH64(smp->data.u.str.area, smp->data.u.str.data, seed),
Willy Tarreauf3045d22015-04-29 16:24:50 +0200543 pat_lru_tree, expr, expr->revision);
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200544 if (lru && lru->domain) {
Emeric Brunb5997f72017-07-03 11:34:05 +0200545 ret = lru->data;
Emeric Brunb5997f72017-07-03 11:34:05 +0200546 return ret;
547 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200548 }
549
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100550 list_for_each_entry(lst, &expr->patterns, list) {
551 pattern = &lst->pat;
552
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200553 if (pattern->len != smp->data.u.str.data)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100554 continue;
555
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200556 if (memcmp(pattern->ptr.str, smp->data.u.str.area, smp->data.u.str.data) == 0) {
Willy Tarreauf3045d22015-04-29 16:24:50 +0200557 ret = pattern;
558 break;
559 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100560 }
561
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200562 if (lru)
Emeric Brunb5997f72017-07-03 11:34:05 +0200563 lru64_commit(lru, ret, expr, expr->revision, NULL);
Willy Tarreauf3045d22015-04-29 16:24:50 +0200564
565 return ret;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100566}
567
568/* Executes a regex. It temporarily changes the data to add a trailing zero,
Thierry Fournier8feaa662016-02-10 22:55:20 +0100569 * and restores the previous character when leaving. This function fills
570 * a matching array.
571 */
572struct pattern *pat_match_regm(struct sample *smp, struct pattern_expr *expr, int fill)
573{
574 struct pattern_list *lst;
575 struct pattern *pattern;
576 struct pattern *ret = NULL;
577
578 list_for_each_entry(lst, &expr->patterns, list) {
579 pattern = &lst->pat;
580
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200581 if (regex_exec_match2(pattern->ptr.reg, smp->data.u.str.area, smp->data.u.str.data,
Thierry Fournier8feaa662016-02-10 22:55:20 +0100582 MAX_MATCH, pmatch, 0)) {
583 ret = pattern;
584 smp->ctx.a[0] = pmatch;
585 break;
586 }
587 }
588
589 return ret;
590}
591
592/* Executes a regex. It temporarily changes the data to add a trailing zero,
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100593 * and restores the previous character when leaving.
594 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100595struct pattern *pat_match_reg(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100596{
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100597 struct pattern_list *lst;
598 struct pattern *pattern;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200599 struct pattern *ret = NULL;
600 struct lru64 *lru = NULL;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100601
Willy Tarreauf3045d22015-04-29 16:24:50 +0200602 if (pat_lru_tree) {
Willy Tarreauaee93142015-05-04 17:18:42 +0200603 unsigned long long seed = pat_lru_seed ^ (long)expr;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200604
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200605 lru = lru64_get(XXH64(smp->data.u.str.area, smp->data.u.str.data, seed),
Willy Tarreauf3045d22015-04-29 16:24:50 +0200606 pat_lru_tree, expr, expr->revision);
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200607 if (lru && lru->domain) {
Emeric Brunb5997f72017-07-03 11:34:05 +0200608 ret = lru->data;
Emeric Brunb5997f72017-07-03 11:34:05 +0200609 return ret;
610 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200611 }
612
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100613 list_for_each_entry(lst, &expr->patterns, list) {
614 pattern = &lst->pat;
615
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200616 if (regex_exec2(pattern->ptr.reg, smp->data.u.str.area, smp->data.u.str.data)) {
Willy Tarreauf3045d22015-04-29 16:24:50 +0200617 ret = pattern;
618 break;
619 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100620 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200621
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200622 if (lru)
Emeric Brunb5997f72017-07-03 11:34:05 +0200623 lru64_commit(lru, ret, expr, expr->revision, NULL);
Willy Tarreauf3045d22015-04-29 16:24:50 +0200624
625 return ret;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100626}
627
628/* Checks that the pattern matches the beginning of the tested string. */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100629struct pattern *pat_match_beg(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100630{
631 int icase;
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +0200632 struct ebmb_node *node;
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +0200633 struct pattern_tree *elt;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100634 struct pattern_list *lst;
635 struct pattern *pattern;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200636 struct pattern *ret = NULL;
637 struct lru64 *lru = NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100638
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +0200639 /* Lookup a string in the expression's pattern tree. */
640 if (!eb_is_empty(&expr->pattern_tree)) {
Christopher Faulet135899e2020-06-30 18:52:32 +0200641 char prev = 0;
642
643 if (smp->data.u.str.data < smp->data.u.str.size) {
644 /* we may have to force a trailing zero on the test pattern and
645 * the buffer is large enough to accommodate it.
646 */
647 prev = smp->data.u.str.area[smp->data.u.str.data];
648 if (prev)
649 smp->data.u.str.area[smp->data.u.str.data] = '\0';
650 }
651 else {
652 /* Otherwise, the sample is duplicated. A trailing zero
653 * is automatically added to the string.
654 */
655 if (!smp_dup(smp))
656 return NULL;
657 }
658
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200659 node = ebmb_lookup_longest(&expr->pattern_tree,
660 smp->data.u.str.area);
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +0200661 if (prev)
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200662 smp->data.u.str.area[smp->data.u.str.data] = prev;
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +0200663
664 if (node) {
665 if (fill) {
666 elt = ebmb_entry(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +0200667 static_pattern.data = elt->data;
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +0200668 static_pattern.ref = elt->ref;
669 static_pattern.sflags = PAT_SF_TREE;
670 static_pattern.type = SMP_T_STR;
671 static_pattern.ptr.str = (char *)elt->node.key;
672 }
673 return &static_pattern;
674 }
675 }
676
677 /* look in the list */
Willy Tarreauf3045d22015-04-29 16:24:50 +0200678 if (pat_lru_tree) {
Willy Tarreauaee93142015-05-04 17:18:42 +0200679 unsigned long long seed = pat_lru_seed ^ (long)expr;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200680
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200681 lru = lru64_get(XXH64(smp->data.u.str.area, smp->data.u.str.data, seed),
Willy Tarreauf3045d22015-04-29 16:24:50 +0200682 pat_lru_tree, expr, expr->revision);
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200683 if (lru && lru->domain) {
Emeric Brunb5997f72017-07-03 11:34:05 +0200684 ret = lru->data;
Emeric Brunb5997f72017-07-03 11:34:05 +0200685 return ret;
686 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200687 }
688
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100689 list_for_each_entry(lst, &expr->patterns, list) {
690 pattern = &lst->pat;
691
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200692 if (pattern->len > smp->data.u.str.data)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100693 continue;
694
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200695 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200696 if ((icase && strncasecmp(pattern->ptr.str, smp->data.u.str.area, pattern->len) != 0) ||
697 (!icase && strncmp(pattern->ptr.str, smp->data.u.str.area, pattern->len) != 0))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100698 continue;
699
Willy Tarreauf3045d22015-04-29 16:24:50 +0200700 ret = pattern;
701 break;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100702 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200703
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200704 if (lru)
Emeric Brunb5997f72017-07-03 11:34:05 +0200705 lru64_commit(lru, ret, expr, expr->revision, NULL);
Willy Tarreauf3045d22015-04-29 16:24:50 +0200706
707 return ret;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100708}
709
710/* Checks that the pattern matches the end of the tested string. */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100711struct pattern *pat_match_end(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100712{
713 int icase;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100714 struct pattern_list *lst;
715 struct pattern *pattern;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200716 struct pattern *ret = NULL;
717 struct lru64 *lru = NULL;
718
719 if (pat_lru_tree) {
Willy Tarreauaee93142015-05-04 17:18:42 +0200720 unsigned long long seed = pat_lru_seed ^ (long)expr;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200721
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200722 lru = lru64_get(XXH64(smp->data.u.str.area, smp->data.u.str.data, seed),
Willy Tarreauf3045d22015-04-29 16:24:50 +0200723 pat_lru_tree, expr, expr->revision);
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200724 if (lru && lru->domain) {
Emeric Brunb5997f72017-07-03 11:34:05 +0200725 ret = lru->data;
Emeric Brunb5997f72017-07-03 11:34:05 +0200726 return ret;
727 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200728 }
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100729
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100730 list_for_each_entry(lst, &expr->patterns, list) {
731 pattern = &lst->pat;
732
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200733 if (pattern->len > smp->data.u.str.data)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100734 continue;
735
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200736 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200737 if ((icase && strncasecmp(pattern->ptr.str, smp->data.u.str.area + smp->data.u.str.data - pattern->len, pattern->len) != 0) ||
738 (!icase && strncmp(pattern->ptr.str, smp->data.u.str.area + smp->data.u.str.data - pattern->len, pattern->len) != 0))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100739 continue;
740
Willy Tarreauf3045d22015-04-29 16:24:50 +0200741 ret = pattern;
742 break;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100743 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200744
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200745 if (lru)
Emeric Brunb5997f72017-07-03 11:34:05 +0200746 lru64_commit(lru, ret, expr, expr->revision, NULL);
Willy Tarreauf3045d22015-04-29 16:24:50 +0200747
748 return ret;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100749}
750
751/* Checks that the pattern is included inside the tested string.
752 * NB: Suboptimal, should be rewritten using a Boyer-Moore method.
753 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100754struct pattern *pat_match_sub(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100755{
756 int icase;
757 char *end;
758 char *c;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100759 struct pattern_list *lst;
760 struct pattern *pattern;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200761 struct pattern *ret = NULL;
762 struct lru64 *lru = NULL;
763
764 if (pat_lru_tree) {
Willy Tarreauaee93142015-05-04 17:18:42 +0200765 unsigned long long seed = pat_lru_seed ^ (long)expr;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200766
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200767 lru = lru64_get(XXH64(smp->data.u.str.area, smp->data.u.str.data, seed),
Willy Tarreauf3045d22015-04-29 16:24:50 +0200768 pat_lru_tree, expr, expr->revision);
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200769 if (lru && lru->domain) {
Emeric Brunb5997f72017-07-03 11:34:05 +0200770 ret = lru->data;
Emeric Brunb5997f72017-07-03 11:34:05 +0200771 return ret;
772 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200773 }
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100774
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100775 list_for_each_entry(lst, &expr->patterns, list) {
776 pattern = &lst->pat;
777
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200778 if (pattern->len > smp->data.u.str.data)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100779 continue;
780
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200781 end = smp->data.u.str.area + smp->data.u.str.data - pattern->len;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200782 icase = expr->mflags & PAT_MF_IGNORE_CASE;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100783 if (icase) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200784 for (c = smp->data.u.str.area; c <= end; c++) {
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100785 if (tolower(*c) != tolower(*pattern->ptr.str))
786 continue;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200787 if (strncasecmp(pattern->ptr.str, c, pattern->len) == 0) {
788 ret = pattern;
789 goto leave;
790 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100791 }
792 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200793 for (c = smp->data.u.str.area; c <= end; c++) {
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100794 if (*c != *pattern->ptr.str)
795 continue;
Willy Tarreauf3045d22015-04-29 16:24:50 +0200796 if (strncmp(pattern->ptr.str, c, pattern->len) == 0) {
797 ret = pattern;
798 goto leave;
799 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100800 }
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100801 }
802 }
Willy Tarreauf3045d22015-04-29 16:24:50 +0200803 leave:
Willy Tarreau7fdd81c2019-10-23 06:59:31 +0200804 if (lru)
Emeric Brunb5997f72017-07-03 11:34:05 +0200805 lru64_commit(lru, ret, expr, expr->revision, NULL);
Willy Tarreauf3045d22015-04-29 16:24:50 +0200806
807 return ret;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100808}
809
810/* This one is used by other real functions. It checks that the pattern is
811 * included inside the tested string, but enclosed between the specified
812 * delimiters or at the beginning or end of the string. The delimiters are
813 * provided as an unsigned int made by make_4delim() and match up to 4 different
814 * delimiters. Delimiters are stripped at the beginning and end of the pattern.
815 */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200816static int match_word(struct sample *smp, struct pattern *pattern, int mflags, unsigned int delimiters)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100817{
818 int may_match, icase;
819 char *c, *end;
820 char *ps;
821 int pl;
822
823 pl = pattern->len;
824 ps = pattern->ptr.str;
825
826 while (pl > 0 && is_delimiter(*ps, delimiters)) {
827 pl--;
828 ps++;
829 }
830
831 while (pl > 0 && is_delimiter(ps[pl - 1], delimiters))
832 pl--;
833
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200834 if (pl > smp->data.u.str.data)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100835 return PAT_NOMATCH;
836
837 may_match = 1;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200838 icase = mflags & PAT_MF_IGNORE_CASE;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200839 end = smp->data.u.str.area + smp->data.u.str.data - pl;
840 for (c = smp->data.u.str.area; c <= end; c++) {
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100841 if (is_delimiter(*c, delimiters)) {
842 may_match = 1;
843 continue;
844 }
845
846 if (!may_match)
847 continue;
848
849 if (icase) {
850 if ((tolower(*c) == tolower(*ps)) &&
851 (strncasecmp(ps, c, pl) == 0) &&
852 (c == end || is_delimiter(c[pl], delimiters)))
853 return PAT_MATCH;
854 } else {
855 if ((*c == *ps) &&
856 (strncmp(ps, c, pl) == 0) &&
857 (c == end || is_delimiter(c[pl], delimiters)))
858 return PAT_MATCH;
859 }
860 may_match = 0;
861 }
862 return PAT_NOMATCH;
863}
864
865/* Checks that the pattern is included inside the tested string, but enclosed
866 * between the delimiters '?' or '/' or at the beginning or end of the string.
867 * Delimiters at the beginning or end of the pattern are ignored.
868 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100869struct pattern *pat_match_dir(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100870{
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100871 struct pattern_list *lst;
872 struct pattern *pattern;
873
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100874 list_for_each_entry(lst, &expr->patterns, list) {
875 pattern = &lst->pat;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200876 if (match_word(smp, pattern, expr->mflags, make_4delim('/', '?', '?', '?')))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100877 return pattern;
878 }
879 return NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100880}
881
882/* Checks that the pattern is included inside the tested string, but enclosed
883 * between the delmiters '/', '?', '.' or ":" or at the beginning or end of
884 * the string. Delimiters at the beginning or end of the pattern are ignored.
885 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100886struct pattern *pat_match_dom(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100887{
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100888 struct pattern_list *lst;
889 struct pattern *pattern;
890
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100891 list_for_each_entry(lst, &expr->patterns, list) {
892 pattern = &lst->pat;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200893 if (match_word(smp, pattern, expr->mflags, make_4delim('/', '?', '.', ':')))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100894 return pattern;
895 }
896 return NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100897}
898
899/* Checks that the integer in <test> is included between min and max */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100900struct pattern *pat_match_int(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100901{
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100902 struct pattern_list *lst;
903 struct pattern *pattern;
904
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100905 list_for_each_entry(lst, &expr->patterns, list) {
906 pattern = &lst->pat;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200907 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.u.sint) &&
908 (!pattern->val.range.max_set || smp->data.u.sint <= pattern->val.range.max))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100909 return pattern;
910 }
911 return NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100912}
913
914/* Checks that the length of the pattern in <test> is included between min and max */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100915struct pattern *pat_match_len(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100916{
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100917 struct pattern_list *lst;
918 struct pattern *pattern;
919
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100920 list_for_each_entry(lst, &expr->patterns, list) {
921 pattern = &lst->pat;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200922 if ((!pattern->val.range.min_set || pattern->val.range.min <= smp->data.u.str.data) &&
923 (!pattern->val.range.max_set || smp->data.u.str.data <= pattern->val.range.max))
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100924 return pattern;
925 }
926 return NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100927}
928
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100929struct pattern *pat_match_ip(struct sample *smp, struct pattern_expr *expr, int fill)
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100930{
931 unsigned int v4; /* in network byte order */
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100932 struct in6_addr tmp6;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100933 struct in_addr *s;
934 struct ebmb_node *node;
935 struct pattern_tree *elt;
936 struct pattern_list *lst;
937 struct pattern *pattern;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100938
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100939 /* The input sample is IPv4. Try to match in the trees. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200940 if (smp->data.type == SMP_T_IPV4) {
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100941 /* Lookup an IPv4 address in the expression's pattern tree using
942 * the longest match method.
943 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200944 s = &smp->data.u.ipv4;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100945 node = ebmb_lookup_longest(&expr->pattern_tree, &s->s_addr);
946 if (node) {
947 if (fill) {
948 elt = ebmb_entry(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +0200949 static_pattern.data = elt->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +0100950 static_pattern.ref = elt->ref;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200951 static_pattern.sflags = PAT_SF_TREE;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100952 static_pattern.type = SMP_T_IPV4;
Willy Tarreau33ccf1c2019-06-16 18:40:33 +0200953 static_pattern.val.ipv4.addr = *(struct in_addr *)elt->node.key;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100954 if (!cidr2dotted(elt->node.node.pfx, &static_pattern.val.ipv4.mask))
955 return NULL;
956 }
957 return &static_pattern;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100958 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100959
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100960 /* The IPv4 sample dont match the IPv4 tree. Convert the IPv4
961 * sample address to IPv6 with the mapping method using the ::ffff:
962 * prefix, and try to lookup in the IPv6 tree.
963 */
964 memset(&tmp6, 0, 10);
965 *(uint16_t*)&tmp6.s6_addr[10] = htons(0xffff);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200966 *(uint32_t*)&tmp6.s6_addr[12] = smp->data.u.ipv4.s_addr;
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100967 node = ebmb_lookup_longest(&expr->pattern_tree_2, &tmp6);
968 if (node) {
969 if (fill) {
970 elt = ebmb_entry(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +0200971 static_pattern.data = elt->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +0100972 static_pattern.ref = elt->ref;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200973 static_pattern.sflags = PAT_SF_TREE;
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100974 static_pattern.type = SMP_T_IPV6;
Willy Tarreau33ccf1c2019-06-16 18:40:33 +0200975 static_pattern.val.ipv6.addr = *(struct in6_addr *)elt->node.key;
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100976 static_pattern.val.ipv6.mask = elt->node.node.pfx;
977 }
978 return &static_pattern;
979 }
980 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100981
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100982 /* The input sample is IPv6. Try to match in the trees. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200983 if (smp->data.type == SMP_T_IPV6) {
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100984 /* Lookup an IPv6 address in the expression's pattern tree using
985 * the longest match method.
986 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200987 node = ebmb_lookup_longest(&expr->pattern_tree_2, &smp->data.u.ipv6);
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100988 if (node) {
989 if (fill) {
990 elt = ebmb_entry(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +0200991 static_pattern.data = elt->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +0100992 static_pattern.ref = elt->ref;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +0200993 static_pattern.sflags = PAT_SF_TREE;
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100994 static_pattern.type = SMP_T_IPV6;
Willy Tarreau33ccf1c2019-06-16 18:40:33 +0200995 static_pattern.val.ipv6.addr = *(struct in6_addr *)elt->node.key;
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100996 static_pattern.val.ipv6.mask = elt->node.node.pfx;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100997 }
Thierry FOURNIER33a74332013-12-19 23:54:54 +0100998 return &static_pattern;
999 }
1000
1001 /* Try to convert 6 to 4 when the start of the ipv6 address match the
1002 * following forms :
1003 * - ::ffff:ip:v4 (ipv4 mapped)
1004 * - ::0000:ip:v4 (old ipv4 mapped)
1005 * - 2002:ip:v4:: (6to4)
1006 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001007 if ((*(uint32_t*)&smp->data.u.ipv6.s6_addr[0] == 0 &&
1008 *(uint32_t*)&smp->data.u.ipv6.s6_addr[4] == 0 &&
1009 (*(uint32_t*)&smp->data.u.ipv6.s6_addr[8] == 0 ||
1010 *(uint32_t*)&smp->data.u.ipv6.s6_addr[8] == htonl(0xFFFF))) ||
1011 *(uint16_t*)&smp->data.u.ipv6.s6_addr[0] == htons(0x2002)) {
1012 if (*(uint32_t*)&smp->data.u.ipv6.s6_addr[0] == 0)
1013 v4 = *(uint32_t*)&smp->data.u.ipv6.s6_addr[12];
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001014 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001015 v4 = htonl((ntohs(*(uint16_t*)&smp->data.u.ipv6.s6_addr[2]) << 16) +
1016 ntohs(*(uint16_t*)&smp->data.u.ipv6.s6_addr[4]));
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001017
1018 /* Lookup an IPv4 address in the expression's pattern tree using the longest
1019 * match method.
1020 */
1021 node = ebmb_lookup_longest(&expr->pattern_tree, &v4);
1022 if (node) {
1023 if (fill) {
1024 elt = ebmb_entry(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001025 static_pattern.data = elt->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +01001026 static_pattern.ref = elt->ref;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02001027 static_pattern.sflags = PAT_SF_TREE;
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001028 static_pattern.type = SMP_T_IPV4;
Willy Tarreau33ccf1c2019-06-16 18:40:33 +02001029 static_pattern.val.ipv4.addr = *(struct in_addr *)elt->node.key;
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001030 if (!cidr2dotted(elt->node.node.pfx, &static_pattern.val.ipv4.mask))
1031 return NULL;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01001032 }
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001033 return &static_pattern;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +01001034 }
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001035 }
1036 }
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +01001037
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001038 /* Lookup in the list. the list contain only IPv4 patterns */
1039 list_for_each_entry(lst, &expr->patterns, list) {
1040 pattern = &lst->pat;
1041
1042 /* The input sample is IPv4, use it as is. */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001043 if (smp->data.type == SMP_T_IPV4) {
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001044 v4 = smp->data.u.ipv4.s_addr;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +01001045 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001046 else if (smp->data.type == SMP_T_IPV6) {
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001047 /* v4 match on a V6 sample. We want to check at least for
1048 * the following forms :
1049 * - ::ffff:ip:v4 (ipv4 mapped)
1050 * - ::0000:ip:v4 (old ipv4 mapped)
1051 * - 2002:ip:v4:: (6to4)
1052 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001053 if (*(uint32_t*)&smp->data.u.ipv6.s6_addr[0] == 0 &&
1054 *(uint32_t*)&smp->data.u.ipv6.s6_addr[4] == 0 &&
1055 (*(uint32_t*)&smp->data.u.ipv6.s6_addr[8] == 0 ||
1056 *(uint32_t*)&smp->data.u.ipv6.s6_addr[8] == htonl(0xFFFF))) {
1057 v4 = *(uint32_t*)&smp->data.u.ipv6.s6_addr[12];
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01001058 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001059 else if (*(uint16_t*)&smp->data.u.ipv6.s6_addr[0] == htons(0x2002)) {
1060 v4 = htonl((ntohs(*(uint16_t*)&smp->data.u.ipv6.s6_addr[2]) << 16) +
1061 ntohs(*(uint16_t*)&smp->data.u.ipv6.s6_addr[4]));
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01001062 }
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001063 else
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01001064 continue;
Andreas Seltenreichf0653192016-03-03 20:08:35 +01001065 } else {
1066 /* impossible */
1067 continue;
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001068 }
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +01001069
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001070 /* Check if the input sample match the current pattern. */
1071 if (((v4 ^ pattern->val.ipv4.addr.s_addr) & pattern->val.ipv4.mask.s_addr) == 0)
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01001072 return pattern;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +01001073 }
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01001074 return NULL;
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +01001075}
1076
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001077void free_pattern_tree(struct eb_root *root)
1078{
1079 struct eb_node *node, *next;
Thierry FOURNIERe1bcac52013-12-13 16:09:50 +01001080 struct pattern_tree *elt;
Thierry FOURNIER3ce88c72013-12-09 11:29:46 +01001081
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001082 node = eb_first(root);
1083 while (node) {
1084 next = eb_next(node);
1085 eb_delete(node);
Thierry FOURNIERe1bcac52013-12-13 16:09:50 +01001086 elt = container_of(node, struct pattern_tree, node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001087 free(elt->data);
Thierry FOURNIER3ce88c72013-12-09 11:29:46 +01001088 free(elt);
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001089 node = next;
1090 }
1091}
1092
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01001093void pat_prune_val(struct pattern_expr *expr)
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +01001094{
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01001095 struct pattern_list *pat, *tmp;
1096
1097 list_for_each_entry_safe(pat, tmp, &expr->patterns, list) {
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001098 free(pat->pat.data);
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01001099 free(pat);
1100 }
1101
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +01001102 free_pattern_tree(&expr->pattern_tree);
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001103 free_pattern_tree(&expr->pattern_tree_2);
Thierry FOURNIERd163e1c2013-11-28 11:41:23 +01001104 LIST_INIT(&expr->patterns);
1105}
1106
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01001107void pat_prune_ptr(struct pattern_expr *expr)
1108{
1109 struct pattern_list *pat, *tmp;
1110
1111 list_for_each_entry_safe(pat, tmp, &expr->patterns, list) {
1112 free(pat->pat.ptr.ptr);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001113 free(pat->pat.data);
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01001114 free(pat);
1115 }
1116
1117 free_pattern_tree(&expr->pattern_tree);
1118 free_pattern_tree(&expr->pattern_tree_2);
1119 LIST_INIT(&expr->patterns);
1120}
1121
1122void pat_prune_reg(struct pattern_expr *expr)
1123{
1124 struct pattern_list *pat, *tmp;
1125
1126 list_for_each_entry_safe(pat, tmp, &expr->patterns, list) {
1127 regex_free(pat->pat.ptr.ptr);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001128 free(pat->pat.data);
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01001129 free(pat);
1130 }
1131
1132 free_pattern_tree(&expr->pattern_tree);
1133 free_pattern_tree(&expr->pattern_tree_2);
1134 LIST_INIT(&expr->patterns);
1135}
1136
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001137/*
1138 *
1139 * The following functions are used for the pattern indexation
1140 *
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001141 */
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001142
1143int pat_idx_list_val(struct pattern_expr *expr, struct pattern *pat, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001144{
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001145 struct pattern_list *patl;
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001146
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001147 /* allocate pattern */
1148 patl = calloc(1, sizeof(*patl));
1149 if (!patl) {
1150 memprintf(err, "out of memory while indexing pattern");
Thierry FOURNIER972028f2014-01-23 17:53:31 +01001151 return 0;
1152 }
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001153
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001154 /* duplicate pattern */
1155 memcpy(&patl->pat, pat, sizeof(*pat));
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001156
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001157 /* chain pattern in the expression */
1158 LIST_ADDQ(&expr->patterns, &patl->list);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001159 expr->revision = rdtsc();
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001160
1161 /* that's ok */
1162 return 1;
1163}
1164
1165int pat_idx_list_ptr(struct pattern_expr *expr, struct pattern *pat, char **err)
1166{
1167 struct pattern_list *patl;
1168
1169 /* allocate pattern */
1170 patl = calloc(1, sizeof(*patl));
Thierry FOURNIER8aa83842015-02-06 17:50:55 +01001171 if (!patl) {
1172 memprintf(err, "out of memory while indexing pattern");
Thierry FOURNIER972028f2014-01-23 17:53:31 +01001173 return 0;
Thierry FOURNIER8aa83842015-02-06 17:50:55 +01001174 }
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001175
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001176 /* duplicate pattern */
1177 memcpy(&patl->pat, pat, sizeof(*pat));
1178 patl->pat.ptr.ptr = malloc(patl->pat.len);
1179 if (!patl->pat.ptr.ptr) {
1180 free(patl);
1181 memprintf(err, "out of memory while indexing pattern");
1182 return 0;
1183 }
1184 memcpy(patl->pat.ptr.ptr, pat->ptr.ptr, pat->len);
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001185
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001186 /* chain pattern in the expression */
1187 LIST_ADDQ(&expr->patterns, &patl->list);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001188 expr->revision = rdtsc();
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001189
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001190 /* that's ok */
1191 return 1;
1192}
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001193
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001194int pat_idx_list_str(struct pattern_expr *expr, struct pattern *pat, char **err)
1195{
1196 struct pattern_list *patl;
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001197
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001198 /* allocate pattern */
1199 patl = calloc(1, sizeof(*patl));
1200 if (!patl) {
1201 memprintf(err, "out of memory while indexing pattern");
1202 return 0;
1203 }
1204
1205 /* duplicate pattern */
1206 memcpy(&patl->pat, pat, sizeof(*pat));
1207 patl->pat.ptr.str = malloc(patl->pat.len + 1);
1208 if (!patl->pat.ptr.str) {
1209 free(patl);
1210 memprintf(err, "out of memory while indexing pattern");
1211 return 0;
1212 }
1213 memcpy(patl->pat.ptr.ptr, pat->ptr.ptr, pat->len);
1214 patl->pat.ptr.str[patl->pat.len] = '\0';
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001215
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001216 /* chain pattern in the expression */
1217 LIST_ADDQ(&expr->patterns, &patl->list);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001218 expr->revision = rdtsc();
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001219
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001220 /* that's ok */
1221 return 1;
1222}
1223
Thierry Fournier8feaa662016-02-10 22:55:20 +01001224int pat_idx_list_reg_cap(struct pattern_expr *expr, struct pattern *pat, int cap, char **err)
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001225{
1226 struct pattern_list *patl;
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001227
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001228 /* allocate pattern */
1229 patl = calloc(1, sizeof(*patl));
1230 if (!patl) {
1231 memprintf(err, "out of memory while indexing pattern");
1232 return 0;
Thierry FOURNIER972028f2014-01-23 17:53:31 +01001233 }
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001234
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001235 /* duplicate pattern */
1236 memcpy(&patl->pat, pat, sizeof(*pat));
1237
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001238 /* compile regex */
Dragan Dosen26743032019-04-30 15:54:36 +02001239 if (!(patl->pat.ptr.reg = regex_comp(pat->ptr.str, !(expr->mflags & PAT_MF_IGNORE_CASE),
1240 cap, err))) {
Dirkjan Bussink07fcaaa2014-04-28 22:57:16 +00001241 free(patl);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001242 return 0;
1243 }
1244
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001245 /* chain pattern in the expression */
1246 LIST_ADDQ(&expr->patterns, &patl->list);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001247 expr->revision = rdtsc();
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001248
1249 /* that's ok */
1250 return 1;
1251}
1252
Thierry Fournier8feaa662016-02-10 22:55:20 +01001253int pat_idx_list_reg(struct pattern_expr *expr, struct pattern *pat, char **err)
1254{
1255 return pat_idx_list_reg_cap(expr, pat, 0, err);
1256}
1257
1258int pat_idx_list_regm(struct pattern_expr *expr, struct pattern *pat, char **err)
1259{
1260 return pat_idx_list_reg_cap(expr, pat, 1, err);
1261}
1262
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001263int pat_idx_tree_ip(struct pattern_expr *expr, struct pattern *pat, char **err)
1264{
1265 unsigned int mask;
Thierry FOURNIERe1bcac52013-12-13 16:09:50 +01001266 struct pattern_tree *node;
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001267
1268 /* Only IPv4 can be indexed */
1269 if (pat->type == SMP_T_IPV4) {
Thierry FOURNIER972028f2014-01-23 17:53:31 +01001270 /* in IPv4 case, check if the mask is contiguous so that we can
1271 * insert the network into the tree. A continuous mask has only
1272 * ones on the left. This means that this mask + its lower bit
1273 * added once again is null.
1274 */
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001275 mask = ntohl(pat->val.ipv4.mask.s_addr);
1276 if (mask + (mask & -mask) == 0) {
1277 mask = mask ? 33 - flsnz(mask & -mask) : 0; /* equals cidr value */
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001278
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001279 /* node memory allocation */
1280 node = calloc(1, sizeof(*node) + 4);
1281 if (!node) {
1282 memprintf(err, "out of memory while loading pattern");
1283 return 0;
1284 }
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001285
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001286 /* copy the pointer to sample associated to this node */
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001287 node->data = pat->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +01001288 node->ref = pat->ref;
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001289
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001290 /* FIXME: insert <addr>/<mask> into the tree here */
1291 memcpy(node->node.key, &pat->val.ipv4.addr, 4); /* network byte order */
1292 node->node.node.pfx = mask;
Thierry FOURNIER31db4ae2014-01-30 00:27:15 +01001293
1294 /* Insert the entry. */
1295 ebmb_insert_prefix(&expr->pattern_tree, &node->node, 4);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001296 expr->revision = rdtsc();
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001297
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001298 /* that's ok */
1299 return 1;
1300 }
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001301 else {
1302 /* If the mask is not contiguous, just add the pattern to the list */
1303 return pat_idx_list_val(expr, pat, err);
1304 }
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001305 }
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001306 else if (pat->type == SMP_T_IPV6) {
1307 /* IPv6 also can be indexed */
1308 node = calloc(1, sizeof(*node) + 16);
1309 if (!node) {
1310 memprintf(err, "out of memory while loading pattern");
1311 return 0;
1312 }
1313
1314 /* copy the pointer to sample associated to this node */
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001315 node->data = pat->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +01001316 node->ref = pat->ref;
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001317
1318 /* FIXME: insert <addr>/<mask> into the tree here */
1319 memcpy(node->node.key, &pat->val.ipv6.addr, 16); /* network byte order */
1320 node->node.node.pfx = pat->val.ipv6.mask;
Thierry FOURNIER31db4ae2014-01-30 00:27:15 +01001321
1322 /* Insert the entry. */
1323 ebmb_insert_prefix(&expr->pattern_tree_2, &node->node, 16);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001324 expr->revision = rdtsc();
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001325
1326 /* that's ok */
1327 return 1;
1328 }
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001329
Thierry FOURNIER33a74332013-12-19 23:54:54 +01001330 return 0;
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001331}
1332
1333int pat_idx_tree_str(struct pattern_expr *expr, struct pattern *pat, char **err)
1334{
1335 int len;
Thierry FOURNIERe1bcac52013-12-13 16:09:50 +01001336 struct pattern_tree *node;
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001337
1338 /* Only string can be indexed */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01001339 if (pat->type != SMP_T_STR) {
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001340 memprintf(err, "internal error: string expected, but the type is '%s'",
1341 smp_to_type[pat->type]);
1342 return 0;
Thierry FOURNIER972028f2014-01-23 17:53:31 +01001343 }
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001344
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001345 /* If the flag PAT_F_IGNORE_CASE is set, we cannot use trees */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02001346 if (expr->mflags & PAT_MF_IGNORE_CASE)
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001347 return pat_idx_list_str(expr, pat, err);
Thierry FOURNIER7148ce62013-12-06 19:06:43 +01001348
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001349 /* Process the key len */
1350 len = strlen(pat->ptr.str) + 1;
1351
1352 /* node memory allocation */
1353 node = calloc(1, sizeof(*node) + len);
1354 if (!node) {
1355 memprintf(err, "out of memory while loading pattern");
1356 return 0;
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001357 }
1358
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001359 /* copy the pointer to sample associated to this node */
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001360 node->data = pat->data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +01001361 node->ref = pat->ref;
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001362
1363 /* copy the string */
1364 memcpy(node->node.key, pat->ptr.str, len);
1365
1366 /* index the new node */
Thierry FOURNIER31db4ae2014-01-30 00:27:15 +01001367 ebst_insert(&expr->pattern_tree, &node->node);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001368 expr->revision = rdtsc();
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001369
1370 /* that's ok */
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001371 return 1;
1372}
1373
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +02001374int pat_idx_tree_pfx(struct pattern_expr *expr, struct pattern *pat, char **err)
1375{
1376 int len;
1377 struct pattern_tree *node;
1378
1379 /* Only string can be indexed */
1380 if (pat->type != SMP_T_STR) {
1381 memprintf(err, "internal error: string expected, but the type is '%s'",
1382 smp_to_type[pat->type]);
1383 return 0;
1384 }
1385
1386 /* If the flag PAT_F_IGNORE_CASE is set, we cannot use trees */
1387 if (expr->mflags & PAT_MF_IGNORE_CASE)
1388 return pat_idx_list_str(expr, pat, err);
1389
1390 /* Process the key len */
1391 len = strlen(pat->ptr.str);
1392
1393 /* node memory allocation */
1394 node = calloc(1, sizeof(*node) + len + 1);
1395 if (!node) {
1396 memprintf(err, "out of memory while loading pattern");
1397 return 0;
1398 }
1399
1400 /* copy the pointer to sample associated to this node */
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001401 node->data = pat->data;
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +02001402 node->ref = pat->ref;
1403
1404 /* copy the string and the trailing zero */
1405 memcpy(node->node.key, pat->ptr.str, len + 1);
1406 node->node.node.pfx = len * 8;
1407
1408 /* index the new node */
1409 ebmb_insert_prefix(&expr->pattern_tree, &node->node, len);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001410 expr->revision = rdtsc();
Willy Tarreaub1dd9bf2014-05-10 08:53:48 +02001411
1412 /* that's ok */
1413 return 1;
1414}
1415
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001416void pat_del_list_val(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001417{
1418 struct pattern_list *pat;
1419 struct pattern_list *safe;
1420
1421 list_for_each_entry_safe(pat, safe, &expr->patterns, list) {
1422 /* Check equality. */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001423 if (pat->pat.ref != ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001424 continue;
1425
1426 /* Delete and free entry. */
1427 LIST_DEL(&pat->list);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001428 free(pat->pat.data);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001429 free(pat);
1430 }
Willy Tarreau72f073b2015-04-29 17:53:47 +02001431 expr->revision = rdtsc();
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001432}
1433
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001434void pat_del_tree_ip(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001435{
1436 struct ebmb_node *node, *next_node;
1437 struct pattern_tree *elt;
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001438
1439 /* browse each node of the tree for IPv4 addresses. */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001440 for (node = ebmb_first(&expr->pattern_tree), next_node = node ? ebmb_next(node) : NULL;
1441 node;
1442 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
1443 /* Extract container of the tree node. */
1444 elt = container_of(node, struct pattern_tree, node);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001445
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001446 /* Check equality. */
1447 if (elt->ref != ref)
1448 continue;
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001449
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001450 /* Delete and free entry. */
1451 ebmb_delete(node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001452 free(elt->data);
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001453 free(elt);
1454 }
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001455
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001456 /* Browse each node of the list for IPv4 addresses. */
1457 pat_del_list_val(expr, ref);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001458
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001459 /* browse each node of the tree for IPv6 addresses. */
1460 for (node = ebmb_first(&expr->pattern_tree_2), next_node = node ? ebmb_next(node) : NULL;
1461 node;
1462 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
1463 /* Extract container of the tree node. */
1464 elt = container_of(node, struct pattern_tree, node);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001465
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001466 /* Check equality. */
1467 if (elt->ref != ref)
1468 continue;
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001469
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001470 /* Delete and free entry. */
1471 ebmb_delete(node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001472 free(elt->data);
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001473 free(elt);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001474 }
Willy Tarreau72f073b2015-04-29 17:53:47 +02001475 expr->revision = rdtsc();
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001476}
1477
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001478void pat_del_list_ptr(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001479{
1480 struct pattern_list *pat;
1481 struct pattern_list *safe;
1482
1483 list_for_each_entry_safe(pat, safe, &expr->patterns, list) {
1484 /* Check equality. */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001485 if (pat->pat.ref != ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001486 continue;
1487
1488 /* Delete and free entry. */
1489 LIST_DEL(&pat->list);
1490 free(pat->pat.ptr.ptr);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001491 free(pat->pat.data);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001492 free(pat);
1493 }
Willy Tarreau72f073b2015-04-29 17:53:47 +02001494 expr->revision = rdtsc();
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001495}
1496
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001497void pat_del_tree_str(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001498{
1499 struct ebmb_node *node, *next_node;
1500 struct pattern_tree *elt;
1501
Thierry FOURNIER73bc2852015-02-06 17:53:54 +01001502 /* If the flag PAT_F_IGNORE_CASE is set, we cannot use trees */
1503 if (expr->mflags & PAT_MF_IGNORE_CASE)
1504 return pat_del_list_ptr(expr, ref);
1505
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001506 /* browse each node of the tree. */
1507 for (node = ebmb_first(&expr->pattern_tree), next_node = node ? ebmb_next(node) : NULL;
1508 node;
1509 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
1510 /* Extract container of the tree node. */
1511 elt = container_of(node, struct pattern_tree, node);
1512
1513 /* Check equality. */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001514 if (elt->ref != ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001515 continue;
1516
1517 /* Delete and free entry. */
1518 ebmb_delete(node);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001519 free(elt->data);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001520 free(elt);
1521 }
Willy Tarreau72f073b2015-04-29 17:53:47 +02001522 expr->revision = rdtsc();
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001523}
1524
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001525void pat_del_list_reg(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001526{
1527 struct pattern_list *pat;
1528 struct pattern_list *safe;
1529
1530 list_for_each_entry_safe(pat, safe, &expr->patterns, list) {
1531 /* Check equality. */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001532 if (pat->pat.ref != ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001533 continue;
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001534
1535 /* Delete and free entry. */
1536 LIST_DEL(&pat->list);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001537 regex_free(pat->pat.ptr.ptr);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001538 free(pat->pat.data);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001539 free(pat);
1540 }
Willy Tarreau72f073b2015-04-29 17:53:47 +02001541 expr->revision = rdtsc();
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001542}
1543
1544void pattern_init_expr(struct pattern_expr *expr)
1545{
1546 LIST_INIT(&expr->patterns);
Willy Tarreau72f073b2015-04-29 17:53:47 +02001547 expr->revision = 0;
Thierry FOURNIER31db4ae2014-01-30 00:27:15 +01001548 expr->pattern_tree = EB_ROOT;
1549 expr->pattern_tree_2 = EB_ROOT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001550}
1551
1552void pattern_init_head(struct pattern_head *head)
1553{
1554 LIST_INIT(&head->head);
1555}
1556
1557/* The following functions are relative to the management of the reference
1558 * lists. These lists are used to store the original pattern and associated
1559 * value as string form.
1560 *
1561 * This is used with modifiable ACL and MAPS
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001562 *
1563 * The pattern reference are stored with two identifiers: the unique_id and
1564 * the reference.
1565 *
1566 * The reference identify a file. Each file with the same name point to the
1567 * same reference. We can register many times one file. If the file is modified,
1568 * all his dependencies are also modified. The reference can be used with map or
1569 * acl.
1570 *
1571 * The unique_id identify inline acl. The unique id is unique for each acl.
1572 * You cannot force the same id in the configuration file, because this repoort
1573 * an error.
1574 *
1575 * A particular case appears if the filename is a number. In this case, the
1576 * unique_id is set with the number represented by the filename and the
1577 * reference is also set. This method prevent double unique_id.
1578 *
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001579 */
1580
1581/* This function lookup for reference. If the reference is found, they return
1582 * pointer to the struct pat_ref, else return NULL.
1583 */
1584struct pat_ref *pat_ref_lookup(const char *reference)
1585{
1586 struct pat_ref *ref;
1587
1588 list_for_each_entry(ref, &pattern_reference, list)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001589 if (ref->reference && strcmp(reference, ref->reference) == 0)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001590 return ref;
1591 return NULL;
1592}
1593
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001594/* This function lookup for unique id. If the reference is found, they return
1595 * pointer to the struct pat_ref, else return NULL.
1596 */
1597struct pat_ref *pat_ref_lookupid(int unique_id)
1598{
1599 struct pat_ref *ref;
1600
1601 list_for_each_entry(ref, &pattern_reference, list)
1602 if (ref->unique_id == unique_id)
1603 return ref;
1604 return NULL;
1605}
1606
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001607/* This function remove all pattern matching the pointer <refelt> from
1608 * the the reference and from each expr member of the reference. This
1609 * function returns 1 if the deletion is done and return 0 is the entry
1610 * is not found.
1611 */
1612int pat_ref_delete_by_id(struct pat_ref *ref, struct pat_ref_elt *refelt)
1613{
1614 struct pattern_expr *expr;
1615 struct pat_ref_elt *elt, *safe;
Emeric Brun8d85aa42017-06-29 15:40:33 +02001616 struct bref *bref, *back;
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001617
1618 /* delete pattern from reference */
1619 list_for_each_entry_safe(elt, safe, &ref->head, list) {
1620 if (elt == refelt) {
Emeric Brun8d85aa42017-06-29 15:40:33 +02001621 list_for_each_entry_safe(bref, back, &elt->back_refs, users) {
1622 /*
1623 * we have to unlink all watchers. We must not relink them if
1624 * this elt was the last one in the list.
1625 */
1626 LIST_DEL(&bref->users);
1627 LIST_INIT(&bref->users);
1628 if (elt->list.n != &ref->head)
Willy Tarreau49ee3b22019-04-30 11:43:43 +02001629 LIST_ADDQ(&LIST_ELEM(elt->list.n, typeof(elt), list)->back_refs, &bref->users);
Emeric Brun8d85aa42017-06-29 15:40:33 +02001630 bref->ref = elt->list.n;
1631 }
peter caiaede6dd2015-10-07 00:07:43 -07001632 list_for_each_entry(expr, &ref->pat, list)
1633 pattern_delete(expr, elt);
1634
Emeric Brunb5997f72017-07-03 11:34:05 +02001635 /* pat_ref_elt is trashed once all expr
1636 are cleaned and there is no ref remaining */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001637 LIST_DEL(&elt->list);
1638 free(elt->sample);
1639 free(elt->pattern);
1640 free(elt);
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001641 return 1;
1642 }
1643 }
1644 return 0;
1645}
1646
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001647/* This function remove all pattern match <key> from the the reference
Joseph Herlant4189d672018-11-15 10:22:31 -08001648 * and from each expr member of the reference. This function returns 1
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001649 * if the deletion is done and return 0 is the entry is not found.
1650 */
1651int pat_ref_delete(struct pat_ref *ref, const char *key)
1652{
1653 struct pattern_expr *expr;
1654 struct pat_ref_elt *elt, *safe;
Emeric Brun8d85aa42017-06-29 15:40:33 +02001655 struct bref *bref, *back;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001656 int found = 0;
1657
1658 /* delete pattern from reference */
1659 list_for_each_entry_safe(elt, safe, &ref->head, list) {
1660 if (strcmp(key, elt->pattern) == 0) {
Emeric Brun8d85aa42017-06-29 15:40:33 +02001661 list_for_each_entry_safe(bref, back, &elt->back_refs, users) {
1662 /*
1663 * we have to unlink all watchers. We must not relink them if
1664 * this elt was the last one in the list.
1665 */
1666 LIST_DEL(&bref->users);
1667 LIST_INIT(&bref->users);
1668 if (elt->list.n != &ref->head)
Willy Tarreau49ee3b22019-04-30 11:43:43 +02001669 LIST_ADDQ(&LIST_ELEM(elt->list.n, typeof(elt), list)->back_refs, &bref->users);
Emeric Brun8d85aa42017-06-29 15:40:33 +02001670 bref->ref = elt->list.n;
1671 }
Dirkjan Bussink07fcaaa2014-04-28 22:57:16 +00001672 list_for_each_entry(expr, &ref->pat, list)
1673 pattern_delete(expr, elt);
1674
Emeric Brunb5997f72017-07-03 11:34:05 +02001675 /* pat_ref_elt is trashed once all expr
1676 are cleaned and there is no ref remaining */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001677 LIST_DEL(&elt->list);
1678 free(elt->sample);
1679 free(elt->pattern);
1680 free(elt);
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01001681
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001682 found = 1;
1683 }
1684 }
1685
1686 if (!found)
1687 return 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001688 return 1;
1689}
1690
Baptiste Assmann953f74d2014-04-25 16:57:03 +02001691/*
1692 * find and return an element <elt> matching <key> in a reference <ref>
1693 * return NULL if not found
1694 */
1695struct pat_ref_elt *pat_ref_find_elt(struct pat_ref *ref, const char *key)
1696{
1697 struct pat_ref_elt *elt;
1698
1699 list_for_each_entry(elt, &ref->head, list) {
1700 if (strcmp(key, elt->pattern) == 0)
1701 return elt;
1702 }
1703
1704 return NULL;
1705}
1706
1707
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001708 /* This function modify the sample of the first pattern that match the <key>. */
1709static inline int pat_ref_set_elt(struct pat_ref *ref, struct pat_ref_elt *elt,
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001710 const char *value, char **err)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001711{
1712 struct pattern_expr *expr;
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001713 struct sample_data **data;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001714 char *sample;
Thierry FOURNIER12ba0c22015-08-14 00:02:11 +02001715 struct sample_data test;
Thierry FOURNIER149e0fe2014-01-29 19:35:06 +01001716
1717 /* Try all needed converters. */
1718 list_for_each_entry(expr, &ref->pat, list) {
1719 if (!expr->pat_head->parse_smp)
1720 continue;
1721
1722 if (!expr->pat_head->parse_smp(value, &test)) {
1723 memprintf(err, "unable to parse '%s'", value);
1724 return 0;
1725 }
1726 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001727
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001728 /* Modify pattern from reference. */
1729 sample = strdup(value);
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001730 if (!sample) {
1731 memprintf(err, "out of memory error");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001732 return 0;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001733 }
Thierry FOURNIER149e0fe2014-01-29 19:35:06 +01001734 /* Load sample in each reference. All the conversion are tested
1735 * below, normally these calls dosn't fail.
1736 */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001737 list_for_each_entry(expr, &ref->pat, list) {
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001738 if (!expr->pat_head->parse_smp)
1739 continue;
1740
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001741 HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001742 data = pattern_find_smp(expr, elt);
1743 if (data && *data && !expr->pat_head->parse_smp(sample, *data))
1744 *data = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001745 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001746 }
1747
Emeric Brunb5997f72017-07-03 11:34:05 +02001748 /* free old sample only when all exprs are updated */
1749 free(elt->sample);
1750 elt->sample = sample;
1751
1752
Thierry FOURNIER149e0fe2014-01-29 19:35:06 +01001753 return 1;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001754}
1755
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001756/* This function modify the sample of the first pattern that match the <key>. */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001757int pat_ref_set_by_id(struct pat_ref *ref, struct pat_ref_elt *refelt, const char *value, char **err)
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001758{
1759 struct pat_ref_elt *elt;
1760
1761 /* Look for pattern in the reference. */
1762 list_for_each_entry(elt, &ref->head, list) {
1763 if (elt == refelt) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001764 if (!pat_ref_set_elt(ref, elt, value, err))
1765 return 0;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001766 return 1;
1767 }
1768 }
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001769
1770 memprintf(err, "key or pattern not found");
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001771 return 0;
1772}
1773
1774/* This function modify the sample of the first pattern that match the <key>. */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001775int pat_ref_set(struct pat_ref *ref, const char *key, const char *value, char **err)
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001776{
1777 struct pat_ref_elt *elt;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001778 int found = 0;
1779 char *_merr;
1780 char **merr;
1781
1782 if (err) {
1783 merr = &_merr;
1784 *merr = NULL;
1785 }
1786 else
1787 merr = NULL;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001788
1789 /* Look for pattern in the reference. */
1790 list_for_each_entry(elt, &ref->head, list) {
1791 if (strcmp(key, elt->pattern) == 0) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001792 if (!pat_ref_set_elt(ref, elt, value, merr)) {
William Lallemand579fb252018-06-11 10:53:46 +02001793 if (err && merr) {
1794 if (!found) {
1795 *err = *merr;
1796 } else {
1797 memprintf(err, "%s, %s", *err, *merr);
1798 free(*merr);
1799 *merr = NULL;
1800 }
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001801 }
1802 }
1803 found = 1;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001804 }
1805 }
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001806
1807 if (!found) {
1808 memprintf(err, "entry not found");
1809 return 0;
1810 }
1811 return 1;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01001812}
1813
Joseph Herlant4189d672018-11-15 10:22:31 -08001814/* This function creates a new reference. <ref> is the reference name.
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001815 * <flags> are PAT_REF_*. /!\ The reference is not checked, and must
1816 * be unique. The user must check the reference with "pat_ref_lookup()"
Joseph Herlant4189d672018-11-15 10:22:31 -08001817 * before calling this function. If the function fail, it return NULL,
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001818 * else return new struct pat_ref.
1819 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001820struct pat_ref *pat_ref_new(const char *reference, const char *display, unsigned int flags)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001821{
1822 struct pat_ref *ref;
1823
1824 ref = malloc(sizeof(*ref));
1825 if (!ref)
1826 return NULL;
1827
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001828 if (display) {
1829 ref->display = strdup(display);
1830 if (!ref->display) {
1831 free(ref);
1832 return NULL;
1833 }
1834 }
1835 else
1836 ref->display = NULL;
1837
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001838 ref->reference = strdup(reference);
1839 if (!ref->reference) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001840 free(ref->display);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001841 free(ref);
1842 return NULL;
1843 }
1844
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001845 ref->flags = flags;
1846 ref->unique_id = -1;
1847
1848 LIST_INIT(&ref->head);
1849 LIST_INIT(&ref->pat);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001850 HA_SPIN_INIT(&ref->lock);
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001851 LIST_ADDQ(&pattern_reference, &ref->list);
1852
1853 return ref;
1854}
1855
1856/* This function create new reference. <unique_id> is the unique id. If
1857 * the value of <unique_id> is -1, the unique id is calculated later.
1858 * <flags> are PAT_REF_*. /!\ The reference is not checked, and must
1859 * be unique. The user must check the reference with "pat_ref_lookup()"
1860 * or pat_ref_lookupid before calling this function. If the function
1861 * fail, it return NULL, else return new struct pat_ref.
1862 */
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001863struct pat_ref *pat_ref_newid(int unique_id, const char *display, unsigned int flags)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001864{
1865 struct pat_ref *ref;
1866
1867 ref = malloc(sizeof(*ref));
1868 if (!ref)
1869 return NULL;
1870
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001871 if (display) {
1872 ref->display = strdup(display);
1873 if (!ref->display) {
1874 free(ref);
1875 return NULL;
1876 }
1877 }
1878 else
1879 ref->display = NULL;
1880
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001881 ref->reference = NULL;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001882 ref->flags = flags;
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001883 ref->unique_id = unique_id;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001884 LIST_INIT(&ref->head);
1885 LIST_INIT(&ref->pat);
Aurélien Nephtali564d15a2018-04-19 16:56:07 +02001886 HA_SPIN_INIT(&ref->lock);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001887 LIST_ADDQ(&pattern_reference, &ref->list);
1888
1889 return ref;
1890}
1891
1892/* This function adds entry to <ref>. It can failed with memory error.
1893 * If the function fails, it returns 0.
1894 */
1895int pat_ref_append(struct pat_ref *ref, char *pattern, char *sample, int line)
1896{
1897 struct pat_ref_elt *elt;
1898
1899 elt = malloc(sizeof(*elt));
1900 if (!elt)
1901 return 0;
1902
1903 elt->line = line;
1904
1905 elt->pattern = strdup(pattern);
1906 if (!elt->pattern) {
1907 free(elt);
1908 return 0;
1909 }
1910
1911 if (sample) {
1912 elt->sample = strdup(sample);
1913 if (!elt->sample) {
1914 free(elt->pattern);
1915 free(elt);
1916 return 0;
1917 }
1918 }
1919 else
1920 elt->sample = NULL;
1921
Emeric Brun8d85aa42017-06-29 15:40:33 +02001922 LIST_INIT(&elt->back_refs);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001923 LIST_ADDQ(&ref->head, &elt->list);
1924
1925 return 1;
Thierry FOURNIERb1136502014-01-15 11:38:49 +01001926}
1927
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001928/* This function create sample found in <elt>, parse the pattern also
1929 * found in <elt> and insert it in <expr>. The function copy <patflags>
1930 * in <expr>. If the function fails, it returns0 and <err> is filled.
1931 * In succes case, the function returns 1.
1932 */
1933static inline
1934int pat_ref_push(struct pat_ref_elt *elt, struct pattern_expr *expr,
1935 int patflags, char **err)
1936{
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001937 struct sample_data *data;
Thierry FOURNIERd25c8422014-01-28 15:34:35 +01001938 struct pattern pattern;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001939
1940 /* Create sample */
1941 if (elt->sample && expr->pat_head->parse_smp) {
1942 /* New sample. */
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001943 data = malloc(sizeof(*data));
1944 if (!data)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001945 return 0;
1946
1947 /* Parse value. */
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001948 if (!expr->pat_head->parse_smp(elt->sample, data)) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001949 memprintf(err, "unable to parse '%s'", elt->sample);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001950 free(data);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001951 return 0;
1952 }
1953
1954 }
1955 else
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001956 data = NULL;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001957
Thierry FOURNIERd25c8422014-01-28 15:34:35 +01001958 /* initialise pattern */
1959 memset(&pattern, 0, sizeof(pattern));
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001960 pattern.data = data;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +01001961 pattern.ref = elt;
Thierry FOURNIERd25c8422014-01-28 15:34:35 +01001962
1963 /* parse pattern */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02001964 if (!expr->pat_head->parse(elt->pattern, &pattern, expr->mflags, err)) {
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001965 free(data);
Thierry FOURNIERd25c8422014-01-28 15:34:35 +01001966 return 0;
1967 }
1968
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001969 HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIERd25c8422014-01-28 15:34:35 +01001970 /* index pattern */
1971 if (!expr->pat_head->index(expr, &pattern, err)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001972 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIER503bb092015-08-19 08:35:43 +02001973 free(data);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001974 return 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001975 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001976 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIERb9b08462013-12-13 15:12:32 +01001977
1978 return 1;
1979}
1980
Thierry FOURNIER31db4ae2014-01-30 00:27:15 +01001981/* This function adds entry to <ref>. It can failed with memory error. The new
1982 * entry is added at all the pattern_expr registered in this reference. The
1983 * function stop on the first error encountered. It returns 0 and err is
1984 * filled. If an error is encountered, the complete add operation is cancelled.
1985 * If the insertion is a success the function returns 1.
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001986 */
1987int pat_ref_add(struct pat_ref *ref,
1988 const char *pattern, const char *sample,
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02001989 char **err)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001990{
1991 struct pat_ref_elt *elt;
1992 struct pattern_expr *expr;
1993
1994 elt = malloc(sizeof(*elt));
1995 if (!elt) {
1996 memprintf(err, "out of memory error");
1997 return 0;
1998 }
1999
2000 elt->line = -1;
2001
2002 elt->pattern = strdup(pattern);
2003 if (!elt->pattern) {
2004 free(elt);
2005 memprintf(err, "out of memory error");
2006 return 0;
2007 }
2008
2009 if (sample) {
2010 elt->sample = strdup(sample);
2011 if (!elt->sample) {
2012 free(elt->pattern);
2013 free(elt);
2014 memprintf(err, "out of memory error");
2015 return 0;
2016 }
2017 }
2018 else
2019 elt->sample = NULL;
2020
Emeric Brun8d85aa42017-06-29 15:40:33 +02002021 LIST_INIT(&elt->back_refs);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002022 LIST_ADDQ(&ref->head, &elt->list);
2023
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002024 list_for_each_entry(expr, &ref->pat, list) {
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002025 if (!pat_ref_push(elt, expr, 0, err)) {
Thierry FOURNIER31db4ae2014-01-30 00:27:15 +01002026 /* If the insertion fails, try to delete all the added entries. */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01002027 pat_ref_delete_by_id(ref, elt);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002028 return 0;
2029 }
2030 }
Emeric Brunb5997f72017-07-03 11:34:05 +02002031
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002032 return 1;
2033}
2034
Joseph Herlant4189d672018-11-15 10:22:31 -08002035/* This function prunes <ref>, replaces all references by the references
2036 * of <replace>, and reindexes all the news values.
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002037 *
Joseph Herlant4189d672018-11-15 10:22:31 -08002038 * The patterns are loaded in best effort and the errors are ignored,
2039 * but written in the logs.
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002040 */
2041void pat_ref_reload(struct pat_ref *ref, struct pat_ref *replace)
2042{
2043 struct pattern_expr *expr;
Emeric Brunb5997f72017-07-03 11:34:05 +02002044 struct pat_ref_elt *elt, *safe;
2045 struct bref *bref, *back;
Emeric Brunb5997f72017-07-03 11:34:05 +02002046 struct pattern pattern;
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002047
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002048
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002049 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Emeric Brunb5997f72017-07-03 11:34:05 +02002050 list_for_each_entry(expr, &ref->pat, list) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002051 HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
Emeric Brunb5997f72017-07-03 11:34:05 +02002052 }
2053
2054 /* all expr are locked, we can safely remove all pat_ref */
2055 list_for_each_entry_safe(elt, safe, &ref->head, list) {
2056 list_for_each_entry_safe(bref, back, &elt->back_refs, users) {
2057 /*
2058 * we have to unlink all watchers. We must not relink them if
2059 * this elt was the last one in the list.
2060 */
2061 LIST_DEL(&bref->users);
2062 LIST_INIT(&bref->users);
2063 if (elt->list.n != &ref->head)
Willy Tarreau49ee3b22019-04-30 11:43:43 +02002064 LIST_ADDQ(&LIST_ELEM(elt->list.n, typeof(elt), list)->back_refs, &bref->users);
Emeric Brunb5997f72017-07-03 11:34:05 +02002065 bref->ref = elt->list.n;
2066 }
2067 LIST_DEL(&elt->list);
2068 free(elt->pattern);
2069 free(elt->sample);
2070 free(elt);
2071 }
2072
2073 /* switch pat_ret_elt lists */
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002074 LIST_ADD(&replace->head, &ref->head);
2075 LIST_DEL(&replace->head);
2076
Emeric Brunb5997f72017-07-03 11:34:05 +02002077 list_for_each_entry(expr, &ref->pat, list) {
2078 expr->pat_head->prune(expr);
2079 list_for_each_entry(elt, &ref->head, list) {
Dragan Dosenf1474792018-09-18 20:18:09 +02002080 char *err = NULL;
2081 struct sample_data *data = NULL;
2082
Emeric Brunb5997f72017-07-03 11:34:05 +02002083 /* Create sample */
2084 if (elt->sample && expr->pat_head->parse_smp) {
2085 /* New sample. */
2086 data = malloc(sizeof(*data));
2087 if (!data)
2088 continue;
2089
2090 /* Parse value. */
2091 if (!expr->pat_head->parse_smp(elt->sample, data)) {
2092 memprintf(&err, "unable to parse '%s'", elt->sample);
2093 send_log(NULL, LOG_NOTICE, "%s", err);
2094 free(err);
2095 free(data);
2096 continue;
2097 }
2098
2099 }
Emeric Brunb5997f72017-07-03 11:34:05 +02002100
2101 /* initialise pattern */
2102 memset(&pattern, 0, sizeof(pattern));
2103 pattern.data = data;
2104 pattern.ref = elt;
2105
2106 /* parse pattern */
2107 if (!expr->pat_head->parse(elt->pattern, &pattern, expr->mflags, &err)) {
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002108 send_log(NULL, LOG_NOTICE, "%s", err);
2109 free(err);
Emeric Brunb5997f72017-07-03 11:34:05 +02002110 free(data);
2111 continue;
2112 }
2113
2114 /* index pattern */
2115 if (!expr->pat_head->index(expr, &pattern, &err)) {
2116 send_log(NULL, LOG_NOTICE, "%s", err);
2117 free(err);
2118 free(data);
2119 continue;
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002120 }
2121 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002122 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002123 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002124 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Thierry FOURNIER46006bd2014-03-21 21:45:15 +01002125}
2126
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002127/* This function prune all entries of <ref>. This function
Willy Tarreaub88a37c2019-12-20 18:22:02 +01002128 * prunes the associated pattern_expr. It may return before the end of
2129 * the list is reached, returning 0, to yield. The caller must call it
2130 * again. Otherwise it returns 1 once done.
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002131 */
Willy Tarreaub88a37c2019-12-20 18:22:02 +01002132int pat_ref_prune(struct pat_ref *ref)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002133{
2134 struct pat_ref_elt *elt, *safe;
2135 struct pattern_expr *expr;
Emeric Brun8d85aa42017-06-29 15:40:33 +02002136 struct bref *bref, *back;
Willy Tarreaub88a37c2019-12-20 18:22:02 +01002137 int loops = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002138
Emeric Brunb5997f72017-07-03 11:34:05 +02002139 list_for_each_entry(expr, &ref->pat, list) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002140 HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
Emeric Brunb5997f72017-07-03 11:34:05 +02002141 expr->pat_head->prune(expr);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002142 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
Willy Tarreaub88a37c2019-12-20 18:22:02 +01002143 loops++;
2144 /* yield often, some lists may be huge, especially those
2145 * having to be freed through free_pattern_tree()
2146 */
2147 if (loops > 10)
2148 return 0;
Emeric Brunb5997f72017-07-03 11:34:05 +02002149 }
2150
2151 /* we trash pat_ref_elt in a second time to ensure that data is
2152 free once there is no ref on it */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002153 list_for_each_entry_safe(elt, safe, &ref->head, list) {
Emeric Brun8d85aa42017-06-29 15:40:33 +02002154 list_for_each_entry_safe(bref, back, &elt->back_refs, users) {
2155 /*
2156 * we have to unlink all watchers. We must not relink them if
2157 * this elt was the last one in the list.
2158 */
2159 LIST_DEL(&bref->users);
2160 LIST_INIT(&bref->users);
2161 if (elt->list.n != &ref->head)
Willy Tarreau49ee3b22019-04-30 11:43:43 +02002162 LIST_ADDQ(&LIST_ELEM(elt->list.n, typeof(elt), list)->back_refs, &bref->users);
Emeric Brun8d85aa42017-06-29 15:40:33 +02002163 bref->ref = elt->list.n;
2164 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002165 LIST_DEL(&elt->list);
2166 free(elt->pattern);
2167 free(elt->sample);
2168 free(elt);
Willy Tarreaub88a37c2019-12-20 18:22:02 +01002169 loops++;
2170 if (loops > 100000)
2171 return 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002172 }
Willy Tarreaub88a37c2019-12-20 18:22:02 +01002173 return 1;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002174}
2175
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002176/* This function lookup for existing reference <ref> in pattern_head <head>. */
2177struct pattern_expr *pattern_lookup_expr(struct pattern_head *head, struct pat_ref *ref)
2178{
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002179 struct pattern_expr_list *expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002180
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002181 list_for_each_entry(expr, &head->head, list)
2182 if (expr->expr->ref == ref)
2183 return expr->expr;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002184 return NULL;
2185}
2186
Joseph Herlant4189d672018-11-15 10:22:31 -08002187/* This function creates new pattern_expr associated to the reference <ref>.
2188 * <ref> can be NULL. If an error occurs, the function returns NULL and
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002189 * <err> is filled. Otherwise, the function returns new pattern_expr linked
2190 * with <head> and <ref>.
Thierry FOURNIER315ec422014-11-24 11:14:42 +01002191 *
Joseph Herlant4189d672018-11-15 10:22:31 -08002192 * The returned value can be an already filled pattern list, in this case the
Thierry FOURNIER315ec422014-11-24 11:14:42 +01002193 * flag <reuse> is set.
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002194 */
Thierry FOURNIER315ec422014-11-24 11:14:42 +01002195struct pattern_expr *pattern_new_expr(struct pattern_head *head, struct pat_ref *ref,
Emeric Brun7d27f3c2017-07-03 17:54:23 +02002196 int patflags, char **err, int *reuse)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002197{
2198 struct pattern_expr *expr;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002199 struct pattern_expr_list *list;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002200
Thierry FOURNIER315ec422014-11-24 11:14:42 +01002201 if (reuse)
2202 *reuse = 0;
2203
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002204 /* Memory and initialization of the chain element. */
2205 list = malloc(sizeof(*list));
2206 if (!list) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002207 memprintf(err, "out of memory");
2208 return NULL;
2209 }
2210
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002211 /* Look for existing similar expr. No that only the index, parse and
2212 * parse_smp function must be identical for having similar pattern.
Joseph Herlant4189d672018-11-15 10:22:31 -08002213 * The other function depends of these first.
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002214 */
2215 if (ref) {
2216 list_for_each_entry(expr, &ref->pat, list)
2217 if (expr->pat_head->index == head->index &&
2218 expr->pat_head->parse == head->parse &&
Emeric Brun7d27f3c2017-07-03 17:54:23 +02002219 expr->pat_head->parse_smp == head->parse_smp &&
2220 expr->mflags == patflags)
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002221 break;
2222 if (&expr->list == &ref->pat)
2223 expr = NULL;
2224 }
2225 else
2226 expr = NULL;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002227
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002228 /* If no similar expr was found, we create new expr. */
2229 if (!expr) {
2230 /* Get a lot of memory for the expr struct. */
2231 expr = malloc(sizeof(*expr));
2232 if (!expr) {
Andreas Seltenreiche6e22e82016-03-03 20:20:23 +01002233 free(list);
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002234 memprintf(err, "out of memory");
2235 return NULL;
2236 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002237
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002238 /* Initialize this new expr. */
2239 pattern_init_expr(expr);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002240
Emeric Brun7d27f3c2017-07-03 17:54:23 +02002241 /* Copy the pattern matching and indexing flags. */
2242 expr->mflags = patflags;
2243
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002244 /* This new pattern expression reference one of his heads. */
2245 expr->pat_head = head;
2246
2247 /* Link with ref, or to self to facilitate LIST_DEL() */
2248 if (ref)
2249 LIST_ADDQ(&ref->pat, &expr->list);
2250 else
2251 LIST_INIT(&expr->list);
2252
2253 expr->ref = ref;
2254
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002255 HA_RWLOCK_INIT(&expr->lock);
Emeric Brunb5997f72017-07-03 11:34:05 +02002256
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002257 /* We must free this pattern if it is no more used. */
2258 list->do_free = 1;
2259 }
2260 else {
2261 /* If the pattern used already exists, it is already linked
2262 * with ref and we must not free it.
2263 */
2264 list->do_free = 0;
Thierry FOURNIER315ec422014-11-24 11:14:42 +01002265 if (reuse)
2266 *reuse = 1;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002267 }
2268
2269 /* The new list element reference the pattern_expr. */
2270 list->expr = expr;
2271
2272 /* Link the list element with the pattern_head. */
2273 LIST_ADDQ(&head->head, &list->list);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002274 return expr;
2275}
2276
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002277/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
2278 * be returned there on errors and the caller will have to free it.
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002279 *
2280 * The file contains one key + value per line. Lines which start with '#' are
2281 * ignored, just like empty lines. Leading tabs/spaces are stripped. The key is
2282 * then the first "word" (series of non-space/tabs characters), and the value is
2283 * what follows this series of space/tab till the end of the line excluding
2284 * trailing spaces/tabs.
2285 *
2286 * Example :
2287 *
2288 * # this is a comment and is ignored
2289 * 62.212.114.60 1wt.eu \n
2290 * <-><-----------><---><----><---->
2291 * | | | | `--- trailing spaces ignored
2292 * | | | `-------- value
2293 * | | `--------------- middle spaces ignored
2294 * | `------------------------ key
2295 * `-------------------------------- leading spaces ignored
2296 *
2297 * Return non-zero in case of succes, otherwise 0.
2298 */
2299int pat_ref_read_from_file_smp(struct pat_ref *ref, const char *filename, char **err)
2300{
2301 FILE *file;
2302 char *c;
2303 int ret = 0;
2304 int line = 0;
2305 char *key_beg;
2306 char *key_end;
2307 char *value_beg;
2308 char *value_end;
2309
2310 file = fopen(filename, "r");
2311 if (!file) {
2312 memprintf(err, "failed to open pattern file <%s>", filename);
2313 return 0;
2314 }
2315
2316 /* now parse all patterns. The file may contain only one pattern
2317 * followed by one value per line. The start spaces, separator spaces
2318 * and and spaces are stripped. Each can contain comment started by '#'
2319 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002320 while (fgets(trash.area, trash.size, file) != NULL) {
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002321 line++;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002322 c = trash.area;
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002323
2324 /* ignore lines beginning with a dash */
2325 if (*c == '#')
2326 continue;
2327
2328 /* strip leading spaces and tabs */
2329 while (*c == ' ' || *c == '\t')
2330 c++;
2331
2332 /* empty lines are ignored too */
2333 if (*c == '\0' || *c == '\r' || *c == '\n')
2334 continue;
2335
2336 /* look for the end of the key */
2337 key_beg = c;
2338 while (*c && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2339 c++;
2340
2341 key_end = c;
2342
2343 /* strip middle spaces and tabs */
2344 while (*c == ' ' || *c == '\t')
2345 c++;
2346
2347 /* look for the end of the value, it is the end of the line */
2348 value_beg = c;
2349 while (*c && *c != '\n' && *c != '\r')
2350 c++;
2351 value_end = c;
2352
2353 /* trim possibly trailing spaces and tabs */
2354 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2355 value_end--;
2356
2357 /* set final \0 and check entries */
2358 *key_end = '\0';
2359 *value_end = '\0';
2360
2361 /* insert values */
2362 if (!pat_ref_append(ref, key_beg, value_beg, line)) {
2363 memprintf(err, "out of memory");
2364 goto out_close;
2365 }
2366 }
2367
Jerome Magnin8991ce12020-01-17 16:09:33 +01002368 if (ferror(file)) {
2369 memprintf(err, "error encountered while reading <%s> : %s",
2370 filename, strerror(errno));
2371 goto out_close;
2372 }
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002373 /* succes */
2374 ret = 1;
2375
2376 out_close:
2377 fclose(file);
2378 return ret;
2379}
2380
2381/* Reads patterns from a file. If <err_msg> is non-NULL, an error message will
2382 * be returned there on errors and the caller will have to free it.
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002383 */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002384int pat_ref_read_from_file(struct pat_ref *ref, const char *filename, char **err)
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002385{
2386 FILE *file;
2387 char *c;
2388 char *arg;
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002389 int ret = 0;
2390 int line = 0;
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002391
2392 file = fopen(filename, "r");
2393 if (!file) {
2394 memprintf(err, "failed to open pattern file <%s>", filename);
2395 return 0;
2396 }
2397
2398 /* now parse all patterns. The file may contain only one pattern per
2399 * line. If the line contains spaces, they will be part of the pattern.
2400 * The pattern stops at the first CR, LF or EOF encountered.
2401 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002402 while (fgets(trash.area, trash.size, file) != NULL) {
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002403 line++;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002404 c = trash.area;
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002405
2406 /* ignore lines beginning with a dash */
2407 if (*c == '#')
2408 continue;
2409
2410 /* strip leading spaces and tabs */
2411 while (*c == ' ' || *c == '\t')
2412 c++;
2413
2414
2415 arg = c;
2416 while (*c && *c != '\n' && *c != '\r')
2417 c++;
2418 *c = 0;
2419
2420 /* empty lines are ignored too */
2421 if (c == arg)
2422 continue;
2423
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002424 if (!pat_ref_append(ref, arg, NULL, line)) {
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002425 memprintf(err, "out of memory when loading patterns from file <%s>", filename);
2426 goto out_close;
2427 }
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002428 }
2429
Jerome Magnin8991ce12020-01-17 16:09:33 +01002430 if (ferror(file)) {
2431 memprintf(err, "error encountered while reading <%s> : %s",
2432 filename, strerror(errno));
2433 goto out_close;
2434 }
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002435 ret = 1; /* success */
2436
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002437 out_close:
2438 fclose(file);
2439 return ret;
2440}
2441
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002442int pattern_read_from_file(struct pattern_head *head, unsigned int refflags,
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002443 const char *filename, int patflags, int load_smp,
Thierry FOURNIER94580c92014-02-11 14:36:45 +01002444 char **err, const char *file, int line)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002445{
2446 struct pat_ref *ref;
2447 struct pattern_expr *expr;
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002448 struct pat_ref_elt *elt;
Willy Tarreau4deaf392014-11-26 13:17:03 +01002449 int reuse = 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002450
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002451 /* Lookup for the existing reference. */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002452 ref = pat_ref_lookup(filename);
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002453
2454 /* If the reference doesn't exists, create it and load associated file. */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002455 if (!ref) {
Thierry FOURNIER94580c92014-02-11 14:36:45 +01002456 chunk_printf(&trash,
2457 "pattern loaded from file '%s' used by %s at file '%s' line %d",
2458 filename, refflags & PAT_REF_MAP ? "map" : "acl", file, line);
2459
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002460 ref = pat_ref_new(filename, trash.area, refflags);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002461 if (!ref) {
2462 memprintf(err, "out of memory");
2463 return 0;
2464 }
2465
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002466 if (load_smp) {
Thierry FOURNIERc0bd9102014-01-29 12:32:58 +01002467 ref->flags |= PAT_REF_SMP;
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002468 if (!pat_ref_read_from_file_smp(ref, filename, err))
2469 return 0;
2470 }
2471 else {
2472 if (!pat_ref_read_from_file(ref, filename, err))
2473 return 0;
2474 }
2475 }
2476 else {
Thierry FOURNIERc0bd9102014-01-29 12:32:58 +01002477 /* The reference already exists, check the map compatibility. */
2478
2479 /* If the load require samples and the flag PAT_REF_SMP is not set,
2480 * the reference doesn't contain sample, and cannot be used.
2481 */
2482 if (load_smp) {
2483 if (!(ref->flags & PAT_REF_SMP)) {
2484 memprintf(err, "The file \"%s\" is already used as one column file "
2485 "and cannot be used by as two column file.",
2486 filename);
2487 return 0;
2488 }
2489 }
2490 else {
2491 /* The load doesn't require samples. If the flag PAT_REF_SMP is
2492 * set, the reference contains a sample, and cannot be used.
2493 */
2494 if (ref->flags & PAT_REF_SMP) {
2495 memprintf(err, "The file \"%s\" is already used as two column file "
2496 "and cannot be used by as one column file.",
2497 filename);
2498 return 0;
2499 }
2500 }
2501
Thierry FOURNIER94580c92014-02-11 14:36:45 +01002502 /* Extends display */
2503 chunk_printf(&trash, "%s", ref->display);
2504 chunk_appendf(&trash, ", by %s at file '%s' line %d",
2505 refflags & PAT_REF_MAP ? "map" : "acl", file, line);
2506 free(ref->display);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002507 ref->display = strdup(trash.area);
Thierry FOURNIER94580c92014-02-11 14:36:45 +01002508 if (!ref->display) {
2509 memprintf(err, "out of memory");
2510 return 0;
2511 }
2512
Thierry FOURNIERc0bd9102014-01-29 12:32:58 +01002513 /* Merge flags. */
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002514 ref->flags |= refflags;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002515 }
2516
2517 /* Now, we can loading patterns from the reference. */
2518
2519 /* Lookup for existing reference in the head. If the reference
2520 * doesn't exists, create it.
2521 */
2522 expr = pattern_lookup_expr(head, ref);
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002523 if (!expr || (expr->mflags != patflags)) {
Emeric Brun7d27f3c2017-07-03 17:54:23 +02002524 expr = pattern_new_expr(head, ref, patflags, err, &reuse);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002525 if (!expr)
2526 return 0;
2527 }
2528
Thierry FOURNIER315ec422014-11-24 11:14:42 +01002529 /* The returned expression may be not empty, because the function
2530 * "pattern_new_expr" lookup for similar pattern list and can
2531 * reuse a already filled pattern list. In this case, we can not
2532 * reload the patterns.
2533 */
2534 if (reuse)
2535 return 1;
2536
Thierry FOURNIER39bef452014-01-29 13:29:45 +01002537 /* Load reference content in the pattern expression. */
2538 list_for_each_entry(elt, &ref->head, list) {
2539 if (!pat_ref_push(elt, expr, patflags, err)) {
2540 if (elt->line > 0)
2541 memprintf(err, "%s at line %d of file '%s'",
2542 *err, elt->line, filename);
2543 return 0;
2544 }
2545 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002546
2547 return 1;
2548}
2549
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01002550/* This function executes a pattern match on a sample. It applies pattern <expr>
2551 * to sample <smp>. The function returns NULL if the sample dont match. It returns
2552 * non-null if the sample match. If <fill> is true and the sample match, the
2553 * function returns the matched pattern. In many cases, this pattern can be a
2554 * static buffer.
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002555 */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002556struct pattern *pattern_exec_match(struct pattern_head *head, struct sample *smp, int fill)
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002557{
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002558 struct pattern_expr_list *list;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002559 struct pattern *pat;
2560
2561 if (!head->match) {
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01002562 if (fill) {
Thierry FOURNIER503bb092015-08-19 08:35:43 +02002563 static_pattern.data = NULL;
Thierry FOURNIER6bb53ff2014-01-28 15:54:36 +01002564 static_pattern.ref = NULL;
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002565 static_pattern.sflags = 0;
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002566 static_pattern.type = SMP_T_SINT;
Thierry FOURNIER5338eea2013-12-16 14:22:13 +01002567 static_pattern.val.i = 1;
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01002568 }
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01002569 return &static_pattern;
2570 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002571
Thierry FOURNIER5d344082014-01-27 14:19:53 +01002572 /* convert input to string */
2573 if (!sample_convert(smp, head->expect_type))
2574 return NULL;
2575
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002576 list_for_each_entry(list, &head->head, list) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002577 HA_RWLOCK_RDLOCK(PATEXP_LOCK, &list->expr->lock);
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002578 pat = head->match(smp, list->expr, fill);
Emeric Brunb5997f72017-07-03 11:34:05 +02002579 if (pat) {
2580 /* We duplicate the pattern cause it could be modified
2581 by another thread */
2582 if (pat != &static_pattern) {
2583 memcpy(&static_pattern, pat, sizeof(struct pattern));
2584 pat = &static_pattern;
2585 }
2586
2587 /* We also duplicate the sample data for
2588 same reason */
2589 if (pat->data && (pat->data != &static_sample_data)) {
Christopher Faulet09fdf4b2017-11-09 16:14:16 +01002590 switch(pat->data->type) {
Emeric Brunb5997f72017-07-03 11:34:05 +02002591 case SMP_T_STR:
2592 static_sample_data.type = SMP_T_STR;
2593 static_sample_data.u.str = *get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002594 static_sample_data.u.str.data = pat->data->u.str.data;
2595 if (static_sample_data.u.str.data >= static_sample_data.u.str.size)
2596 static_sample_data.u.str.data = static_sample_data.u.str.size - 1;
2597 memcpy(static_sample_data.u.str.area,
Willy Tarreau45b2d9a2020-06-11 16:37:35 +02002598 pat->data->u.str.area, static_sample_data.u.str.data);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002599 static_sample_data.u.str.area[static_sample_data.u.str.data] = 0;
Willy Tarreau45b2d9a2020-06-11 16:37:35 +02002600 pat->data = &static_sample_data;
2601 break;
2602
Emeric Brunb5997f72017-07-03 11:34:05 +02002603 case SMP_T_IPV4:
2604 case SMP_T_IPV6:
2605 case SMP_T_SINT:
2606 memcpy(&static_sample_data, pat->data, sizeof(struct sample_data));
Willy Tarreau45b2d9a2020-06-11 16:37:35 +02002607 pat->data = &static_sample_data;
2608 break;
Emeric Brunb5997f72017-07-03 11:34:05 +02002609 default:
Willy Tarreau45b2d9a2020-06-11 16:37:35 +02002610 /* unimplemented pattern type */
Emeric Brunb5997f72017-07-03 11:34:05 +02002611 pat->data = NULL;
Willy Tarreau45b2d9a2020-06-11 16:37:35 +02002612 break;
Emeric Brunb5997f72017-07-03 11:34:05 +02002613 }
Emeric Brunb5997f72017-07-03 11:34:05 +02002614 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002615 HA_RWLOCK_RDUNLOCK(PATEXP_LOCK, &list->expr->lock);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002616 return pat;
Emeric Brunb5997f72017-07-03 11:34:05 +02002617 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002618 HA_RWLOCK_RDUNLOCK(PATEXP_LOCK, &list->expr->lock);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002619 }
2620 return NULL;
Thierry FOURNIERed66c292013-11-28 11:05:19 +01002621}
2622
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01002623/* This function prune the pattern expression. */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002624void pattern_prune(struct pattern_head *head)
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01002625{
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002626 struct pattern_expr_list *list, *safe;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002627
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002628 list_for_each_entry_safe(list, safe, &head->head, list) {
2629 LIST_DEL(&list->list);
2630 if (list->do_free) {
2631 LIST_DEL(&list->expr->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002632 HA_RWLOCK_WRLOCK(PATEXP_LOCK, &list->expr->lock);
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002633 head->prune(list->expr);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002634 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &list->expr->lock);
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01002635 free(list->expr);
2636 }
2637 free(list);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002638 }
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +01002639}
2640
Thierry FOURNIER55d0b102014-01-15 11:25:26 +01002641/* This function lookup for a pattern matching the <key> and return a
2642 * pointer to a pointer of the sample stoarge. If the <key> dont match,
2643 * the function returns NULL. If the key cannot be parsed, the function
2644 * fill <err>.
2645 */
Thierry FOURNIER12ba0c22015-08-14 00:02:11 +02002646struct sample_data **pattern_find_smp(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIER55d0b102014-01-15 11:25:26 +01002647{
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01002648 struct ebmb_node *node;
2649 struct pattern_tree *elt;
2650 struct pattern_list *pat;
Thierry FOURNIER55d0b102014-01-15 11:25:26 +01002651
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01002652 for (node = ebmb_first(&expr->pattern_tree);
2653 node;
2654 node = ebmb_next(node)) {
2655 elt = container_of(node, struct pattern_tree, node);
2656 if (elt->ref == ref)
Thierry FOURNIER503bb092015-08-19 08:35:43 +02002657 return &elt->data;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01002658 }
2659
2660 for (node = ebmb_first(&expr->pattern_tree_2);
2661 node;
2662 node = ebmb_next(node)) {
2663 elt = container_of(node, struct pattern_tree, node);
2664 if (elt->ref == ref)
Thierry FOURNIER503bb092015-08-19 08:35:43 +02002665 return &elt->data;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01002666 }
2667
2668 list_for_each_entry(pat, &expr->patterns, list)
2669 if (pat->pat.ref == ref)
Thierry FOURNIER503bb092015-08-19 08:35:43 +02002670 return &pat->pat.data;
Thierry FOURNIERe369ca22014-01-29 16:24:55 +01002671
2672 return NULL;
Thierry FOURNIER55d0b102014-01-15 11:25:26 +01002673}
2674
Thierry FOURNIERb1136502014-01-15 11:38:49 +01002675/* This function search all the pattern matching the <key> and delete it.
2676 * If the parsing of the input key fails, the function returns 0 and the
2677 * <err> is filled, else return 1;
2678 */
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01002679int pattern_delete(struct pattern_expr *expr, struct pat_ref_elt *ref)
Thierry FOURNIERb1136502014-01-15 11:38:49 +01002680{
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002681 HA_RWLOCK_WRLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIER7acca4b2014-01-28 16:43:36 +01002682 expr->pat_head->delete(expr, ref);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002683 HA_RWLOCK_WRUNLOCK(PATEXP_LOCK, &expr->lock);
Thierry FOURNIERb1136502014-01-15 11:38:49 +01002684 return 1;
2685}
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002686
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002687/* This function compares two pat_ref** on unique_id */
2688static int cmp_pat_ref(const void *_a, const void *_b)
2689{
2690 struct pat_ref * const *a = _a;
2691 struct pat_ref * const *b = _b;
2692
2693 if ((*a)->unique_id < (*b)->unique_id)
2694 return -1;
2695 else if ((*a)->unique_id > (*b)->unique_id)
2696 return 1;
2697 return 0;
2698}
2699
2700/* This function finalize the configuration parsing. It sets all the
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002701 * automatic ids
2702 */
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002703int pattern_finalize_config(void)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002704{
Tim Duesterhusd5a8b9d2020-03-17 21:08:24 +01002705 size_t len = 0;
2706 size_t unassigned_pos = 0;
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002707 int next_unique_id = 0;
Tim Duesterhusd5a8b9d2020-03-17 21:08:24 +01002708 size_t i, j;
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002709 struct pat_ref *ref, **arr;
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002710 struct list pr = LIST_HEAD_INIT(pr);
2711
Willy Tarreau861c4ef2020-03-08 00:42:37 +01002712 pat_lru_seed = ha_random();
Willy Tarreauf3045d22015-04-29 16:24:50 +02002713
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002714 /* Count pat_refs with user defined unique_id and totalt count */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002715 list_for_each_entry(ref, &pattern_reference, list) {
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002716 len++;
2717 if (ref->unique_id != -1)
2718 unassigned_pos++;
2719 }
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002720
Tim Duesterhusd5a8b9d2020-03-17 21:08:24 +01002721 if (len == 0) {
2722 return 0;
2723 }
2724
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002725 arr = calloc(len, sizeof(*arr));
2726 if (arr == NULL) {
2727 ha_alert("Out of memory error.\n");
2728 return ERR_ALERT | ERR_FATAL;
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002729 }
2730
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002731 i = 0;
2732 j = unassigned_pos;
2733 list_for_each_entry(ref, &pattern_reference, list) {
2734 if (ref->unique_id != -1)
2735 arr[i++] = ref;
2736 else
2737 arr[j++] = ref;
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002738 }
2739
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002740 /* Sort first segment of array with user-defined unique ids for
2741 * fast lookup when generating unique ids
2742 */
2743 qsort(arr, unassigned_pos, sizeof(*arr), cmp_pat_ref);
2744
2745 /* Assign unique ids to the rest of the elements */
2746 for (i = unassigned_pos; i < len; i++) {
2747 do {
2748 arr[i]->unique_id = next_unique_id++;
2749 } while (bsearch(&arr[i], arr, unassigned_pos, sizeof(*arr), cmp_pat_ref));
2750 }
2751
2752 /* Sort complete array */
2753 qsort(arr, len, sizeof(*arr), cmp_pat_ref);
2754
2755 /* Convert back to linked list */
2756 for (i = 0; i < len; i++)
2757 LIST_ADDQ(&pr, &arr[i]->list);
2758
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002759 /* swap root */
2760 LIST_ADD(&pr, &pattern_reference);
2761 LIST_DEL(&pr);
Carl Henrik Lunde4944c8c2020-02-27 16:45:50 +01002762
2763 free(arr);
2764 return 0;
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002765}
Willy Tarreau7fdd81c2019-10-23 06:59:31 +02002766
2767static int pattern_per_thread_lru_alloc()
2768{
2769 if (!global.tune.pattern_cache)
2770 return 1;
2771 pat_lru_tree = lru64_new(global.tune.pattern_cache);
2772 return !!pat_lru_tree;
2773}
2774
2775static void pattern_per_thread_lru_free()
2776{
2777 lru64_destroy(pat_lru_tree);
2778}
2779
2780REGISTER_PER_THREAD_ALLOC(pattern_per_thread_lru_alloc);
2781REGISTER_PER_THREAD_FREE(pattern_per_thread_lru_free);