From: Jason Wang <jasowang@redhat.com>
To: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>,
qemu devel <qemu-devel@nongnu.org>
Cc: zhanghailiang <zhang.zhanghailiang@huawei.com>,
Li Zhijian <lizhijian@cn.fujitsu.com>,
weifuqiang <weifuqiang@huawei.com>,
"eddie . dong" <eddie.dong@intel.com>,
bian naimeng <biannm@cn.fujitsu.com>
Subject: Re: [Qemu-devel] [PATCH V6 04/10] net/net.c: Add vnet_hdr support in SocketReadState
Date: Fri, 9 Jun 2017 14:15:07 +0800 [thread overview]
Message-ID: <5de38b64-e84a-930a-0c39-f084d00fc9c4@redhat.com> (raw)
In-Reply-To: <1496829322-17099-5-git-send-email-zhangchen.fnst@cn.fujitsu.com>
On 2017年06月07日 17:55, Zhang Chen wrote:
> We add a flag to dicide whether net_fill_rstate() to read
s/dicide/decide/ and s/to/needs/
> the vnet_hdr_len or not.
>
> Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
> Suggested-by: Jason Wang <jasowang@redhat.com>
> ---
> include/net/net.h | 6 +++++-
> net/filter-mirror.c | 1 +
> net/net.c | 33 ++++++++++++++++++++++++++++++---
> 3 files changed, 36 insertions(+), 4 deletions(-)
>
> diff --git a/include/net/net.h b/include/net/net.h
> index 9a92c70..b2167ae 100644
> --- a/include/net/net.h
> +++ b/include/net/net.h
> @@ -112,9 +112,13 @@ typedef struct NICState {
> } NICState;
>
> struct SocketReadState {
> - int state; /* 0 = getting length, 1 = getting data */
> + /* 0 = getting length, 1 = getting vnet header length, 2 = getting data */
> + int state;
> + /* This flag decide whether to read the vnet_hdr_len field */
> + bool vnet_hdr;
> uint32_t index;
> uint32_t packet_len;
> + uint32_t vnet_hdr_len;
> uint8_t buf[NET_BUFSIZE];
> SocketReadStateFinalize *finalize;
> };
> diff --git a/net/filter-mirror.c b/net/filter-mirror.c
> index 3413e82..4b03dda 100644
> --- a/net/filter-mirror.c
> +++ b/net/filter-mirror.c
> @@ -267,6 +267,7 @@ static void filter_redirector_setup(NetFilterState *nf, Error **errp)
> }
>
> net_socket_rs_init(&s->rs, redirector_rs_finalize);
> + s->rs.vnet_hdr = s->vnet_hdr;
This looks like a follow up patch on top for this. And I would like to
reoder the series and make this patch as 02/10.
>
> if (s->indev) {
> chr = qemu_chr_find(s->indev);
> diff --git a/net/net.c b/net/net.c
> index 4e7a305..b9b90c9 100644
> --- a/net/net.c
> +++ b/net/net.c
> @@ -1606,8 +1606,10 @@ void net_socket_rs_init(SocketReadState *rs,
> SocketReadStateFinalize *finalize)
> {
> rs->state = 0;
> + rs->vnet_hdr = false;
Let's introduce a parameter for this function and let's caller set it
instead of manually toggling it like above.
> rs->index = 0;
> rs->packet_len = 0;
> + rs->vnet_hdr_len = 0;
> memset(rs->buf, 0, sizeof(rs->buf));
> rs->finalize = finalize;
> }
> @@ -1622,8 +1624,12 @@ int net_fill_rstate(SocketReadState *rs, const uint8_t *buf, int size)
> unsigned int l;
>
> while (size > 0) {
> - /* reassemble a packet from the network */
> - switch (rs->state) { /* 0 = getting length, 1 = getting data */
> + /* Reassemble a packet from the network.
> + * 0 = getting length.
> + * 1 = getting vnet header length.
> + * 2 = getting data.
> + */
> + switch (rs->state) {
> case 0:
> l = 4 - rs->index;
> if (l > size) {
> @@ -1637,10 +1643,31 @@ int net_fill_rstate(SocketReadState *rs, const uint8_t *buf, int size)
> /* got length */
> rs->packet_len = ntohl(*(uint32_t *)rs->buf);
> rs->index = 0;
> - rs->state = 1;
> + if (rs->vnet_hdr) {
> + rs->state = 1;
> + } else {
> + rs->state = 2;
> + rs->vnet_hdr_len = 0;
> + }
> }
> break;
> case 1:
> + l = 4 - rs->index;
> + if (l > size) {
> + l = size;
> + }
> + memcpy(rs->buf + rs->index, buf, l);
> + buf += l;
> + size -= l;
> + rs->index += l;
> + if (rs->index == 4) {
> + /* got vnet header length */
> + rs->vnet_hdr_len = ntohl(*(uint32_t *)rs->buf);
> + rs->index = 0;
> + rs->state = 2;
> + }
> + break;
> + case 2:
> l = rs->packet_len - rs->index;
> if (l > size) {
> l = size;
next prev parent reply other threads:[~2017-06-09 6:15 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-07 9:55 [Qemu-devel] [PATCH V6 00/10] Add COLO-proxy virtio-net support Zhang Chen
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 01/10] net: Add vnet_hdr_len arguments in NetClientState Zhang Chen
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 02/10] net/filter-mirror.c: Make filter mirror support vnet support Zhang Chen
2017-06-09 6:08 ` Jason Wang
2017-06-12 9:27 ` Zhang Chen
2017-06-13 9:14 ` Jason Wang
2017-06-14 8:04 ` Zhang Chen
2017-06-15 4:31 ` Jason Wang
2017-06-15 8:10 ` Zhang Chen
2017-06-16 2:17 ` Jason Wang
2017-06-16 8:36 ` Zhang Chen
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 03/10] net/filter-mirror.c: Add new option to enable vnet support for filter-redirector Zhang Chen
2017-06-09 6:09 ` Jason Wang
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 04/10] net/net.c: Add vnet_hdr support in SocketReadState Zhang Chen
2017-06-09 6:15 ` Jason Wang [this message]
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 05/10] net/colo.c: Make vnet_hdr_len as packet property Zhang Chen
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 06/10] net/colo-compare.c: Make colo-compare support vnet_hdr_len Zhang Chen
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 07/10] net/colo.c: Add vnet packet parse feature in colo-proxy Zhang Chen
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 08/10] net/colo-compare.c: Add vnet packet's tcp/udp/icmp compare Zhang Chen
2017-06-09 6:17 ` Jason Wang
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 09/10] net/filter-rewriter.c: Make filter-rewriter support vnet_hdr_len Zhang Chen
2017-06-09 6:20 ` Jason Wang
2017-06-07 9:55 ` [Qemu-devel] [PATCH V6 10/10] docs/colo-proxy.txt: Update colo-proxy usage of net driver with vnet_header Zhang Chen
2017-06-09 6:22 ` Jason Wang
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=5de38b64-e84a-930a-0c39-f084d00fc9c4@redhat.com \
--to=jasowang@redhat.com \
--cc=biannm@cn.fujitsu.com \
--cc=eddie.dong@intel.com \
--cc=lizhijian@cn.fujitsu.com \
--cc=qemu-devel@nongnu.org \
--cc=weifuqiang@huawei.com \
--cc=zhang.zhanghailiang@huawei.com \
--cc=zhangchen.fnst@cn.fujitsu.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).