blob: d860424567f15ed588754e48d13c4320061fca69 [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
38extern struct pool_head *pool2_filter;
39
40int flt_init(struct proxy *p);
41void flt_deinit(struct proxy *p);
42int flt_check(struct proxy *p);
43
44int flt_stream_start(struct stream *s);
45void flt_stream_stop(struct stream *s);
46
47int flt_http_headers(struct stream *s, struct http_msg *msg);
48int flt_http_start_chunk(struct stream *s, struct http_msg *msg);
49int flt_http_data(struct stream *s, struct http_msg *msg);
50int flt_http_last_chunk(struct stream *s, struct http_msg *msg);
51int flt_http_end_chunk(struct stream *s, struct http_msg *msg);
52int flt_http_chunk_trailers(struct stream *s, struct http_msg *msg);
53int flt_http_end(struct stream *s, struct http_msg *msg);
54void flt_http_reset(struct stream *s, struct http_msg *msg);
55
56void flt_http_reply(struct stream *s, short status, const struct chunk *msg);
57int flt_http_forward_data(struct stream *s, struct http_msg *msg, unsigned int len);
58
59int flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
60int flt_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
61int flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
62
63int flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit);
64
65void flt_register_keywords(struct flt_kw_list *kwl);
66struct flt_kw *flt_find_kw(const char *kw);
67void flt_dump_kws(char **out);
68
69static inline void
70flt_set_forward_data(struct filter *filter, struct channel *chn)
71{
72 filter->flags[CHN_IDX(chn)] |= FILTER_FL_FORWARD_DATA;
73}
74
75static inline void
76flt_reset_forward_data(struct filter *filter, struct channel *chn)
77{
78 filter->flags[CHN_IDX(chn)] &= ~FILTER_FL_FORWARD_DATA;
79}
80
81static inline int
82flt_want_forward_data(struct filter *filter, const struct channel *chn)
83{
84 return filter->flags[CHN_IDX(chn)] & FILTER_FL_FORWARD_DATA;
85}
86
87
88/* This function must be called when a filter alter incoming data. It updates
89 * next offset value of all filter's predecessors. Do not call this function
90 * when a filter change the size of incomding data leads to an undefined
91 * behavior.
92 *
93 * This is the filter's responsiblitiy to update data itself. For now, it is
94 * unclear to know how to handle data updates, so we do the minimum here. For
95 * example, if you filter an HTTP message, we must update msg->next and
96 * msg->chunk_len values.
97 */
98static inline void
99flt_change_next_size(struct filter *filter, struct channel *chn, int len)
100{
101 struct stream *s = chn_strm(chn);
102 struct filter *f;
103
104 list_for_each_entry(f, &s->strm_flt.filters, list) {
105 if (f == filter)
106 break;
107 FLT_NXT(f, chn) += len;
108 }
109}
110
111/* This function must be called when a filter alter forwarded data. It updates
112 * offset values (next and forward) of all filters. Do not call this function
113 * when a filter change the size of forwarded data leads to an undefined
114 * behavior.
115 *
116 * This is the filter's responsiblitiy to update data itself. For now, it is
117 * unclear to know how to handle data updates, so we do the minimum here. For
118 * example, if you filter an HTTP message, we must update msg->next and
119 * msg->chunk_len values.
120 */
121static inline void
122flt_change_forward_size(struct filter *filter, struct channel *chn, int len)
123{
124 struct stream *s = chn_strm(chn);
125 struct filter *f;
126 int before = 1;
127
128 list_for_each_entry(f, &s->strm_flt.filters, list) {
129 if (f == filter)
130 before = 0;
131 if (before)
132 FLT_FWD(f, chn) += len;
133 FLT_NXT(f, chn) += len;
134 }
135}
136
137
138#endif /* _PROTO_FILTERS_H */