qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@web.de>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>,
	qemu-devel <qemu-devel@nongnu.org>, Avi Kivity <avi@redhat.com>
Subject: [Qemu-devel] [FOR 0.12][FOR 0.11][PATCH] kvm: x86: Fix initial kvm_has_msr_star
Date: Sun, 06 Dec 2009 15:54:49 +0100	[thread overview]
Message-ID: <4B1BC5B9.2020607@web.de> (raw)
In-Reply-To: <4B1BC4EC.90704@web.de>

[-- Attachment #1: Type: text/plain, Size: 1361 bytes --]

Sorry, this is of course a critical fix for all branches that have KVM
support.

Jan

Jan Kiszka wrote:
> KVM_GET_MSR_INDEX_LIST returns -E2BIG when the provided space is too
> small for all MSRs. But this is precisely the error we trigger with the
> initial request in order to obtain that size. Do not fail in that case.
> 
> This caused a subtle corruption of the guest state as MSR_STAR was not
> properly saved/restored. The corruption became visible with latest kvm
> optimizing the MSR updates.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
> 
>  target-i386/kvm.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/target-i386/kvm.c b/target-i386/kvm.c
> index 3b61a7f..88b504c 100644
> --- a/target-i386/kvm.c
> +++ b/target-i386/kvm.c
> @@ -244,9 +244,9 @@ static int kvm_has_msr_star(CPUState *env)
>           * save/restore */
>          msr_list.nmsrs = 0;
>          ret = kvm_ioctl(env->kvm_state, KVM_GET_MSR_INDEX_LIST, &msr_list);
> -        if (ret < 0)
> +        if (ret < 0 && ret != -E2BIG) {
>              return 0;
> -
> +        }
>          /* Old kernel modules had a bug and could write beyond the provided
>             memory. Allocate at least a safe amount of 1K. */
>          kvm_msr_list = qemu_mallocz(MAX(1024, sizeof(msr_list) +
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 257 bytes --]

  reply	other threads:[~2009-12-06 14:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-06 14:51 [Qemu-devel] [PATCH] kvm: x86: Fix initial kvm_has_msr_star Jan Kiszka
2009-12-06 14:54 ` Jan Kiszka [this message]
2009-12-06 15:12 ` Avi Kivity
2009-12-07  8:12 ` [Qemu-devel] " Avi Kivity
2009-12-07  8:24   ` Jan Kiszka
2009-12-07  8:42     ` Avi Kivity
2009-12-07 14:47   ` Anthony Liguori
2009-12-07 16:31     ` Avi Kivity
2009-12-07 16:33       ` Anthony Liguori

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=4B1BC5B9.2020607@web.de \
    --to=jan.kiszka@web.de \
    --cc=aliguori@us.ibm.com \
    --cc=avi@redhat.com \
    --cc=mtosatti@redhat.com \
    --cc=qemu-devel@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).