blob: b2ceefe2c496dce397f3a0fc772596fd0c80f098 [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
13#include <common/buffer.h>
14#include <common/debug.h>
15#include <common/cfgparse.h>
16#include <common/compat.h>
17#include <common/config.h>
18#include <common/errors.h>
19#include <common/namespace.h>
20#include <common/standard.h>
21
22#include <types/filters.h>
23#include <types/proto_http.h>
24
25#include <proto/compression.h>
26#include <proto/filters.h>
Christopher Faulet92d36382015-11-05 13:35:03 +010027#include <proto/flt_http_comp.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020028#include <proto/proto_http.h>
29#include <proto/stream.h>
30#include <proto/stream_interface.h>
31
32/* Pool used to allocate filters */
33struct pool_head *pool2_filter = NULL;
34
35static int handle_analyzer_result(struct stream *s, struct channel *chn, unsigned int an_bit, int ret);
36
37/* - RESUME_FILTER_LOOP and RESUME_FILTER_END must always be used together.
38 * The first one begins a loop and the seconds one ends it.
39 *
40 * - BREAK_EXECUTION must be used to break the loop and set the filter from
41 * which to resume the next time.
42 *
43 * Here is an exemple:
44 *
45 * RESUME_FILTER_LOOP(stream, channel) {
46 * ...
47 * if (cond)
48 * BREAK_EXECUTION(stream, channel, label);
49 * ...
50 * } RESUME_FILTER_END;
51 * ...
52 * label:
53 * ...
54 *
55 */
56#define RESUME_FILTER_LOOP(strm, chn) \
57 do { \
58 struct filter *filter; \
59 \
60 if ((strm)->strm_flt.current[CHN_IDX(chn)]) { \
61 filter = (strm)->strm_flt.current[CHN_IDX(chn)]; \
62 (strm)->strm_flt.current[CHN_IDX(chn)] = NULL; \
63 goto resume_execution; \
64 } \
65 \
66 list_for_each_entry(filter, &s->strm_flt.filters, list) { \
67 resume_execution:
68
69#define RESUME_FILTER_END \
70 } \
71 } while(0)
72
73#define BREAK_EXECUTION(strm, chn, label) \
74 do { \
75 (strm)->strm_flt.current[CHN_IDX(chn)] = filter; \
76 goto label; \
77 } while (0)
78
79
80/* List head of all known filter keywords */
81static struct flt_kw_list flt_keywords = {
82 .list = LIST_HEAD_INIT(flt_keywords.list)
83};
84
85/*
86 * Registers the filter keyword list <kwl> as a list of valid keywords for next
87 * parsing sessions.
88 */
89void
90flt_register_keywords(struct flt_kw_list *kwl)
91{
92 LIST_ADDQ(&flt_keywords.list, &kwl->list);
93}
94
95/*
96 * Returns a pointer to the filter keyword <kw>, or NULL if not found. If the
97 * keyword is found with a NULL ->parse() function, then an attempt is made to
98 * find one with a valid ->parse() function. This way it is possible to declare
99 * platform-dependant, known keywords as NULL, then only declare them as valid
100 * if some options are met. Note that if the requested keyword contains an
101 * opening parenthesis, everything from this point is ignored.
102 */
103struct flt_kw *
104flt_find_kw(const char *kw)
105{
106 int index;
107 const char *kwend;
108 struct flt_kw_list *kwl;
109 struct flt_kw *ret = NULL;
110
111 kwend = strchr(kw, '(');
112 if (!kwend)
113 kwend = kw + strlen(kw);
114
115 list_for_each_entry(kwl, &flt_keywords.list, list) {
116 for (index = 0; kwl->kw[index].kw != NULL; index++) {
117 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
118 kwl->kw[index].kw[kwend-kw] == 0) {
119 if (kwl->kw[index].parse)
120 return &kwl->kw[index]; /* found it !*/
121 else
122 ret = &kwl->kw[index]; /* may be OK */
123 }
124 }
125 }
126 return ret;
127}
128
129/*
130 * Dumps all registered "filter" keywords to the <out> string pointer. The
131 * unsupported keywords are only dumped if their supported form was not found.
132 */
133void
134flt_dump_kws(char **out)
135{
136 struct flt_kw_list *kwl;
137 int index;
138
139 *out = NULL;
140 list_for_each_entry(kwl, &flt_keywords.list, list) {
141 for (index = 0; kwl->kw[index].kw != NULL; index++) {
142 if (kwl->kw[index].parse ||
143 flt_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
144 memprintf(out, "%s[%4s] %s%s\n", *out ? *out : "",
145 kwl->scope,
146 kwl->kw[index].kw,
147 kwl->kw[index].parse ? "" : " (not supported)");
148 }
149 }
150 }
151}
152
153/*
154 * Parses the "filter" keyword. All keywords must be handled by filters
155 * themselves
156 */
157static int
158parse_filter(char **args, int section_type, struct proxy *curpx,
159 struct proxy *defpx, const char *file, int line, char **err)
160{
161 struct filter *filter = NULL;
162
163 /* Filter cannot be defined on a default proxy */
164 if (curpx == defpx) {
165 memprintf(err, "parsing [%s:%d] : %s is only allowed in a 'default' section.",
166 file, line, args[0]);
167 return -1;
168 }
169 if (!strcmp(args[0], "filter")) {
170 struct flt_kw *kw;
171 int cur_arg;
172
173 if (!*args[1]) {
174 memprintf(err,
175 "parsing [%s:%d] : missing argument for '%s' in %s '%s'.",
176 file, line, args[0], proxy_type_str(curpx), curpx->id);
177 goto error;
178 }
179 filter = pool_alloc2(pool2_filter);
180 if (!filter) {
181 memprintf(err, "'%s' : out of memory", args[0]);
182 goto error;
183 }
184 memset(filter, 0, sizeof(*filter));
185
186 cur_arg = 1;
187 kw = flt_find_kw(args[cur_arg]);
188 if (kw) {
189 if (!kw->parse) {
190 memprintf(err, "parsing [%s:%d] : '%s' : "
191 "'%s' option is not implemented in this version (check build options).",
192 file, line, args[0], args[cur_arg]);
193 goto error;
194 }
195 if (kw->parse(args, &cur_arg, curpx, filter, err) != 0) {
196 if (err && *err)
197 memprintf(err, "'%s' : '%s'",
198 args[0], *err);
199 else
200 memprintf(err, "'%s' : error encountered while processing '%s'",
201 args[0], args[cur_arg]);
202 goto error;
203 }
204 }
205 else {
206 flt_dump_kws(err);
207 indent_msg(err, 4);
208 memprintf(err, "'%s' : unknown keyword '%s'.%s%s",
209 args[0], args[cur_arg],
210 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
211 goto error;
212 }
213 if (*args[cur_arg]) {
214 memprintf(err, "'%s %s' : unknown keyword '%s'.",
215 args[0], args[1], args[cur_arg]);
216 goto error;
217 }
218
219 LIST_ADDQ(&curpx->filters, &filter->list);
220 }
221 return 0;
222
223 error:
224 if (filter)
225 pool_free2(pool2_filter, filter);
226 return -1;
227
228
229}
230
231/*
232 * Calls 'init' callback for all filters attached to a proxy. This happens after
233 * the configuration parsing. Filters can finish to fill their config. Returns
234 * (ERR_ALERT|ERR_FATAL) if an error occurs, 0 otherwise.
235 */
236int
237flt_init(struct proxy *proxy)
238{
239 struct filter *filter;
240
241 list_for_each_entry(filter, &proxy->filters, list) {
242 if (filter->ops->init && filter->ops->init(proxy, filter) < 0)
243 return ERR_ALERT|ERR_FATAL;
244 }
245 return 0;
246}
247
248/*
249 * Calls 'check' callback for all filters attached to a proxy. This happens
250 * after the configuration parsing but before filters initialization. Returns
251 * the number of encountered errors.
252 */
253int
254flt_check(struct proxy *proxy)
255{
256 struct filter *filter;
257 int err = 0;
258
259 list_for_each_entry(filter, &proxy->filters, list) {
260 if (filter->ops->check)
261 err += filter->ops->check(proxy, filter);
262 }
Christopher Faulet92d36382015-11-05 13:35:03 +0100263 err += check_legacy_http_comp_flt(proxy);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200264 return err;
265}
266
267/*
268 * Calls 'denit' callback for all filters attached to a proxy. This happens when
269 * HAProxy is stopped.
270 */
271void
272flt_deinit(struct proxy *proxy)
273{
274 struct filter *filter, *back;
275
276 list_for_each_entry_safe(filter, back, &proxy->filters, list) {
277 if (filter->ops->deinit)
278 filter->ops->deinit(proxy, filter);
279 LIST_DEL(&filter->list);
280 pool_free2(pool2_filter, filter);
281 }
282}
283
Christopher Faulet92d36382015-11-05 13:35:03 +0100284/* Attaches a filter to a stream. Returns -1 if an error occurs, 0 otherwise. */
285static int
286flt_stream_add_filter(struct stream *s, struct filter *filter,
287 int is_backend)
288{
289 struct filter *f = pool_alloc2(pool2_filter);
290 if (!f) /* not enough memory */
291 return -1;
292 memset(f, 0, sizeof(*f));
293 f->id = filter->id;
294 f->ops = filter->ops;
295 f->conf = filter->conf;
296 f->is_backend_filter = is_backend;
297 LIST_ADDQ(&s->strm_flt.filters, &f->list);
Christopher Faulet3e344292015-11-24 16:24:13 +0100298 s->strm_flt.has_filters = 1;
Christopher Faulet92d36382015-11-05 13:35:03 +0100299 return 0;
300}
301
302/*
303 * Called when a stream is created. It attaches all frontend filters to the
304 * stream. Returns -1 if an error occurs, 0 otherwise.
305 */
306int
307flt_stream_init(struct stream *s)
308{
309 struct filter *filter;
310
311 LIST_INIT(&s->strm_flt.filters);
312 memset(s->strm_flt.current, 0, sizeof(s->strm_flt.current));
Christopher Faulet3e344292015-11-24 16:24:13 +0100313 s->strm_flt.has_filters = 0;
Christopher Faulet92d36382015-11-05 13:35:03 +0100314 list_for_each_entry(filter, &strm_fe(s)->filters, list) {
315 if (flt_stream_add_filter(s, filter, 0) < 0)
316 return -1;
317 }
318 return 0;
319}
320
321/*
322 * Called when a stream is closed or when analyze ends (For an HTTP stream, this
323 * happens after each request/response exchange). When analyze ends, backend
324 * filters are removed. When the stream is closed, all filters attached to the
325 * stream are removed.
326 */
327void
328flt_stream_release(struct stream *s, int only_backend)
329{
330 struct filter *filter, *back;
331
332 list_for_each_entry_safe(filter, back, &s->strm_flt.filters, list) {
333 if (!only_backend || filter->is_backend_filter) {
334 LIST_DEL(&filter->list);
335 pool_free2(pool2_filter, filter);
336 }
337 }
Christopher Faulet3e344292015-11-24 16:24:13 +0100338 if (LIST_ISEMPTY(&s->strm_flt.filters))
339 s->strm_flt.has_filters = 0;
Christopher Faulet92d36382015-11-05 13:35:03 +0100340}
341
Christopher Fauletd7c91962015-04-30 11:48:27 +0200342/*
343 * Calls 'stream_start' for all filters attached to a stream. This happens when
344 * the stream is created, just after calling flt_stream_init
345 * function. Returns -1 if an error occurs, 0 otherwise.
346 */
347int
348flt_stream_start(struct stream *s)
349{
350 struct filter *filter;
351
352 list_for_each_entry(filter, &s->strm_flt.filters, list) {
353 if (filter->ops->stream_start && filter->ops->stream_start(s, filter) < 0)
354 return -1;
355 }
356 return 0;
357}
358
359/*
360 * Calls 'stream_stop' for all filters attached to a stream. This happens when
361 * the stream is stopped, just before calling flt_stream_release function.
362 */
363void
364flt_stream_stop(struct stream *s)
365{
366 struct filter *filter;
367
368 list_for_each_entry(filter, &s->strm_flt.filters, list) {
369 if (filter->ops->stream_stop)
370 filter->ops->stream_stop(s, filter);
371 }
372}
373
Christopher Faulet92d36382015-11-05 13:35:03 +0100374/*
375 * Called when a backend is set for a stream. If the frontend and the backend
376 * are the same, this function does nothing. Else it attaches all backend
377 * filters to the stream. Returns -1 if an error occurs, 0 otherwise.
378 */
379int
380flt_set_stream_backend(struct stream *s, struct proxy *be)
381{
382 struct filter *filter;
383
384 if (strm_fe(s) == be)
385 return 0;
386
387 list_for_each_entry(filter, &be->filters, list) {
388 if (flt_stream_add_filter(s, filter, 1) < 0)
389 return -1;
390 }
391 return 0;
392}
393
Christopher Fauletd7c91962015-04-30 11:48:27 +0200394/*
395 * Calls 'http_data' callback for all "data" filters attached to a stream. This
396 * function is called when incoming data are available (excluding chunks
397 * envelope for chunked messages) in the AN_REQ_HTTP_XFER_BODY and
398 * AN_RES_HTTP_XFER_BODY analyzers. It takes care to update the next offset of
399 * filters and adjusts available data to be sure that a filter cannot parse more
400 * data than its predecessors. A filter can choose to not consume all available
401 * data. Returns -1 if an error occurs, the number of consumed bytes otherwise.
402 */
403int
404flt_http_data(struct stream *s, struct http_msg *msg)
405{
406 struct filter *filter = NULL;
407 unsigned int buf_i;
408 int ret = 0;
409
Christopher Fauletd7c91962015-04-30 11:48:27 +0200410 /* Save buffer state */
411 buf_i = msg->chn->buf->i;
412 list_for_each_entry(filter, &s->strm_flt.filters, list) {
Christopher Faulet2fb28802015-12-01 10:40:57 +0100413 /* If the HTTP parser is ahead, we update the next offset of the
414 * current filter. This happens for chunked messages, at the
415 * begining of a new chunk. */
416 if (msg->next > FLT_NXT(filter, msg->chn))
417 FLT_NXT(filter, msg->chn) = msg->next;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200418 if (filter->ops->http_data && !flt_want_forward_data(filter, msg->chn)) {
419 ret = filter->ops->http_data(s, filter, msg);
Christopher Faulet2fb28802015-12-01 10:40:57 +0100420 if (ret <= 0)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200421 break;
422 }
423 else {
424 /* msg->chunk_len is the remaining size of data to parse
425 * in the body (or in the current chunk for
426 * chunk-encoded messages) from the HTTP parser point of
427 * view (relatively to msg->next). To have it from the
428 * filter point of view, we need to be add (msg->next
429 * -FLT_NEXT) to it. */
430 ret = MIN(msg->chunk_len + msg->next, msg->chn->buf->i) - FLT_NXT(filter, msg->chn);
431 }
432
Christopher Faulet2fb28802015-12-01 10:40:57 +0100433 /* Update the next offset of the current filter */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200434 FLT_NXT(filter, msg->chn) += ret;
435
436 /* And set this value as the bound for the next filter. It will
437 * not able to parse more data than the current one. */
438 msg->chn->buf->i = FLT_NXT(filter, msg->chn);
439 }
440 /* Restore the original buffer state */
441 msg->chn->buf->i = buf_i;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200442 return ret;
443}
444
Christopher Fauletd7c91962015-04-30 11:48:27 +0200445/*
446 * Calls 'http_chunk_trailers' callback for all "data" filters attached to a
447 * stream. This function is called for chunked messages only when a part of the
448 * trailers was parsed in the AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY
449 * analyzers. Filters can know how much data were parsed by the HTTP parsing
450 * until the last call with the msg->sol value. Returns a negative value if an
451 * error occurs, any other value otherwise.
452 */
453int
454flt_http_chunk_trailers(struct stream *s, struct http_msg *msg)
455{
Christopher Faulet2fb28802015-12-01 10:40:57 +0100456 struct filter *filter;
457 int ret = 1;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200458
Christopher Faulet2fb28802015-12-01 10:40:57 +0100459 list_for_each_entry(filter, &s->strm_flt.filters, list) {
460 /* Be sure to set the next offset of the filter at the right
461 * place. This is really useful when the first part of the
462 * trailers was parsed. */
463 FLT_NXT(filter, msg->chn) = msg->next;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200464 if (filter->ops->http_chunk_trailers) {
465 ret = filter->ops->http_chunk_trailers(s, filter, msg);
Christopher Faulet2fb28802015-12-01 10:40:57 +0100466 if (ret < 0)
467 break;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200468 }
Christopher Faulet2fb28802015-12-01 10:40:57 +0100469 /* Update the next offset of the current filter. Here all data
470 * are always consumed. */
Christopher Fauletd7c91962015-04-30 11:48:27 +0200471 FLT_NXT(filter, msg->chn) += msg->sol;
Christopher Faulet2fb28802015-12-01 10:40:57 +0100472 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200473 return ret;
474}
475
476/*
477 * Calls 'http_end' callback for all filters attached to a stream. All filters
478 * are called here, but only if there is at least one "data" filter. This
479 * functions is called when all data were parsed and forwarded. 'http_end'
480 * callback is resumable, so this function returns a negative value if an error
481 * occurs, 0 if it needs to wait for some reason, any other value otherwise.
482 */
483int
484flt_http_end(struct stream *s, struct http_msg *msg)
485{
486 int ret = 1;
487
Christopher Fauletd7c91962015-04-30 11:48:27 +0200488 RESUME_FILTER_LOOP(s, msg->chn) {
489 if (filter->ops->http_end) {
490 ret = filter->ops->http_end(s, filter, msg);
491 if (ret <= 0)
492 BREAK_EXECUTION(s, msg->chn, end);
493 }
494 flt_reset_forward_data(filter, msg->chn);
495 } RESUME_FILTER_END;
496end:
497 return ret;
498}
499
500/*
501 * Calls 'http_reset' callback for all filters attached to a stream. This
502 * happens when a 100-continue response is received.
503 */
504void
505flt_http_reset(struct stream *s, struct http_msg *msg)
506{
507 struct filter *filter;
508
Christopher Fauletd7c91962015-04-30 11:48:27 +0200509 list_for_each_entry(filter, &s->strm_flt.filters, list) {
510 if (filter->ops->http_reset)
511 filter->ops->http_reset(s, filter, msg);
512 }
513}
514
515/*
516 * Calls 'http_reply' callback for all filters attached to a stream when HA
517 * decides to stop the HTTP message processing.
518 */
519void
520flt_http_reply(struct stream *s, short status, const struct chunk *msg)
521{
522 struct filter *filter;
523
Christopher Fauletd7c91962015-04-30 11:48:27 +0200524 list_for_each_entry(filter, &s->strm_flt.filters, list) {
525 if (filter->ops->http_reply)
526 filter->ops->http_reply(s, filter, status, msg);
527 }
528}
529
530/*
531 * Calls 'http_forward_data' callback for all "data" filters attached to a
532 * stream. This function is called when some data can be forwarded in the
533 * AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY analyzers. It takes care to
534 * update the forward offset of filters and adjusts "forwardable" data to be
535 * sure that a filter cannot forward more data than its predecessors. A filter
536 * can choose to not forward all parsed data. Returns a negative value if an
537 * error occurs, else the number of forwarded bytes.
538 */
539int
540flt_http_forward_data(struct stream *s, struct http_msg *msg, unsigned int len)
541{
542 struct filter *filter = NULL;
543 int ret = len;
544
Christopher Fauletd7c91962015-04-30 11:48:27 +0200545 list_for_each_entry(filter, &s->strm_flt.filters, list) {
Christopher Faulet2fb28802015-12-01 10:40:57 +0100546 /* If the HTTP parser is ahead, we update the next offset of the
547 * current filter. This happens for chunked messages, when the
548 * chunk envelope is parsed. */
549 if (msg->next > FLT_NXT(filter, msg->chn))
550 FLT_NXT(filter, msg->chn) = msg->next;
Christopher Fauletd7c91962015-04-30 11:48:27 +0200551 if (filter->ops->http_forward_data) {
552 /* Remove bytes that the current filter considered as
553 * forwarded */
554 ret = filter->ops->http_forward_data(s, filter, msg,
555 ret - FLT_FWD(filter, msg->chn));
556 if (ret < 0)
557 goto end;
558 }
559
560 /* Adjust bytes that the current filter considers as
561 * forwarded */
562 FLT_FWD(filter, msg->chn) += ret;
563
564 /* And set this value as the bound for the next filter. It will
565 * not able to forward more data than the current one. */
566 ret = FLT_FWD(filter, msg->chn);
567 }
568
569 if (!ret)
570 goto end;
571
572 /* Finally, adjust filters offsets by removing data that HAProxy will
573 * forward. */
574 list_for_each_entry(filter, &s->strm_flt.filters, list) {
575 FLT_NXT(filter, msg->chn) -= ret;
576 FLT_FWD(filter, msg->chn) -= ret;
577 }
578 end:
579 return ret;
580}
581
582/*
583 * Calls 'channel_start_analyze' callback for all filters attached to a
584 * stream. This function is called when we start to analyze a request or a
585 * response. For frontend filters, it is called before all other analyzers. For
586 * backend ones, it is called before all backend
587 * analyzers. 'channel_start_analyze' callback is resumable, so this function
588 * returns 0 if an error occurs or if it needs to wait, any other value
589 * otherwise.
590 */
591int
592flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
593{
594 int ret = 1;
595
596 /* If this function is called, this means there is at least one filter,
597 * so we do not need to check the filter list's emptiness. */
598
599 RESUME_FILTER_LOOP(s, chn) {
600 if (an_bit == AN_FLT_START_BE && !filter->is_backend_filter)
601 continue;
602
603 filter->next[CHN_IDX(chn)] = 0;
604 filter->fwd[CHN_IDX(chn)] = 0;
605
606 if (filter->ops->channel_start_analyze) {
607 ret = filter->ops->channel_start_analyze(s, filter, chn);
608 if (ret <= 0)
609 BREAK_EXECUTION(s, chn, end);
610 }
611 } RESUME_FILTER_END;
612
613 end:
614 return handle_analyzer_result(s, chn, an_bit, ret);
615}
616
617/*
618 * Calls 'channel_analyze' callback for all filters attached to a stream. This
619 * function is called before each analyzer attached to a channel, expects
620 * analyzers responsible for data sending. 'channel_analyze' callback is
621 * resumable, so this function returns 0 if an error occurs or if it needs to
622 * wait, any other value otherwise.
623 */
624int
625flt_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
626{
627 int ret = 1;
628
Christopher Fauletd7c91962015-04-30 11:48:27 +0200629 RESUME_FILTER_LOOP(s, chn) {
630 if (filter->ops->channel_analyze) {
631 ret = filter->ops->channel_analyze(s, filter, chn, an_bit);
632 if (ret <= 0)
633 BREAK_EXECUTION(s, chn, check_result);
634 }
635 } RESUME_FILTER_END;
636
637 check_result:
Christopher Faulet309c6412015-12-02 09:57:32 +0100638 return handle_analyzer_result(s, chn, 0, ret);
639}
640
641/*
642 * This function do the same that the previsous one, but for the
643 * AN_FLT_HTTP_HDRS analyzer. The difference is what is done when all filters
644 * have been called. Returns 0 if an error occurs or if it needs to wait, any
645 * other value otherwise.
646 */
647int
648flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit)
649{
650 struct filter *filter;
651 struct http_msg *msg;
652 int ret = 1;
653
654 RESUME_FILTER_LOOP(s, chn) {
655 if (filter->ops->channel_analyze) {
656 ret = filter->ops->channel_analyze(s, filter, chn, an_bit);
657 if (ret <= 0)
658 BREAK_EXECUTION(s, chn, check_result);
659 }
660 } RESUME_FILTER_END;
661
662 /* We increase next offset of all "data" filters after all processing on
663 * headers because any filter can alter them. So the definitive size of
664 * headers (msg->sov) is only known when all filters have been
665 * called. */
666 msg = ((chn->flags & CF_ISRESP) ? &s->txn->rsp : &s->txn->req);
667 list_for_each_entry(filter, &s->strm_flt.filters, list) {
668 FLT_NXT(filter, msg->chn) = msg->sov;
669 }
670
671 check_result:
672 return handle_analyzer_result(s, chn, an_bit, ret);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200673}
674
675/*
676 * Calls 'channel_end_analyze' callback for all filters attached to a
677 * stream. This function is called when we stop to analyze a request or a
678 * response. It is called after all other analyzers. 'channel_end_analyze'
679 * callback is resumable, so this function returns 0 if an error occurs or if it
680 * needs to wait, any other value otherwise.
681 */
682int
683flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit)
684{
685 int ret = 1;
686
687 /* If this function is called, this means there is at least one filter,
688 * so we do not need to check the filter list's emptiness. */
689
690 RESUME_FILTER_LOOP(s, chn) {
691 filter->next[CHN_IDX(chn)] = 0;
692
693 if (filter->ops->channel_end_analyze) {
694 ret = filter->ops->channel_end_analyze(s, filter, chn);
695 if (ret <= 0)
696 BREAK_EXECUTION(s, chn, end);
697 }
698 } RESUME_FILTER_END;
699
700end:
701 ret = handle_analyzer_result(s, chn, an_bit, ret);
Christopher Faulet02c7b222015-12-22 12:01:29 +0100702
703 /* Check if 'channel_end_analyze' callback has been called for the
704 * request and the response. */
705 if (!(s->req.analysers & AN_FLT_END) && !(s->res.analysers & AN_FLT_END)) {
Christopher Faulet02c7b222015-12-22 12:01:29 +0100706 /* When we are waiting for a new request, so we must reset
707 * stream analyzers. The input must not be closed the request
708 * channel, else it is useless to wait. */
709 if (s->txn && (s->txn->flags & TX_WAIT_NEXT_RQ) && !channel_input_closed(&s->req)) {
710 s->req.analysers = strm_li(s) ? strm_li(s)->analysers : 0;
711 s->res.analysers = 0;
712 }
Christopher Fauletd7c91962015-04-30 11:48:27 +0200713
Christopher Faulet92d36382015-11-05 13:35:03 +0100714 /* Remove backend filters from the list */
715 flt_stream_release(s, 1);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200716 }
717 else if (ret) {
718 /* Analyzer ends only for one channel. So wake up the stream to
719 * be sure to process it for the other side as soon as
720 * possible. */
721 task_wakeup(s->task, TASK_WOKEN_MSG);
722 }
723 return ret;
724}
725
726
727/*
728 * Calls 'tcp_data' callback for all "data" filters attached to a stream. This
729 * function is called when incoming data are available. It takes care to update
730 * the next offset of filters and adjusts available data to be sure that a
731 * filter cannot parse more data than its predecessors. A filter can choose to
732 * not consume all available data. Returns -1 if an error occurs, the number of
733 * consumed bytes otherwise.
734 */
735static int
736flt_data(struct stream *s, struct channel *chn)
737{
738 struct filter *filter = NULL;
739 unsigned int buf_i;
740 int ret = chn->buf->i;
741
742 /* Save buffer state */
743 buf_i = chn->buf->i;
744 list_for_each_entry(filter, &s->strm_flt.filters, list) {
745 if (filter->ops->tcp_data && !flt_want_forward_data(filter, chn)) {
746 ret = filter->ops->tcp_data(s, filter, chn);
747 if (ret < 0)
748 break;
749 }
750 else
751 ret = chn->buf->i - FLT_NXT(filter, chn);
752
753 /* Increase next offset of the current filter */
754 FLT_NXT(filter, chn) += ret;
755
756 /* Update <ret> value to be sure to have the last one when we
757 * exit from the loop. */
758 ret = FLT_NXT(filter, chn);
759
760 /* And set this value as the bound for the next filter. It will
761 * not able to parse more data than the current one. */
762 chn->buf->i = FLT_NXT(filter, chn);
763 }
764 // Restore the original buffer state
765 chn->buf->i = buf_i;
766 return ret;
767}
768
769/*
770 * Calls 'tcp_forward_data' callback for all "data" filters attached to a
771 * stream. This function is called when some data can be forwarded. It takes
772 * care to update the forward offset of filters and adjusts "forwardable" data
773 * to be sure that a filter cannot forward more data than its predecessors. A
774 * filter can choose to not forward all parsed data. Returns a negative value if
775 * an error occurs, else the number of forwarded bytes.
776 */
777static int
778flt_forward_data(struct stream *s, struct channel *chn, unsigned int len)
779{
780 struct filter *filter = NULL;
781 int ret = len;
782
783 list_for_each_entry(filter, &s->strm_flt.filters, list) {
784 if (filter->ops->tcp_forward_data) {
785 /* Remove bytes that the current filter considered as
786 * forwarded */
787 ret = filter->ops->tcp_forward_data(s, filter, chn, ret - FLT_FWD(filter, chn));
788 if (ret < 0)
789 goto end;
790 }
791
792 /* Adjust bytes taht the current filter considers as
793 * forwarded */
794 FLT_FWD(filter, chn) += ret;
795
796 /* And set this value as the bound for the next filter. It will
797 * not able to forward more data than the current one. */
798 ret = FLT_FWD(filter, chn);
799 }
800
801 if (!ret)
802 goto end;
803
804 /* Adjust forward counter and next offset of filters by removing data
805 * that HAProxy will consider as forwarded. */
806 list_for_each_entry(filter, &s->strm_flt.filters, list) {
807 FLT_NXT(filter, chn) -= ret;
808 FLT_FWD(filter, chn) -= ret;
809 }
810
811 /* Consume data that all filters consider as forwarded. */
812 b_adv(chn->buf, ret);
813 end:
814 return ret;
815}
816
817/*
818 * Called when TCP data must be filtered on a channel. This function is the
819 * AN_FLT_XFER_DATA analyzer. When called, it is responsible to forward data
820 * when the proxy is not in http mode. Behind the scene, it calls consecutively
821 * 'tcp_data' and 'tcp_forward_data' callbacks for all "data" filters attached
822 * to a stream. Returns 0 if an error occurs or if it needs to wait, any other
823 * value otherwise.
824 */
825int
826flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit)
827{
828 int ret = 1;
829
830 /* If this function is called, this means there is at least one filter,
831 * so we do not need to check the filter list's emptiness. */
832
833 /* Be sure that the output is still opened. Else we stop the data
834 * filtering. */
835 if ((chn->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
836 ((chn->flags & CF_SHUTW) && (chn->to_forward || chn->buf->o)))
837 goto end;
838
839 /* Let all "data" filters parsing incoming data */
840 ret = flt_data(s, chn);
841 if (ret < 0)
842 goto end;
843
844 /* And forward them */
845 ret = flt_forward_data(s, chn, ret);
846 if (ret < 0)
847 goto end;
848
849 /* Stop waiting data if the input in closed and no data is pending or if
850 * the output is closed. */
851 if ((chn->flags & CF_SHUTW) ||
852 ((chn->flags & CF_SHUTR) && !buffer_pending(chn->buf))) {
853 ret = 1;
854 goto end;
855 }
856
857 /* Wait for data */
858 return 0;
859 end:
860 /* Terminate the data filtering. If <ret> is negative, an error was
861 * encountered during the filtering. */
862 return handle_analyzer_result(s, chn, an_bit, ret);
863}
864
865/*
866 * Handles result of filter's analyzers. It returns 0 if an error occurs or if
867 * it needs to wait, any other value otherwise.
868 */
869static int
870handle_analyzer_result(struct stream *s, struct channel *chn,
871 unsigned int an_bit, int ret)
872{
873 int finst;
874
875 if (ret < 0)
876 goto return_bad_req;
877 else if (!ret)
878 goto wait;
879
880 /* End of job, return OK */
881 if (an_bit) {
882 chn->analysers &= ~an_bit;
883 chn->analyse_exp = TICK_ETERNITY;
884 }
885 return 1;
886
887 return_bad_req:
888 /* An error occurs */
889 channel_abort(&s->req);
890 channel_abort(&s->res);
891
892 if (!(chn->flags & CF_ISRESP)) {
893 s->req.analysers &= AN_FLT_END;
894 finst = SF_FINST_R;
895 /* FIXME: incr counters */
896 }
897 else {
898 s->res.analysers &= AN_FLT_END;
899 finst = SF_FINST_H;
900 /* FIXME: incr counters */
901 }
902
903 if (s->txn) {
904 /* Do not do that when we are waiting for the next request */
905 if (s->txn->status)
906 http_reply_and_close(s, s->txn->status, NULL);
907 else {
908 s->txn->status = 400;
909 http_reply_and_close(s, 400, http_error_message(s, HTTP_ERR_400));
910 }
911 }
912
913 if (!(s->flags & SF_ERR_MASK))
914 s->flags |= SF_ERR_PRXCOND;
915 if (!(s->flags & SF_FINST_MASK))
916 s->flags |= finst;
917 return 0;
918
919 wait:
920 if (!(chn->flags & CF_ISRESP))
921 channel_dont_connect(chn);
922 return 0;
923}
924
925
926/* Note: must not be declared <const> as its list will be overwritten.
927 * Please take care of keeping this list alphabetically sorted, doing so helps
928 * all code contributors.
929 * Optional keywords are also declared with a NULL ->parse() function so that
930 * the config parser can report an appropriate error when a known keyword was
931 * not enabled. */
932static struct cfg_kw_list cfg_kws = {ILH, {
933 { CFG_LISTEN, "filter", parse_filter },
934 { 0, NULL, NULL },
935 }
936};
937
938__attribute__((constructor))
939static void
940__filters_init(void)
941{
942 pool2_filter = create_pool("filter", sizeof(struct filter), MEM_F_SHARED);
943 cfg_register_keywords(&cfg_kws);
944}
945
946__attribute__((destructor))
947static void
948__filters_deinit(void)
949{
950 pool_destroy2(pool2_filter);
951}
952
953/*
954 * Local variables:
955 * c-indent-level: 8
956 * c-basic-offset: 8
957 * End:
958 */