blob: 6c19ade139101244100f6fb16791747ee0da7812 [file] [log] [blame]
Emeric Brun107ca302010-01-04 16:16:05 +01001/*
Willy Tarreaucd3b0942012-04-27 21:52:18 +02002 * include/types/sample.h
3 * Macros, variables and structures for sample management.
Emeric Brun107ca302010-01-04 16:16:05 +01004 *
5 * Copyright (C) 2009-2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
Willy Tarreaucd3b0942012-04-27 21:52:18 +02006 * Copyright (C) 2012 Willy Tarreau <w@1wt.eu>
Emeric Brun107ca302010-01-04 16:16:05 +01007 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation, version 2.1
11 * exclusively.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
Willy Tarreaucd3b0942012-04-27 21:52:18 +020023#ifndef _TYPES_SAMPLE_H
24#define _TYPES_SAMPLE_H
Emeric Brun107ca302010-01-04 16:16:05 +010025
Emeric Brun107ca302010-01-04 16:16:05 +010026#include <sys/socket.h>
27#include <netinet/in.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020028
29#include <common/chunk.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020030#include <common/mini-clist.h>
Willy Tarreauecfb8e82012-04-20 12:29:52 +020031#include <types/arg.h>
Emeric Brun107ca302010-01-04 16:16:05 +010032
Willy Tarreau422aa072012-04-20 20:49:27 +020033/* input and output sample types */
Emeric Brun107ca302010-01-04 16:16:05 +010034enum {
Willy Tarreau422aa072012-04-20 20:49:27 +020035 SMP_T_BOOL = 0, /* boolean */
36 SMP_T_UINT, /* unsigned 32bits integer type */
37 SMP_T_SINT, /* signed 32bits integer type */
38 SMP_T_IPV4, /* ipv4 type */
39 SMP_T_IPV6, /* ipv6 type */
40 SMP_T_STR, /* char string type */
41 SMP_T_BIN, /* buffer type */
42 SMP_T_CSTR, /* constant char string type, data need dup before conversion */
43 SMP_T_CBIN, /* constant buffer type, data need dup before conversion */
44 SMP_TYPES /* number of types, must always be last */
Emeric Brun107ca302010-01-04 16:16:05 +010045};
46
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020047/* Sample fetch capabilities are used to declare keywords. Right now only
48 * the supportd fetch directions are specified.
49 */
50enum {
51 SMP_CAP_REQ = 1 << 0, /* fetch supported on request */
52 SMP_CAP_RES = 1 << 1, /* fetch supported on response */
Willy Tarreau1b6c00c2012-10-05 22:41:26 +020053 SMP_CAP_L7 = 1 << 2, /* fetch may require access to L7 */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020054};
55
56/* Sample fetch options are passed to sample fetch functions to add precision
57 * about what is desired :
58 * - fetch direction (req/resp)
59 * - intermediary / final fetch
60 */
61enum {
62 SMP_OPT_DIR_REQ = 0, /* direction = request */
63 SMP_OPT_DIR_RES = 1, /* direction = response */
64 SMP_OPT_DIR = (SMP_OPT_DIR_REQ|SMP_OPT_DIR_RES), /* mask to get direction */
65 SMP_OPT_FINAL = 2, /* final fetch, contents won't change anymore */
Willy Tarreau7a777ed2012-04-26 11:44:02 +020066 SMP_OPT_ITERATE = 4, /* fetches may be iterated if supported (for ACLs) */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020067};
68
Willy Tarreau16c31b02012-04-23 14:24:58 +020069/* Flags used to describe fetched samples. MAY_CHANGE indicates that the result
70 * of the fetch might still evolve, for instance because of more data expected,
71 * even if the fetch has failed. VOL_* indicates how long a result may be cached.
72 */
73enum {
74 SMP_F_NOT_LAST = 1 << 0, /* other occurrences might exist for this sample */
75 SMP_F_MAY_CHANGE = 1 << 1, /* sample is unstable and might change (eg: request length) */
76 SMP_F_VOL_TEST = 1 << 2, /* result must not survive longer than the test (eg: time) */
77 SMP_F_VOL_1ST = 1 << 3, /* result sensitive to changes in first line (eg: URI) */
78 SMP_F_VOL_HDR = 1 << 4, /* result sensitive to changes in headers */
79 SMP_F_VOL_TXN = 1 << 5, /* result sensitive to new transaction (eg: HTTP version) */
80 SMP_F_VOL_SESS = 1 << 6, /* result sensitive to new session (eg: src IP) */
81 SMP_F_VOLATILE = (1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6), /* any volatility condition */
Willy Tarreau16c31b02012-04-23 14:24:58 +020082};
Emeric Brun485479d2010-09-23 18:02:19 +020083
Willy Tarreauc7e42382012-08-24 19:22:53 +020084/* needed below */
85struct session;
86
Willy Tarreau16c31b02012-04-23 14:24:58 +020087/* a sample context might be used by any sample fetch function in order to
88 * store information needed across multiple calls (eg: restart point for a
89 * next occurrence). By definition it may store up to 8 pointers, or any
90 * scalar (double, int, long long).
91 */
92union smp_ctx {
93 void *p; /* any pointer */
94 int i; /* any integer */
95 long long ll; /* any long long or smaller */
96 double d; /* any float or double */
97 void *a[8]; /* any array of up to 8 pointers */
98};
99
100/* a sample is a typed data extracted from a stream. It has a type, contents,
101 * validity constraints, a context for use in iterative calls.
102 */
103struct sample {
104 unsigned int flags; /* SMP_F_* */
Willy Tarreau422aa072012-04-20 20:49:27 +0200105 int type; /* SMP_T_* */
Willy Tarreau342acb42012-04-23 22:03:39 +0200106 union {
107 unsigned int uint; /* used for unsigned 32bits integers and booleans */
108 int sint; /* used for signed 32bits integers */
109 struct in_addr ipv4; /* used for ipv4 addresses */
110 struct in6_addr ipv6; /* used for ipv6 addresses */
111 struct chunk str; /* used for char strings or buffers */
112 } data; /* sample data */
Willy Tarreau16c31b02012-04-23 14:24:58 +0200113 union smp_ctx ctx;
114};
115
Willy Tarreau12785782012-04-27 21:37:17 +0200116/* Descriptor for a sample conversion */
117struct sample_conv {
Emeric Brun107ca302010-01-04 16:16:05 +0100118 const char *kw; /* configuration keyword */
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200119 int (*process)(const struct arg *arg_p,
Willy Tarreau342acb42012-04-23 22:03:39 +0200120 struct sample *smp); /* process function */
Willy Tarreau9fcb9842012-04-20 14:45:49 +0200121 unsigned int arg_mask; /* arguments (ARG*()) */
Willy Tarreau21d68a62012-04-20 15:52:36 +0200122 int (*val_args)(struct arg *arg_p,
123 char **err_msg); /* argument validation function */
Willy Tarreau12785782012-04-27 21:37:17 +0200124 unsigned int in_type; /* expected input sample type */
125 unsigned int out_type; /* output sample type */
Emeric Brun107ca302010-01-04 16:16:05 +0100126};
127
Willy Tarreau12785782012-04-27 21:37:17 +0200128/* sample conversion expression */
129struct sample_conv_expr {
130 struct list list; /* member of a sample_expr */
131 struct sample_conv *conv; /* sample conversion used */
132 struct arg *arg_p; /* optional arguments */
Emeric Brun107ca302010-01-04 16:16:05 +0100133};
134
Willy Tarreau12785782012-04-27 21:37:17 +0200135/* Descriptor for a sample fetch method */
136struct sample_fetch {
Emeric Brun107ca302010-01-04 16:16:05 +0100137 const char *kw; /* configuration keyword */
138 int (*process)(struct proxy *px,
139 struct session *l4,
140 void *l7,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200141 unsigned int opt, /* fetch options (SMP_OPT_*) */
142 const struct arg *arg_p,
Willy Tarreau342acb42012-04-23 22:03:39 +0200143 struct sample *smp); /* fetch processing function */
Willy Tarreau9fcb9842012-04-20 14:45:49 +0200144 unsigned int arg_mask; /* arguments (ARG*()) */
Willy Tarreau21d68a62012-04-20 15:52:36 +0200145 int (*val_args)(struct arg *arg_p,
146 char **err_msg); /* argument validation function */
Willy Tarreau12785782012-04-27 21:37:17 +0200147 unsigned long out_type; /* output sample type */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200148 unsigned int cap; /* fetch capabilities (SMP_CAP_*) */
Emeric Brun107ca302010-01-04 16:16:05 +0100149};
150
Willy Tarreau12785782012-04-27 21:37:17 +0200151/* sample expression */
152struct sample_expr {
153 struct list list; /* member of list of sample, currently not used */
154 struct sample_fetch *fetch; /* sample fetch method */
155 struct arg *arg_p; /* optional pointer to arguments to fetch function */
Emeric Brun107ca302010-01-04 16:16:05 +0100156 struct list conv_exprs; /* list of conversion expression to apply */
157};
158
Willy Tarreau12785782012-04-27 21:37:17 +0200159/* sample fetch keywords list */
160struct sample_fetch_kw_list {
161 struct list list; /* head of sample fetch keyword list */
162 struct sample_fetch kw[VAR_ARRAY]; /* array of sample fetch descriptors */
Emeric Brun107ca302010-01-04 16:16:05 +0100163};
164
Willy Tarreau12785782012-04-27 21:37:17 +0200165/* sample conversion keywords list */
166struct sample_conv_kw_list {
167 struct list list; /* head of sample conversion keyword list */
168 struct sample_conv kw[VAR_ARRAY]; /* array of sample conversion descriptors */
Emeric Brun107ca302010-01-04 16:16:05 +0100169};
170
Willy Tarreaucd3b0942012-04-27 21:52:18 +0200171#endif /* _TYPES_SAMPLE_H */