* [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP
@ 2018-05-22 3:44 Jason Wang
2018-05-22 3:44 ` [PATCH net V2 1/4] virtio-net: correctly redirect linearized packet Jason Wang
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jason Wang @ 2018-05-22 3:44 UTC (permalink / raw)
To: mst, jasowang; +Cc: virtualization, netdev, linux-kernel
Hi:
Please review the patches that tries to fix sevreal issues of
virtio-net mergeable XDP.
Changes from V1:
- check against 1 before decreasing instead of resetting to 1
- typoe fixes
Jason Wang (4):
virtio-net: correctly redirect linearized packet
virtio-net: correctly transmit XDP buff after linearizing
virtio-net: correctly check num_buf during err path
virtio-net: fix leaking page for gso packet during mergeable XDP
drivers/net/virtio_net.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH net V2 1/4] virtio-net: correctly redirect linearized packet
2018-05-22 3:44 [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP Jason Wang
@ 2018-05-22 3:44 ` Jason Wang
2018-05-22 3:44 ` [PATCH net V2 2/4] virtio-net: correctly transmit XDP buff after linearizing Jason Wang
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Jason Wang @ 2018-05-22 3:44 UTC (permalink / raw)
To: mst, jasowang; +Cc: virtualization, netdev, linux-kernel
After a linearized packet was redirected by XDP, we should not go for
the err path which will try to pop buffers for the next packet and
increase the drop counter. Fixing this by just drop the page refcnt
for the original page.
Fixes: 186b3c998c50 ("virtio-net: support XDP_REDIRECT")
Reported-by: David Ahern <dsahern@gmail.com>
Tested-by: David Ahern <dsahern@gmail.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
drivers/net/virtio_net.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 770422e..c15d240 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -787,7 +787,7 @@ static struct sk_buff *receive_mergeable(struct net_device *dev,
}
*xdp_xmit = true;
if (unlikely(xdp_page != page))
- goto err_xdp;
+ put_page(page);
rcu_read_unlock();
goto xdp_xmit;
default:
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH net V2 2/4] virtio-net: correctly transmit XDP buff after linearizing
2018-05-22 3:44 [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP Jason Wang
2018-05-22 3:44 ` [PATCH net V2 1/4] virtio-net: correctly redirect linearized packet Jason Wang
@ 2018-05-22 3:44 ` Jason Wang
2018-05-22 3:44 ` [PATCH net V2 3/4] virtio-net: correctly check num_buf during err path Jason Wang
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Jason Wang @ 2018-05-22 3:44 UTC (permalink / raw)
To: mst, jasowang; +Cc: virtualization, netdev, linux-kernel, John Fastabend
We should not go for the error path after successfully transmitting a
XDP buffer after linearizing. Since the error path may try to pop and
drop next packet and increase the drop counters. Fixing this by simply
drop the refcnt of original page and go for xmit path.
Fixes: 72979a6c3590 ("virtio_net: xdp, add slowpath case for non contiguous buffers")
Cc: John Fastabend <john.fastabend@gmail.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
drivers/net/virtio_net.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index c15d240..6260d65 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -775,7 +775,7 @@ static struct sk_buff *receive_mergeable(struct net_device *dev,
}
*xdp_xmit = true;
if (unlikely(xdp_page != page))
- goto err_xdp;
+ put_page(page);
rcu_read_unlock();
goto xdp_xmit;
case XDP_REDIRECT:
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH net V2 3/4] virtio-net: correctly check num_buf during err path
2018-05-22 3:44 [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP Jason Wang
2018-05-22 3:44 ` [PATCH net V2 1/4] virtio-net: correctly redirect linearized packet Jason Wang
2018-05-22 3:44 ` [PATCH net V2 2/4] virtio-net: correctly transmit XDP buff after linearizing Jason Wang
@ 2018-05-22 3:44 ` Jason Wang
2018-05-22 3:44 ` [PATCH net V2 4/4] virtio-net: fix leaking page for gso packet during mergeable XDP Jason Wang
2018-05-23 17:37 ` [PATCH net V2 0/4] Fix several issues of virtio-net " David Miller
4 siblings, 0 replies; 6+ messages in thread
From: Jason Wang @ 2018-05-22 3:44 UTC (permalink / raw)
To: mst, jasowang; +Cc: virtualization, netdev, linux-kernel
If we successfully linearize the packet, num_buf will be set to zero
which may confuse error handling path which assumes num_buf is at
least 1 and this can lead the code tries to pop the descriptor of next
buffer. Fixing this by checking num_buf against 1 before decreasing.
Fixes: 4941d472bf95 ("virtio-net: do not reset during XDP set")
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
drivers/net/virtio_net.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 6260d65..326e247 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -875,7 +875,7 @@ static struct sk_buff *receive_mergeable(struct net_device *dev,
rcu_read_unlock();
err_skb:
put_page(page);
- while (--num_buf) {
+ while (num_buf-- > 1) {
buf = virtqueue_get_buf(rq->vq, &len);
if (unlikely(!buf)) {
pr_debug("%s: rx error: %d buffers missing\n",
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH net V2 4/4] virtio-net: fix leaking page for gso packet during mergeable XDP
2018-05-22 3:44 [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP Jason Wang
` (2 preceding siblings ...)
2018-05-22 3:44 ` [PATCH net V2 3/4] virtio-net: correctly check num_buf during err path Jason Wang
@ 2018-05-22 3:44 ` Jason Wang
2018-05-23 17:37 ` [PATCH net V2 0/4] Fix several issues of virtio-net " David Miller
4 siblings, 0 replies; 6+ messages in thread
From: Jason Wang @ 2018-05-22 3:44 UTC (permalink / raw)
To: mst, jasowang; +Cc: virtualization, netdev, linux-kernel, John Fastabend
We need to drop refcnt to xdp_page if we see a gso packet. Otherwise
it will be leaked. Fixing this by moving the check of gso packet above
the linearizing logic. While at it, remove useless comment as well.
Cc: John Fastabend <john.fastabend@gmail.com>
Fixes: 72979a6c3590 ("virtio_net: xdp, add slowpath case for non contiguous buffers")
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
drivers/net/virtio_net.c | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 326e247..032e1ac 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -707,6 +707,13 @@ static struct sk_buff *receive_mergeable(struct net_device *dev,
void *data;
u32 act;
+ /* Transient failure which in theory could occur if
+ * in-flight packets from before XDP was enabled reach
+ * the receive path after XDP is loaded.
+ */
+ if (unlikely(hdr->hdr.gso_type))
+ goto err_xdp;
+
/* This happens when rx buffer size is underestimated
* or headroom is not enough because of the buffer
* was refilled before XDP is set. This should only
@@ -727,14 +734,6 @@ static struct sk_buff *receive_mergeable(struct net_device *dev,
xdp_page = page;
}
- /* Transient failure which in theory could occur if
- * in-flight packets from before XDP was enabled reach
- * the receive path after XDP is loaded. In practice I
- * was not able to create this condition.
- */
- if (unlikely(hdr->hdr.gso_type))
- goto err_xdp;
-
/* Allow consuming headroom but reserve enough space to push
* the descriptor on if we get an XDP_TX return code.
*/
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP
2018-05-22 3:44 [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP Jason Wang
` (3 preceding siblings ...)
2018-05-22 3:44 ` [PATCH net V2 4/4] virtio-net: fix leaking page for gso packet during mergeable XDP Jason Wang
@ 2018-05-23 17:37 ` David Miller
4 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2018-05-23 17:37 UTC (permalink / raw)
To: jasowang; +Cc: mst, virtualization, netdev, linux-kernel
From: Jason Wang <jasowang@redhat.com>
Date: Tue, 22 May 2018 11:44:27 +0800
> Please review the patches that tries to fix sevreal issues of
> virtio-net mergeable XDP.
>
> Changes from V1:
> - check against 1 before decreasing instead of resetting to 1
> - typoe fixes
Series applied and queued up for -stable.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-05-23 17:37 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-22 3:44 [PATCH net V2 0/4] Fix several issues of virtio-net mergeable XDP Jason Wang
2018-05-22 3:44 ` [PATCH net V2 1/4] virtio-net: correctly redirect linearized packet Jason Wang
2018-05-22 3:44 ` [PATCH net V2 2/4] virtio-net: correctly transmit XDP buff after linearizing Jason Wang
2018-05-22 3:44 ` [PATCH net V2 3/4] virtio-net: correctly check num_buf during err path Jason Wang
2018-05-22 3:44 ` [PATCH net V2 4/4] virtio-net: fix leaking page for gso packet during mergeable XDP Jason Wang
2018-05-23 17:37 ` [PATCH net V2 0/4] Fix several issues of virtio-net " David Miller
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).