blob: 2ece1894dd31b36486d3cb0588e54a48159eec23 [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>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020026#include <types/http_ana.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020027#include <types/proxy.h>
28#include <types/stream.h>
29
30#include <proto/channel.h>
31
Christopher Fauletf4a4ef72018-12-07 17:39:53 +010032extern const char *trace_flt_id;
33extern const char *http_comp_flt_id;
34extern const char *cache_store_flt_id;
35extern const char *spoe_filter_id;
Christopher Faulet78fbb9f2019-08-11 23:11:03 +020036extern const char *fcgi_flt_id;
Christopher Fauletf4a4ef72018-12-07 17:39:53 +010037
Christopher Faulet443ea1a2016-02-04 13:40:26 +010038#define FLT_ID(flt) (flt)->config->id
39#define FLT_CONF(flt) (flt)->config->conf
40#define FLT_OPS(flt) (flt)->config->ops
41
Christopher Fauletd7c91962015-04-30 11:48:27 +020042/* Useful macros to access per-channel values. It can be safely used inside
43 * filters. */
44#define CHN_IDX(chn) (((chn)->flags & CF_ISRESP) == CF_ISRESP)
Christopher Faulet75bc9132018-11-30 15:18:09 +010045#define FLT_STRM_OFF(s, chn) (strm_flt(s)->offset[CHN_IDX(chn)])
46#define FLT_OFF(flt, chn) ((flt)->offset[CHN_IDX(chn)])
47
Christopher Fauletda02e172015-12-04 09:25:05 +010048#define HAS_FILTERS(strm) ((strm)->strm_flt.flags & STRM_FLT_FL_HAS_FILTERS)
Christopher Faulet3e344292015-11-24 16:24:13 +010049
Christopher Fauletda02e172015-12-04 09:25:05 +010050#define HAS_REQ_DATA_FILTERS(strm) ((strm)->strm_flt.nb_req_data_filters != 0)
51#define HAS_RSP_DATA_FILTERS(strm) ((strm)->strm_flt.nb_rsp_data_filters != 0)
Christopher Faulet4aad8332016-11-28 10:01:32 +010052#define HAS_DATA_FILTERS(strm, chn) (((chn)->flags & CF_ISRESP) ? HAS_RSP_DATA_FILTERS(strm) : HAS_REQ_DATA_FILTERS(strm))
Christopher Fauletda02e172015-12-04 09:25:05 +010053
54#define IS_REQ_DATA_FILTER(flt) ((flt)->flags & FLT_FL_IS_REQ_DATA_FILTER)
55#define IS_RSP_DATA_FILTER(flt) ((flt)->flags & FLT_FL_IS_RSP_DATA_FILTER)
Christopher Faulet4aad8332016-11-28 10:01:32 +010056#define IS_DATA_FILTER(flt, chn) (((chn)->flags & CF_ISRESP) ? IS_RSP_DATA_FILTER(flt) : IS_REQ_DATA_FILTER(flt))
Christopher Fauletda02e172015-12-04 09:25:05 +010057
58#define FLT_STRM_CB(strm, call) \
Christopher Faulet3e344292015-11-24 16:24:13 +010059 do { \
60 if (HAS_FILTERS(strm)) { call; } \
61 } while (0)
Christopher Fauletda02e172015-12-04 09:25:05 +010062
63#define FLT_STRM_DATA_CB_IMPL_1(strm, chn, call, default_ret) \
64 (HAS_DATA_FILTERS(strm, chn) ? call : default_ret)
65#define FLT_STRM_DATA_CB_IMPL_2(strm, chn, call, default_ret, on_error) \
Christopher Faulet3e344292015-11-24 16:24:13 +010066 ({ \
67 int _ret; \
Christopher Fauletda02e172015-12-04 09:25:05 +010068 if (HAS_DATA_FILTERS(strm, chn)) { \
Christopher Faulet3e344292015-11-24 16:24:13 +010069 _ret = call; \
70 if (_ret < 0) { on_error; } \
71 } \
72 else \
73 _ret = default_ret; \
74 _ret; \
75 })
Christopher Fauletda02e172015-12-04 09:25:05 +010076#define FLT_STRM_DATA_CB_IMPL_3(strm, chn, call, default_ret, on_error, on_wait) \
Christopher Faulet3e344292015-11-24 16:24:13 +010077 ({ \
78 int _ret; \
Christopher Fauletda02e172015-12-04 09:25:05 +010079 if (HAS_DATA_FILTERS(strm, chn)) { \
Christopher Faulet3e344292015-11-24 16:24:13 +010080 _ret = call; \
81 if (_ret < 0) { on_error; } \
82 if (!_ret) { on_wait; } \
83 } \
84 else \
85 _ret = default_ret; \
86 _ret; \
87 })
88
Christopher Fauletda02e172015-12-04 09:25:05 +010089#define FLT_STRM_DATA_CB_IMPL_X(strm, chn, call, A, B, C, DATA_CB_IMPL, ...) \
90 DATA_CB_IMPL
Christopher Faulet3e344292015-11-24 16:24:13 +010091
Christopher Fauletda02e172015-12-04 09:25:05 +010092#define FLT_STRM_DATA_CB(strm, chn, call, ...) \
93 FLT_STRM_DATA_CB_IMPL_X(strm, chn, call, ##__VA_ARGS__, \
94 FLT_STRM_DATA_CB_IMPL_3(strm, chn, call, ##__VA_ARGS__), \
95 FLT_STRM_DATA_CB_IMPL_2(strm, chn, call, ##__VA_ARGS__), \
96 FLT_STRM_DATA_CB_IMPL_1(strm, chn, call, ##__VA_ARGS__))
Christopher Faulet3e344292015-11-24 16:24:13 +010097
Christopher Fauletd7c91962015-04-30 11:48:27 +020098void flt_deinit(struct proxy *p);
99int flt_check(struct proxy *p);
100
101int flt_stream_start(struct stream *s);
102void flt_stream_stop(struct stream *s);
Christopher Faulet92d36382015-11-05 13:35:03 +0100103int flt_set_stream_backend(struct stream *s, struct proxy *be);
104int flt_stream_init(struct stream *s);
105void flt_stream_release(struct stream *s, int only_backend);
Christopher Fauleta00d8172016-11-10 14:58:05 +0100106void flt_stream_check_timeouts(struct stream *s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200107
Christopher Faulet75bc9132018-11-30 15:18:09 +0100108int flt_http_payload(struct stream *s, struct http_msg *msg, unsigned int len);
109int flt_http_end(struct stream *s, struct http_msg *msg);
110
Christopher Faulet309c6412015-12-02 09:57:32 +0100111void flt_http_reset(struct stream *s, struct http_msg *msg);
Willy Tarreau83061a82018-07-13 11:56:34 +0200112void flt_http_reply(struct stream *s, short status, const struct buffer *msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200113
114int flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200115int flt_pre_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
116int flt_post_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
Christopher Faulet309c6412015-12-02 09:57:32 +0100117int flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200118int flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
119
120int flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit);
121
122void flt_register_keywords(struct flt_kw_list *kwl);
123struct flt_kw *flt_find_kw(const char *kw);
124void flt_dump_kws(char **out);
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100125void list_filters(FILE *out);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200126
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100127/* Helper function that returns the "global" state of filters attached to a
128 * stream. */
129static inline struct strm_flt *
130strm_flt(struct stream *s)
131{
132 return &s->strm_flt;
133}
134
Christopher Fauletda02e172015-12-04 09:25:05 +0100135/* Registers a filter to a channel. If a filter was already registered, this
136 * function do nothing. Once registered, the filter becomes a "data" filter for
137 * this channel. */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200138static inline void
Christopher Fauletda02e172015-12-04 09:25:05 +0100139register_data_filter(struct stream *s, struct channel *chn, struct filter *filter)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200140{
Christopher Fauletda02e172015-12-04 09:25:05 +0100141 if (!IS_DATA_FILTER(filter, chn)) {
142 if (chn->flags & CF_ISRESP) {
143 filter->flags |= FLT_FL_IS_RSP_DATA_FILTER;
144 strm_flt(s)->nb_rsp_data_filters++;
145 }
146 else {
147 filter->flags |= FLT_FL_IS_REQ_DATA_FILTER;
148 strm_flt(s)->nb_req_data_filters++;
149 }
150 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200151}
152
Christopher Fauletda02e172015-12-04 09:25:05 +0100153/* Unregisters a "data" filter from a channel. */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200154static inline void
Christopher Fauletda02e172015-12-04 09:25:05 +0100155unregister_data_filter(struct stream *s, struct channel *chn, struct filter *filter)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200156{
Christopher Fauletda02e172015-12-04 09:25:05 +0100157 if (IS_DATA_FILTER(filter, chn)) {
158 if (chn->flags & CF_ISRESP) {
159 filter->flags &= ~FLT_FL_IS_RSP_DATA_FILTER;
160 strm_flt(s)->nb_rsp_data_filters--;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200161
Christopher Fauletda02e172015-12-04 09:25:05 +0100162 }
163 else {
164 filter->flags &= ~FLT_FL_IS_REQ_DATA_FILTER;
165 strm_flt(s)->nb_req_data_filters--;
166 }
167 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200168}
169
Christopher Faulet75bc9132018-11-30 15:18:09 +0100170/* This function must be called when a filter alter payload data. It updates
171 * offsets of all previous filters and the offset of the stream. Do not call
172 * this function when a filter change the size of payload data leads to an
173 * undefined behavior.
174 *
175 * This is the filter's responsiblitiy to update data itself..
176 */
177static inline void
178flt_update_offsets(struct filter *filter, struct channel *chn, int len)
179{
180 struct stream *s = chn_strm(chn);
181 struct filter *f;
182
183 list_for_each_entry(f, &strm_flt(s)->filters, list) {
184 if (f == filter)
185 break;
186 if (IS_DATA_FILTER(filter, chn))
187 FLT_OFF(f, chn) += len;
188 }
189}
190
Christopher Fauletd7c91962015-04-30 11:48:27 +0200191
192#endif /* _PROTO_FILTERS_H */