From: Anthony Liguori <anthony@codemonkey.ws>
To: Juan Quintela <quintela@redhat.com>
Cc: pbonzini@redhat.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/4] savevm: improve subsections detection on load
Date: Wed, 05 Oct 2011 14:45:31 -0500 [thread overview]
Message-ID: <4E8CB3DB.7020204@codemonkey.ws> (raw)
In-Reply-To: <e102d670b1d5eba2256bc125ba0ec4a34f0983b0.1317738629.git.quintela@redhat.com>
On 10/04/2011 09:38 AM, Juan Quintela wrote:
> We add qemu_peek_buffer, that is identical to qemu_get_buffer, just
> that it don't update f->buf_index.
>
> We add a paramenter to qemu_peek_byte() to be able to peek more than
> one byte.
>
> Once this is done, to see if we have a subsection we look:
> - 1st byte is QEMU_VM_SUBSECTION
> - 2nd byte is a length, and is bigger than section name
> - 3rd element is a string that starts with section_name
>
> So, we shouldn't have false positives (yes, content could still get us
> wrong but probabilities are really low).
>
> Signed-off-by: Juan Quintela<quintela@redhat.com>
> ---
> savevm.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++---------
> 1 files changed, 60 insertions(+), 11 deletions(-)
>
> diff --git a/savevm.c b/savevm.c
> index 5fee4e2..db6ea12 100644
> --- a/savevm.c
> +++ b/savevm.c
> @@ -532,6 +532,37 @@ void qemu_put_byte(QEMUFile *f, int v)
> qemu_fflush(f);
> }
>
> +static int qemu_peek_buffer(QEMUFile *f, uint8_t *buf, int size1, int offset)
> +{
> + int size, l;
> + int index = f->buf_index + offset;
> +
> + if (f->is_write) {
> + abort();
> + }
> +
> + size = size1;
> + while (size> 0) {
> + l = f->buf_size - index;
> + if (l == 0) {
> + qemu_fill_buffer(f);
> + index = f->buf_index + offset;
> + l = f->buf_size - index;
> + if (l == 0) {
> + break;
> + }
> + }
> + if (l> size) {
> + l = size;
> + }
> + memcpy(buf, f->buf + index, l);
> + index += l;
> + buf += l;
> + size -= l;
> + }
> + return size1 - size;
> +}
> +
> int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
> {
> int size, l;
Can we implement get_buffer in terms of peek_buffer and just increment
f->buf_index in get_buffer?
> @@ -561,19 +592,22 @@ int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1)
> return size1 - size;
> }
>
> -static int qemu_peek_byte(QEMUFile *f)
> +static int qemu_peek_byte(QEMUFile *f, int offset)
> {
> + int index = f->buf_index + offset;
> +
> if (f->is_write) {
> abort();
> }
>
> - if (f->buf_index>= f->buf_size) {
> + if (index>= f->buf_size) {
> qemu_fill_buffer(f);
> - if (f->buf_index>= f->buf_size) {
> + index = f->buf_index + offset;
> + if (index>= f->buf_size) {
> return 0;
> }
> }
> - return f->buf[f->buf_index];
> + return f->buf[index];
> }
>
> int qemu_get_byte(QEMUFile *f)
> @@ -1687,22 +1721,37 @@ static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
> return 0;
> }
>
> - while (qemu_peek_byte(f) == QEMU_VM_SUBSECTION) {
> + while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
> char idstr[256];
> int ret;
> - uint8_t version_id, len;
> + uint8_t version_id, len, size;
> const VMStateDescription *sub_vmsd;
>
> - qemu_get_byte(f); /* subsection */
> - len = qemu_get_byte(f);
> - qemu_get_buffer(f, (uint8_t *)idstr, len);
> - idstr[len] = 0;
> - version_id = qemu_get_be32(f);
> + len = qemu_peek_byte(f, 1);
> + if (len< strlen(vmsd->name) + 1) {
> + /* subsection name has be be "section_name/a" */
> + return 0;
> + }
> + size = qemu_peek_buffer(f, (uint8_t *)idstr, len, 2);
> + if (size != len) {
> + return 0;
> + }
> + idstr[size] = 0;
Regards,
Anthony Liguori
next prev parent reply other threads:[~2011-10-05 19:45 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-04 14:38 [Qemu-devel] [PATCH 0/4] migration: Improve subsections detection Juan Quintela
2011-10-04 14:38 ` [Qemu-devel] [PATCH 1/4] savevm: teach qemu_fill_buffer to do partial refills Juan Quintela
2011-10-05 19:41 ` Anthony Liguori
2011-10-04 14:38 ` [Qemu-devel] [PATCH 2/4] savevm: some coding style cleanups Juan Quintela
2011-10-05 19:41 ` Anthony Liguori
2011-10-04 14:38 ` [Qemu-devel] [PATCH 3/4] savevm: improve subsections detection on load Juan Quintela
2011-10-05 19:45 ` Anthony Liguori [this message]
2011-10-06 8:38 ` Paolo Bonzini
2011-10-04 14:38 ` [Qemu-devel] [PATCH 4/4] Revert "savevm: fix corruption in vmstate_subsection_load()." Juan Quintela
2011-10-05 19:46 ` Anthony Liguori
2011-10-04 15:12 ` [Qemu-devel] [PATCH 0/4] migration: Improve subsections detection Paolo Bonzini
2011-10-04 18:20 ` Avi Kivity
2011-10-04 18:22 ` Anthony Liguori
2011-10-04 18:28 ` Avi Kivity
2011-10-04 18:35 ` Juan Quintela
2011-10-04 18:37 ` Avi Kivity
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=4E8CB3DB.7020204@codemonkey.ws \
--to=anthony@codemonkey.ws \
--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.