From: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
To: qemu devel <qemu-devel@nongnu.org>, Jason Wang <jasowang@redhat.com>
Cc: Li Zhijian <lizhijian@cn.fujitsu.com>,
Gui jianfeng <guijianfeng@cn.fujitsu.com>,
"eddie.dong" <eddie.dong@intel.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Zhang Chen <zhangchen.fnst@cn.fujitsu.com>,
Yang Hongyang <hongyang.yang@easystack.cn>,
zhanghailiang <zhang.zhanghailiang@huawei.com>
Subject: [Qemu-devel] [PATCH V2] net/traffic-mirror:Add traffic-mirror
Date: Wed, 27 Jan 2016 10:40:28 +0800 [thread overview]
Message-ID: <1453862428-25570-1-git-send-email-zhangchen.fnst@cn.fujitsu.com> (raw)
From: ZhangChen <zhangchen.fnst@cn.fujitsu.com>
Traffic-mirror is a netfilter plugin.
It gives qemu the ability to copy and mirror guest's
net packet. we output packet to chardev.
usage:
-netdev tap,id=hn0
-chardev socket,id=mirror0,host=ip_primary,port=X,server,nowait
-traffic-mirror,id=m0,netdev=hn0,queue=tx/rx/all,outdev=mirror0
Signed-off-by: ZhangChen <zhangchen.fnst@cn.fujitsu.com>
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Reviewed-by: Yang Hongyang <hongyang.yang@easystack.cn>
---
net/Makefile.objs | 1 +
net/traffic-mirror.c | 173 +++++++++++++++++++++++++++++++++++++++++++++++++++
qemu-options.hx | 5 ++
vl.c | 3 +-
4 files changed, 181 insertions(+), 1 deletion(-)
create mode 100644 net/traffic-mirror.c
diff --git a/net/Makefile.objs b/net/Makefile.objs
index 5fa2f97..de06ebe 100644
--- a/net/Makefile.objs
+++ b/net/Makefile.objs
@@ -15,3 +15,4 @@ common-obj-$(CONFIG_VDE) += vde.o
common-obj-$(CONFIG_NETMAP) += netmap.o
common-obj-y += filter.o
common-obj-y += filter-buffer.o
+common-obj-y += traffic-mirror.o
diff --git a/net/traffic-mirror.c b/net/traffic-mirror.c
new file mode 100644
index 0000000..bed915c
--- /dev/null
+++ b/net/traffic-mirror.c
@@ -0,0 +1,173 @@
+/*
+ * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
+ * Copyright (c) 2016 FUJITSU LIMITED
+ * Copyright (c) 2016 Intel Corporation
+ *
+ * Author: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or
+ * later. See the COPYING file in the top-level directory.
+ */
+
+#include "net/filter.h"
+#include "net/net.h"
+#include "qemu-common.h"
+#include "qapi/qmp/qerror.h"
+#include "qapi-visit.h"
+#include "qom/object.h"
+#include "qemu/main-loop.h"
+#include "qemu/error-report.h"
+#include "trace.h"
+#include "sysemu/char.h"
+#include "qemu/iov.h"
+
+#define FILTER_TRAFFIC_MIRROR(obj) \
+ OBJECT_CHECK(MirrorState, (obj), TYPE_FILTER_TRAFFIC_MIRROR)
+
+#define TYPE_FILTER_TRAFFIC_MIRROR "traffic-mirror"
+
+typedef struct MirrorState {
+ NetFilterState parent_obj;
+ char *outdev;
+ CharDriverState *chr_out;
+
+} MirrorState;
+
+static ssize_t traffic_mirror_send(NetFilterState *nf,
+ const struct iovec *iov,
+ int iovcnt)
+{
+ MirrorState *s = FILTER_TRAFFIC_MIRROR(nf);
+ ssize_t ret = 0;
+ ssize_t size = 0;
+ char *buf;
+
+ size = iov_size(iov, iovcnt);
+ if (!size) {
+ return 0;
+ }
+
+ buf = g_malloc0(size);
+ iov_to_buf(iov, iovcnt, 0, buf, size);
+ ret = qemu_chr_fe_write(s->chr_out, (uint8_t *)&size, sizeof(size));
+ if (ret < 0) {
+ g_free(buf);
+ return ret;
+ }
+
+ ret = qemu_chr_fe_write(s->chr_out, (uint8_t *)buf, size);
+ g_free(buf);
+ return ret;
+}
+
+static ssize_t traffic_mirror_receive_iov(NetFilterState *nf,
+ NetClientState *sender,
+ unsigned flags,
+ const struct iovec *iov,
+ int iovcnt,
+ NetPacketSent *sent_cb)
+{
+ /*
+ * We copy and mirror packet to outdev,
+ * then put back the packet.
+ */
+ ssize_t ret = 0;
+
+ ret = traffic_mirror_send(nf, iov, iovcnt);
+ if (ret < 0) {
+ error_report("traffic_mirror_send failed");
+ }
+
+ return 0;
+}
+
+static void traffic_mirror_cleanup(NetFilterState *nf)
+{
+ MirrorState *s = FILTER_TRAFFIC_MIRROR(nf);
+
+ if (s->chr_out) {
+ qemu_chr_fe_release(s->chr_out);
+ }
+}
+
+static void traffic_mirror_setup(NetFilterState *nf, Error **errp)
+{
+ MirrorState *s = FILTER_TRAFFIC_MIRROR(nf);
+
+ if (!s->outdev) {
+ error_setg(errp, "filter traffic mirror needs 'outdev' "
+ "property set!");
+ return;
+ }
+
+ s->chr_out = qemu_chr_find(s->outdev);
+ if (s->chr_out == NULL) {
+ error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
+ "Device '%s' not found", s->outdev);
+ return;
+ }
+
+ if (qemu_chr_fe_claim(s->chr_out) != 0) {
+ error_setg(errp, QERR_DEVICE_IN_USE, s->outdev);
+ return;
+ }
+}
+
+static void traffic_mirror_class_init(ObjectClass *oc, void *data)
+{
+ NetFilterClass *nfc = NETFILTER_CLASS(oc);
+
+ nfc->setup = traffic_mirror_setup;
+ nfc->cleanup = traffic_mirror_cleanup;
+ nfc->receive_iov = traffic_mirror_receive_iov;
+}
+
+static char *traffic_mirror_get_outdev(Object *obj, Error **errp)
+{
+ MirrorState *s = FILTER_TRAFFIC_MIRROR(obj);
+
+ return g_strdup(s->outdev);
+}
+
+static void
+traffic_mirror_set_outdev(Object *obj, const char *value, Error **errp)
+{
+ MirrorState *s = FILTER_TRAFFIC_MIRROR(obj);
+
+ g_free(s->outdev);
+ s->outdev = g_strdup(value);
+ if (!s->outdev) {
+ error_setg(errp, "filter traffic mirror needs 'outdev' "
+ "property set!");
+ return;
+ }
+}
+
+static void traffic_mirror_init(Object *obj)
+{
+ object_property_add_str(obj, "outdev", traffic_mirror_get_outdev,
+ traffic_mirror_set_outdev, NULL);
+}
+
+static void traffic_mirror_fini(Object *obj)
+{
+ MirrorState *s = FILTER_TRAFFIC_MIRROR(obj);
+
+ g_free(s->outdev);
+}
+
+static const TypeInfo traffic_mirror_info = {
+ .name = TYPE_FILTER_TRAFFIC_MIRROR,
+ .parent = TYPE_NETFILTER,
+ .class_init = traffic_mirror_class_init,
+ .instance_init = traffic_mirror_init,
+ .instance_finalize = traffic_mirror_fini,
+ .instance_size = sizeof(MirrorState),
+};
+
+static void register_types(void)
+{
+ type_register_static(&traffic_mirror_info);
+}
+
+type_init(register_types);
diff --git a/qemu-options.hx b/qemu-options.hx
index 0eea4ee..6fd2d46 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -3670,6 +3670,11 @@ queue @var{all|rx|tx} is an option that can be applied to any netfilter.
@option{tx}: the filter is attached to the transmit queue of the netdev,
where it will receive packets sent by the netdev.
+@item -object traffic-mirror,id=@var{id},netdev=@var{netdevid},outdev=@var{chardevid}[,queue=@var{all|rx|tx}]
+
+traffic-mirror on netdev @var{netdevid},mirror net packet to outdev.
+queue @var{all|rx|tx} is an option that can be applied to traffic-mirror.
+
@item -object filter-dump,id=@var{id},netdev=@var{dev},file=@var{filename}][,maxlen=@var{len}]
Dump the network traffic on netdev @var{dev} to the file specified by
diff --git a/vl.c b/vl.c
index 8dc34ce..413d73a 100644
--- a/vl.c
+++ b/vl.c
@@ -2838,7 +2838,8 @@ static bool object_create_initial(const char *type)
* they depend on netdevs already existing
*/
if (g_str_equal(type, "filter-buffer") ||
- g_str_equal(type, "filter-dump")) {
+ g_str_equal(type, "filter-dump") ||
+ g_str_equal(type, "traffic-mirror")) {
return false;
}
--
1.9.1
next reply other threads:[~2016-01-27 2:40 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-27 2:40 Zhang Chen [this message]
2016-01-27 9:23 ` [Qemu-devel] [PATCH V2] net/traffic-mirror:Add traffic-mirror Hailiang Zhang
2016-01-28 5:44 ` Jason Wang
2016-01-28 7:44 ` Zhang Chen
2016-01-28 8:37 ` Jason Wang
2016-01-28 9:52 ` Zhang Chen
2016-01-28 10:06 ` Jason Wang
2016-01-29 1:38 ` Li Zhijian
2016-02-01 2:57 ` Jason Wang
2016-02-01 7:50 ` Li Zhijian
2016-02-01 9:11 ` Dr. David Alan Gilbert
2016-02-01 9:42 ` Li Zhijian
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1453862428-25570-1-git-send-email-zhangchen.fnst@cn.fujitsu.com \
--to=zhangchen.fnst@cn.fujitsu.com \
--cc=dgilbert@redhat.com \
--cc=eddie.dong@intel.com \
--cc=guijianfeng@cn.fujitsu.com \
--cc=hongyang.yang@easystack.cn \
--cc=jasowang@redhat.com \
--cc=lizhijian@cn.fujitsu.com \
--cc=qemu-devel@nongnu.org \
--cc=zhang.zhanghailiang@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).