blob: 96a19a1ce533c887833993900b9d881c5a53240d [file] [log] [blame]
Christopher Faulete6c3b692015-09-02 17:15:16 +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
Christopher Fauletfcd99f82016-10-31 11:27:21 +010013#include <ctype.h>
14
Willy Tarreau0108d902018-11-25 19:14:37 +010015#include <common/hathreads.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010016#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010017#include <common/initcall.h>
Christopher Faulete6c3b692015-09-02 17:15:16 +020018#include <common/standard.h>
19#include <common/time.h>
20#include <common/tools.h>
21
22#include <types/channel.h>
23#include <types/filters.h>
24#include <types/global.h>
25#include <types/proxy.h>
26#include <types/stream.h>
27
28#include <proto/filters.h>
Christopher Faulet1339d742016-05-11 16:48:33 +020029#include <proto/hdr_idx.h>
Christopher Faulete0aa6f72018-11-30 22:23:32 +010030#include <proto/http_htx.h>
Christopher Faulete6c3b692015-09-02 17:15:16 +020031#include <proto/log.h>
Christopher Faulete0aa6f72018-11-30 22:23:32 +010032#include <proto/proto_http.h>
Christopher Faulete6c3b692015-09-02 17:15:16 +020033#include <proto/stream.h>
34
Christopher Fauletf4a4ef72018-12-07 17:39:53 +010035const char *trace_flt_id = "trace filter";
36
Christopher Faulete6c3b692015-09-02 17:15:16 +020037struct flt_ops trace_ops;
38
39struct trace_config {
40 struct proxy *proxy;
41 char *name;
42 int rand_parsing;
43 int rand_forwarding;
Christopher Fauletfcd99f82016-10-31 11:27:21 +010044 int hexdump;
Christopher Faulete6c3b692015-09-02 17:15:16 +020045};
46
47#define TRACE(conf, fmt, ...) \
48 fprintf(stderr, "%d.%06d [%-20s] " fmt "\n", \
49 (int)now.tv_sec, (int)now.tv_usec, (conf)->name, \
50 ##__VA_ARGS__)
51
Christopher Fauletfcd99f82016-10-31 11:27:21 +010052#define STRM_TRACE(conf, strm, fmt, ...) \
53 fprintf(stderr, "%d.%06d [%-20s] [strm %p(%x) 0x%08x 0x%08x] " fmt "\n", \
54 (int)now.tv_sec, (int)now.tv_usec, (conf)->name, \
55 strm, (strm ? ((struct stream *)strm)->uniq_id : ~0U), \
56 (strm ? strm->req.analysers : 0), (strm ? strm->res.analysers : 0), \
Christopher Faulete6c3b692015-09-02 17:15:16 +020057 ##__VA_ARGS__)
58
59
60static const char *
61channel_label(const struct channel *chn)
62{
63 return (chn->flags & CF_ISRESP) ? "RESPONSE" : "REQUEST";
64}
65
66static const char *
67proxy_mode(const struct stream *s)
68{
69 struct proxy *px = (s->flags & SF_BE_ASSIGNED ? s->be : strm_fe(s));
70
Christopher Faulete0aa6f72018-11-30 22:23:32 +010071 return ((px->mode == PR_MODE_HTTP)
72 ? (IS_HTX_STRM(s) ? "HTX" : "HTTP")
73 : "TCP");
Christopher Faulete6c3b692015-09-02 17:15:16 +020074}
75
76static const char *
77stream_pos(const struct stream *s)
78{
79 return (s->flags & SF_BE_ASSIGNED) ? "backend" : "frontend";
80}
81
Christopher Faulet31ed32d2016-06-21 11:42:37 +020082static const char *
83filter_type(const struct filter *f)
84{
85 return (f->flags & FLT_FL_IS_BACKEND_FILTER) ? "backend" : "frontend";
86}
87
Christopher Fauletfcd99f82016-10-31 11:27:21 +010088static void
Christopher Faulete0aa6f72018-11-30 22:23:32 +010089trace_hexdump(struct ist ist)
Christopher Fauletfcd99f82016-10-31 11:27:21 +010090{
Christopher Faulete0aa6f72018-11-30 22:23:32 +010091 int i, j, padding;
Christopher Fauletfcd99f82016-10-31 11:27:21 +010092
Christopher Faulete0aa6f72018-11-30 22:23:32 +010093 padding = ((ist.len % 16) ? (16 - ist.len % 16) : 0);
94 for (i = 0; i < ist.len + padding; i++) {
Christopher Fauletfcd99f82016-10-31 11:27:21 +010095 if (!(i % 16))
96 fprintf(stderr, "\t0x%06x: ", i);
97 else if (!(i % 8))
98 fprintf(stderr, " ");
99
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100100 if (i < ist.len)
101 fprintf(stderr, "%02x ", (unsigned char)*(ist.ptr+i));
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100102 else
103 fprintf(stderr, " ");
104
105 /* print ASCII dump */
106 if (i % 16 == 15) {
107 fprintf(stderr, " |");
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100108 for(j = i - 15; j <= i && j < ist.len; j++)
109 fprintf(stderr, "%c", (isprint(*(ist.ptr+j)) ? *(ist.ptr+j) : '.'));
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100110 fprintf(stderr, "|\n");
111 }
112 }
113}
114
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100115static void
116trace_raw_hexdump(struct buffer *buf, int len, int out)
117{
118 unsigned char p[len];
119 int block1, block2;
120
121 block1 = len;
122 if (block1 > b_contig_data(buf, out))
123 block1 = b_contig_data(buf, out);
124 block2 = len - block1;
125
126 memcpy(p, b_head(buf), block1);
127 memcpy(p+block1, b_orig(buf), block2);
128 trace_hexdump(ist2(p, len));
129}
130
131static void
132trace_htx_hexdump(struct htx *htx, unsigned int offset, unsigned int len)
133{
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100134 struct htx_blk *blk;
135
Christopher Fauletee847d42019-05-23 11:55:33 +0200136 for (blk = htx_get_first_blk(htx); blk && len; blk = htx_get_next_blk(htx, blk)) {
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100137 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauletee847d42019-05-23 11:55:33 +0200138 uint32_t sz = htx_get_blksz(blk);
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100139 struct ist v;
140
Christopher Fauletee847d42019-05-23 11:55:33 +0200141 if (offset >= sz) {
142 offset -= sz;
143 continue;
144 }
145
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100146 v = htx_get_blk_value(htx, blk);
147 v.ptr += offset;
148 v.len -= offset;
149 offset = 0;
150
151 if (v.len > len)
152 v.len = len;
153 len -= v.len;
154 if (type == HTX_BLK_DATA || type == HTX_BLK_TLR)
155 trace_hexdump(v);
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100156 }
157}
158
Christopher Faulete6c3b692015-09-02 17:15:16 +0200159/***************************************************************************
160 * Hooks that manage the filter lifecycle (init/check/deinit)
161 **************************************************************************/
162/* Initialize the filter. Returns -1 on error, else 0. */
163static int
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100164trace_init(struct proxy *px, struct flt_conf *fconf)
Christopher Faulete6c3b692015-09-02 17:15:16 +0200165{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100166 struct trace_config *conf = fconf->conf;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200167
168 if (conf->name)
169 memprintf(&conf->name, "%s/%s", conf->name, px->id);
170 else
171 memprintf(&conf->name, "TRACE/%s", px->id);
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100172
Christopher Faulet6e540952018-12-03 22:43:41 +0100173 fconf->flags |= FLT_CFG_FL_HTX;
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100174 fconf->conf = conf;
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100175
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100176 TRACE(conf, "filter initialized [read random=%s - fwd random=%s - hexdump=%s]",
Christopher Faulete6c3b692015-09-02 17:15:16 +0200177 (conf->rand_parsing ? "true" : "false"),
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100178 (conf->rand_forwarding ? "true" : "false"),
179 (conf->hexdump ? "true" : "false"));
Christopher Faulete6c3b692015-09-02 17:15:16 +0200180 return 0;
181}
182
183/* Free ressources allocated by the trace filter. */
184static void
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100185trace_deinit(struct proxy *px, struct flt_conf *fconf)
Christopher Faulete6c3b692015-09-02 17:15:16 +0200186{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100187 struct trace_config *conf = fconf->conf;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200188
189 if (conf) {
190 TRACE(conf, "filter deinitialized");
191 free(conf->name);
192 free(conf);
193 }
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100194 fconf->conf = NULL;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200195}
196
197/* Check configuration of a trace filter for a specified proxy.
198 * Return 1 on error, else 0. */
199static int
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100200trace_check(struct proxy *px, struct flt_conf *fconf)
Christopher Faulete6c3b692015-09-02 17:15:16 +0200201{
202 return 0;
203}
204
Christopher Fauletf2273722017-07-27 16:58:42 +0200205/* Initialize the filter for each thread. Return -1 on error, else 0. */
206static int
207trace_init_per_thread(struct proxy *px, struct flt_conf *fconf)
208{
209 struct trace_config *conf = fconf->conf;
210
211 TRACE(conf, "filter initialized for thread tid %u", tid);
212 return 0;
213}
214
215/* Free ressources allocate by the trace filter for each thread. */
216static void
217trace_deinit_per_thread(struct proxy *px, struct flt_conf *fconf)
218{
219 struct trace_config *conf = fconf->conf;
220
221 if (conf)
222 TRACE(conf, "filter deinitialized for thread tid %u", tid);
223}
224
Christopher Faulete6c3b692015-09-02 17:15:16 +0200225/**************************************************************************
226 * Hooks to handle start/stop of streams
227 *************************************************************************/
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200228/* Called when a filter instance is created and attach to a stream */
229static int
230trace_attach(struct stream *s, struct filter *filter)
231{
232 struct trace_config *conf = FLT_CONF(filter);
233
234 STRM_TRACE(conf, s, "%-25s: filter-type=%s",
235 __FUNCTION__, filter_type(filter));
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100236
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200237 return 1;
238}
239
240/* Called when a filter instance is detach from a stream, just before its
241 * destruction */
242static void
243trace_detach(struct stream *s, struct filter *filter)
244{
245 struct trace_config *conf = FLT_CONF(filter);
246
247 STRM_TRACE(conf, s, "%-25s: filter-type=%s",
248 __FUNCTION__, filter_type(filter));
249}
250
Christopher Faulete6c3b692015-09-02 17:15:16 +0200251/* Called when a stream is created */
252static int
253trace_stream_start(struct stream *s, struct filter *filter)
254{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100255 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200256
257 STRM_TRACE(conf, s, "%-25s",
258 __FUNCTION__);
259 return 0;
260}
261
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200262
263/* Called when a backend is set for a stream */
264static int
265trace_stream_set_backend(struct stream *s, struct filter *filter,
266 struct proxy *be)
267{
268 struct trace_config *conf = FLT_CONF(filter);
269
270 STRM_TRACE(conf, s, "%-25s: backend=%s",
271 __FUNCTION__, be->id);
272 return 0;
273}
274
Christopher Faulete6c3b692015-09-02 17:15:16 +0200275/* Called when a stream is destroyed */
276static void
277trace_stream_stop(struct stream *s, struct filter *filter)
278{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100279 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200280
281 STRM_TRACE(conf, s, "%-25s",
282 __FUNCTION__);
283}
284
Christopher Fauleta00d8172016-11-10 14:58:05 +0100285/* Called when the stream is woken up because of an expired timer */
286static void
287trace_check_timeouts(struct stream *s, struct filter *filter)
288{
289 struct trace_config *conf = FLT_CONF(filter);
290
291 STRM_TRACE(conf, s, "%-25s",
292 __FUNCTION__);
293}
294
Christopher Faulete6c3b692015-09-02 17:15:16 +0200295/**************************************************************************
296 * Hooks to handle channels activity
297 *************************************************************************/
298/* Called when analyze starts for a given channel */
299static int
300trace_chn_start_analyze(struct stream *s, struct filter *filter,
301 struct channel *chn)
302{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100303 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200304
305 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
306 __FUNCTION__,
307 channel_label(chn), proxy_mode(s), stream_pos(s));
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200308 filter->pre_analyzers |= (AN_REQ_ALL | AN_RES_ALL);
309 filter->post_analyzers |= (AN_REQ_ALL | AN_RES_ALL);
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100310 register_data_filter(s, chn, filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200311 return 1;
312}
313
314/* Called before a processing happens on a given channel */
315static int
316trace_chn_analyze(struct stream *s, struct filter *filter,
317 struct channel *chn, unsigned an_bit)
318{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100319 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200320 char *ana;
321
322 switch (an_bit) {
323 case AN_REQ_INSPECT_FE:
324 ana = "AN_REQ_INSPECT_FE";
325 break;
326 case AN_REQ_WAIT_HTTP:
327 ana = "AN_REQ_WAIT_HTTP";
328 break;
329 case AN_REQ_HTTP_BODY:
330 ana = "AN_REQ_HTTP_BODY";
331 break;
332 case AN_REQ_HTTP_PROCESS_FE:
333 ana = "AN_REQ_HTTP_PROCESS_FE";
334 break;
335 case AN_REQ_SWITCHING_RULES:
336 ana = "AN_REQ_SWITCHING_RULES";
337 break;
338 case AN_REQ_INSPECT_BE:
339 ana = "AN_REQ_INSPECT_BE";
340 break;
341 case AN_REQ_HTTP_PROCESS_BE:
342 ana = "AN_REQ_HTTP_PROCESS_BE";
343 break;
344 case AN_REQ_SRV_RULES:
345 ana = "AN_REQ_SRV_RULES";
346 break;
347 case AN_REQ_HTTP_INNER:
348 ana = "AN_REQ_HTTP_INNER";
349 break;
350 case AN_REQ_HTTP_TARPIT:
351 ana = "AN_REQ_HTTP_TARPIT";
352 break;
353 case AN_REQ_STICKING_RULES:
354 ana = "AN_REQ_STICKING_RULES";
355 break;
356 case AN_REQ_PRST_RDP_COOKIE:
357 ana = "AN_REQ_PRST_RDP_COOKIE";
358 break;
359 case AN_REQ_HTTP_XFER_BODY:
360 ana = "AN_REQ_HTTP_XFER_BODY";
361 break;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200362 case AN_RES_INSPECT:
363 ana = "AN_RES_INSPECT";
364 break;
365 case AN_RES_WAIT_HTTP:
366 ana = "AN_RES_WAIT_HTTP";
367 break;
368 case AN_RES_HTTP_PROCESS_FE: // AN_RES_HTTP_PROCESS_BE
369 ana = "AN_RES_HTTP_PROCESS_FE/BE";
370 break;
371 case AN_RES_STORE_RULES:
372 ana = "AN_RES_STORE_RULES";
373 break;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200374 case AN_RES_HTTP_XFER_BODY:
375 ana = "AN_RES_HTTP_XFER_BODY";
376 break;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200377 default:
378 ana = "unknown";
379 }
380
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200381 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s) - "
382 "analyzer=%s - step=%s",
Christopher Faulete6c3b692015-09-02 17:15:16 +0200383 __FUNCTION__,
384 channel_label(chn), proxy_mode(s), stream_pos(s),
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200385 ana, ((chn->analysers & an_bit) ? "PRE" : "POST"));
Christopher Faulete6c3b692015-09-02 17:15:16 +0200386 return 1;
387}
388
389/* Called when analyze ends for a given channel */
390static int
391trace_chn_end_analyze(struct stream *s, struct filter *filter,
392 struct channel *chn)
393{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100394 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200395
396 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
397 __FUNCTION__,
398 channel_label(chn), proxy_mode(s), stream_pos(s));
399 return 1;
400}
401
402/**************************************************************************
403 * Hooks to filter HTTP messages
404 *************************************************************************/
405static int
Christopher Faulet1339d742016-05-11 16:48:33 +0200406trace_http_headers(struct stream *s, struct filter *filter,
407 struct http_msg *msg)
408{
409 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulet1339d742016-05-11 16:48:33 +0200410
411 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
412 __FUNCTION__,
413 channel_label(msg->chn), proxy_mode(s), stream_pos(s));
414
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100415 if (IS_HTX_STRM(s)) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100416 struct htx *htx = htxbuf(&msg->chn->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +0200417 struct htx_sl *sl = http_get_stline(htx);
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100418 int32_t pos;
419
420 STRM_TRACE(conf, s, "\t%.*s %.*s %.*s",
421 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
422 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
423 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
424
Christopher Fauleta3f15502019-05-13 15:27:23 +0200425 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100426 struct htx_blk *blk = htx_get_blk(htx, pos);
427 enum htx_blk_type type = htx_get_blk_type(blk);
428 struct ist n, v;
429
430 if (type == HTX_BLK_EOH)
431 break;
432 if (type != HTX_BLK_HDR)
433 continue;
434
435 n = htx_get_blk_name(htx, blk);
436 v = htx_get_blk_value(htx, blk);
437 STRM_TRACE(conf, s, "\t%.*s: %.*s",
438 (int)n.len, n.ptr, (int)v.len, v.ptr);
439 }
440 }
441 else {
442 struct hdr_idx *hdr_idx;
443 char *cur_hdr;
444 int cur_idx;
445
446 STRM_TRACE(conf, s, "\t%.*s", MIN(msg->sl.rq.l, 74), ci_head(msg->chn));
447 hdr_idx = &s->txn->hdr_idx;
448 cur_idx = hdr_idx_first_idx(hdr_idx);
449 cur_hdr = ci_head(msg->chn) + hdr_idx_first_pos(hdr_idx);
450 while (cur_idx) {
451 STRM_TRACE(conf, s, "\t%.*s",
452 MIN(hdr_idx->v[cur_idx].len, 74), cur_hdr);
453 cur_hdr += hdr_idx->v[cur_idx].len + hdr_idx->v[cur_idx].cr + 1;
454 cur_idx = hdr_idx->v[cur_idx].next;
455 }
Christopher Faulet1339d742016-05-11 16:48:33 +0200456 }
Christopher Faulet1339d742016-05-11 16:48:33 +0200457 return 1;
458}
459
460static int
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100461trace_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg,
462 unsigned int offset, unsigned int len)
463{
464 struct trace_config *conf = FLT_CONF(filter);
465 int ret = len;
466
467 if (ret && conf->rand_forwarding)
468 ret = random() % (ret+1);
469
470 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s) - "
471 "offset=%u - len=%u - forward=%d",
472 __FUNCTION__,
473 channel_label(msg->chn), proxy_mode(s), stream_pos(s),
474 offset, len, ret);
475
476 if (conf->hexdump)
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100477 trace_htx_hexdump(htxbuf(&msg->chn->buf), offset, len);
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100478
479 if (ret != len)
480 task_wakeup(s->task, TASK_WOKEN_MSG);
481 return ret;
482}
483
484static int
Christopher Faulete6c3b692015-09-02 17:15:16 +0200485trace_http_data(struct stream *s, struct filter *filter,
486 struct http_msg *msg)
487{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100488 struct trace_config *conf = FLT_CONF(filter);
Willy Tarreauf1589372018-06-19 07:22:43 +0200489 int avail = MIN(msg->chunk_len + msg->next, ci_data(msg->chn)) - FLT_NXT(filter, msg->chn);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200490 int ret = avail;
491
492 if (ret && conf->rand_parsing)
493 ret = random() % (ret+1);
494
495 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s) - "
496 "chunk_len=%llu - next=%u - fwd=%u - avail=%d - consume=%d",
497 __FUNCTION__,
498 channel_label(msg->chn), proxy_mode(s), stream_pos(s),
499 msg->chunk_len, FLT_NXT(filter, msg->chn),
500 FLT_FWD(filter, msg->chn), avail, ret);
501 if (ret != avail)
502 task_wakeup(s->task, TASK_WOKEN_MSG);
503 return ret;
504}
505
506static int
507trace_http_chunk_trailers(struct stream *s, struct filter *filter,
508 struct http_msg *msg)
509{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100510 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200511
512 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
513 __FUNCTION__,
514 channel_label(msg->chn), proxy_mode(s), stream_pos(s));
515 return 1;
516}
517
518static int
519trace_http_end(struct stream *s, struct filter *filter,
520 struct http_msg *msg)
521{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100522 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200523
524 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
525 __FUNCTION__,
526 channel_label(msg->chn), proxy_mode(s), stream_pos(s));
527 return 1;
528}
529
530static void
531trace_http_reset(struct stream *s, struct filter *filter,
532 struct http_msg *msg)
533{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100534 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200535
536 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
537 __FUNCTION__,
538 channel_label(msg->chn), proxy_mode(s), stream_pos(s));
539}
540
541static void
542trace_http_reply(struct stream *s, struct filter *filter, short status,
Willy Tarreau83061a82018-07-13 11:56:34 +0200543 const struct buffer *msg)
Christopher Faulete6c3b692015-09-02 17:15:16 +0200544{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100545 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200546
547 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s)",
548 __FUNCTION__, "-", proxy_mode(s), stream_pos(s));
549}
550
551static int
552trace_http_forward_data(struct stream *s, struct filter *filter,
553 struct http_msg *msg, unsigned int len)
554{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100555 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200556 int ret = len;
557
558 if (ret && conf->rand_forwarding)
559 ret = random() % (ret+1);
560
561 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s) - "
562 "len=%u - nxt=%u - fwd=%u - forward=%d",
563 __FUNCTION__,
564 channel_label(msg->chn), proxy_mode(s), stream_pos(s), len,
565 FLT_NXT(filter, msg->chn), FLT_FWD(filter, msg->chn), ret);
566
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100567 if (conf->hexdump) {
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200568 c_adv(msg->chn, FLT_FWD(filter, msg->chn));
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100569 trace_raw_hexdump(&msg->chn->buf, ret, co_data(msg->chn));
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200570 c_rew(msg->chn, FLT_FWD(filter, msg->chn));
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100571 }
572
Christopher Faulete6c3b692015-09-02 17:15:16 +0200573 if ((ret != len) ||
574 (FLT_NXT(filter, msg->chn) != FLT_FWD(filter, msg->chn) + ret))
575 task_wakeup(s->task, TASK_WOKEN_MSG);
576 return ret;
577}
578
579/**************************************************************************
580 * Hooks to filter TCP data
581 *************************************************************************/
582static int
583trace_tcp_data(struct stream *s, struct filter *filter, struct channel *chn)
584{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100585 struct trace_config *conf = FLT_CONF(filter);
Willy Tarreauf1589372018-06-19 07:22:43 +0200586 int avail = ci_data(chn) - FLT_NXT(filter, chn);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200587 int ret = avail;
588
589 if (ret && conf->rand_parsing)
590 ret = random() % (ret+1);
591
592 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s) - next=%u - avail=%u - consume=%d",
593 __FUNCTION__,
594 channel_label(chn), proxy_mode(s), stream_pos(s),
595 FLT_NXT(filter, chn), avail, ret);
596
597 if (ret != avail)
598 task_wakeup(s->task, TASK_WOKEN_MSG);
599 return ret;
600}
601
602static int
603trace_tcp_forward_data(struct stream *s, struct filter *filter, struct channel *chn,
604 unsigned int len)
605{
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100606 struct trace_config *conf = FLT_CONF(filter);
Christopher Faulete6c3b692015-09-02 17:15:16 +0200607 int ret = len;
608
609 if (ret && conf->rand_forwarding)
610 ret = random() % (ret+1);
611
612 STRM_TRACE(conf, s, "%-25s: channel=%-10s - mode=%-5s (%s) - len=%u - fwd=%u - forward=%d",
613 __FUNCTION__,
614 channel_label(chn), proxy_mode(s), stream_pos(s), len,
615 FLT_FWD(filter, chn), ret);
616
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100617 if (conf->hexdump) {
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200618 c_adv(chn, FLT_FWD(filter, chn));
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100619 trace_raw_hexdump(&chn->buf, ret, co_data(chn));
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200620 c_rew(chn, FLT_FWD(filter, chn));
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100621 }
622
Christopher Faulete6c3b692015-09-02 17:15:16 +0200623 if (ret != len)
624 task_wakeup(s->task, TASK_WOKEN_MSG);
625 return ret;
626}
627
628/********************************************************************
629 * Functions that manage the filter initialization
630 ********************************************************************/
631struct flt_ops trace_ops = {
632 /* Manage trace filter, called for each filter declaration */
Christopher Fauletf2273722017-07-27 16:58:42 +0200633 .init = trace_init,
634 .deinit = trace_deinit,
635 .check = trace_check,
636 .init_per_thread = trace_init_per_thread,
637 .deinit_per_thread = trace_deinit_per_thread,
Christopher Faulete6c3b692015-09-02 17:15:16 +0200638
639 /* Handle start/stop of streams */
Christopher Faulet31ed32d2016-06-21 11:42:37 +0200640 .attach = trace_attach,
641 .detach = trace_detach,
642 .stream_start = trace_stream_start,
643 .stream_set_backend = trace_stream_set_backend,
644 .stream_stop = trace_stream_stop,
Christopher Fauleta00d8172016-11-10 14:58:05 +0100645 .check_timeouts = trace_check_timeouts,
Christopher Faulete6c3b692015-09-02 17:15:16 +0200646
647 /* Handle channels activity */
648 .channel_start_analyze = trace_chn_start_analyze,
Christopher Faulet3a394fa2016-05-11 17:13:39 +0200649 .channel_pre_analyze = trace_chn_analyze,
650 .channel_post_analyze = trace_chn_analyze,
Christopher Faulete6c3b692015-09-02 17:15:16 +0200651 .channel_end_analyze = trace_chn_end_analyze,
652
653 /* Filter HTTP requests and responses */
Christopher Faulet1339d742016-05-11 16:48:33 +0200654 .http_headers = trace_http_headers,
Christopher Faulete0aa6f72018-11-30 22:23:32 +0100655 .http_payload = trace_http_payload,
656
Christopher Faulete6c3b692015-09-02 17:15:16 +0200657 .http_data = trace_http_data,
658 .http_chunk_trailers = trace_http_chunk_trailers,
659 .http_end = trace_http_end,
660
661 .http_reset = trace_http_reset,
662 .http_reply = trace_http_reply,
663 .http_forward_data = trace_http_forward_data,
664
665 /* Filter TCP data */
666 .tcp_data = trace_tcp_data,
667 .tcp_forward_data = trace_tcp_forward_data,
668};
669
670/* Return -1 on error, else 0 */
671static int
672parse_trace_flt(char **args, int *cur_arg, struct proxy *px,
Thierry Fournier3610c392016-04-13 18:27:51 +0200673 struct flt_conf *fconf, char **err, void *private)
Christopher Faulete6c3b692015-09-02 17:15:16 +0200674{
675 struct trace_config *conf;
676 int pos = *cur_arg;
677
678 conf = calloc(1, sizeof(*conf));
679 if (!conf) {
680 memprintf(err, "%s: out of memory", args[*cur_arg]);
681 return -1;
682 }
683 conf->proxy = px;
684
685 if (!strcmp(args[pos], "trace")) {
686 pos++;
687
688 while (*args[pos]) {
689 if (!strcmp(args[pos], "name")) {
690 if (!*args[pos + 1]) {
691 memprintf(err, "'%s' : '%s' option without value",
692 args[*cur_arg], args[pos]);
693 goto error;
694 }
695 conf->name = strdup(args[pos + 1]);
696 if (!conf->name) {
697 memprintf(err, "%s: out of memory", args[*cur_arg]);
698 goto error;
699 }
700 pos++;
701 }
702 else if (!strcmp(args[pos], "random-parsing"))
703 conf->rand_parsing = 1;
704 else if (!strcmp(args[pos], "random-forwarding"))
705 conf->rand_forwarding = 1;
Christopher Fauletfcd99f82016-10-31 11:27:21 +0100706 else if (!strcmp(args[pos], "hexdump"))
707 conf->hexdump = 1;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200708 else
709 break;
710 pos++;
711 }
712 *cur_arg = pos;
Christopher Fauletf4a4ef72018-12-07 17:39:53 +0100713 fconf->id = trace_flt_id;
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100714 fconf->ops = &trace_ops;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200715 }
716
Christopher Faulet443ea1a2016-02-04 13:40:26 +0100717 fconf->conf = conf;
Christopher Faulete6c3b692015-09-02 17:15:16 +0200718 return 0;
719
720 error:
721 if (conf->name)
722 free(conf->name);
723 free(conf);
724 return -1;
725}
726
727/* Declare the filter parser for "trace" keyword */
728static struct flt_kw_list flt_kws = { "TRACE", { }, {
Thierry Fournier3610c392016-04-13 18:27:51 +0200729 { "trace", parse_trace_flt, NULL },
730 { NULL, NULL, NULL },
Christopher Faulete6c3b692015-09-02 17:15:16 +0200731 }
732};
733
Willy Tarreau0108d902018-11-25 19:14:37 +0100734INITCALL1(STG_REGISTER, flt_register_keywords, &flt_kws);