From: Shannon Zhao <zhaoshenglong@huawei.com>
To: qemu-devel@nongnu.org, pbonzini@redhat.com, guangrong.xiao@gmail.com
Cc: shannon.zhaosl@gmail.com, kvmarm@lists.cs.columbia.edu,
kvm@vger.kernel.org
Subject: Re: [PATCH] kvm: Delete the slot only when KVM_MEM_READONLY flag is changed
Date: Tue, 12 Jun 2018 09:36:59 +0800 [thread overview]
Message-ID: <5B1F23BB.6050708@huawei.com> (raw)
In-Reply-To: <1526462314-19720-1-git-send-email-zhaoshenglong@huawei.com>
Ping?
On 2018/5/16 17:18, Shannon Zhao wrote:
> According to KVM commit 75d61fbc, it needs to delete the slot before
> changing the KVM_MEM_READONLY flag. But QEMU commit 235e8982 only check
> whether KVM_MEM_READONLY flag is set instead of changing. It doesn't
> need to delete the slot if the KVM_MEM_READONLY flag is not changed.
>
> This fixes a issue that migrating a VM at the OVMF startup stage and
> VM is executing the codes in rom. Between the deleting and adding the
> slot in kvm_set_user_memory_region, there is a chance that guest access
> rom and trap to KVM, then KVM can't find the corresponding memslot.
> While KVM (on ARM) injects an abort to guest due to the broken hva, then
> guest will get stuck.
>
> Signed-off-by: Shannon Zhao <zhaoshenglong@huawei.com>
> ---
> include/sysemu/kvm_int.h | 1 +
> kvm-all.c | 6 +++---
> 2 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/include/sysemu/kvm_int.h b/include/sysemu/kvm_int.h
> index 888557a..f838412 100644
> --- a/include/sysemu/kvm_int.h
> +++ b/include/sysemu/kvm_int.h
> @@ -20,6 +20,7 @@ typedef struct KVMSlot
> void *ram;
> int slot;
> int flags;
> + int old_flags;
> } KVMSlot;
>
> typedef struct KVMMemoryListener {
> diff --git a/kvm-all.c b/kvm-all.c
> index 2515a23..de8250e 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -252,7 +252,7 @@ static int kvm_set_user_memory_region(KVMMemoryListener *kml, KVMSlot *slot)
> mem.userspace_addr = (unsigned long)slot->ram;
> mem.flags = slot->flags;
>
> - if (slot->memory_size && mem.flags & KVM_MEM_READONLY) {
> + if (slot->memory_size && (mem.flags ^ slot->old_flags) & KVM_MEM_READONLY) {
> /* Set the slot size to 0 before setting the slot to the desired
> * value. This is needed based on KVM commit 75d61fbc. */
> mem.memory_size = 0;
> @@ -376,11 +376,11 @@ static int kvm_slot_update_flags(KVMMemoryListener *kml, KVMSlot *mem,
> {
> int old_flags;
>
> - old_flags = mem->flags;
> + mem->old_flags = mem->flags;
> mem->flags = kvm_mem_flags(mr);
>
> /* If nothing changed effectively, no need to issue ioctl */
> - if (mem->flags == old_flags) {
> + if (mem->flags == mem->old_flags) {
> return 0;
> }
>
>
--
Shannon
WARNING: multiple messages have this Message-ID (diff)
From: Shannon Zhao <zhaoshenglong@huawei.com>
To: <qemu-devel@nongnu.org>, <pbonzini@redhat.com>,
<guangrong.xiao@gmail.com>
Cc: shannon.zhaosl@gmail.com, kvmarm@lists.cs.columbia.edu,
kvm@vger.kernel.org
Subject: Re: [PATCH] kvm: Delete the slot only when KVM_MEM_READONLY flag is changed
Date: Tue, 12 Jun 2018 09:36:59 +0800 [thread overview]
Message-ID: <5B1F23BB.6050708@huawei.com> (raw)
In-Reply-To: <1526462314-19720-1-git-send-email-zhaoshenglong@huawei.com>
Ping?
On 2018/5/16 17:18, Shannon Zhao wrote:
> According to KVM commit 75d61fbc, it needs to delete the slot before
> changing the KVM_MEM_READONLY flag. But QEMU commit 235e8982 only check
> whether KVM_MEM_READONLY flag is set instead of changing. It doesn't
> need to delete the slot if the KVM_MEM_READONLY flag is not changed.
>
> This fixes a issue that migrating a VM at the OVMF startup stage and
> VM is executing the codes in rom. Between the deleting and adding the
> slot in kvm_set_user_memory_region, there is a chance that guest access
> rom and trap to KVM, then KVM can't find the corresponding memslot.
> While KVM (on ARM) injects an abort to guest due to the broken hva, then
> guest will get stuck.
>
> Signed-off-by: Shannon Zhao <zhaoshenglong@huawei.com>
> ---
> include/sysemu/kvm_int.h | 1 +
> kvm-all.c | 6 +++---
> 2 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/include/sysemu/kvm_int.h b/include/sysemu/kvm_int.h
> index 888557a..f838412 100644
> --- a/include/sysemu/kvm_int.h
> +++ b/include/sysemu/kvm_int.h
> @@ -20,6 +20,7 @@ typedef struct KVMSlot
> void *ram;
> int slot;
> int flags;
> + int old_flags;
> } KVMSlot;
>
> typedef struct KVMMemoryListener {
> diff --git a/kvm-all.c b/kvm-all.c
> index 2515a23..de8250e 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -252,7 +252,7 @@ static int kvm_set_user_memory_region(KVMMemoryListener *kml, KVMSlot *slot)
> mem.userspace_addr = (unsigned long)slot->ram;
> mem.flags = slot->flags;
>
> - if (slot->memory_size && mem.flags & KVM_MEM_READONLY) {
> + if (slot->memory_size && (mem.flags ^ slot->old_flags) & KVM_MEM_READONLY) {
> /* Set the slot size to 0 before setting the slot to the desired
> * value. This is needed based on KVM commit 75d61fbc. */
> mem.memory_size = 0;
> @@ -376,11 +376,11 @@ static int kvm_slot_update_flags(KVMMemoryListener *kml, KVMSlot *mem,
> {
> int old_flags;
>
> - old_flags = mem->flags;
> + mem->old_flags = mem->flags;
> mem->flags = kvm_mem_flags(mr);
>
> /* If nothing changed effectively, no need to issue ioctl */
> - if (mem->flags == old_flags) {
> + if (mem->flags == mem->old_flags) {
> return 0;
> }
>
>
--
Shannon
WARNING: multiple messages have this Message-ID (diff)
From: Shannon Zhao <zhaoshenglong@huawei.com>
To: qemu-devel@nongnu.org, pbonzini@redhat.com, guangrong.xiao@gmail.com
Cc: kvmarm@lists.cs.columbia.edu, shannon.zhaosl@gmail.com,
kvm@vger.kernel.org, zhengxiang9@huawei.com
Subject: Re: [Qemu-devel] [PATCH] kvm: Delete the slot only when KVM_MEM_READONLY flag is changed
Date: Tue, 12 Jun 2018 09:36:59 +0800 [thread overview]
Message-ID: <5B1F23BB.6050708@huawei.com> (raw)
In-Reply-To: <1526462314-19720-1-git-send-email-zhaoshenglong@huawei.com>
Ping?
On 2018/5/16 17:18, Shannon Zhao wrote:
> According to KVM commit 75d61fbc, it needs to delete the slot before
> changing the KVM_MEM_READONLY flag. But QEMU commit 235e8982 only check
> whether KVM_MEM_READONLY flag is set instead of changing. It doesn't
> need to delete the slot if the KVM_MEM_READONLY flag is not changed.
>
> This fixes a issue that migrating a VM at the OVMF startup stage and
> VM is executing the codes in rom. Between the deleting and adding the
> slot in kvm_set_user_memory_region, there is a chance that guest access
> rom and trap to KVM, then KVM can't find the corresponding memslot.
> While KVM (on ARM) injects an abort to guest due to the broken hva, then
> guest will get stuck.
>
> Signed-off-by: Shannon Zhao <zhaoshenglong@huawei.com>
> ---
> include/sysemu/kvm_int.h | 1 +
> kvm-all.c | 6 +++---
> 2 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/include/sysemu/kvm_int.h b/include/sysemu/kvm_int.h
> index 888557a..f838412 100644
> --- a/include/sysemu/kvm_int.h
> +++ b/include/sysemu/kvm_int.h
> @@ -20,6 +20,7 @@ typedef struct KVMSlot
> void *ram;
> int slot;
> int flags;
> + int old_flags;
> } KVMSlot;
>
> typedef struct KVMMemoryListener {
> diff --git a/kvm-all.c b/kvm-all.c
> index 2515a23..de8250e 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -252,7 +252,7 @@ static int kvm_set_user_memory_region(KVMMemoryListener *kml, KVMSlot *slot)
> mem.userspace_addr = (unsigned long)slot->ram;
> mem.flags = slot->flags;
>
> - if (slot->memory_size && mem.flags & KVM_MEM_READONLY) {
> + if (slot->memory_size && (mem.flags ^ slot->old_flags) & KVM_MEM_READONLY) {
> /* Set the slot size to 0 before setting the slot to the desired
> * value. This is needed based on KVM commit 75d61fbc. */
> mem.memory_size = 0;
> @@ -376,11 +376,11 @@ static int kvm_slot_update_flags(KVMMemoryListener *kml, KVMSlot *mem,
> {
> int old_flags;
>
> - old_flags = mem->flags;
> + mem->old_flags = mem->flags;
> mem->flags = kvm_mem_flags(mr);
>
> /* If nothing changed effectively, no need to issue ioctl */
> - if (mem->flags == old_flags) {
> + if (mem->flags == mem->old_flags) {
> return 0;
> }
>
>
--
Shannon
next prev parent reply other threads:[~2018-06-12 1:27 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-16 9:18 [PATCH] kvm: Delete the slot only when KVM_MEM_READONLY flag is changed Shannon Zhao
2018-05-16 9:18 ` [Qemu-devel] " Shannon Zhao
2018-05-16 9:18 ` Shannon Zhao
2018-06-12 1:36 ` Shannon Zhao [this message]
2018-06-12 1:36 ` [Qemu-devel] " Shannon Zhao
2018-06-12 1:36 ` Shannon Zhao
2018-06-12 12:17 ` Paolo Bonzini
2018-06-12 12:17 ` [Qemu-devel] " Paolo Bonzini
2018-06-13 2:15 ` Shannon Zhao
2018-06-13 2:15 ` [Qemu-devel] " Shannon Zhao
2018-06-13 2:15 ` Shannon Zhao
2018-06-13 15:58 ` Paolo Bonzini
2018-06-13 15:58 ` [Qemu-devel] " Paolo Bonzini
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=5B1F23BB.6050708@huawei.com \
--to=zhaoshenglong@huawei.com \
--cc=guangrong.xiao@gmail.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=shannon.zhaosl@gmail.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.