blob: d4d38382a1d3d569690a68391b51c5f7130054be [file] [log] [blame]
Emeric Brun107ca302010-01-04 16:16:05 +01001/*
2 * include/types/pattern.h
3 * Macros, variables and structures for patterns management.
4 *
5 * Copyright (C) 2009-2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
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 _TYPES_PATTERN_H
23#define _TYPES_PATTERN_H
24
Emeric Brun107ca302010-01-04 16:16:05 +010025#include <sys/socket.h>
26#include <netinet/in.h>
Willy Tarreauecfb8e82012-04-20 12:29:52 +020027#include <types/arg.h>
28#include <types/buffers.h>
Emeric Brun107ca302010-01-04 16:16:05 +010029
Willy Tarreau422aa072012-04-20 20:49:27 +020030/* input and output sample types */
Emeric Brun107ca302010-01-04 16:16:05 +010031enum {
Willy Tarreau422aa072012-04-20 20:49:27 +020032 SMP_T_BOOL = 0, /* boolean */
33 SMP_T_UINT, /* unsigned 32bits integer type */
34 SMP_T_SINT, /* signed 32bits integer type */
35 SMP_T_IPV4, /* ipv4 type */
36 SMP_T_IPV6, /* ipv6 type */
37 SMP_T_STR, /* char string type */
38 SMP_T_BIN, /* buffer type */
39 SMP_T_CSTR, /* constant char string type, data need dup before conversion */
40 SMP_T_CBIN, /* constant buffer type, data need dup before conversion */
41 SMP_TYPES /* number of types, must always be last */
Emeric Brun107ca302010-01-04 16:16:05 +010042};
43
Willy Tarreau16c31b02012-04-23 14:24:58 +020044/* Flags used to describe fetched samples. MAY_CHANGE indicates that the result
45 * of the fetch might still evolve, for instance because of more data expected,
46 * even if the fetch has failed. VOL_* indicates how long a result may be cached.
47 */
48enum {
49 SMP_F_NOT_LAST = 1 << 0, /* other occurrences might exist for this sample */
50 SMP_F_MAY_CHANGE = 1 << 1, /* sample is unstable and might change (eg: request length) */
51 SMP_F_VOL_TEST = 1 << 2, /* result must not survive longer than the test (eg: time) */
52 SMP_F_VOL_1ST = 1 << 3, /* result sensitive to changes in first line (eg: URI) */
53 SMP_F_VOL_HDR = 1 << 4, /* result sensitive to changes in headers */
54 SMP_F_VOL_TXN = 1 << 5, /* result sensitive to new transaction (eg: HTTP version) */
55 SMP_F_VOL_SESS = 1 << 6, /* result sensitive to new session (eg: src IP) */
56 SMP_F_VOLATILE = (1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6), /* any volatility condition */
Willy Tarreau16c31b02012-04-23 14:24:58 +020057};
Emeric Brun485479d2010-09-23 18:02:19 +020058
Emeric Brun107ca302010-01-04 16:16:05 +010059/* pattern fetch direction */
60#define PATTERN_FETCH_REQ 1
61#define PATTERN_FETCH_RTR 2
62
Emeric Brun485479d2010-09-23 18:02:19 +020063
Willy Tarreau16c31b02012-04-23 14:24:58 +020064/* a sample context might be used by any sample fetch function in order to
65 * store information needed across multiple calls (eg: restart point for a
66 * next occurrence). By definition it may store up to 8 pointers, or any
67 * scalar (double, int, long long).
68 */
69union smp_ctx {
70 void *p; /* any pointer */
71 int i; /* any integer */
72 long long ll; /* any long long or smaller */
73 double d; /* any float or double */
74 void *a[8]; /* any array of up to 8 pointers */
75};
76
77/* a sample is a typed data extracted from a stream. It has a type, contents,
78 * validity constraints, a context for use in iterative calls.
79 */
80struct sample {
81 unsigned int flags; /* SMP_F_* */
Willy Tarreau422aa072012-04-20 20:49:27 +020082 int type; /* SMP_T_* */
Willy Tarreau342acb42012-04-23 22:03:39 +020083 union {
84 unsigned int uint; /* used for unsigned 32bits integers and booleans */
85 int sint; /* used for signed 32bits integers */
86 struct in_addr ipv4; /* used for ipv4 addresses */
87 struct in6_addr ipv6; /* used for ipv6 addresses */
88 struct chunk str; /* used for char strings or buffers */
89 } data; /* sample data */
Willy Tarreau16c31b02012-04-23 14:24:58 +020090 union smp_ctx ctx;
91};
92
Emeric Brun107ca302010-01-04 16:16:05 +010093/* pattern conversion */
94struct pattern_conv {
95 const char *kw; /* configuration keyword */
Willy Tarreauecfb8e82012-04-20 12:29:52 +020096 int (*process)(const struct arg *arg_p,
Willy Tarreau342acb42012-04-23 22:03:39 +020097 struct sample *smp); /* process function */
Willy Tarreau9fcb9842012-04-20 14:45:49 +020098 unsigned int arg_mask; /* arguments (ARG*()) */
Willy Tarreau21d68a62012-04-20 15:52:36 +020099 int (*val_args)(struct arg *arg_p,
100 char **err_msg); /* argument validation function */
Emeric Brun485479d2010-09-23 18:02:19 +0200101 unsigned int in_type; /* input needed pattern type */
102 unsigned int out_type; /* output pattern type */
Emeric Brun107ca302010-01-04 16:16:05 +0100103};
104
105/* pattern conversion expression */
106struct pattern_conv_expr {
107 struct list list; /* member of a pattern expression */
108 struct pattern_conv *conv; /* pattern conversion */
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200109 struct arg *arg_p; /* pointer on args */
Emeric Brun107ca302010-01-04 16:16:05 +0100110};
111
112/* pattern fetch */
113struct pattern_fetch {
114 const char *kw; /* configuration keyword */
115 int (*process)(struct proxy *px,
116 struct session *l4,
117 void *l7,
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200118 int dir, const struct arg *arg_p,
Willy Tarreau342acb42012-04-23 22:03:39 +0200119 struct sample *smp); /* fetch processing function */
Willy Tarreau9fcb9842012-04-20 14:45:49 +0200120 unsigned int arg_mask; /* arguments (ARG*()) */
Willy Tarreau21d68a62012-04-20 15:52:36 +0200121 int (*val_args)(struct arg *arg_p,
122 char **err_msg); /* argument validation function */
Emeric Brun107ca302010-01-04 16:16:05 +0100123 unsigned long out_type; /* output pattern type */
124 int dir; /* usable directions */
125};
126
127/* pattern expression */
128struct pattern_expr {
129 struct list list; /* member of list of pattern, currently not used */
130 struct pattern_fetch *fetch; /* pattern fetch */
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200131 struct arg *arg_p; /* pointer on args */
Emeric Brun107ca302010-01-04 16:16:05 +0100132 struct list conv_exprs; /* list of conversion expression to apply */
133};
134
135/* pattern fetch keywords list */
136struct pattern_fetch_kw_list {
137 struct list list; /* head of pattern fetch keyword list */
138 struct pattern_fetch kw[VAR_ARRAY]; /* array of pattern fetches */
139};
140
141/* pattern conversion keywords list */
142struct pattern_conv_kw_list {
143 struct list list; /* head of pattern conversion keyword list */
144 struct pattern_conv kw[VAR_ARRAY]; /* array of pattern ions */
145};
146
147#endif /* _TYPES_PATTERN_H */