From: "Michael S. Tsirkin" <mst@redhat.com>
To: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>
Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2] [PATCH] Allow mismatched virtio config-len
Date: Sun, 29 Jun 2014 16:40:05 +0300 [thread overview]
Message-ID: <20140629134005.GA26654@redhat.com> (raw)
In-Reply-To: <1403895768-20496-1-git-send-email-dgilbert@redhat.com>
On Fri, Jun 27, 2014 at 08:02:48PM +0100, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>
> Commit 'virtio: validate config_len on load' restricted config_len
> loaded from the wire to match the config_len that the device had.
>
> Unfortunately, there are cases where this isn't true, the one
> we found it on was the wce addition in virtio-blk.
>
> Allow mismatched config-lengths:
> *) If the version on the wire is shorter then fine
> *) If the version on the wire is longer, load what we have space
> for and skip the rest.
>
> (This is mst@redhat.com's rework of what I originally posted)
>
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Applied, thanks!
> ---
> hw/virtio/virtio.c | 16 +++++++++++-----
> 1 file changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
> index a3082d5..c1d538c 100644
> --- a/hw/virtio/virtio.c
> +++ b/hw/virtio/virtio.c
> @@ -926,12 +926,18 @@ int virtio_load(VirtIODevice *vdev, QEMUFile *f)
> return -1;
> }
> config_len = qemu_get_be32(f);
> - if (config_len != vdev->config_len) {
> - error_report("Unexpected config length 0x%x. Expected 0x%zx",
> - config_len, vdev->config_len);
> - return -1;
> +
> + /*
> + * There are cases where the incoming config can be bigger or smaller
> + * than what we have; so load what we have space for, and skip
> + * any excess that's in the stream.
> + */
> + qemu_get_buffer(f, vdev->config, MIN(config_len, vdev->config_len));
> +
> + while (config_len > vdev->config_len) {
> + qemu_get_byte(f);
> + config_len--;
> }
> - qemu_get_buffer(f, vdev->config, vdev->config_len);
>
> num = qemu_get_be32(f);
>
> --
> 1.9.3
prev parent reply other threads:[~2014-06-29 13:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-27 19:02 [Qemu-devel] [PATCH v2] [PATCH] Allow mismatched virtio config-len Dr. David Alan Gilbert (git)
2014-06-29 13:40 ` Michael S. Tsirkin [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=20140629134005.GA26654@redhat.com \
--to=mst@redhat.com \
--cc=dgilbert@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.