blob: bc1aad29a9ae793ca994a85fdc540649f7232e5f [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 */
53};
54
55/* Sample fetch options are passed to sample fetch functions to add precision
56 * about what is desired :
57 * - fetch direction (req/resp)
58 * - intermediary / final fetch
59 */
60enum {
61 SMP_OPT_DIR_REQ = 0, /* direction = request */
62 SMP_OPT_DIR_RES = 1, /* direction = response */
63 SMP_OPT_DIR = (SMP_OPT_DIR_REQ|SMP_OPT_DIR_RES), /* mask to get direction */
64 SMP_OPT_FINAL = 2, /* final fetch, contents won't change anymore */
Willy Tarreau7a777ed2012-04-26 11:44:02 +020065 SMP_OPT_ITERATE = 4, /* fetches may be iterated if supported (for ACLs) */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +020066};
67
Willy Tarreau16c31b02012-04-23 14:24:58 +020068/* Flags used to describe fetched samples. MAY_CHANGE indicates that the result
69 * of the fetch might still evolve, for instance because of more data expected,
70 * even if the fetch has failed. VOL_* indicates how long a result may be cached.
71 */
72enum {
73 SMP_F_NOT_LAST = 1 << 0, /* other occurrences might exist for this sample */
74 SMP_F_MAY_CHANGE = 1 << 1, /* sample is unstable and might change (eg: request length) */
75 SMP_F_VOL_TEST = 1 << 2, /* result must not survive longer than the test (eg: time) */
76 SMP_F_VOL_1ST = 1 << 3, /* result sensitive to changes in first line (eg: URI) */
77 SMP_F_VOL_HDR = 1 << 4, /* result sensitive to changes in headers */
78 SMP_F_VOL_TXN = 1 << 5, /* result sensitive to new transaction (eg: HTTP version) */
79 SMP_F_VOL_SESS = 1 << 6, /* result sensitive to new session (eg: src IP) */
80 SMP_F_VOLATILE = (1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6), /* any volatility condition */
Willy Tarreau16c31b02012-04-23 14:24:58 +020081};
Emeric Brun485479d2010-09-23 18:02:19 +020082
Willy Tarreauc7e42382012-08-24 19:22:53 +020083/* needed below */
84struct session;
85
Willy Tarreau16c31b02012-04-23 14:24:58 +020086/* a sample context might be used by any sample fetch function in order to
87 * store information needed across multiple calls (eg: restart point for a
88 * next occurrence). By definition it may store up to 8 pointers, or any
89 * scalar (double, int, long long).
90 */
91union smp_ctx {
92 void *p; /* any pointer */
93 int i; /* any integer */
94 long long ll; /* any long long or smaller */
95 double d; /* any float or double */
96 void *a[8]; /* any array of up to 8 pointers */
97};
98
99/* a sample is a typed data extracted from a stream. It has a type, contents,
100 * validity constraints, a context for use in iterative calls.
101 */
102struct sample {
103 unsigned int flags; /* SMP_F_* */
Willy Tarreau422aa072012-04-20 20:49:27 +0200104 int type; /* SMP_T_* */
Willy Tarreau342acb42012-04-23 22:03:39 +0200105 union {
106 unsigned int uint; /* used for unsigned 32bits integers and booleans */
107 int sint; /* used for signed 32bits integers */
108 struct in_addr ipv4; /* used for ipv4 addresses */
109 struct in6_addr ipv6; /* used for ipv6 addresses */
110 struct chunk str; /* used for char strings or buffers */
111 } data; /* sample data */
Willy Tarreau16c31b02012-04-23 14:24:58 +0200112 union smp_ctx ctx;
113};
114
Willy Tarreau12785782012-04-27 21:37:17 +0200115/* Descriptor for a sample conversion */
116struct sample_conv {
Emeric Brun107ca302010-01-04 16:16:05 +0100117 const char *kw; /* configuration keyword */
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200118 int (*process)(const struct arg *arg_p,
Willy Tarreau342acb42012-04-23 22:03:39 +0200119 struct sample *smp); /* process 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 */
Willy Tarreau12785782012-04-27 21:37:17 +0200123 unsigned int in_type; /* expected input sample type */
124 unsigned int out_type; /* output sample type */
Emeric Brun107ca302010-01-04 16:16:05 +0100125};
126
Willy Tarreau12785782012-04-27 21:37:17 +0200127/* sample conversion expression */
128struct sample_conv_expr {
129 struct list list; /* member of a sample_expr */
130 struct sample_conv *conv; /* sample conversion used */
131 struct arg *arg_p; /* optional arguments */
Emeric Brun107ca302010-01-04 16:16:05 +0100132};
133
Willy Tarreau12785782012-04-27 21:37:17 +0200134/* Descriptor for a sample fetch method */
135struct sample_fetch {
Emeric Brun107ca302010-01-04 16:16:05 +0100136 const char *kw; /* configuration keyword */
137 int (*process)(struct proxy *px,
138 struct session *l4,
139 void *l7,
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200140 unsigned int opt, /* fetch options (SMP_OPT_*) */
141 const struct arg *arg_p,
Willy Tarreau342acb42012-04-23 22:03:39 +0200142 struct sample *smp); /* fetch processing function */
Willy Tarreau9fcb9842012-04-20 14:45:49 +0200143 unsigned int arg_mask; /* arguments (ARG*()) */
Willy Tarreau21d68a62012-04-20 15:52:36 +0200144 int (*val_args)(struct arg *arg_p,
145 char **err_msg); /* argument validation function */
Willy Tarreau12785782012-04-27 21:37:17 +0200146 unsigned long out_type; /* output sample type */
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200147 unsigned int cap; /* fetch capabilities (SMP_CAP_*) */
Emeric Brun107ca302010-01-04 16:16:05 +0100148};
149
Willy Tarreau12785782012-04-27 21:37:17 +0200150/* sample expression */
151struct sample_expr {
152 struct list list; /* member of list of sample, currently not used */
153 struct sample_fetch *fetch; /* sample fetch method */
154 struct arg *arg_p; /* optional pointer to arguments to fetch function */
Emeric Brun107ca302010-01-04 16:16:05 +0100155 struct list conv_exprs; /* list of conversion expression to apply */
156};
157
Willy Tarreau12785782012-04-27 21:37:17 +0200158/* sample fetch keywords list */
159struct sample_fetch_kw_list {
160 struct list list; /* head of sample fetch keyword list */
161 struct sample_fetch kw[VAR_ARRAY]; /* array of sample fetch descriptors */
Emeric Brun107ca302010-01-04 16:16:05 +0100162};
163
Willy Tarreau12785782012-04-27 21:37:17 +0200164/* sample conversion keywords list */
165struct sample_conv_kw_list {
166 struct list list; /* head of sample conversion keyword list */
167 struct sample_conv kw[VAR_ARRAY]; /* array of sample conversion descriptors */
Emeric Brun107ca302010-01-04 16:16:05 +0100168};
169
Willy Tarreaucd3b0942012-04-27 21:52:18 +0200170#endif /* _TYPES_SAMPLE_H */