* [PATCH 1/3] vhost: fix skb leak in handle_rx() [not found] <1512107669-27572-1-git-send-email-wexu@redhat.com> @ 2017-12-01 5:54 ` wexu 2017-12-01 5:54 ` [PATCH 2/3] tun: free skb in early errors wexu ` (4 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: wexu @ 2017-12-01 5:54 UTC (permalink / raw) To: virtualization, netdev, linux-kernel; +Cc: mjrosato, wexu, mst From: Wei Xu <wexu@redhat.com> Matthew found a roughly 40% tcp throughput regression with commit c67df11f(vhost_net: try batch dequing from skb array) as discussed in the following thread: https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html Eventually we figured out that it was a skb leak in handle_rx() when sending packets to the VM. This usually happens when a guest can not drain out vq as fast as vhost fills in, afterwards it sets off the traffic jam and leaks skb(s) which occurs as no headcount to send on the vq from vhost side. This can be avoided by making sure we have got enough headcount before actually consuming a skb from the batched rx array while transmitting, which is simply done by moving checking the zero headcount a bit ahead. Signed-off-by: Wei Xu <wexu@redhat.com> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> --- drivers/vhost/net.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c index 8d626d7..c7bdeb6 100644 --- a/drivers/vhost/net.c +++ b/drivers/vhost/net.c @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net) /* On error, stop handling until the next kick. */ if (unlikely(headcount < 0)) goto out; - if (nvq->rx_array) - msg.msg_control = vhost_net_buf_consume(&nvq->rxq); - /* On overrun, truncate and discard */ - if (unlikely(headcount > UIO_MAXIOV)) { - iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); - err = sock->ops->recvmsg(sock, &msg, - 1, MSG_DONTWAIT | MSG_TRUNC); - pr_debug("Discarded rx packet: len %zd\n", sock_len); - continue; - } /* OK, now we need to know about added descriptors. */ if (!headcount) { if (unlikely(vhost_enable_notify(&net->dev, vq))) { @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net) * they refilled. */ goto out; } + if (nvq->rx_array) + msg.msg_control = vhost_net_buf_consume(&nvq->rxq); + /* On overrun, truncate and discard */ + if (unlikely(headcount > UIO_MAXIOV)) { + iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); + err = sock->ops->recvmsg(sock, &msg, + 1, MSG_DONTWAIT | MSG_TRUNC); + pr_debug("Discarded rx packet: len %zd\n", sock_len); + continue; + } /* We don't need to be notified again. */ iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); fixup = msg.msg_iter; -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/3] tun: free skb in early errors [not found] <1512107669-27572-1-git-send-email-wexu@redhat.com> 2017-12-01 5:54 ` [PATCH 1/3] vhost: fix skb leak in handle_rx() wexu @ 2017-12-01 5:54 ` wexu 2017-12-01 5:54 ` [PATCH 3/3] tap: free skb if flags error wexu ` (3 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: wexu @ 2017-12-01 5:54 UTC (permalink / raw) To: virtualization, netdev, linux-kernel; +Cc: mjrosato, wexu, mst From: Wei Xu <wexu@redhat.com> tun_recvmsg() supports accepting skb by msg_control after commit ac77cfd4258f ("tun: support receiving skb through msg_control"), the skb if presented should be freed within the function, otherwise it would be leaked. Signed-off-by: Wei Xu <wexu@redhat.com> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> --- drivers/net/tun.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 6a7bde9..5563430 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c @@ -2067,14 +2067,17 @@ static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, { struct tun_file *tfile = container_of(sock, struct tun_file, socket); struct tun_struct *tun = tun_get(tfile); + struct sk_buff *skb = m->msg_control; int ret; - if (!tun) - return -EBADFD; + if (!tun) { + ret = -EBADFD; + goto out_free_skb; + } if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) { ret = -EINVAL; - goto out; + goto out_free_skb; } if (flags & MSG_ERRQUEUE) { ret = sock_recv_errqueue(sock->sk, m, total_len, @@ -2087,6 +2090,11 @@ static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, m->msg_flags |= MSG_TRUNC; ret = flags & MSG_TRUNC ? ret : total_len; } + goto out; + +out_free_skb: + if (skb) + kfree_skb(skb); out: tun_put(tun); return ret; -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] tap: free skb if flags error [not found] <1512107669-27572-1-git-send-email-wexu@redhat.com> 2017-12-01 5:54 ` [PATCH 1/3] vhost: fix skb leak in handle_rx() wexu 2017-12-01 5:54 ` [PATCH 2/3] tun: free skb in early errors wexu @ 2017-12-01 5:54 ` wexu [not found] ` <1512107669-27572-3-git-send-email-wexu@redhat.com> ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: wexu @ 2017-12-01 5:54 UTC (permalink / raw) To: virtualization, netdev, linux-kernel; +Cc: mjrosato, wexu, mst From: Wei Xu <wexu@redhat.com> tap_recvmsg() supports accepting skb by msg_control after commit 3b4ba04acca8 ("tap: support receiving skb from msg_control"), the skb if presented should be freed within the function, otherwise it would be leaked. Signed-off-by: Wei Xu <wexu@redhat.com> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> --- drivers/net/tap.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/net/tap.c b/drivers/net/tap.c index e9489b8..1c66b75 100644 --- a/drivers/net/tap.c +++ b/drivers/net/tap.c @@ -1154,9 +1154,13 @@ static int tap_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, int flags) { struct tap_queue *q = container_of(sock, struct tap_queue, sock); + struct sk_buff *skb = m->msg_control; int ret; - if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) + if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) { + if (skb) + kfree_skb(skb); return -EINVAL; + } ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT, m->msg_control); if (ret > total_len) { -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
[parent not found: <1512107669-27572-3-git-send-email-wexu@redhat.com>]
* Re: [PATCH 2/3] tun: free skb in early errors [not found] ` <1512107669-27572-3-git-send-email-wexu@redhat.com> @ 2017-12-01 7:07 ` Jason Wang [not found] ` <a079ad24-cf20-66bc-2f57-9d0df9534f22@redhat.com> 1 sibling, 0 replies; 11+ messages in thread From: Jason Wang @ 2017-12-01 7:07 UTC (permalink / raw) To: wexu, virtualization, netdev, linux-kernel; +Cc: mjrosato, mst On 2017年12月01日 13:54, wexu@redhat.com wrote: > From: Wei Xu <wexu@redhat.com> > > tun_recvmsg() supports accepting skb by msg_control after > commit ac77cfd4258f ("tun: support receiving skb through msg_control"), > the skb if presented should be freed within the function, otherwise it > would be leaked. > > Signed-off-by: Wei Xu <wexu@redhat.com> > Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> > --- > drivers/net/tun.c | 14 +++++++++++--- > 1 file changed, 11 insertions(+), 3 deletions(-) > > diff --git a/drivers/net/tun.c b/drivers/net/tun.c > index 6a7bde9..5563430 100644 > --- a/drivers/net/tun.c > +++ b/drivers/net/tun.c > @@ -2067,14 +2067,17 @@ static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, > { > struct tun_file *tfile = container_of(sock, struct tun_file, socket); > struct tun_struct *tun = tun_get(tfile); > + struct sk_buff *skb = m->msg_control; > int ret; > > - if (!tun) > - return -EBADFD; > + if (!tun) { > + ret = -EBADFD; > + goto out_free_skb; Unfortunately, you can't to there since tun is NULL. > + } > > if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) { > ret = -EINVAL; > - goto out; > + goto out_free_skb; > } > if (flags & MSG_ERRQUEUE) { > ret = sock_recv_errqueue(sock->sk, m, total_len, > @@ -2087,6 +2090,11 @@ static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, > m->msg_flags |= MSG_TRUNC; > ret = flags & MSG_TRUNC ? ret : total_len; > } > + goto out; We usually don't use goto in the case of success, and you need deal with the case skb != NULL but iov_iter_count(to) == 0 in tun_do_read(). Thanks > + > +out_free_skb: > + if (skb) > + kfree_skb(skb); > out: > tun_put(tun); > return ret; _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <a079ad24-cf20-66bc-2f57-9d0df9534f22@redhat.com>]
* Re: [PATCH 2/3] tun: free skb in early errors [not found] ` <a079ad24-cf20-66bc-2f57-9d0df9534f22@redhat.com> @ 2017-12-01 14:36 ` Michael S. Tsirkin 0 siblings, 0 replies; 11+ messages in thread From: Michael S. Tsirkin @ 2017-12-01 14:36 UTC (permalink / raw) To: Jason Wang; +Cc: mjrosato, netdev, wexu, linux-kernel, virtualization On Fri, Dec 01, 2017 at 03:07:44PM +0800, Jason Wang wrote: > > > On 2017年12月01日 13:54, wexu@redhat.com wrote: > > From: Wei Xu <wexu@redhat.com> > > > > tun_recvmsg() supports accepting skb by msg_control after > > commit ac77cfd4258f ("tun: support receiving skb through msg_control"), > > the skb if presented should be freed within the function, otherwise it > > would be leaked. > > > > Signed-off-by: Wei Xu <wexu@redhat.com> > > Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> > > --- > > drivers/net/tun.c | 14 +++++++++++--- > > 1 file changed, 11 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/net/tun.c b/drivers/net/tun.c > > index 6a7bde9..5563430 100644 > > --- a/drivers/net/tun.c > > +++ b/drivers/net/tun.c > > @@ -2067,14 +2067,17 @@ static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, > > { > > struct tun_file *tfile = container_of(sock, struct tun_file, socket); > > struct tun_struct *tun = tun_get(tfile); > > + struct sk_buff *skb = m->msg_control; > > int ret; > > - if (!tun) > > - return -EBADFD; > > + if (!tun) { > > + ret = -EBADFD; > > + goto out_free_skb; > > Unfortunately, you can't to there since tun is NULL. Right, this should just be kfree_skb(skb); return -EBADFD; > > > + } > > if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) { > > ret = -EINVAL; > > - goto out; > > + goto out_free_skb; > > } > > if (flags & MSG_ERRQUEUE) { > > ret = sock_recv_errqueue(sock->sk, m, total_len, > > @@ -2087,6 +2090,11 @@ static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, > > m->msg_flags |= MSG_TRUNC; > > ret = flags & MSG_TRUNC ? ret : total_len; > > } > > + goto out; > > We usually don't use goto in the case of success, and you need deal with the > case skb != NULL but iov_iter_count(to) == 0 in tun_do_read(). > > Thanks I agree, the way to lay this out is: tun_put(tun); return ret; err: tun_put(tun); err_tun: if (skb) kfree_skb(skb); return ret; > > + > > +out_free_skb: > > + if (skb) > > + kfree_skb(skb); > > out: > > tun_put(tun); > > return ret; _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <1512107669-27572-4-git-send-email-wexu@redhat.com>]
* Re: [PATCH 3/3] tap: free skb if flags error [not found] ` <1512107669-27572-4-git-send-email-wexu@redhat.com> @ 2017-12-01 7:10 ` Jason Wang 0 siblings, 0 replies; 11+ messages in thread From: Jason Wang @ 2017-12-01 7:10 UTC (permalink / raw) To: wexu, virtualization, netdev, linux-kernel; +Cc: mjrosato, mst On 2017年12月01日 13:54, wexu@redhat.com wrote: > From: Wei Xu <wexu@redhat.com> > > tap_recvmsg() supports accepting skb by msg_control after > commit 3b4ba04acca8 ("tap: support receiving skb from msg_control"), > the skb if presented should be freed within the function, otherwise > it would be leaked. > > Signed-off-by: Wei Xu <wexu@redhat.com> > Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> > --- > drivers/net/tap.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/tap.c b/drivers/net/tap.c > index e9489b8..1c66b75 100644 > --- a/drivers/net/tap.c > +++ b/drivers/net/tap.c > @@ -1154,9 +1154,13 @@ static int tap_recvmsg(struct socket *sock, struct msghdr *m, > size_t total_len, int flags) > { > struct tap_queue *q = container_of(sock, struct tap_queue, sock); > + struct sk_buff *skb = m->msg_control; > int ret; > - if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) > + if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) { > + if (skb) > + kfree_skb(skb); > return -EINVAL; > + } > ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT, > m->msg_control); Need to deal with iov_iterator_count() == 0. Thanks > if (ret > total_len) { _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <1512107669-27572-2-git-send-email-wexu@redhat.com>]
* Re: [PATCH 1/3] vhost: fix skb leak in handle_rx() [not found] ` <1512107669-27572-2-git-send-email-wexu@redhat.com> @ 2017-12-01 7:11 ` Jason Wang 2017-12-01 14:37 ` Michael S. Tsirkin 0 siblings, 1 reply; 11+ messages in thread From: Jason Wang @ 2017-12-01 7:11 UTC (permalink / raw) To: wexu, virtualization, netdev, linux-kernel; +Cc: mjrosato, mst On 2017年12月01日 13:54, wexu@redhat.com wrote: > From: Wei Xu <wexu@redhat.com> > > Matthew found a roughly 40% tcp throughput regression with commit > c67df11f(vhost_net: try batch dequing from skb array) as discussed > in the following thread: > https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html > > Eventually we figured out that it was a skb leak in handle_rx() > when sending packets to the VM. This usually happens when a guest > can not drain out vq as fast as vhost fills in, afterwards it sets > off the traffic jam and leaks skb(s) which occurs as no headcount > to send on the vq from vhost side. > > This can be avoided by making sure we have got enough headcount > before actually consuming a skb from the batched rx array while > transmitting, which is simply done by moving checking the zero > headcount a bit ahead. > > Signed-off-by: Wei Xu <wexu@redhat.com> > Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> > --- > drivers/vhost/net.c | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > > diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c > index 8d626d7..c7bdeb6 100644 > --- a/drivers/vhost/net.c > +++ b/drivers/vhost/net.c > @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net) > /* On error, stop handling until the next kick. */ > if (unlikely(headcount < 0)) > goto out; > - if (nvq->rx_array) > - msg.msg_control = vhost_net_buf_consume(&nvq->rxq); > - /* On overrun, truncate and discard */ > - if (unlikely(headcount > UIO_MAXIOV)) { > - iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); > - err = sock->ops->recvmsg(sock, &msg, > - 1, MSG_DONTWAIT | MSG_TRUNC); > - pr_debug("Discarded rx packet: len %zd\n", sock_len); > - continue; > - } > /* OK, now we need to know about added descriptors. */ > if (!headcount) { > if (unlikely(vhost_enable_notify(&net->dev, vq))) { > @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net) > * they refilled. */ > goto out; > } > + if (nvq->rx_array) > + msg.msg_control = vhost_net_buf_consume(&nvq->rxq); > + /* On overrun, truncate and discard */ > + if (unlikely(headcount > UIO_MAXIOV)) { > + iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); > + err = sock->ops->recvmsg(sock, &msg, > + 1, MSG_DONTWAIT | MSG_TRUNC); > + pr_debug("Discarded rx packet: len %zd\n", sock_len); > + continue; > + } > /* We don't need to be notified again. */ > iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); > fixup = msg.msg_iter; I suggest to reorder this patch to 3/3. Thanks _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] vhost: fix skb leak in handle_rx() 2017-12-01 7:11 ` [PATCH 1/3] vhost: fix skb leak in handle_rx() Jason Wang @ 2017-12-01 14:37 ` Michael S. Tsirkin 2017-12-04 7:18 ` Jason Wang 0 siblings, 1 reply; 11+ messages in thread From: Michael S. Tsirkin @ 2017-12-01 14:37 UTC (permalink / raw) To: Jason Wang; +Cc: mjrosato, netdev, wexu, linux-kernel, virtualization On Fri, Dec 01, 2017 at 03:11:05PM +0800, Jason Wang wrote: > > > On 2017年12月01日 13:54, wexu@redhat.com wrote: > > From: Wei Xu <wexu@redhat.com> > > > > Matthew found a roughly 40% tcp throughput regression with commit > > c67df11f(vhost_net: try batch dequing from skb array) as discussed > > in the following thread: > > https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html > > > > Eventually we figured out that it was a skb leak in handle_rx() > > when sending packets to the VM. This usually happens when a guest > > can not drain out vq as fast as vhost fills in, afterwards it sets > > off the traffic jam and leaks skb(s) which occurs as no headcount > > to send on the vq from vhost side. > > > > This can be avoided by making sure we have got enough headcount > > before actually consuming a skb from the batched rx array while > > transmitting, which is simply done by moving checking the zero > > headcount a bit ahead. > > > > Signed-off-by: Wei Xu <wexu@redhat.com> > > Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> > > --- > > drivers/vhost/net.c | 20 ++++++++++---------- > > 1 file changed, 10 insertions(+), 10 deletions(-) > > > > diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c > > index 8d626d7..c7bdeb6 100644 > > --- a/drivers/vhost/net.c > > +++ b/drivers/vhost/net.c > > @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net) > > /* On error, stop handling until the next kick. */ > > if (unlikely(headcount < 0)) > > goto out; > > - if (nvq->rx_array) > > - msg.msg_control = vhost_net_buf_consume(&nvq->rxq); > > - /* On overrun, truncate and discard */ > > - if (unlikely(headcount > UIO_MAXIOV)) { > > - iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); > > - err = sock->ops->recvmsg(sock, &msg, > > - 1, MSG_DONTWAIT | MSG_TRUNC); > > - pr_debug("Discarded rx packet: len %zd\n", sock_len); > > - continue; > > - } > > /* OK, now we need to know about added descriptors. */ > > if (!headcount) { > > if (unlikely(vhost_enable_notify(&net->dev, vq))) { > > @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net) > > * they refilled. */ > > goto out; > > } > > + if (nvq->rx_array) > > + msg.msg_control = vhost_net_buf_consume(&nvq->rxq); > > + /* On overrun, truncate and discard */ > > + if (unlikely(headcount > UIO_MAXIOV)) { > > + iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); > > + err = sock->ops->recvmsg(sock, &msg, > > + 1, MSG_DONTWAIT | MSG_TRUNC); > > + pr_debug("Discarded rx packet: len %zd\n", sock_len); > > + continue; > > + } > > /* We don't need to be notified again. */ > > iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); > > fixup = msg.msg_iter; > > I suggest to reorder this patch to 3/3. > > Thanks Why? This doesn't cause any new leaks, does it? -- MST _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] vhost: fix skb leak in handle_rx() 2017-12-01 14:37 ` Michael S. Tsirkin @ 2017-12-04 7:18 ` Jason Wang 0 siblings, 0 replies; 11+ messages in thread From: Jason Wang @ 2017-12-04 7:18 UTC (permalink / raw) To: Michael S. Tsirkin; +Cc: mjrosato, netdev, wexu, linux-kernel, virtualization On 2017年12月01日 22:37, Michael S. Tsirkin wrote: > On Fri, Dec 01, 2017 at 03:11:05PM +0800, Jason Wang wrote: >> >> On 2017年12月01日 13:54, wexu@redhat.com wrote: >>> From: Wei Xu <wexu@redhat.com> >>> >>> Matthew found a roughly 40% tcp throughput regression with commit >>> c67df11f(vhost_net: try batch dequing from skb array) as discussed >>> in the following thread: >>> https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html >>> >>> Eventually we figured out that it was a skb leak in handle_rx() >>> when sending packets to the VM. This usually happens when a guest >>> can not drain out vq as fast as vhost fills in, afterwards it sets >>> off the traffic jam and leaks skb(s) which occurs as no headcount >>> to send on the vq from vhost side. >>> >>> This can be avoided by making sure we have got enough headcount >>> before actually consuming a skb from the batched rx array while >>> transmitting, which is simply done by moving checking the zero >>> headcount a bit ahead. >>> >>> Signed-off-by: Wei Xu <wexu@redhat.com> >>> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> >>> --- >>> drivers/vhost/net.c | 20 ++++++++++---------- >>> 1 file changed, 10 insertions(+), 10 deletions(-) >>> >>> diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c >>> index 8d626d7..c7bdeb6 100644 >>> --- a/drivers/vhost/net.c >>> +++ b/drivers/vhost/net.c >>> @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net) >>> /* On error, stop handling until the next kick. */ >>> if (unlikely(headcount < 0)) >>> goto out; >>> - if (nvq->rx_array) >>> - msg.msg_control = vhost_net_buf_consume(&nvq->rxq); >>> - /* On overrun, truncate and discard */ >>> - if (unlikely(headcount > UIO_MAXIOV)) { >>> - iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); >>> - err = sock->ops->recvmsg(sock, &msg, >>> - 1, MSG_DONTWAIT | MSG_TRUNC); >>> - pr_debug("Discarded rx packet: len %zd\n", sock_len); >>> - continue; >>> - } >>> /* OK, now we need to know about added descriptors. */ >>> if (!headcount) { >>> if (unlikely(vhost_enable_notify(&net->dev, vq))) { >>> @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net) >>> * they refilled. */ >>> goto out; >>> } >>> + if (nvq->rx_array) >>> + msg.msg_control = vhost_net_buf_consume(&nvq->rxq); >>> + /* On overrun, truncate and discard */ >>> + if (unlikely(headcount > UIO_MAXIOV)) { >>> + iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); >>> + err = sock->ops->recvmsg(sock, &msg, >>> + 1, MSG_DONTWAIT | MSG_TRUNC); >>> + pr_debug("Discarded rx packet: len %zd\n", sock_len); >>> + continue; >>> + } >>> /* We don't need to be notified again. */ >>> iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); >>> fixup = msg.msg_iter; >> I suggest to reorder this patch to 3/3. >> >> Thanks > Why? This doesn't cause any new leaks, does it? > It doesn't, just think it can ease the downstream back porting in case patch 2-3 were missed if somebody did a bisect and just backport patch 1. Thanks _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization ^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <1512123038-15773-1-git-send-email-wexu@redhat.com>]
* [PATCH 1/3] vhost: fix skb leak in handle_rx() [not found] <1512123038-15773-1-git-send-email-wexu@redhat.com> @ 2017-12-01 10:10 ` wexu [not found] ` <1512123038-15773-2-git-send-email-wexu@redhat.com> 1 sibling, 0 replies; 11+ messages in thread From: wexu @ 2017-12-01 10:10 UTC (permalink / raw) To: virtualization, netdev, linux-kernel; +Cc: mjrosato, wexu, mst From: Wei Xu <wexu@redhat.com> Matthew found a roughly 40% tcp throughput regression with commit c67df11f(vhost_net: try batch dequing from skb array) as discussed in the following thread: https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html Eventually we figured out that it was a skb leak in handle_rx() when sending packets to the VM. This usually happens when a guest can not drain out vq as fast as vhost fills in, afterwards it sets off the traffic jam and leaks skb(s) which occurs as no headcount to send on the vq from vhost side. This can be avoided by making sure we have got enough headcount before actually consuming a skb from the batched rx array while transmitting, which is simply done by moving checking the zero headcount a bit ahead. Signed-off-by: Wei Xu <wexu@redhat.com> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> --- drivers/vhost/net.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c index 8d626d7..c7bdeb6 100644 --- a/drivers/vhost/net.c +++ b/drivers/vhost/net.c @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net) /* On error, stop handling until the next kick. */ if (unlikely(headcount < 0)) goto out; - if (nvq->rx_array) - msg.msg_control = vhost_net_buf_consume(&nvq->rxq); - /* On overrun, truncate and discard */ - if (unlikely(headcount > UIO_MAXIOV)) { - iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); - err = sock->ops->recvmsg(sock, &msg, - 1, MSG_DONTWAIT | MSG_TRUNC); - pr_debug("Discarded rx packet: len %zd\n", sock_len); - continue; - } /* OK, now we need to know about added descriptors. */ if (!headcount) { if (unlikely(vhost_enable_notify(&net->dev, vq))) { @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net) * they refilled. */ goto out; } + if (nvq->rx_array) + msg.msg_control = vhost_net_buf_consume(&nvq->rxq); + /* On overrun, truncate and discard */ + if (unlikely(headcount > UIO_MAXIOV)) { + iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); + err = sock->ops->recvmsg(sock, &msg, + 1, MSG_DONTWAIT | MSG_TRUNC); + pr_debug("Discarded rx packet: len %zd\n", sock_len); + continue; + } /* We don't need to be notified again. */ iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); fixup = msg.msg_iter; -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
[parent not found: <1512123038-15773-2-git-send-email-wexu@redhat.com>]
* Re: [PATCH 1/3] vhost: fix skb leak in handle_rx() [not found] ` <1512123038-15773-2-git-send-email-wexu@redhat.com> @ 2017-12-01 14:48 ` Michael S. Tsirkin 0 siblings, 0 replies; 11+ messages in thread From: Michael S. Tsirkin @ 2017-12-01 14:48 UTC (permalink / raw) To: wexu; +Cc: mjrosato, netdev, linux-kernel, virtualization On Fri, Dec 01, 2017 at 05:10:36AM -0500, wexu@redhat.com wrote: > From: Wei Xu <wexu@redhat.com> > > Matthew found a roughly 40% tcp throughput regression with commit > c67df11f(vhost_net: try batch dequing from skb array) as discussed > in the following thread: > https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html > > Eventually we figured out that it was a skb leak in handle_rx() > when sending packets to the VM. This usually happens when a guest > can not drain out vq as fast as vhost fills in, afterwards it sets > off the traffic jam and leaks skb(s) which occurs as no headcount > to send on the vq from vhost side. > > This can be avoided by making sure we have got enough headcount > before actually consuming a skb from the batched rx array while > transmitting, which is simply done by moving checking the zero > headcount a bit ahead. > > Signed-off-by: Wei Xu <wexu@redhat.com> > Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> > --- > drivers/vhost/net.c | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > > diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c > index 8d626d7..c7bdeb6 100644 > --- a/drivers/vhost/net.c > +++ b/drivers/vhost/net.c > @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net) > /* On error, stop handling until the next kick. */ > if (unlikely(headcount < 0)) > goto out; > - if (nvq->rx_array) > - msg.msg_control = vhost_net_buf_consume(&nvq->rxq); > - /* On overrun, truncate and discard */ > - if (unlikely(headcount > UIO_MAXIOV)) { > - iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); > - err = sock->ops->recvmsg(sock, &msg, > - 1, MSG_DONTWAIT | MSG_TRUNC); > - pr_debug("Discarded rx packet: len %zd\n", sock_len); > - continue; > - } > /* OK, now we need to know about added descriptors. */ > if (!headcount) { > if (unlikely(vhost_enable_notify(&net->dev, vq))) { > @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net) > * they refilled. */ > goto out; > } > + if (nvq->rx_array) > + msg.msg_control = vhost_net_buf_consume(&nvq->rxq); > + /* On overrun, truncate and discard */ > + if (unlikely(headcount > UIO_MAXIOV)) { > + iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); > + err = sock->ops->recvmsg(sock, &msg, > + 1, MSG_DONTWAIT | MSG_TRUNC); > + pr_debug("Discarded rx packet: len %zd\n", sock_len); > + continue; > + } > /* We don't need to be notified again. */ > iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); > fixup = msg.msg_iter; > -- > 1.8.3.1 ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2017-12-04 7:18 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1512107669-27572-1-git-send-email-wexu@redhat.com>
2017-12-01 5:54 ` [PATCH 1/3] vhost: fix skb leak in handle_rx() wexu
2017-12-01 5:54 ` [PATCH 2/3] tun: free skb in early errors wexu
2017-12-01 5:54 ` [PATCH 3/3] tap: free skb if flags error wexu
[not found] ` <1512107669-27572-3-git-send-email-wexu@redhat.com>
2017-12-01 7:07 ` [PATCH 2/3] tun: free skb in early errors Jason Wang
[not found] ` <a079ad24-cf20-66bc-2f57-9d0df9534f22@redhat.com>
2017-12-01 14:36 ` Michael S. Tsirkin
[not found] ` <1512107669-27572-4-git-send-email-wexu@redhat.com>
2017-12-01 7:10 ` [PATCH 3/3] tap: free skb if flags error Jason Wang
[not found] ` <1512107669-27572-2-git-send-email-wexu@redhat.com>
2017-12-01 7:11 ` [PATCH 1/3] vhost: fix skb leak in handle_rx() Jason Wang
2017-12-01 14:37 ` Michael S. Tsirkin
2017-12-04 7:18 ` Jason Wang
[not found] <1512123038-15773-1-git-send-email-wexu@redhat.com>
2017-12-01 10:10 ` wexu
[not found] ` <1512123038-15773-2-git-send-email-wexu@redhat.com>
2017-12-01 14:48 ` Michael S. Tsirkin
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).