mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-22 23:02:34 -04:00
'channel_analyze' callback has been removed. Now, there are 2 callbacks to
surround calls to analyzers:
* channel_pre_analyze: Called BEFORE all filterable analyzers. it can be
called many times for the same analyzer, once at each loop until the
analyzer finishes its processing. This callback is resumable, it returns a
negative value if an error occurs, 0 if it needs to wait, any other value
otherwise.
* channel_post_analyze: Called AFTER all filterable analyzers. Here, AFTER
means when an analyzer finishes its processing. This callback is NOT
resumable, it returns a negative value if an error occurs, any other value
otherwise.
Pre and post analyzer callbacks are not automatically called. 'pre_analyzers'
and 'post_analyzers' bit fields in the filter structure must be set to the right
value using AN_* flags (see include/types/channel.h).
The flag AN_RES_ALL has been added (AN_REQ_ALL already exists) to ease the life
of filter developers. AN_REQ_ALL and AN_RES_ALL include all filterable
analyzers.
225 lines
7.7 KiB
C
225 lines
7.7 KiB
C
/*
|
|
* include/proto/filters.h
|
|
* This file defines function prototypes for stream filters management.
|
|
*
|
|
* Copyright (C) 2015 Qualys Inc., Christopher Faulet <cfaulet@qualys.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
#ifndef _PROTO_FILTERS_H
|
|
#define _PROTO_FILTERS_H
|
|
|
|
#include <types/channel.h>
|
|
#include <types/filters.h>
|
|
#include <types/proto_http.h>
|
|
#include <types/proxy.h>
|
|
#include <types/stream.h>
|
|
|
|
#include <proto/channel.h>
|
|
|
|
#define FLT_ID(flt) (flt)->config->id
|
|
#define FLT_CONF(flt) (flt)->config->conf
|
|
#define FLT_OPS(flt) (flt)->config->ops
|
|
|
|
/* Useful macros to access per-channel values. It can be safely used inside
|
|
* filters. */
|
|
#define CHN_IDX(chn) (((chn)->flags & CF_ISRESP) == CF_ISRESP)
|
|
#define FLT_NXT(flt, chn) ((flt)->next[CHN_IDX(chn)])
|
|
#define FLT_FWD(flt, chn) ((flt)->fwd[CHN_IDX(chn)])
|
|
#define flt_req_nxt(flt) ((flt)->next[0])
|
|
#define flt_rsp_nxt(flt) ((flt)->next[1])
|
|
#define flt_req_fwd(flt) ((flt)->fwd[0])
|
|
#define flt_rsp_fwd(flt) ((flt)->fwd[1])
|
|
|
|
#define HAS_FILTERS(strm) ((strm)->strm_flt.flags & STRM_FLT_FL_HAS_FILTERS)
|
|
|
|
#define HAS_REQ_DATA_FILTERS(strm) ((strm)->strm_flt.nb_req_data_filters != 0)
|
|
#define HAS_RSP_DATA_FILTERS(strm) ((strm)->strm_flt.nb_rsp_data_filters != 0)
|
|
#define HAS_DATA_FILTERS(strm, chn) ((chn->flags & CF_ISRESP) ? HAS_RSP_DATA_FILTERS(strm) : HAS_REQ_DATA_FILTERS(strm))
|
|
|
|
#define IS_REQ_DATA_FILTER(flt) ((flt)->flags & FLT_FL_IS_REQ_DATA_FILTER)
|
|
#define IS_RSP_DATA_FILTER(flt) ((flt)->flags & FLT_FL_IS_RSP_DATA_FILTER)
|
|
#define IS_DATA_FILTER(flt, chn) ((chn->flags & CF_ISRESP) ? IS_RSP_DATA_FILTER(flt) : IS_REQ_DATA_FILTER(flt))
|
|
|
|
#define FLT_STRM_CB(strm, call) \
|
|
do { \
|
|
if (HAS_FILTERS(strm)) { call; } \
|
|
} while (0)
|
|
|
|
#define FLT_STRM_DATA_CB_IMPL_1(strm, chn, call, default_ret) \
|
|
(HAS_DATA_FILTERS(strm, chn) ? call : default_ret)
|
|
#define FLT_STRM_DATA_CB_IMPL_2(strm, chn, call, default_ret, on_error) \
|
|
({ \
|
|
int _ret; \
|
|
if (HAS_DATA_FILTERS(strm, chn)) { \
|
|
_ret = call; \
|
|
if (_ret < 0) { on_error; } \
|
|
} \
|
|
else \
|
|
_ret = default_ret; \
|
|
_ret; \
|
|
})
|
|
#define FLT_STRM_DATA_CB_IMPL_3(strm, chn, call, default_ret, on_error, on_wait) \
|
|
({ \
|
|
int _ret; \
|
|
if (HAS_DATA_FILTERS(strm, chn)) { \
|
|
_ret = call; \
|
|
if (_ret < 0) { on_error; } \
|
|
if (!_ret) { on_wait; } \
|
|
} \
|
|
else \
|
|
_ret = default_ret; \
|
|
_ret; \
|
|
})
|
|
|
|
#define FLT_STRM_DATA_CB_IMPL_X(strm, chn, call, A, B, C, DATA_CB_IMPL, ...) \
|
|
DATA_CB_IMPL
|
|
|
|
#define FLT_STRM_DATA_CB(strm, chn, call, ...) \
|
|
FLT_STRM_DATA_CB_IMPL_X(strm, chn, call, ##__VA_ARGS__, \
|
|
FLT_STRM_DATA_CB_IMPL_3(strm, chn, call, ##__VA_ARGS__), \
|
|
FLT_STRM_DATA_CB_IMPL_2(strm, chn, call, ##__VA_ARGS__), \
|
|
FLT_STRM_DATA_CB_IMPL_1(strm, chn, call, ##__VA_ARGS__))
|
|
|
|
extern struct pool_head *pool2_filter;
|
|
|
|
int flt_init(struct proxy *p);
|
|
void flt_deinit(struct proxy *p);
|
|
int flt_check(struct proxy *p);
|
|
|
|
int flt_stream_start(struct stream *s);
|
|
void flt_stream_stop(struct stream *s);
|
|
int flt_set_stream_backend(struct stream *s, struct proxy *be);
|
|
int flt_stream_init(struct stream *s);
|
|
void flt_stream_release(struct stream *s, int only_backend);
|
|
|
|
int flt_http_data(struct stream *s, struct http_msg *msg);
|
|
int flt_http_chunk_trailers(struct stream *s, struct http_msg *msg);
|
|
int flt_http_end(struct stream *s, struct http_msg *msg);
|
|
int flt_http_forward_data(struct stream *s, struct http_msg *msg, unsigned int len);
|
|
|
|
void flt_http_reset(struct stream *s, struct http_msg *msg);
|
|
void flt_http_reply(struct stream *s, short status, const struct chunk *msg);
|
|
|
|
int flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
|
|
int flt_pre_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
|
|
int flt_post_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
|
|
int flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit);
|
|
int flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit);
|
|
|
|
int flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit);
|
|
|
|
void flt_register_keywords(struct flt_kw_list *kwl);
|
|
struct flt_kw *flt_find_kw(const char *kw);
|
|
void flt_dump_kws(char **out);
|
|
void list_filters(FILE *out);
|
|
|
|
/* Helper function that returns the "global" state of filters attached to a
|
|
* stream. */
|
|
static inline struct strm_flt *
|
|
strm_flt(struct stream *s)
|
|
{
|
|
return &s->strm_flt;
|
|
}
|
|
|
|
/* Registers a filter to a channel. If a filter was already registered, this
|
|
* function do nothing. Once registered, the filter becomes a "data" filter for
|
|
* this channel. */
|
|
static inline void
|
|
register_data_filter(struct stream *s, struct channel *chn, struct filter *filter)
|
|
{
|
|
if (!IS_DATA_FILTER(filter, chn)) {
|
|
if (chn->flags & CF_ISRESP) {
|
|
filter->flags |= FLT_FL_IS_RSP_DATA_FILTER;
|
|
strm_flt(s)->nb_rsp_data_filters++;
|
|
}
|
|
else {
|
|
filter->flags |= FLT_FL_IS_REQ_DATA_FILTER;
|
|
strm_flt(s)->nb_req_data_filters++;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Unregisters a "data" filter from a channel. */
|
|
static inline void
|
|
unregister_data_filter(struct stream *s, struct channel *chn, struct filter *filter)
|
|
{
|
|
if (IS_DATA_FILTER(filter, chn)) {
|
|
if (chn->flags & CF_ISRESP) {
|
|
filter->flags &= ~FLT_FL_IS_RSP_DATA_FILTER;
|
|
strm_flt(s)->nb_rsp_data_filters--;
|
|
|
|
}
|
|
else {
|
|
filter->flags &= ~FLT_FL_IS_REQ_DATA_FILTER;
|
|
strm_flt(s)->nb_req_data_filters--;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* This function must be called when a filter alter incoming data. It updates
|
|
* next offset value of all filter's predecessors. Do not call this function
|
|
* when a filter change the size of incomding data leads to an undefined
|
|
* behavior.
|
|
*
|
|
* This is the filter's responsiblitiy to update data itself. For now, it is
|
|
* unclear to know how to handle data updates, so we do the minimum here. For
|
|
* example, if you filter an HTTP message, we must update msg->next and
|
|
* msg->chunk_len values.
|
|
*/
|
|
static inline void
|
|
flt_change_next_size(struct filter *filter, struct channel *chn, int len)
|
|
{
|
|
struct stream *s = chn_strm(chn);
|
|
struct filter *f;
|
|
|
|
list_for_each_entry(f, &strm_flt(s)->filters, list) {
|
|
if (f == filter)
|
|
break;
|
|
if (IS_DATA_FILTER(filter, chn))
|
|
FLT_NXT(f, chn) += len;
|
|
}
|
|
}
|
|
|
|
/* This function must be called when a filter alter forwarded data. It updates
|
|
* offset values (next and forward) of all filters. Do not call this function
|
|
* when a filter change the size of forwarded data leads to an undefined
|
|
* behavior.
|
|
*
|
|
* This is the filter's responsiblitiy to update data itself. For now, it is
|
|
* unclear to know how to handle data updates, so we do the minimum here. For
|
|
* example, if you filter an HTTP message, we must update msg->next and
|
|
* msg->chunk_len values.
|
|
*/
|
|
static inline void
|
|
flt_change_forward_size(struct filter *filter, struct channel *chn, int len)
|
|
{
|
|
struct stream *s = chn_strm(chn);
|
|
struct filter *f;
|
|
int before = 1;
|
|
|
|
list_for_each_entry(f, &strm_flt(s)->filters, list) {
|
|
if (f == filter)
|
|
before = 0;
|
|
if (IS_DATA_FILTER(filter, chn)) {
|
|
if (before)
|
|
FLT_FWD(f, chn) += len;
|
|
FLT_NXT(f, chn) += len;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* _PROTO_FILTERS_H */
|