blob: 62fcfb1291e73552e969c52b90039164c57b19ca [file] [log] [blame]
Christopher Fauletd7c91962015-04-30 11:48:27 +02001/*
2 * include/types/filteers.h
3 * This file defines everything related to stream filters.
4 *
5 * Copyright (C) 2015 Qualys Inc., Christopher Faulet <cfaulet@qualys.com>
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#ifndef _TYPES_FILTERS_H
22#define _TYPES_FILTERS_H
23
24#include <common/config.h>
25#include <common/mini-clist.h>
26
27struct http_msg;
28struct proxy;
29struct stream;
30struct channel;
Christopher Faulet443ea1a2016-02-04 13:40:26 +010031struct flt_conf;
Christopher Fauletd7c91962015-04-30 11:48:27 +020032struct filter;
33
34/* Descriptor for a "filter" keyword. The ->parse() function returns 0 in case
35 * of success, or a combination of ERR_* flags if an error is encountered. The
Christopher Fauletb3f4e142016-03-07 12:46:38 +010036 * function pointer can be NULL if not implemented.
Christopher Fauletd7c91962015-04-30 11:48:27 +020037 */
38struct flt_kw {
39 const char *kw;
40 int (*parse)(char **args, int *cur_arg, struct proxy *px,
Thierry Fournier3610c392016-04-13 18:27:51 +020041 struct flt_conf *fconf, char **err, void *private);
42 void *private;
Christopher Fauletd7c91962015-04-30 11:48:27 +020043};
44
45/*
46 * A keyword list. It is a NULL-terminated array of keywords. It embeds a struct
47 * list in order to be linked to other lists, allowing it to easily be declared
48 * where it is needed, and linked without duplicating data nor allocating
49 * memory. It is also possible to indicate a scope for the keywords.
50 */
51struct flt_kw_list {
52 const char *scope;
53 struct list list;
54 struct flt_kw kw[VAR_ARRAY];
55};
56
57/*
Christopher Fauletd7c91962015-04-30 11:48:27 +020058 * Callbacks available on a filter:
59 *
60 * - init : Initializes the filter for a proxy. Returns a
61 * negative value if an error occurs.
62 * - deinit : Cleans up what the init function has done.
63 * - check : Check the filter config for a proxy. Returns the
64 * number of errors encountered.
65 *
66 *
67 * - stream_start : Called when a stream is started. This callback will
68 * only be called for filters defined on a proxy with
69 * the frontend capability.
70 * Returns a negative value if an error occurs, any
71 * other value otherwise.
72 * - stream_stop : Called when a stream is stopped. This callback will
73 * only be called for filters defined on a proxy with
74 * the frontend capability.
75 *
76 *
77 * - channel_start_analyze: Called when a filter starts to analyze a channel.
78 * Returns a negative value if an error occurs, 0 if
79 * it needs to wait, any other value otherwise.
Christopher Faulet3a394fa2016-05-11 17:13:39 +020080 * - channel_pre_analyze : Called before each analyzer attached to a channel,
Christopher Fauletd7c91962015-04-30 11:48:27 +020081 * expects analyzers responsible for data sending.
82 * Returns a negative value if an error occurs, 0 if
83 * it needs to wait, any other value otherwise.
Christopher Faulet3a394fa2016-05-11 17:13:39 +020084 * - channel_post_analyze: Called after each analyzer attached to a channel,
85 * expects analyzers responsible for data sending.
86 * Returns a negative value if an error occurs,
87 * any other value otherwise.
Christopher Fauletd7c91962015-04-30 11:48:27 +020088 * - channel_end_analyze : Called when all other analyzers have finished their
89 * processing.
90 * Returns a negative value if an error occurs, 0 if
91 * it needs to wait, any other value otherwise.
92 *
93 *
Christopher Faulet1339d742016-05-11 16:48:33 +020094 * - http_headers : Called before the body parsing, after all HTTP
95 * headers was parsed and analyzed.
96 * Returns a negative value if an error occurs, 0 if
97 * it needs to wait, any other value otherwise.
Christopher Fauletd7c91962015-04-30 11:48:27 +020098 * - http_data : Called when unparsed body data are available.
99 * Returns a negative value if an error occurs, else
100 * the number of consumed bytes.
Christopher Fauletd7c91962015-04-30 11:48:27 +0200101 * - http_chunk_trailers : Called when part of trailer headers of a
102 * chunk-encoded request/response are ready to be
103 * processed.
104 * Returns a negative value if an error occurs, any
105 * other value otherwise.
106 * - http_end : Called when all the request/response has been
107 * processed and all body data has been forwarded.
108 * Returns a negative value if an error occurs, 0 if
109 * it needs to wait for some reason, any other value
110 * otherwise.
111 * - http_reset : Called when the HTTP message is reseted. It happens
112 * when a 100-continue response is received.
113 * Returns nothing.
114 * - http_reply : Called when, at any time, HA proxy decides to stop
115 * the HTTP message's processing and to send a message
116 * to the client (mainly, when an error or a redirect
117 * occur).
118 * Returns nothing.
119 * - http_forward_data : Called when some data can be consumed.
120 * Returns a negative value if an error occurs, else
121 * the number of forwarded bytes.
122 * - tcp_data : Called when unparsed data are available.
123 * Returns a negative value if an error occurs, else
124 * the number of consumed bytes.
125 * - tcp_forward_data : Called when some data can be consumed.
126 * Returns a negative value if an error occurs, else
127 * or the number of forwarded bytes.
128 */
129struct flt_ops {
130 /*
131 * Callbacks to manage the filter lifecycle
132 */
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100133 int (*init) (struct proxy *p, struct flt_conf *fconf);
134 void (*deinit)(struct proxy *p, struct flt_conf *fconf);
135 int (*check) (struct proxy *p, struct flt_conf *fconf);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200136
137 /*
138 * Stream callbacks
139 */
140 int (*stream_start) (struct stream *s, struct filter *f);
141 void (*stream_stop) (struct stream *s, struct filter *f);
142
143 /*
144 * Channel callbacks
145 */
146 int (*channel_start_analyze)(struct stream *s, struct filter *f, struct channel *chn);
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200147 int (*channel_pre_analyze) (struct stream *s, struct filter *f, struct channel *chn, unsigned int an_bit);
148 int (*channel_post_analyze) (struct stream *s, struct filter *f, struct channel *chn, unsigned int an_bit);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200149 int (*channel_end_analyze) (struct stream *s, struct filter *f, struct channel *chn);
150
151 /*
152 * HTTP callbacks
153 */
Christopher Faulet1339d742016-05-11 16:48:33 +0200154 int (*http_headers) (struct stream *s, struct filter *f, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200155 int (*http_data) (struct stream *s, struct filter *f, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200156 int (*http_chunk_trailers)(struct stream *s, struct filter *f, struct http_msg *msg);
157 int (*http_end) (struct stream *s, struct filter *f, struct http_msg *msg);
Christopher Faulet309c6412015-12-02 09:57:32 +0100158 int (*http_forward_data) (struct stream *s, struct filter *f, struct http_msg *msg,
159 unsigned int len);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200160
Christopher Faulet309c6412015-12-02 09:57:32 +0100161 void (*http_reset) (struct stream *s, struct filter *f, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200162 void (*http_reply) (struct stream *s, struct filter *f, short status,
163 const struct chunk *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200164
165 /*
166 * TCP callbacks
167 */
168 int (*tcp_data) (struct stream *s, struct filter *f, struct channel *chn);
169 int (*tcp_forward_data)(struct stream *s, struct filter *f, struct channel *chn,
170 unsigned int len);
171};
172
Christopher Fauletda02e172015-12-04 09:25:05 +0100173/* Flags set on a filter instance */
174#define FLT_FL_IS_BACKEND_FILTER 0x0001 /* The filter is a backend filter */
175#define FLT_FL_IS_REQ_DATA_FILTER 0x0002 /* The filter will parse data on the request channel */
176#define FLT_FL_IS_RSP_DATA_FILTER 0x0004 /* The filter will parse data on the response channel */
177
178
179/* Flags set on the stream, common to all filters attached to its stream */
180#define STRM_FLT_FL_HAS_FILTERS 0x0001 /* The stream has at least one filter */
181
Christopher Fauletd7c91962015-04-30 11:48:27 +0200182/*
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100183 * Structure representing the filter configuration, attached to a proxy and
184 * accessible from a filter when instantiated in a stream
185 */
186struct flt_conf {
187 const char *id; /* The filter id */
188 struct flt_ops *ops; /* The filter callbacks */
189 void *conf; /* The filter configuration */
190 struct list list; /* Next filter for the same proxy */
191};
192
193/*
194 * Structure reprensenting a filter instance attached to a stream
Christopher Fauletd7c91962015-04-30 11:48:27 +0200195 *
196 * 2D-Array fields are used to store info per channel. The first index stands
197 * for the request channel, and the second one for the response channel.
198 * Especially, <next> and <fwd> are offets representing amount of data that the
199 * filter are, respectively, parsed and forwarded on a channel. Filters can
200 * access these values using FLT_NXT and FLT_FWD macros.
201 */
202struct filter {
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100203 struct flt_conf *config; /* the filter's configuration */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200204 void *ctx; /* The filter context (opaque) */
Christopher Fauletda02e172015-12-04 09:25:05 +0100205 unsigned short flags; /* FLT_FL_* */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200206 unsigned int next[2]; /* Offset, relative to buf->p, to the next byte to parse for a specific channel
207 * 0: request channel, 1: response channel */
208 unsigned int fwd[2]; /* Offset, relative to buf->p, to the next byte to forward for a specific channel
209 * 0: request channel, 1: response channel */
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200210 unsigned int pre_analyzers; /* bit field indicating analyzers to pre-process */
211 unsigned int post_analyzers; /* bit field indicating analyzers to post-process */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200212 struct list list; /* Next filter for the same proxy/stream */
213};
214
Christopher Fauletda02e172015-12-04 09:25:05 +0100215/*
216 * Structure reprensenting the "global" state of filters attached to a stream.
217 */
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100218struct strm_flt {
Christopher Fauletda02e172015-12-04 09:25:05 +0100219 struct list filters; /* List of filters attached to a stream */
220 struct filter *current[2]; /* From which filter resume processing, for a specific channel.
221 * This is used for resumable callbacks only,
222 * If NULL, we start from the first filter.
223 * 0: request channel, 1: response channel */
224 unsigned short flags; /* STRM_FL_* */
225 unsigned char nb_req_data_filters; /* Number of data filters registerd on the request channel */
226 unsigned char nb_rsp_data_filters; /* Number of data filters registerd on the response channel */
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100227};
228
Christopher Fauletd7c91962015-04-30 11:48:27 +0200229#endif /* _TYPES_FILTERS_H */
230
231/*
232 * Local variables:
233 * c-indent-level: 8
234 * c-basic-offset: 8
235 * End:
236 */