blob: be2b380b5f067b4264f1fbf64dbe7a28b5fa2b8f [file] [log] [blame]
Christopher Fauletd7c91962015-04-30 11:48:27 +02001/*
2 * Stream filters related variables and functions.
3 *
4 * Copyright (C) 2015 Qualys Inc., Christopher Faulet <cfaulet@qualys.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020013#include <haproxy/api.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020014#include <haproxy/buf-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020016#include <haproxy/compression.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020017#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020018#include <haproxy/filters.h>
Willy Tarreau7d865a52020-06-04 10:57:05 +020019#include <haproxy/flt_http_comp.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020020#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020021#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020022#include <haproxy/htx.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020023#include <haproxy/namespace.h>
Willy Tarreaudaa6f1a2021-05-08 20:22:17 +020024#include <haproxy/proxy.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020025#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020026#include <haproxy/stream_interface.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020027#include <haproxy/tools.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/trace.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020029
Christopher Fauletd7c91962015-04-30 11:48:27 +020030
Christopher Fauleteea8fc72019-11-05 16:18:10 +010031#define TRACE_SOURCE &trace_strm
32
Christopher Fauletd7c91962015-04-30 11:48:27 +020033/* Pool used to allocate filters */
Willy Tarreau8ceae722018-11-26 11:58:30 +010034DECLARE_STATIC_POOL(pool_head_filter, "filter", sizeof(struct filter));
Christopher Fauletd7c91962015-04-30 11:48:27 +020035
36static int handle_analyzer_result(struct stream *s, struct channel *chn, unsigned int an_bit, int ret);
37
38/* - RESUME_FILTER_LOOP and RESUME_FILTER_END must always be used together.
39 * The first one begins a loop and the seconds one ends it.
40 *
41 * - BREAK_EXECUTION must be used to break the loop and set the filter from
42 * which to resume the next time.
43 *
Bertrand Jacquin874a35c2018-09-10 21:26:07 +010044 * Here is an example:
Christopher Fauletd7c91962015-04-30 11:48:27 +020045 *
46 * RESUME_FILTER_LOOP(stream, channel) {
47 * ...
48 * if (cond)
49 * BREAK_EXECUTION(stream, channel, label);
50 * ...
51 * } RESUME_FILTER_END;
52 * ...
53 * label:
54 * ...
55 *
56 */
57#define RESUME_FILTER_LOOP(strm, chn) \
58 do { \
59 struct filter *filter; \
60 \
Christopher Fauletda02e172015-12-04 09:25:05 +010061 if (strm_flt(strm)->current[CHN_IDX(chn)]) { \
62 filter = strm_flt(strm)->current[CHN_IDX(chn)]; \
63 strm_flt(strm)->current[CHN_IDX(chn)] = NULL; \
Christopher Fauletd7c91962015-04-30 11:48:27 +020064 goto resume_execution; \
65 } \
66 \
Christopher Fauletfcf035c2015-12-03 11:48:03 +010067 list_for_each_entry(filter, &strm_flt(s)->filters, list) { \
Christopher Fauletda02e172015-12-04 09:25:05 +010068 resume_execution:
Christopher Fauletd7c91962015-04-30 11:48:27 +020069
70#define RESUME_FILTER_END \
71 } \
72 } while(0)
73
Christopher Fauletda02e172015-12-04 09:25:05 +010074#define BREAK_EXECUTION(strm, chn, label) \
75 do { \
76 strm_flt(strm)->current[CHN_IDX(chn)] = filter; \
77 goto label; \
Christopher Fauletd7c91962015-04-30 11:48:27 +020078 } while (0)
79
80
81/* List head of all known filter keywords */
82static struct flt_kw_list flt_keywords = {
83 .list = LIST_HEAD_INIT(flt_keywords.list)
84};
85
86/*
87 * Registers the filter keyword list <kwl> as a list of valid keywords for next
88 * parsing sessions.
89 */
90void
91flt_register_keywords(struct flt_kw_list *kwl)
92{
Willy Tarreau2b718102021-04-21 07:32:39 +020093 LIST_APPEND(&flt_keywords.list, &kwl->list);
Christopher Fauletd7c91962015-04-30 11:48:27 +020094}
95
96/*
97 * Returns a pointer to the filter keyword <kw>, or NULL if not found. If the
98 * keyword is found with a NULL ->parse() function, then an attempt is made to
99 * find one with a valid ->parse() function. This way it is possible to declare
100 * platform-dependant, known keywords as NULL, then only declare them as valid
101 * if some options are met. Note that if the requested keyword contains an
102 * opening parenthesis, everything from this point is ignored.
103 */
104struct flt_kw *
105flt_find_kw(const char *kw)
106{
107 int index;
108 const char *kwend;
109 struct flt_kw_list *kwl;
110 struct flt_kw *ret = NULL;
111
112 kwend = strchr(kw, '(');
113 if (!kwend)
114 kwend = kw + strlen(kw);
115
116 list_for_each_entry(kwl, &flt_keywords.list, list) {
117 for (index = 0; kwl->kw[index].kw != NULL; index++) {
118 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
119 kwl->kw[index].kw[kwend-kw] == 0) {
120 if (kwl->kw[index].parse)
121 return &kwl->kw[index]; /* found it !*/
122 else
123 ret = &kwl->kw[index]; /* may be OK */
124 }
125 }
126 }
127 return ret;
128}
129
130/*
131 * Dumps all registered "filter" keywords to the <out> string pointer. The
132 * unsupported keywords are only dumped if their supported form was not found.
133 */
134void
135flt_dump_kws(char **out)
136{
137 struct flt_kw_list *kwl;
138 int index;
139
Christopher Faulet784063e2020-05-18 12:14:18 +0200140 if (!out)
141 return;
142
Christopher Fauletd7c91962015-04-30 11:48:27 +0200143 *out = NULL;
144 list_for_each_entry(kwl, &flt_keywords.list, list) {
145 for (index = 0; kwl->kw[index].kw != NULL; index++) {
146 if (kwl->kw[index].parse ||
147 flt_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
148 memprintf(out, "%s[%4s] %s%s\n", *out ? *out : "",
149 kwl->scope,
150 kwl->kw[index].kw,
151 kwl->kw[index].parse ? "" : " (not supported)");
152 }
153 }
154 }
155}
156
157/*
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100158 * Lists the known filters on <out>
159 */
160void
161list_filters(FILE *out)
162{
163 char *filters, *p, *f;
164
165 fprintf(out, "Available filters :\n");
166 flt_dump_kws(&filters);
167 for (p = filters; (f = strtok_r(p,"\n",&p));)
168 fprintf(out, "\t%s\n", f);
169 free(filters);
170}
171
172/*
Christopher Fauletd7c91962015-04-30 11:48:27 +0200173 * Parses the "filter" keyword. All keywords must be handled by filters
174 * themselves
175 */
176static int
177parse_filter(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100178 const struct proxy *defpx, const char *file, int line, char **err)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200179{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100180 struct flt_conf *fconf = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200181
182 /* Filter cannot be defined on a default proxy */
183 if (curpx == defpx) {
Christopher Fauletcc7317d2016-04-04 10:51:17 +0200184 memprintf(err, "parsing [%s:%d] : %s is not allowed in a 'default' section.",
Christopher Fauletd7c91962015-04-30 11:48:27 +0200185 file, line, args[0]);
186 return -1;
187 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100188 if (strcmp(args[0], "filter") == 0) {
Christopher Fauletd7c91962015-04-30 11:48:27 +0200189 struct flt_kw *kw;
190 int cur_arg;
191
192 if (!*args[1]) {
193 memprintf(err,
194 "parsing [%s:%d] : missing argument for '%s' in %s '%s'.",
195 file, line, args[0], proxy_type_str(curpx), curpx->id);
196 goto error;
197 }
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100198 fconf = calloc(1, sizeof(*fconf));
199 if (!fconf) {
Christopher Fauletd7c91962015-04-30 11:48:27 +0200200 memprintf(err, "'%s' : out of memory", args[0]);
201 goto error;
202 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200203
204 cur_arg = 1;
205 kw = flt_find_kw(args[cur_arg]);
206 if (kw) {
207 if (!kw->parse) {
208 memprintf(err, "parsing [%s:%d] : '%s' : "
209 "'%s' option is not implemented in this version (check build options).",
210 file, line, args[0], args[cur_arg]);
211 goto error;
212 }
Thierry Fournier3610c392016-04-13 18:27:51 +0200213 if (kw->parse(args, &cur_arg, curpx, fconf, err, kw->private) != 0) {
Christopher Fauletd7c91962015-04-30 11:48:27 +0200214 if (err && *err)
215 memprintf(err, "'%s' : '%s'",
216 args[0], *err);
217 else
218 memprintf(err, "'%s' : error encountered while processing '%s'",
219 args[0], args[cur_arg]);
220 goto error;
221 }
222 }
223 else {
224 flt_dump_kws(err);
225 indent_msg(err, 4);
226 memprintf(err, "'%s' : unknown keyword '%s'.%s%s",
227 args[0], args[cur_arg],
228 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
229 goto error;
230 }
231 if (*args[cur_arg]) {
232 memprintf(err, "'%s %s' : unknown keyword '%s'.",
233 args[0], args[1], args[cur_arg]);
234 goto error;
235 }
Christopher Faulet00e818a2016-04-19 17:00:44 +0200236 if (fconf->ops == NULL) {
237 memprintf(err, "'%s %s' : no callbacks defined.",
238 args[0], args[1]);
239 goto error;
240 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200241
Willy Tarreau2b718102021-04-21 07:32:39 +0200242 LIST_APPEND(&curpx->filter_configs, &fconf->list);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200243 }
244 return 0;
245
246 error:
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100247 free(fconf);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200248 return -1;
249
250
251}
252
253/*
254 * Calls 'init' callback for all filters attached to a proxy. This happens after
255 * the configuration parsing. Filters can finish to fill their config. Returns
256 * (ERR_ALERT|ERR_FATAL) if an error occurs, 0 otherwise.
257 */
Willy Tarreau64bca592016-12-21 20:13:11 +0100258static int
Christopher Fauletd7c91962015-04-30 11:48:27 +0200259flt_init(struct proxy *proxy)
260{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100261 struct flt_conf *fconf;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200262
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100263 list_for_each_entry(fconf, &proxy->filter_configs, list) {
264 if (fconf->ops->init && fconf->ops->init(proxy, fconf) < 0)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200265 return ERR_ALERT|ERR_FATAL;
266 }
267 return 0;
268}
269
Christopher Faulet71a6a8e2017-07-27 16:33:28 +0200270/*
271 * Calls 'init_per_thread' callback for all filters attached to a proxy for each
272 * threads. This happens after the thread creation. Filters can finish to fill
273 * their config. Returns (ERR_ALERT|ERR_FATAL) if an error occurs, 0 otherwise.
274 */
275static int
276flt_init_per_thread(struct proxy *proxy)
277{
278 struct flt_conf *fconf;
279
280 list_for_each_entry(fconf, &proxy->filter_configs, list) {
281 if (fconf->ops->init_per_thread && fconf->ops->init_per_thread(proxy, fconf) < 0)
282 return ERR_ALERT|ERR_FATAL;
283 }
284 return 0;
285}
286
Willy Tarreau64bca592016-12-21 20:13:11 +0100287/* Calls flt_init() for all proxies, see above */
288static int
289flt_init_all()
290{
291 struct proxy *px;
Christopher Fauletfc633b62020-11-06 15:24:23 +0100292 int err_code = ERR_NONE;
Willy Tarreau64bca592016-12-21 20:13:11 +0100293
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100294 for (px = proxies_list; px; px = px->next) {
Christopher Fauletdda568e2023-05-11 09:11:57 +0200295 if (px->disabled)
Christopher Faulet400829c2020-11-02 16:08:09 +0100296 continue;
Christopher Fauletdda568e2023-05-11 09:11:57 +0200297
Willy Tarreau64bca592016-12-21 20:13:11 +0100298 err_code |= flt_init(px);
299 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100300 ha_alert("Failed to initialize filters for proxy '%s'.\n",
301 px->id);
Willy Tarreau64bca592016-12-21 20:13:11 +0100302 return err_code;
303 }
304 }
305 return 0;
306}
307
Joseph Herlantb35ea682018-11-15 12:24:23 -0800308/* Calls flt_init_per_thread() for all proxies, see above. Be careful here, it
309 * returns 0 if an error occurred. This is the opposite of flt_init_all. */
Christopher Faulet71a6a8e2017-07-27 16:33:28 +0200310static int
311flt_init_all_per_thread()
312{
313 struct proxy *px;
314 int err_code = 0;
315
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100316 for (px = proxies_list; px; px = px->next) {
Christopher Faulet400829c2020-11-02 16:08:09 +0100317 if (px->disabled)
318 continue;
319
Christopher Faulet71a6a8e2017-07-27 16:33:28 +0200320 err_code = flt_init_per_thread(px);
321 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100322 ha_alert("Failed to initialize filters for proxy '%s' for thread %u.\n",
323 px->id, tid);
Christopher Faulet71a6a8e2017-07-27 16:33:28 +0200324 return 0;
325 }
326 }
327 return 1;
328}
329
Christopher Fauletd7c91962015-04-30 11:48:27 +0200330/*
331 * Calls 'check' callback for all filters attached to a proxy. This happens
332 * after the configuration parsing but before filters initialization. Returns
333 * the number of encountered errors.
334 */
335int
336flt_check(struct proxy *proxy)
337{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100338 struct flt_conf *fconf;
339 int err = 0;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200340
Christopher Fauletff17b182019-01-07 15:03:22 +0100341 err += check_implicit_http_comp_flt(proxy);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100342 list_for_each_entry(fconf, &proxy->filter_configs, list) {
343 if (fconf->ops->check)
344 err += fconf->ops->check(proxy, fconf);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200345 }
346 return err;
347}
348
349/*
350 * Calls 'denit' callback for all filters attached to a proxy. This happens when
351 * HAProxy is stopped.
352 */
353void
354flt_deinit(struct proxy *proxy)
355{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100356 struct flt_conf *fconf, *back;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200357
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100358 list_for_each_entry_safe(fconf, back, &proxy->filter_configs, list) {
Christopher Faulet743bd6a2020-11-03 16:40:37 +0100359 if (fconf->ops->deinit)
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100360 fconf->ops->deinit(proxy, fconf);
Willy Tarreau2b718102021-04-21 07:32:39 +0200361 LIST_DELETE(&fconf->list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100362 free(fconf);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200363 }
364}
365
Christopher Faulet71a6a8e2017-07-27 16:33:28 +0200366/*
367 * Calls 'denit_per_thread' callback for all filters attached to a proxy for
368 * each threads. This happens before exiting a thread.
369 */
370void
371flt_deinit_per_thread(struct proxy *proxy)
372{
373 struct flt_conf *fconf, *back;
374
375 list_for_each_entry_safe(fconf, back, &proxy->filter_configs, list) {
376 if (fconf->ops->deinit_per_thread)
377 fconf->ops->deinit_per_thread(proxy, fconf);
378 }
379}
380
381
382/* Calls flt_deinit_per_thread() for all proxies, see above */
383static void
384flt_deinit_all_per_thread()
385{
386 struct proxy *px;
387
Christopher Faulet743bd6a2020-11-03 16:40:37 +0100388 for (px = proxies_list; px; px = px->next)
389 flt_deinit_per_thread(px);
Christopher Faulet71a6a8e2017-07-27 16:33:28 +0200390}
391
Christopher Faulet92d36382015-11-05 13:35:03 +0100392/* Attaches a filter to a stream. Returns -1 if an error occurs, 0 otherwise. */
393static int
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100394flt_stream_add_filter(struct stream *s, struct flt_conf *fconf, unsigned int flags)
Christopher Faulet92d36382015-11-05 13:35:03 +0100395{
Christopher Faulet75bc9132018-11-30 15:18:09 +0100396 struct filter *f;
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200397
Christopher Faulet0f17a9b2019-04-05 10:11:38 +0200398 if (IS_HTX_STRM(s) && !(fconf->flags & FLT_CFG_FL_HTX))
Christopher Faulet75bc9132018-11-30 15:18:09 +0100399 return 0;
400
Willy Tarreau1bbec382021-03-22 21:02:50 +0100401 f = pool_zalloc(pool_head_filter);
Christopher Faulet92d36382015-11-05 13:35:03 +0100402 if (!f) /* not enough memory */
403 return -1;
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100404 f->config = fconf;
Christopher Fauletda02e172015-12-04 09:25:05 +0100405 f->flags |= flags;
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200406
407 if (FLT_OPS(f)->attach) {
408 int ret = FLT_OPS(f)->attach(s, f);
409 if (ret <= 0) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100410 pool_free(pool_head_filter, f);
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200411 return ret;
412 }
413 }
414
Willy Tarreau2b718102021-04-21 07:32:39 +0200415 LIST_APPEND(&strm_flt(s)->filters, &f->list);
Christopher Fauletda02e172015-12-04 09:25:05 +0100416 strm_flt(s)->flags |= STRM_FLT_FL_HAS_FILTERS;
Christopher Faulet92d36382015-11-05 13:35:03 +0100417 return 0;
418}
419
420/*
421 * Called when a stream is created. It attaches all frontend filters to the
422 * stream. Returns -1 if an error occurs, 0 otherwise.
423 */
424int
425flt_stream_init(struct stream *s)
426{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100427 struct flt_conf *fconf;
Christopher Faulet92d36382015-11-05 13:35:03 +0100428
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100429 memset(strm_flt(s), 0, sizeof(*strm_flt(s)));
430 LIST_INIT(&strm_flt(s)->filters);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100431 list_for_each_entry(fconf, &strm_fe(s)->filter_configs, list) {
432 if (flt_stream_add_filter(s, fconf, 0) < 0)
Christopher Faulet92d36382015-11-05 13:35:03 +0100433 return -1;
434 }
435 return 0;
436}
437
438/*
439 * Called when a stream is closed or when analyze ends (For an HTTP stream, this
440 * happens after each request/response exchange). When analyze ends, backend
441 * filters are removed. When the stream is closed, all filters attached to the
442 * stream are removed.
443 */
444void
445flt_stream_release(struct stream *s, int only_backend)
446{
447 struct filter *filter, *back;
448
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100449 list_for_each_entry_safe(filter, back, &strm_flt(s)->filters, list) {
Christopher Fauletda02e172015-12-04 09:25:05 +0100450 if (!only_backend || (filter->flags & FLT_FL_IS_BACKEND_FILTER)) {
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200451 if (FLT_OPS(filter)->detach)
452 FLT_OPS(filter)->detach(s, filter);
Willy Tarreau2b718102021-04-21 07:32:39 +0200453 LIST_DELETE(&filter->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100454 pool_free(pool_head_filter, filter);
Christopher Faulet92d36382015-11-05 13:35:03 +0100455 }
456 }
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100457 if (LIST_ISEMPTY(&strm_flt(s)->filters))
Christopher Fauletda02e172015-12-04 09:25:05 +0100458 strm_flt(s)->flags &= ~STRM_FLT_FL_HAS_FILTERS;
Christopher Faulet92d36382015-11-05 13:35:03 +0100459}
460
Christopher Fauletd7c91962015-04-30 11:48:27 +0200461/*
462 * Calls 'stream_start' for all filters attached to a stream. This happens when
463 * the stream is created, just after calling flt_stream_init
464 * function. Returns -1 if an error occurs, 0 otherwise.
465 */
466int
467flt_stream_start(struct stream *s)
468{
469 struct filter *filter;
470
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100471 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100472 if (FLT_OPS(filter)->stream_start && FLT_OPS(filter)->stream_start(s, filter) < 0)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200473 return -1;
474 }
Christopher Fauletfeca2a42021-08-13 14:00:46 +0200475 if (strm_li(s) && (strm_li(s)->analysers & AN_REQ_FLT_START_FE)) {
Christopher Faulet5647fba2021-03-08 13:40:30 +0100476 s->req.flags |= CF_FLT_ANALYZE;
Christopher Faulet4a9db772021-10-04 07:50:13 +0200477 s->req.analysers |= AN_REQ_FLT_END;
Christopher Fauletfeca2a42021-08-13 14:00:46 +0200478 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200479 return 0;
480}
481
482/*
483 * Calls 'stream_stop' for all filters attached to a stream. This happens when
484 * the stream is stopped, just before calling flt_stream_release function.
485 */
486void
487flt_stream_stop(struct stream *s)
488{
489 struct filter *filter;
490
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100491 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100492 if (FLT_OPS(filter)->stream_stop)
493 FLT_OPS(filter)->stream_stop(s, filter);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200494 }
495}
496
Christopher Faulet92d36382015-11-05 13:35:03 +0100497/*
Christopher Fauleta00d8172016-11-10 14:58:05 +0100498 * Calls 'check_timeouts' for all filters attached to a stream. This happens when
499 * the stream is woken up because of expired timer.
500 */
501void
502flt_stream_check_timeouts(struct stream *s)
503{
504 struct filter *filter;
505
506 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
507 if (FLT_OPS(filter)->check_timeouts)
508 FLT_OPS(filter)->check_timeouts(s, filter);
509 }
510}
511
512/*
Christopher Faulet92d36382015-11-05 13:35:03 +0100513 * Called when a backend is set for a stream. If the frontend and the backend
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200514 * are not the same, this function attaches all backend filters to the
515 * stream. Returns -1 if an error occurs, 0 otherwise.
Christopher Faulet92d36382015-11-05 13:35:03 +0100516 */
517int
518flt_set_stream_backend(struct stream *s, struct proxy *be)
519{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100520 struct flt_conf *fconf;
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200521 struct filter *filter;
Christopher Faulet92d36382015-11-05 13:35:03 +0100522
523 if (strm_fe(s) == be)
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200524 goto end;
Christopher Faulet92d36382015-11-05 13:35:03 +0100525
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100526 list_for_each_entry(fconf, &be->filter_configs, list) {
527 if (flt_stream_add_filter(s, fconf, FLT_FL_IS_BACKEND_FILTER) < 0)
Christopher Faulet92d36382015-11-05 13:35:03 +0100528 return -1;
529 }
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200530
531 end:
532 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
533 if (FLT_OPS(filter)->stream_set_backend &&
534 FLT_OPS(filter)->stream_set_backend(s, filter, be) < 0)
535 return -1;
536 }
Christopher Fauletfeca2a42021-08-13 14:00:46 +0200537 if (be->be_req_ana & AN_REQ_FLT_START_BE) {
Christopher Faulet5647fba2021-03-08 13:40:30 +0100538 s->req.flags |= CF_FLT_ANALYZE;
Christopher Faulet2f3ead12021-09-10 10:29:54 +0200539 s->req.analysers |= AN_REQ_FLT_END;
Christopher Fauletfeca2a42021-08-13 14:00:46 +0200540 }
541 if ((strm_fe(s)->fe_rsp_ana | be->be_rsp_ana) & (AN_RES_FLT_START_FE|AN_RES_FLT_START_BE)) {
Christopher Faulet5647fba2021-03-08 13:40:30 +0100542 s->res.flags |= CF_FLT_ANALYZE;
Christopher Fauletfeca2a42021-08-13 14:00:46 +0200543 s->res.analysers |= AN_RES_FLT_END;
544 }
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200545
Christopher Faulet92d36382015-11-05 13:35:03 +0100546 return 0;
547}
548
Christopher Fauletd7c91962015-04-30 11:48:27 +0200549
550/*
551 * Calls 'http_end' callback for all filters attached to a stream. All filters
552 * are called here, but only if there is at least one "data" filter. This
553 * functions is called when all data were parsed and forwarded. 'http_end'
554 * callback is resumable, so this function returns a negative value if an error
555 * occurs, 0 if it needs to wait for some reason, any other value otherwise.
556 */
557int
558flt_http_end(struct stream *s, struct http_msg *msg)
559{
Christopher Faulet22fca1f2020-11-16 10:10:38 +0100560 unsigned long long *strm_off = &FLT_STRM_OFF(s, msg->chn);
561 unsigned int offset = 0;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200562 int ret = 1;
563
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100564 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200565 RESUME_FILTER_LOOP(s, msg->chn) {
Christopher Faulet22fca1f2020-11-16 10:10:38 +0100566 unsigned long long flt_off = FLT_OFF(filter, msg->chn);
567 offset = flt_off - *strm_off;
568
Christopher Faulet401e6db2020-11-24 09:49:01 +0100569 /* Call http_end for data filters only. But the filter offset is
570 * still valid for all filters
571 . */
572 if (!IS_DATA_FILTER(filter, msg->chn))
573 continue;
574
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100575 if (FLT_OPS(filter)->http_end) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100576 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100577 ret = FLT_OPS(filter)->http_end(s, filter, msg);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200578 if (ret <= 0)
579 BREAK_EXECUTION(s, msg->chn, end);
580 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200581 } RESUME_FILTER_END;
Christopher Faulet22fca1f2020-11-16 10:10:38 +0100582
583 c_adv(msg->chn, offset);
584 *strm_off += offset;
585
Christopher Fauletd7c91962015-04-30 11:48:27 +0200586end:
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100587 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200588 return ret;
589}
590
591/*
592 * Calls 'http_reset' callback for all filters attached to a stream. This
593 * happens when a 100-continue response is received.
594 */
595void
596flt_http_reset(struct stream *s, struct http_msg *msg)
597{
598 struct filter *filter;
599
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100600 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg);
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100601 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100602 if (FLT_OPS(filter)->http_reset) {
603 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100604 FLT_OPS(filter)->http_reset(s, filter, msg);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100605 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200606 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100607 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200608}
609
610/*
611 * Calls 'http_reply' callback for all filters attached to a stream when HA
612 * decides to stop the HTTP message processing.
613 */
614void
Willy Tarreau83061a82018-07-13 11:56:34 +0200615flt_http_reply(struct stream *s, short status, const struct buffer *msg)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200616{
617 struct filter *filter;
618
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100619 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg);
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100620 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100621 if (FLT_OPS(filter)->http_reply) {
622 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100623 FLT_OPS(filter)->http_reply(s, filter, status, msg);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100624 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200625 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100626 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200627}
628
629/*
Christopher Faulet75bc9132018-11-30 15:18:09 +0100630 * Calls 'http_payload' callback for all "data" filters attached to a
631 * stream. This function is called when some data can be forwarded in the
632 * AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY analyzers. It takes care to
633 * update the filters and the stream offset to be sure that a filter cannot
634 * forward more data than its predecessors. A filter can choose to not forward
635 * all data. Returns a negative value if an error occurs, else the number of
636 * forwarded bytes.
Christopher Faulet75bc9132018-11-30 15:18:09 +0100637 */
638int
639flt_http_payload(struct stream *s, struct http_msg *msg, unsigned int len)
640{
641 struct filter *filter;
642 unsigned long long *strm_off = &FLT_STRM_OFF(s, msg->chn);
Christopher Faulet421e7692019-06-13 11:16:45 +0200643 unsigned int out = co_data(msg->chn);
Christopher Faulet81340d72020-02-26 15:47:22 +0100644 int ret, data;
Christopher Faulet75bc9132018-11-30 15:18:09 +0100645
Christopher Faulet6071c2d2021-01-25 12:02:00 +0100646 strm_flt(s)->flags &= ~STRM_FLT_FL_HOLD_HTTP_HDRS;
647
Christopher Faulet81340d72020-02-26 15:47:22 +0100648 ret = data = len - out;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100649 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg);
Christopher Faulet75bc9132018-11-30 15:18:09 +0100650 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
Christopher Faulet401e6db2020-11-24 09:49:01 +0100651 unsigned long long *flt_off = &FLT_OFF(filter, msg->chn);
652 unsigned int offset = *flt_off - *strm_off;
653
654 /* Call http_payload for filters only. Forward all data for
655 * others and update the filter offset
656 */
657 if (!IS_DATA_FILTER(filter, msg->chn)) {
658 *flt_off += data - offset;
Christopher Faulet75bc9132018-11-30 15:18:09 +0100659 continue;
Christopher Faulet401e6db2020-11-24 09:49:01 +0100660 }
Christopher Faulet75bc9132018-11-30 15:18:09 +0100661
Christopher Faulet401e6db2020-11-24 09:49:01 +0100662 if (FLT_OPS(filter)->http_payload) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100663 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet71179a32020-02-07 16:40:33 +0100664 ret = FLT_OPS(filter)->http_payload(s, filter, msg, out + offset, data - offset);
Christopher Faulet75bc9132018-11-30 15:18:09 +0100665 if (ret < 0)
666 goto end;
Christopher Fauletc50ee0b2020-02-24 16:20:09 +0100667 data = ret + *flt_off - *strm_off;
Christopher Faulet75bc9132018-11-30 15:18:09 +0100668 *flt_off += ret;
Christopher Faulet75bc9132018-11-30 15:18:09 +0100669 }
670 }
Christopher Faulet71179a32020-02-07 16:40:33 +0100671
Christopher Faulet6071c2d2021-01-25 12:02:00 +0100672 /* If nothing was forwarded yet, we take care to hold the headers if
673 * following conditions are met :
674 *
675 * - *strm_off == 0 (nothing forwarded yet)
676 * - ret == 0 (no data forwarded at all on this turn)
677 * - STRM_FLT_FL_HOLD_HTTP_HDRS flag set (at least one filter want to hold the headers)
678 *
679 * Be careful, STRM_FLT_FL_HOLD_HTTP_HDRS is removed before each http_payload loop.
680 * Thus, it must explicitly be set when necessary. We must do that to hold the headers
681 * when there is no payload.
682 */
683 if (!ret && !*strm_off && (strm_flt(s)->flags & STRM_FLT_FL_HOLD_HTTP_HDRS))
684 goto end;
685
686 ret = data;
687 *strm_off += ret;
Christopher Faulet75bc9132018-11-30 15:18:09 +0100688 end:
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100689 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet75bc9132018-11-30 15:18:09 +0100690 return ret;
691}
692
693/*
Christopher Fauletd7c91962015-04-30 11:48:27 +0200694 * Calls 'channel_start_analyze' callback for all filters attached to a
695 * stream. This function is called when we start to analyze a request or a
696 * response. For frontend filters, it is called before all other analyzers. For
697 * backend ones, it is called before all backend
698 * analyzers. 'channel_start_analyze' callback is resumable, so this function
699 * returns 0 if an error occurs or if it needs to wait, any other value
700 * otherwise.
701 */
702int
703flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
704{
705 int ret = 1;
706
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100707 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
708
Christopher Fauletd7c91962015-04-30 11:48:27 +0200709 /* If this function is called, this means there is at least one filter,
710 * so we do not need to check the filter list's emptiness. */
711
Christopher Faulete6006242017-03-10 11:52:44 +0100712 /* Set flag on channel to tell that the channel is filtered */
713 chn->flags |= CF_FLT_ANALYZE;
Christopher Faulet2f3ead12021-09-10 10:29:54 +0200714 chn->analysers |= ((chn->flags & CF_ISRESP) ? AN_RES_FLT_END : AN_REQ_FLT_END);
Christopher Faulete6006242017-03-10 11:52:44 +0100715
Christopher Fauletd7c91962015-04-30 11:48:27 +0200716 RESUME_FILTER_LOOP(s, chn) {
Christopher Faulet0184ea72017-01-05 14:06:34 +0100717 if (!(chn->flags & CF_ISRESP)) {
718 if (an_bit == AN_REQ_FLT_START_BE &&
719 !(filter->flags & FLT_FL_IS_BACKEND_FILTER))
720 continue;
721 }
722 else {
723 if (an_bit == AN_RES_FLT_START_BE &&
724 !(filter->flags & FLT_FL_IS_BACKEND_FILTER))
725 continue;
726 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200727
Christopher Fauletb2e58492019-11-12 11:13:01 +0100728 FLT_OFF(filter, chn) = 0;
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100729 if (FLT_OPS(filter)->channel_start_analyze) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100730 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100731 ret = FLT_OPS(filter)->channel_start_analyze(s, filter, chn);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200732 if (ret <= 0)
733 BREAK_EXECUTION(s, chn, end);
734 }
735 } RESUME_FILTER_END;
736
737 end:
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100738 ret = handle_analyzer_result(s, chn, an_bit, ret);
739 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
740 return ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200741}
742
743/*
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200744 * Calls 'channel_pre_analyze' callback for all filters attached to a
745 * stream. This function is called BEFORE each analyzer attached to a channel,
746 * expects analyzers responsible for data sending. 'channel_pre_analyze'
747 * callback is resumable, so this function returns 0 if an error occurs or if it
748 * needs to wait, any other value otherwise.
749 *
750 * Note this function can be called many times for the same analyzer. In fact,
751 * it is called until the analyzer finishes its processing.
Christopher Fauletd7c91962015-04-30 11:48:27 +0200752 */
753int
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200754flt_pre_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200755{
756 int ret = 1;
757
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100758 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
759
Christopher Fauletd7c91962015-04-30 11:48:27 +0200760 RESUME_FILTER_LOOP(s, chn) {
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200761 if (FLT_OPS(filter)->channel_pre_analyze && (filter->pre_analyzers & an_bit)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100762 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s);
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200763 ret = FLT_OPS(filter)->channel_pre_analyze(s, filter, chn, an_bit);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200764 if (ret <= 0)
765 BREAK_EXECUTION(s, chn, check_result);
Christopher Faulet476013c2021-05-20 18:00:55 +0200766 filter->pre_analyzers &= ~an_bit;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200767 }
768 } RESUME_FILTER_END;
769
770 check_result:
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100771 ret = handle_analyzer_result(s, chn, 0, ret);
772 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
773 return ret;
Christopher Faulet309c6412015-12-02 09:57:32 +0100774}
775
776/*
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200777 * Calls 'channel_post_analyze' callback for all filters attached to a
778 * stream. This function is called AFTER each analyzer attached to a channel,
779 * expects analyzers responsible for data sending. 'channel_post_analyze'
780 * callback is NOT resumable, so this function returns a 0 if an error occurs,
781 * any other value otherwise.
782 *
783 * Here, AFTER means when the analyzer finishes its processing.
784 */
785int
786flt_post_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
787{
788 struct filter *filter;
789 int ret = 1;
790
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100791 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
792
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200793 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
794 if (FLT_OPS(filter)->channel_post_analyze && (filter->post_analyzers & an_bit)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100795 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s);
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200796 ret = FLT_OPS(filter)->channel_post_analyze(s, filter, chn, an_bit);
797 if (ret < 0)
798 break;
Christopher Faulet476013c2021-05-20 18:00:55 +0200799 filter->post_analyzers &= ~an_bit;
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200800 }
801 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100802 ret = handle_analyzer_result(s, chn, 0, ret);
803 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
804 return ret;
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200805}
806
807/*
Christopher Faulet0184ea72017-01-05 14:06:34 +0100808 * This function is the AN_REQ/RES_FLT_HTTP_HDRS analyzer, used to filter HTTP
809 * headers or a request or a response. Returns 0 if an error occurs or if it
810 * needs to wait, any other value otherwise.
Christopher Faulet309c6412015-12-02 09:57:32 +0100811 */
812int
813flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit)
814{
Christopher Faulet1339d742016-05-11 16:48:33 +0200815 struct http_msg *msg;
816 int ret = 1;
Christopher Faulet309c6412015-12-02 09:57:32 +0100817
Christopher Faulet1339d742016-05-11 16:48:33 +0200818 msg = ((chn->flags & CF_ISRESP) ? &s->txn->rsp : &s->txn->req);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100819 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg);
820
Christopher Faulet309c6412015-12-02 09:57:32 +0100821 RESUME_FILTER_LOOP(s, chn) {
Christopher Faulet1339d742016-05-11 16:48:33 +0200822 if (FLT_OPS(filter)->http_headers) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100823 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet1339d742016-05-11 16:48:33 +0200824 ret = FLT_OPS(filter)->http_headers(s, filter, msg);
Christopher Faulet309c6412015-12-02 09:57:32 +0100825 if (ret <= 0)
826 BREAK_EXECUTION(s, chn, check_result);
827 }
828 } RESUME_FILTER_END;
Christopher Faulet9c44e482020-02-12 15:31:20 +0100829
830 if (HAS_DATA_FILTERS(s, chn)) {
831 size_t data = http_get_hdrs_size(htxbuf(&chn->buf));
832 struct filter *f;
833
Christopher Faulet401e6db2020-11-24 09:49:01 +0100834 list_for_each_entry(f, &strm_flt(s)->filters, list)
835 FLT_OFF(f, chn) = data;
Christopher Faulet9c44e482020-02-12 15:31:20 +0100836 }
Christopher Faulet309c6412015-12-02 09:57:32 +0100837
838 check_result:
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100839 ret = handle_analyzer_result(s, chn, an_bit, ret);
840 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s);
841 return ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200842}
843
844/*
845 * Calls 'channel_end_analyze' callback for all filters attached to a
846 * stream. This function is called when we stop to analyze a request or a
847 * response. It is called after all other analyzers. 'channel_end_analyze'
848 * callback is resumable, so this function returns 0 if an error occurs or if it
849 * needs to wait, any other value otherwise.
850 */
851int
852flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
853{
854 int ret = 1;
855
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100856 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
857
Christopher Faulete6006242017-03-10 11:52:44 +0100858 /* Check if all filters attached on the stream have finished their
859 * processing on this channel. */
860 if (!(chn->flags & CF_FLT_ANALYZE))
861 goto sync;
862
Christopher Fauletd7c91962015-04-30 11:48:27 +0200863 RESUME_FILTER_LOOP(s, chn) {
Christopher Fauletb2e58492019-11-12 11:13:01 +0100864 FLT_OFF(filter, chn) = 0;
Christopher Fauletda02e172015-12-04 09:25:05 +0100865 unregister_data_filter(s, chn, filter);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200866
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100867 if (FLT_OPS(filter)->channel_end_analyze) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100868 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s);
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100869 ret = FLT_OPS(filter)->channel_end_analyze(s, filter, chn);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200870 if (ret <= 0)
871 BREAK_EXECUTION(s, chn, end);
872 }
873 } RESUME_FILTER_END;
874
Christopher Faulete6006242017-03-10 11:52:44 +0100875 end:
876 /* We don't remove yet this analyzer because we need to synchronize the
877 * both channels. So here, we just remove the flag CF_FLT_ANALYZE. */
878 ret = handle_analyzer_result(s, chn, 0, ret);
Christopher Faulet570f7992017-07-06 15:53:02 +0200879 if (ret) {
Christopher Faulete6006242017-03-10 11:52:44 +0100880 chn->flags &= ~CF_FLT_ANALYZE;
Christopher Faulet02c7b222015-12-22 12:01:29 +0100881
Christopher Faulet570f7992017-07-06 15:53:02 +0200882 /* Pretend there is an activity on both channels. Flag on the
883 * current one will be automatically removed, so only the other
884 * one will remain. This is a way to be sure that
885 * 'channel_end_analyze' callback will have a chance to be
886 * called at least once for the other side to finish the current
Joseph Herlantb35ea682018-11-15 12:24:23 -0800887 * processing. Of course, this is the filter responsibility to
Christopher Faulet570f7992017-07-06 15:53:02 +0200888 * wakeup the stream if it choose to loop on this callback. */
889 s->req.flags |= CF_WAKE_ONCE;
890 s->res.flags |= CF_WAKE_ONCE;
891 }
892
893
Christopher Faulete6006242017-03-10 11:52:44 +0100894 sync:
895 /* Now we can check if filters have finished their work on the both
896 * channels */
897 if (!(s->req.flags & CF_FLT_ANALYZE) && !(s->res.flags & CF_FLT_ANALYZE)) {
898 /* Sync channels by removing this analyzer for the both channels */
899 s->req.analysers &= ~AN_REQ_FLT_END;
900 s->res.analysers &= ~AN_RES_FLT_END;
Christopher Fauletc6062be2016-10-31 11:22:37 +0100901
Christopher Faulete6006242017-03-10 11:52:44 +0100902 /* Remove backend filters from the list */
903 flt_stream_release(s, 1);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100904 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200905 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100906 else {
907 DBG_TRACE_DEVEL("waiting for sync", STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s);
908 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200909 return ret;
910}
911
Christopher Fauletd7c91962015-04-30 11:48:27 +0200912
913/*
Christopher Fauletb2e58492019-11-12 11:13:01 +0100914 * Calls 'tcp_payload' callback for all "data" filters attached to a
915 * stream. This function is called when some data can be forwarded in the
916 * AN_REQ_FLT_XFER_BODY and AN_RES_FLT_XFER_BODY analyzers. It takes care to
917 * update the filters and the stream offset to be sure that a filter cannot
918 * forward more data than its predecessors. A filter can choose to not forward
919 * all data. Returns a negative value if an error occurs, else the number of
920 * forwarded bytes.
Christopher Fauletd7c91962015-04-30 11:48:27 +0200921 */
Christopher Fauletb2e58492019-11-12 11:13:01 +0100922int
923flt_tcp_payload(struct stream *s, struct channel *chn, unsigned int len)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200924{
Christopher Fauletda02e172015-12-04 09:25:05 +0100925 struct filter *filter;
Christopher Fauletb2e58492019-11-12 11:13:01 +0100926 unsigned long long *strm_off = &FLT_STRM_OFF(s, chn);
927 unsigned int out = co_data(chn);
Christopher Faulet81340d72020-02-26 15:47:22 +0100928 int ret, data;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200929
Christopher Faulet81340d72020-02-26 15:47:22 +0100930 ret = data = len - out;
Christopher Fauletb2e58492019-11-12 11:13:01 +0100931 DBG_TRACE_ENTER(STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletfcf035c2015-12-03 11:48:03 +0100932 list_for_each_entry(filter, &strm_flt(s)->filters, list) {
Christopher Faulet401e6db2020-11-24 09:49:01 +0100933 unsigned long long *flt_off = &FLT_OFF(filter, chn);
934 unsigned int offset = *flt_off - *strm_off;
935
936 /* Call tcp_payload for filters only. Forward all data for
937 * others and update the filter offset
938 */
939 if (!IS_DATA_FILTER(filter, chn)) {
940 *flt_off += data - offset;
Christopher Fauletda02e172015-12-04 09:25:05 +0100941 continue;
Christopher Faulet401e6db2020-11-24 09:49:01 +0100942 }
943
Christopher Fauletb2e58492019-11-12 11:13:01 +0100944 if (FLT_OPS(filter)->tcp_payload) {
Christopher Fauletda02e172015-12-04 09:25:05 +0100945
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100946 DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s);
Christopher Faulet71179a32020-02-07 16:40:33 +0100947 ret = FLT_OPS(filter)->tcp_payload(s, filter, chn, out + offset, data - offset);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200948 if (ret < 0)
949 goto end;
Christopher Fauletc50ee0b2020-02-24 16:20:09 +0100950 data = ret + *flt_off - *strm_off;
Christopher Fauletb2e58492019-11-12 11:13:01 +0100951 *flt_off += ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200952 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200953 }
Christopher Faulet71179a32020-02-07 16:40:33 +0100954
955 /* Only forward data if the last filter decides to forward something */
956 if (ret > 0) {
957 ret = data;
958 *strm_off += ret;
959 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200960 end:
Christopher Fauletb2e58492019-11-12 11:13:01 +0100961 DBG_TRACE_LEAVE(STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200962 return ret;
963}
964
965/*
966 * Called when TCP data must be filtered on a channel. This function is the
Christopher Faulet0184ea72017-01-05 14:06:34 +0100967 * AN_REQ/RES_FLT_XFER_DATA analyzer. When called, it is responsible to forward
968 * data when the proxy is not in http mode. Behind the scene, it calls
969 * consecutively 'tcp_data' and 'tcp_forward_data' callbacks for all "data"
970 * filters attached to a stream. Returns 0 if an error occurs or if it needs to
971 * wait, any other value otherwise.
Christopher Fauletd7c91962015-04-30 11:48:27 +0200972 */
973int
974flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit)
975{
Christopher Fauletb2e58492019-11-12 11:13:01 +0100976 unsigned int len;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200977 int ret = 1;
978
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100979 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s);
980
Christopher Fauletda02e172015-12-04 09:25:05 +0100981 /* If there is no "data" filters, we do nothing */
Christopher Fauletb2e58492019-11-12 11:13:01 +0100982 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletda02e172015-12-04 09:25:05 +0100983 goto end;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200984
985 /* Be sure that the output is still opened. Else we stop the data
986 * filtering. */
987 if ((chn->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreau44a41a82018-06-19 07:16:31 +0200988 ((chn->flags & CF_SHUTW) && (chn->to_forward || co_data(chn))))
Christopher Fauletd7c91962015-04-30 11:48:27 +0200989 goto end;
990
Christopher Fauletb2e58492019-11-12 11:13:01 +0100991 if (s->flags & SF_HTX) {
992 struct htx *htx = htxbuf(&chn->buf);
993 len = htx->data;
994 }
995 else
996 len = c_data(chn);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200997
Christopher Fauletb2e58492019-11-12 11:13:01 +0100998 ret = flt_tcp_payload(s, chn, len);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200999 if (ret < 0)
1000 goto end;
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001001 c_adv(chn, ret);
Christopher Fauletda02e172015-12-04 09:25:05 +01001002
Christopher Fauletd7c91962015-04-30 11:48:27 +02001003 /* Stop waiting data if the input in closed and no data is pending or if
1004 * the output is closed. */
Christopher Fauletb2e58492019-11-12 11:13:01 +01001005 if (chn->flags & CF_SHUTW) {
Christopher Fauletd7c91962015-04-30 11:48:27 +02001006 ret = 1;
1007 goto end;
1008 }
Christopher Fauletb2e58492019-11-12 11:13:01 +01001009 if (chn->flags & CF_SHUTR) {
1010 if (((s->flags & SF_HTX) && htx_is_empty(htxbuf(&chn->buf))) || c_empty(chn)) {
1011 ret = 1;
1012 goto end;
1013 }
1014 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02001015
1016 /* Wait for data */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001017 DBG_TRACE_DEVEL("waiting for more data", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +02001018 return 0;
1019 end:
1020 /* Terminate the data filtering. If <ret> is negative, an error was
1021 * encountered during the filtering. */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001022 ret = handle_analyzer_result(s, chn, an_bit, ret);
1023 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s);
1024 return ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001025}
1026
1027/*
1028 * Handles result of filter's analyzers. It returns 0 if an error occurs or if
1029 * it needs to wait, any other value otherwise.
1030 */
1031static int
1032handle_analyzer_result(struct stream *s, struct channel *chn,
1033 unsigned int an_bit, int ret)
1034{
1035 int finst;
Christopher Faulete058f732019-09-06 15:24:55 +02001036 int status = 0;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001037
1038 if (ret < 0)
1039 goto return_bad_req;
1040 else if (!ret)
1041 goto wait;
1042
1043 /* End of job, return OK */
1044 if (an_bit) {
1045 chn->analysers &= ~an_bit;
1046 chn->analyse_exp = TICK_ETERNITY;
1047 }
1048 return 1;
1049
1050 return_bad_req:
1051 /* An error occurs */
1052 channel_abort(&s->req);
1053 channel_abort(&s->res);
1054
1055 if (!(chn->flags & CF_ISRESP)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01001056 s->req.analysers &= AN_REQ_FLT_END;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001057 finst = SF_FINST_R;
Christopher Faulete058f732019-09-06 15:24:55 +02001058 status = 400;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001059 /* FIXME: incr counters */
1060 }
1061 else {
Christopher Faulet0184ea72017-01-05 14:06:34 +01001062 s->res.analysers &= AN_RES_FLT_END;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001063 finst = SF_FINST_H;
Christopher Faulete058f732019-09-06 15:24:55 +02001064 status = 502;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001065 /* FIXME: incr counters */
1066 }
1067
Christopher Faulet3d119692019-07-15 22:04:51 +02001068 if (IS_HTX_STRM(s)) {
Christopher Fauletd7c91962015-04-30 11:48:27 +02001069 /* Do not do that when we are waiting for the next request */
Christopher Faulete058f732019-09-06 15:24:55 +02001070 if (s->txn->status > 0)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001071 http_reply_and_close(s, s->txn->status, NULL);
Christopher Fauletd7c91962015-04-30 11:48:27 +02001072 else {
Christopher Faulete058f732019-09-06 15:24:55 +02001073 s->txn->status = status;
1074 http_reply_and_close(s, status, http_error_message(s));
Christopher Fauletd7c91962015-04-30 11:48:27 +02001075 }
1076 }
1077
1078 if (!(s->flags & SF_ERR_MASK))
1079 s->flags |= SF_ERR_PRXCOND;
1080 if (!(s->flags & SF_FINST_MASK))
1081 s->flags |= finst;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001082 DBG_TRACE_DEVEL("leaving on error", STRM_EV_FLT_ANA|STRM_EV_FLT_ERR, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +02001083 return 0;
1084
1085 wait:
1086 if (!(chn->flags & CF_ISRESP))
1087 channel_dont_connect(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001088 DBG_TRACE_DEVEL("wairing for more data", STRM_EV_FLT_ANA, s);
Christopher Fauletd7c91962015-04-30 11:48:27 +02001089 return 0;
1090}
1091
1092
1093/* Note: must not be declared <const> as its list will be overwritten.
1094 * Please take care of keeping this list alphabetically sorted, doing so helps
1095 * all code contributors.
1096 * Optional keywords are also declared with a NULL ->parse() function so that
1097 * the config parser can report an appropriate error when a known keyword was
1098 * not enabled. */
1099static struct cfg_kw_list cfg_kws = {ILH, {
1100 { CFG_LISTEN, "filter", parse_filter },
1101 { 0, NULL, NULL },
1102 }
1103};
1104
Willy Tarreau0108d902018-11-25 19:14:37 +01001105INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
1106
Willy Tarreau172f5ce2018-11-26 11:21:50 +01001107REGISTER_POST_CHECK(flt_init_all);
1108REGISTER_PER_THREAD_INIT(flt_init_all_per_thread);
1109REGISTER_PER_THREAD_DEINIT(flt_deinit_all_per_thread);
1110
Christopher Fauletd7c91962015-04-30 11:48:27 +02001111/*
1112 * Local variables:
1113 * c-indent-level: 8
1114 * c-basic-offset: 8
1115 * End:
1116 */