MINOR: flt_trace: Add hexdump option to dump forwarded data

This is pretty verbose, but it can be handy to have it in HAProxy.
diff --git a/src/flt_trace.c b/src/flt_trace.c
index ce3bf5c..76081b2 100644
--- a/src/flt_trace.c
+++ b/src/flt_trace.c
@@ -10,6 +10,8 @@
  *
  */
 
+#include <ctype.h>
+
 #include <common/standard.h>
 #include <common/time.h>
 #include <common/tools.h>
@@ -32,6 +34,7 @@
 	char         *name;
 	int           rand_parsing;
 	int           rand_forwarding;
+	int           hexdump;
 };
 
 #define TRACE(conf, fmt, ...)						\
@@ -39,10 +42,11 @@
 		(int)now.tv_sec, (int)now.tv_usec, (conf)->name,	\
 		##__VA_ARGS__)
 
-#define STRM_TRACE(conf, strm, fmt, ...)				\
-	fprintf(stderr, "%d.%06d [%-20s] [strm %p(%x)] " fmt "\n",	\
-		(int)now.tv_sec, (int)now.tv_usec, (conf)->name,	\
-		strm, (strm ? ((struct stream *)strm)->uniq_id : ~0U),	\
+#define STRM_TRACE(conf, strm, fmt, ...)						\
+	fprintf(stderr, "%d.%06d [%-20s] [strm %p(%x) 0x%08x 0x%08x] " fmt "\n",	\
+		(int)now.tv_sec, (int)now.tv_usec, (conf)->name,			\
+		strm, (strm ? ((struct stream *)strm)->uniq_id : ~0U),			\
+		(strm ? strm->req.analysers : 0), (strm ? strm->res.analysers : 0),	\
 		##__VA_ARGS__)
 
 
@@ -72,6 +76,42 @@
 	return (f->flags & FLT_FL_IS_BACKEND_FILTER) ? "backend" : "frontend";
 }
 
+static void
+trace_hexdump(struct buffer *buf, int len)
+{
+	unsigned char p[len];
+	int block1, block2, i, j, padding;
+
+	block1 = len;
+        if (block1 > bi_contig_data(buf))
+                block1 = bi_contig_data(buf);
+        block2 = len - block1;
+
+	memcpy(p, buf->p, block1);
+	memcpy(p+block1, buf->data, block2);
+
+	padding = ((len % 16) ? (16 - len % 16) : 0);
+	for (i = 0; i < len + padding; i++) {
+                if (!(i % 16))
+                        fprintf(stderr, "\t0x%06x: ", i);
+		else if (!(i % 8))
+                        fprintf(stderr, "  ");
+
+                if (i < len)
+                        fprintf(stderr, "%02x ", p[i]);
+                else
+                        fprintf(stderr, "   ");
+
+                /* print ASCII dump */
+                if (i % 16 == 15) {
+                        fprintf(stderr, "  |");
+                        for(j = i - 15; j <= i && j < len; j++)
+				fprintf(stderr, "%c", (isprint(p[j]) ? p[j] : '.'));
+                        fprintf(stderr, "|\n");
+                }
+        }
+}
+
 /***************************************************************************
  * Hooks that manage the filter lifecycle (init/check/deinit)
  **************************************************************************/
@@ -86,9 +126,10 @@
 	else
 		memprintf(&conf->name, "TRACE/%s", px->id);
 	fconf->conf = conf;
-	TRACE(conf, "filter initialized [read random=%s - fwd random=%s]",
+	TRACE(conf, "filter initialized [read random=%s - fwd random=%s - hexdump=%s]",
 	      (conf->rand_parsing ? "true" : "false"),
-	      (conf->rand_forwarding ? "true" : "false"));
+	      (conf->rand_forwarding ? "true" : "false"),
+	      (conf->hexdump ? "true" : "false"));
 	return 0;
 }
 
@@ -188,6 +229,7 @@
 		   channel_label(chn), proxy_mode(s), stream_pos(s));
 	filter->pre_analyzers  |= (AN_REQ_ALL | AN_RES_ALL);
 	filter->post_analyzers |= (AN_REQ_ALL | AN_RES_ALL);
+	register_data_filter(s, chn, filter);
 	return 1;
 }
 
@@ -305,7 +347,6 @@
 		cur_hdr += hdr_idx->v[cur_idx].len + hdr_idx->v[cur_idx].cr + 1;
 		cur_idx = hdr_idx->v[cur_idx].next;
 	}
-	register_data_filter(s, msg->chn, filter);
 	return 1;
 }
 
@@ -392,6 +433,12 @@
 		   channel_label(msg->chn), proxy_mode(s), stream_pos(s), len,
 		   FLT_NXT(filter, msg->chn), FLT_FWD(filter, msg->chn), ret);
 
+	if (conf->hexdump) {
+		b_adv(msg->chn->buf, FLT_FWD(filter, msg->chn));
+		trace_hexdump(msg->chn->buf, ret);
+		b_rew(msg->chn->buf, FLT_FWD(filter, msg->chn));
+	}
+
 	if ((ret != len) ||
 	    (FLT_NXT(filter, msg->chn) != FLT_FWD(filter, msg->chn) + ret))
 		task_wakeup(s->task, TASK_WOKEN_MSG);
@@ -436,6 +483,12 @@
 		   channel_label(chn), proxy_mode(s), stream_pos(s), len,
 		   FLT_FWD(filter, chn), ret);
 
+	if (conf->hexdump) {
+		b_adv(chn->buf, FLT_FWD(filter, chn));
+		trace_hexdump(chn->buf, ret);
+		b_rew(chn->buf, FLT_FWD(filter, chn));
+	}
+
 	if (ret != len)
 		task_wakeup(s->task, TASK_WOKEN_MSG);
 	return ret;
@@ -514,6 +567,8 @@
 				conf->rand_parsing = 1;
 			else if (!strcmp(args[pos], "random-forwarding"))
 				conf->rand_forwarding = 1;
+			else if (!strcmp(args[pos], "hexdump"))
+				conf->hexdump = 1;
 			else
 				break;
 			pos++;