From: Jason Wang <jasowang@redhat.com>
To: Fam Zheng <famz@redhat.com>
Cc: mst@redhat.com, qemu-stable@nongnu.org, aliguori@amazon.com,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-stable] [2.2 PATCH] virtio-net: fix unmap leak
Date: Thu, 27 Nov 2014 17:45:18 +0800 [thread overview]
Message-ID: <5476F2AE.60307@redhat.com> (raw)
In-Reply-To: <20141127090801.GA10195@fam-t430.nay.redhat.com>
On 11/27/2014 05:08 PM, Fam Zheng wrote:
> On Thu, 11/27 13:59, Jason Wang wrote:
>> > virtio_net_handle_ctrl() and other functions that process control vq
>> > request call iov_discard_front() which will shorten the iov. This will
>> > lead unmapping in virtqueue_push() leaks mapping.
>> >
>> > Fixes this by keeping the original iov untouched and using a temp variable
>> > in those functions.
>> >
>> > Cc: Wen Congyang <wency@cn.fujitsu.com>
>> > Cc: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
>> > Cc: qemu-stable@nongnu.org
>> > Signed-off-by: Jason Wang <jasowang@redhat.com>
>> > ---
>> > hw/net/virtio-net.c | 9 +++++++--
>> > 1 file changed, 7 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
>> > index 9b88775..fdb4edd 100644
>> > --- a/hw/net/virtio-net.c
>> > +++ b/hw/net/virtio-net.c
>> > @@ -798,7 +798,7 @@ static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
>> > virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
>> > VirtQueueElement elem;
>> > size_t s;
>> > - struct iovec *iov;
>> > + struct iovec *iov, *iov2;
>> > unsigned int iov_cnt;
>> >
>> > while (virtqueue_pop(vq, &elem)) {
>> > @@ -808,8 +808,12 @@ static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
>> > exit(1);
>> > }
>> >
>> > - iov = elem.out_sg;
>> > iov_cnt = elem.out_num;
>> > + s = sizeof(struct iovec) * elem.out_num;
>> > + iov = g_malloc(s);
>> > + memcpy(iov, elem.out_sg, s);
> This could be
>
> iov = g_memdup(elem.out_sg, sizeof(struct iovect) * elem.out_num);
>
> Fam
>
Right, will post V2.
Thanks
prev parent reply other threads:[~2014-11-27 9:45 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-27 5:59 [Qemu-devel] [2.2 PATCH] virtio-net: fix unmap leak Jason Wang
2014-11-27 7:45 ` [Qemu-devel] [Qemu-stable] " Fam Zheng
2014-11-27 8:35 ` Jason Wang
2014-11-27 9:08 ` Fam Zheng
2014-11-27 9:45 ` Jason Wang [this message]
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=5476F2AE.60307@redhat.com \
--to=jasowang@redhat.com \
--cc=aliguori@amazon.com \
--cc=famz@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
/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).