blob: 0eb69a2cd0a87864be867c95984bba5f761a87ef [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
94int flt_http_headers(struct stream *s, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +020095int flt_http_data(struct stream *s, struct http_msg *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +020096int flt_http_chunk_trailers(struct stream *s, struct http_msg *msg);
97int flt_http_end(struct stream *s, struct http_msg *msg);
98void flt_http_reset(struct stream *s, struct http_msg *msg);
99
100void flt_http_reply(struct stream *s, short status, const struct chunk *msg);
101int flt_http_forward_data(struct stream *s, struct http_msg *msg, unsigned int len);
102
103int flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
104int flt_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
105int 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
113static inline void
114flt_set_forward_data(struct filter *filter, struct channel *chn)
115{
116 filter->flags[CHN_IDX(chn)] |= FILTER_FL_FORWARD_DATA;
117}
118
119static inline void
120flt_reset_forward_data(struct filter *filter, struct channel *chn)
121{
122 filter->flags[CHN_IDX(chn)] &= ~FILTER_FL_FORWARD_DATA;
123}
124
125static inline int
126flt_want_forward_data(struct filter *filter, const struct channel *chn)
127{
128 return filter->flags[CHN_IDX(chn)] & FILTER_FL_FORWARD_DATA;
129}
130
131
132/* This function must be called when a filter alter incoming data. It updates
133 * next offset value of all filter's predecessors. Do not call this function
134 * when a filter change the size of incomding data leads to an undefined
135 * behavior.
136 *
137 * This is the filter's responsiblitiy to update data itself. For now, it is
138 * unclear to know how to handle data updates, so we do the minimum here. For
139 * example, if you filter an HTTP message, we must update msg->next and
140 * msg->chunk_len values.
141 */
142static inline void
143flt_change_next_size(struct filter *filter, struct channel *chn, int len)
144{
145 struct stream *s = chn_strm(chn);
146 struct filter *f;
147
148 list_for_each_entry(f, &s->strm_flt.filters, list) {
149 if (f == filter)
150 break;
151 FLT_NXT(f, chn) += len;
152 }
153}
154
155/* This function must be called when a filter alter forwarded data. It updates
156 * offset values (next and forward) of all filters. Do not call this function
157 * when a filter change the size of forwarded data leads to an undefined
158 * behavior.
159 *
160 * This is the filter's responsiblitiy to update data itself. For now, it is
161 * unclear to know how to handle data updates, so we do the minimum here. For
162 * example, if you filter an HTTP message, we must update msg->next and
163 * msg->chunk_len values.
164 */
165static inline void
166flt_change_forward_size(struct filter *filter, struct channel *chn, int len)
167{
168 struct stream *s = chn_strm(chn);
169 struct filter *f;
170 int before = 1;
171
172 list_for_each_entry(f, &s->strm_flt.filters, list) {
173 if (f == filter)
174 before = 0;
175 if (before)
176 FLT_FWD(f, chn) += len;
177 FLT_NXT(f, chn) += len;
178 }
179}
180
181
182#endif /* _PROTO_FILTERS_H */