blob: 14248208f4b01a89b7456ab47bb65ddf3f29d507 [file] [log] [blame]
Thierry FOURNIERed66c292013-11-28 11:05:19 +01001/*
2 * include/proto/pattern.h
3 * This file provides structures and types for pattern matching.
4 *
5 * Copyright (C) 2000-2013 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _PROTO_PATTERN_H
23#define _PROTO_PATTERN_H
24
Willy Tarreau6f8fe312013-11-28 22:24:25 +010025#include <string.h>
26
Willy Tarreau0cba6072013-11-28 22:21:02 +010027#include <common/config.h>
28#include <common/standard.h>
29#include <types/pattern.h>
30
Thierry FOURNIER7148ce62013-12-06 19:06:43 +010031/* parse the <args> with <expr> compliant parser. <pattern> is a context for
Thierry FOURNIERed66c292013-11-28 11:05:19 +010032 * the current parsed acl. It must initialized at NULL:
33 *
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010034 * struct pattern *pattern = NULL
35 * pattern_register(..., &pattern, ...);
Thierry FOURNIERed66c292013-11-28 11:05:19 +010036 *
Thierry FOURNIERa65b3432013-11-28 18:22:00 +010037 * patflag are a lot of 'PAT_F_*' flags pattern compatible. see
Thierry FOURNIERed66c292013-11-28 11:05:19 +010038 * <types/acl.h>.
39 *
Thierry FOURNIER7148ce62013-12-06 19:06:43 +010040 * The function returns 1 if the processing is ok, return 0
41 * if the parser fails, with <err> message filled.
Thierry FOURNIERed66c292013-11-28 11:05:19 +010042 */
Thierry FOURNIERb9b08462013-12-13 15:12:32 +010043int pattern_register(struct pattern_expr *expr, const char *arg, struct sample_storage *smp, int patflags, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +010044
Willy Tarreau6f8fe312013-11-28 22:24:25 +010045/* return the PAT_MATCH_* index for match name "name", or < 0 if not found */
46static inline int pat_find_match_name(const char *name)
47{
48 int i;
49
50 for (i = 0; i < PAT_MATCH_NUM; i++)
51 if (strcmp(name, pat_match_names[i]) == 0)
52 return i;
53 return -1;
54}
55
Thierry FOURNIERed66c292013-11-28 11:05:19 +010056/* This function executes a pattern match on a sample. It applies pattern <expr>
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010057 * to sample <smp>. The function returns NULL if the sample dont match. It returns
58 * non-null if the sample match. If <fill> is true and the sample match, the
59 * function returns the matched pattern. In many cases, this pattern can be a
60 * static buffer.
Thierry FOURNIERed66c292013-11-28 11:05:19 +010061 */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +010062struct pattern *pattern_exec_match(struct pattern_expr *expr, struct sample *smp, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +010063
64/*
65 *
Thierry FOURNIERb9b08462013-12-13 15:12:32 +010066 * The following function gets "pattern", duplicate it and index it in "expr"
67 *
68 */
69int pat_idx_list_val(struct pattern_expr *expr, struct pattern *pat, char **err);
70int pat_idx_list_ptr(struct pattern_expr *expr, struct pattern *pat, char **err);
71int pat_idx_list_str(struct pattern_expr *expr, struct pattern *pat, char **err);
72int pat_idx_list_reg(struct pattern_expr *expr, struct pattern *pat, char **err);
73int pat_idx_tree_ip(struct pattern_expr *expr, struct pattern *pat, char **err);
74int pat_idx_tree_str(struct pattern_expr *expr, struct pattern *pat, char **err);
75
76/*
77 *
Thierry FOURNIERb1136502014-01-15 11:38:49 +010078 * The following functions search pattern <pattern> into the pattern
79 * expression <expr>. If the pattern is found, delete it. This function
80 * never fails.
81 *
82 */
83void pat_del_list_val(struct pattern_expr *expr, struct pattern *pat);
84void pat_del_tree_ip(struct pattern_expr *expr, struct pattern *pat);
85void pat_del_list_ptr(struct pattern_expr *expr, struct pattern *pat);
86void pat_del_tree_str(struct pattern_expr *expr, struct pattern *pat);
87void pat_del_list_str(struct pattern_expr *expr, struct pattern *pat);
88void pat_del_list_reg(struct pattern_expr *expr, struct pattern *pat);
89
90/*
91 *
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +010092 * The following functions clean all entries of a pattern expression and
93 * reset the tree and list root.
94 *
95 */
96void pat_prune_val(struct pattern_expr *expr);
97void pat_prune_ptr(struct pattern_expr *expr);
98void pat_prune_reg(struct pattern_expr *expr);
99
100/*
101 *
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100102 * The following functions are general purpose pattern matching functions.
103 *
104 */
105
106
107/* ignore the current line */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100108int pat_parse_nothing(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100109
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100110/* Parse an integer. It is put both in min and max. */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100111int pat_parse_int(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100112
Thierry FOURNIERcc0e0b32013-12-06 16:56:40 +0100113/* Parse len like an integer, but specify expected string type */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100114int pat_parse_len(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERcc0e0b32013-12-06 16:56:40 +0100115
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100116/* Parse an version. It is put both in min and max. */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100117int pat_parse_dotted_ver(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100118
119/* Parse a range of integers delimited by either ':' or '-'. If only one
120 * integer is read, it is set as both min and max.
121 */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100122int pat_parse_range(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100123
124/* Parse a string. It is allocated and duplicated. */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100125int pat_parse_str(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100126
127/* Parse a hexa binary definition. It is allocated and duplicated. */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100128int pat_parse_bin(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100129
130/* Parse a regex. It is allocated. */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100131int pat_parse_reg(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100132
133/* Parse an IP address and an optional mask in the form addr[/mask].
134 * The addr may either be an IPv4 address or a hostname. The mask
135 * may either be a dotted mask or a number of bits. Returns 1 if OK,
136 * otherwise 0.
137 */
Thierry FOURNIERedc15c32013-12-13 15:36:59 +0100138int pat_parse_ip(const char *text, struct pattern *pattern, char **err);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100139
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100140/* NB: For two strings to be identical, it is required that their lengths match */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100141struct pattern *pat_match_str(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100142
143/* NB: For two binary buffers to be identical, it is required that their lengths match */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100144struct pattern *pat_match_bin(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100145
146/* Checks that the length of the pattern in <test> is included between min and max */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100147struct pattern *pat_match_len(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100148
149/* Checks that the integer in <test> is included between min and max */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100150struct pattern *pat_match_int(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERe7ba2362014-01-21 11:25:41 +0100151
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100152/* always return false */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100153struct pattern *pat_match_nothing(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100154
155/* Checks that the pattern matches the end of the tested string. */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100156struct pattern *pat_match_end(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100157
158/* Checks that the pattern matches the beginning of the tested string. */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100159struct pattern *pat_match_beg(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100160
161/* Checks that the pattern is included inside the tested string. */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100162struct pattern *pat_match_sub(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100163
164/* Checks that the pattern is included inside the tested string, but enclosed
165 * between slashes or at the beginning or end of the string. Slashes at the
166 * beginning or end of the pattern are ignored.
167 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100168struct pattern *pat_match_dir(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100169
170/* Checks that the pattern is included inside the tested string, but enclosed
171 * between dots or at the beginning or end of the string. Dots at the beginning
172 * or end of the pattern are ignored.
173 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100174struct pattern *pat_match_dom(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100175
176/* Check that the IPv4 address in <test> matches the IP/mask in pattern */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100177struct pattern *pat_match_ip(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100178
179/* Executes a regex. It temporarily changes the data to add a trailing zero,
180 * and restores the previous character when leaving.
181 */
Thierry FOURNIER5338eea2013-12-16 14:22:13 +0100182struct pattern *pat_match_reg(struct sample *smp, struct pattern_expr *expr, int fill);
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100183
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100184int pattern_read_from_file(struct pattern_expr *expr, const char *filename, int patflags, char **err);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100185void pattern_init_expr(struct pattern_expr *expr);
Thierry FOURNIERe1bcac52013-12-13 16:09:50 +0100186int pattern_lookup(const char *args, struct pattern_expr *expr, struct pattern_list **pat_elt, struct pattern_tree **idx_elt, char **err);
Thierry FOURNIERb1136502014-01-15 11:38:49 +0100187int pattern_delete(const char *key, struct pattern_expr *expr, char **err);
Thierry FOURNIER6f7203d2014-01-14 16:24:51 +0100188void pattern_prune(struct pattern_expr *expr);
Thierry FOURNIER01cdcd42013-12-10 15:08:01 +0100189
Thierry FOURNIERed66c292013-11-28 11:05:19 +0100190
191#endif