summaryrefslogtreecommitdiffstats
path: root/net/filter-rewriter.c
diff options
context:
space:
mode:
authorZhang Chen2017-07-28 12:03:10 +0200
committerJason Wang2017-09-08 02:17:35 +0200
commit6ce310b5356abb7edc3aa8b8b097d0b8cc76f83f (patch)
tree657bc1f187698dc375c2e1a669ed956f23d21de8 /net/filter-rewriter.c
parenttcg/tci: Add TCG_TARGET_DEFAULT_MO (diff)
downloadqemu-6ce310b5356abb7edc3aa8b8b097d0b8cc76f83f.tar.gz
qemu-6ce310b5356abb7edc3aa8b8b097d0b8cc76f83f.tar.xz
qemu-6ce310b5356abb7edc3aa8b8b097d0b8cc76f83f.zip
net/filter-rewriter.c: Fix rewirter checksum bug when use virtio-net
Because vnet_hdr have a offset to net packet, we must add it when use virtio-net. Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net/filter-rewriter.c')
-rw-r--r--net/filter-rewriter.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/filter-rewriter.c b/net/filter-rewriter.c
index 98120095de..2be388f539 100644
--- a/net/filter-rewriter.c
+++ b/net/filter-rewriter.c
@@ -99,7 +99,8 @@ static int handle_primary_tcp_pkt(NetFilterState *nf,
/* handle packets to the secondary from the primary */
tcp_pkt->th_ack = htonl(ntohl(tcp_pkt->th_ack) + conn->offset);
- net_checksum_calculate((uint8_t *)pkt->data, pkt->size);
+ net_checksum_calculate((uint8_t *)pkt->data + pkt->vnet_hdr_len,
+ pkt->size - pkt->vnet_hdr_len);
}
}
@@ -138,7 +139,8 @@ static int handle_secondary_tcp_pkt(NetFilterState *nf,
/* handle packets to the primary from the secondary*/
tcp_pkt->th_seq = htonl(ntohl(tcp_pkt->th_seq) - conn->offset);
- net_checksum_calculate((uint8_t *)pkt->data, pkt->size);
+ net_checksum_calculate((uint8_t *)pkt->data + pkt->vnet_hdr_len,
+ pkt->size - pkt->vnet_hdr_len);
}
}