blob: 4ed81a8e540c849ae26a46a84374ddd25e92ec2b [file] [log] [blame]
Christopher Fauletd7c91962015-04-30 11:48:27 +02001/*
2 * include/proto/filters.h
3 * This file defines function prototypes for stream filters management.
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 _PROTO_FILTERS_H
22#define _PROTO_FILTERS_H
23
24#include <types/channel.h>
25#include <types/filters.h>
26#include <types/proto_http.h>
27#include <types/proxy.h>
28#include <types/stream.h>
29
30#include <proto/channel.h>
31
32/* Useful macros to access per-channel values. It can be safely used inside
33 * filters. */
34#define CHN_IDX(chn) (((chn)->flags & CF_ISRESP) == CF_ISRESP)
35#define FLT_NXT(flt, chn) ((flt)->next[CHN_IDX(chn)])
36#define FLT_FWD(flt, chn) ((flt)->fwd[CHN_IDX(chn)])
37
Christopher Faulet3e344292015-11-24 16:24:13 +010038#define HAS_FILTERS(strm) ((strm)->strm_flt.has_filters)
39
40#define FLT_STRM_CB_IMPL_0(strm, call) \
41 do { \
42 if (HAS_FILTERS(strm)) { call; } \
43 } while (0)
44#define FLT_STRM_CB_IMPL_1(strm, call, default_ret, ...) \
45 (HAS_FILTERS(strm) ? call : default_ret)
46#define FLT_STRM_CB_IMPL_2(strm, call, default_ret, on_error) \
47 ({ \
48 int _ret; \
49 if (HAS_FILTERS(strm)) { \
50 _ret = call; \
51 if (_ret < 0) { on_error; } \
52 } \
53 else \
54 _ret = default_ret; \
55 _ret; \
56 })
57#define FLT_STRM_CB_IMPL_3(strm, call, default_ret, on_error, on_wait) \
58 ({ \
59 int _ret; \
60 if (HAS_FILTERS(strm)) { \
61 _ret = call; \
62 if (_ret < 0) { on_error; } \
63 if (!_ret) { on_wait; } \
64 } \
65 else \
66 _ret = default_ret; \
67 _ret; \
68 })
69
70#define FLT_STRM_CB_IMPL_X(strm, call, A, B, C, CB_IMPL, ...) CB_IMPL
71
72#define FLT_STRM_CB(strm, call, ...) \
73 FLT_STRM_CB_IMPL_X(strm, call, ##__VA_ARGS__, \
74 FLT_STRM_CB_IMPL_3(strm, call, ##__VA_ARGS__), \
75 FLT_STRM_CB_IMPL_2(strm, call, ##__VA_ARGS__), \
76 FLT_STRM_CB_IMPL_1(strm, call, ##__VA_ARGS__), \
77 FLT_STRM_CB_IMPL_0(strm, call))
78
79#define CALL_FILTER_ANALYZER(analyzer, strm, chn, bit) \
80 if (!HAS_FILTERS(strm) || analyzer((strm), (chn), bit)) ; else break
81
Christopher Fauletd7c91962015-04-30 11:48:27 +020082extern struct pool_head *pool2_filter;
83
84int flt_init(struct proxy *p);
85void flt_deinit(struct proxy *p);
86int flt_check(struct proxy *p);
87
88int flt_stream_start(struct stream *s);
89void flt_stream_stop(struct stream *s);
Christopher Faulet92d36382015-11-05 13:35:03 +010090int flt_set_stream_backend(struct stream *s, struct proxy *be);
91int flt_stream_init(struct stream *s);
92void flt_stream_release(struct stream *s, int only_backend);
Christopher Fauletd7c91962015-04-30 11:48:27 +020093
Christopher Fauletd7c91962015-04-30 11:48:27 +020094int flt_http_data(struct stream *s, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +020095int flt_http_chunk_trailers(struct stream *s, struct http_msg *msg);
96int flt_http_end(struct stream *s, struct http_msg *msg);
Christopher Faulet309c6412015-12-02 09:57:32 +010097int flt_http_forward_data(struct stream *s, struct http_msg *msg, unsigned int len);
Christopher Fauletd7c91962015-04-30 11:48:27 +020098
Christopher Faulet309c6412015-12-02 09:57:32 +010099void flt_http_reset(struct stream *s, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200100void flt_http_reply(struct stream *s, short status, const struct chunk *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200101
102int flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
103int flt_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
Christopher Faulet309c6412015-12-02 09:57:32 +0100104int flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200105int flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
106
107int flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit);
108
109void flt_register_keywords(struct flt_kw_list *kwl);
110struct flt_kw *flt_find_kw(const char *kw);
111void flt_dump_kws(char **out);
112
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100113/* Helper function that returns the "global" state of filters attached to a
114 * stream. */
115static inline struct strm_flt *
116strm_flt(struct stream *s)
117{
118 return &s->strm_flt;
119}
120
Christopher Fauletd7c91962015-04-30 11:48:27 +0200121static inline void
122flt_set_forward_data(struct filter *filter, struct channel *chn)
123{
124 filter->flags[CHN_IDX(chn)] |= FILTER_FL_FORWARD_DATA;
125}
126
127static inline void
128flt_reset_forward_data(struct filter *filter, struct channel *chn)
129{
130 filter->flags[CHN_IDX(chn)] &= ~FILTER_FL_FORWARD_DATA;
131}
132
133static inline int
134flt_want_forward_data(struct filter *filter, const struct channel *chn)
135{
136 return filter->flags[CHN_IDX(chn)] & FILTER_FL_FORWARD_DATA;
137}
138
139
140/* This function must be called when a filter alter incoming data. It updates
141 * next offset value of all filter's predecessors. Do not call this function
142 * when a filter change the size of incomding data leads to an undefined
143 * behavior.
144 *
145 * This is the filter's responsiblitiy to update data itself. For now, it is
146 * unclear to know how to handle data updates, so we do the minimum here. For
147 * example, if you filter an HTTP message, we must update msg->next and
148 * msg->chunk_len values.
149 */
150static inline void
151flt_change_next_size(struct filter *filter, struct channel *chn, int len)
152{
153 struct stream *s = chn_strm(chn);
154 struct filter *f;
155
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100156 list_for_each_entry(f, &strm_flt(s)->filters, list) {
Christopher Fauletd7c91962015-04-30 11:48:27 +0200157 if (f == filter)
158 break;
159 FLT_NXT(f, chn) += len;
160 }
161}
162
163/* This function must be called when a filter alter forwarded data. It updates
164 * offset values (next and forward) of all filters. Do not call this function
165 * when a filter change the size of forwarded data leads to an undefined
166 * behavior.
167 *
168 * This is the filter's responsiblitiy to update data itself. For now, it is
169 * unclear to know how to handle data updates, so we do the minimum here. For
170 * example, if you filter an HTTP message, we must update msg->next and
171 * msg->chunk_len values.
172 */
173static inline void
174flt_change_forward_size(struct filter *filter, struct channel *chn, int len)
175{
176 struct stream *s = chn_strm(chn);
177 struct filter *f;
178 int before = 1;
179
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100180 list_for_each_entry(f, &strm_flt(s)->filters, list) {
Christopher Fauletd7c91962015-04-30 11:48:27 +0200181 if (f == filter)
182 before = 0;
183 if (before)
184 FLT_FWD(f, chn) += len;
185 FLT_NXT(f, chn) += len;
186 }
187}
188
189
190#endif /* _PROTO_FILTERS_H */