Blame SOURCES/kvm-support-using-KVM_MEM_READONLY-flag-for-regions.patch

0a122b
From 8140691df300c06f99981832cf2f19a2e5e5d0b9 Mon Sep 17 00:00:00 2001
0a122b
From: Laszlo Ersek <lersek@redhat.com>
0a122b
Date: Sat, 11 Jan 2014 17:59:57 +0100
0a122b
Subject: [PATCH 07/22] kvm: support using KVM_MEM_READONLY flag for regions
0a122b
0a122b
RH-Author: Laszlo Ersek <lersek@redhat.com>
0a122b
Message-id: <1389463208-6278-8-git-send-email-lersek@redhat.com>
0a122b
Patchwork-id: 56619
0a122b
O-Subject: [RHEL-7.0 qemu-kvm PATCH 07/18] kvm: support using KVM_MEM_READONLY flag for regions
0a122b
Bugzilla: 1032346
0a122b
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
0a122b
RH-Acked-by: Amos Kong <akong@redhat.com>
0a122b
RH-Acked-by: Andrew Jones <drjones@redhat.com>
0a122b
0a122b
From: Jordan Justen <jordan.l.justen@intel.com>
0a122b
0a122b
For readonly memory regions and rom devices in romd_mode,
0a122b
we make use of the KVM_MEM_READONLY. A slot that uses
0a122b
KVM_MEM_READONLY can be read from and code can execute from the
0a122b
region, but writes will exit to qemu.
0a122b
0a122b
For rom devices with !romd_mode, we force the slot to be
0a122b
removed so reads or writes to the region will exit to qemu.
0a122b
(Note that a memory region in this state is not executable
0a122b
within kvm.)
0a122b
0a122b
v7:
0a122b
 * Update for readable => romd_mode rename (5f9a5ea1)
0a122b
0a122b
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
0a122b
Reviewed-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> (v4)
0a122b
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> (v5)
0a122b
Message-id: 1369816047-16384-4-git-send-email-jordan.l.justen@intel.com
0a122b
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
0a122b
(cherry picked from commit 235e8982ad393e5611cb892df54881c872eea9e1)
0a122b
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
0a122b
---
0a122b
 kvm-all.c | 37 ++++++++++++++++++++++++++++---------
0a122b
 1 file changed, 28 insertions(+), 9 deletions(-)
0a122b
0a122b
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
0a122b
---
0a122b
 kvm-all.c |   37 ++++++++++++++++++++++++++++---------
0a122b
 1 files changed, 28 insertions(+), 9 deletions(-)
0a122b
0a122b
diff --git a/kvm-all.c b/kvm-all.c
0a122b
index 0a70ca1..42c71b9 100644
0a122b
--- a/kvm-all.c
0a122b
+++ b/kvm-all.c
0a122b
@@ -203,12 +203,18 @@ static int kvm_set_user_memory_region(KVMState *s, KVMSlot *slot)
0a122b
 
0a122b
     mem.slot = slot->slot;
0a122b
     mem.guest_phys_addr = slot->start_addr;
0a122b
-    mem.memory_size = slot->memory_size;
0a122b
     mem.userspace_addr = (unsigned long)slot->ram;
0a122b
     mem.flags = slot->flags;
0a122b
     if (s->migration_log) {
0a122b
         mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
0a122b
     }
0a122b
+    if (mem.flags & KVM_MEM_READONLY) {
0a122b
+        /* Set the slot size to 0 before setting the slot to the desired
0a122b
+         * value. This is needed based on KVM commit 75d61fbc. */
0a122b
+        mem.memory_size = 0;
0a122b
+        kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem;;
0a122b
+    }
0a122b
+    mem.memory_size = slot->memory_size;
0a122b
     return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem;;
0a122b
 }
0a122b
 
0a122b
@@ -270,9 +276,14 @@ err:
0a122b
  * dirty pages logging control
0a122b
  */
0a122b
 
0a122b
-static int kvm_mem_flags(KVMState *s, bool log_dirty)
0a122b
+static int kvm_mem_flags(KVMState *s, bool log_dirty, bool readonly)
0a122b
 {
0a122b
-    return log_dirty ? KVM_MEM_LOG_DIRTY_PAGES : 0;
0a122b
+    int flags = 0;
0a122b
+    flags = log_dirty ? KVM_MEM_LOG_DIRTY_PAGES : 0;
0a122b
+    if (readonly && kvm_readonly_mem_allowed) {
0a122b
+        flags |= KVM_MEM_READONLY;
0a122b
+    }
0a122b
+    return flags;
0a122b
 }
0a122b
 
0a122b
 static int kvm_slot_dirty_pages_log_change(KVMSlot *mem, bool log_dirty)
0a122b
@@ -283,7 +294,7 @@ static int kvm_slot_dirty_pages_log_change(KVMSlot *mem, bool log_dirty)
0a122b
 
0a122b
     old_flags = mem->flags;
0a122b
 
0a122b
-    flags = (mem->flags & ~mask) | kvm_mem_flags(s, log_dirty);
0a122b
+    flags = (mem->flags & ~mask) | kvm_mem_flags(s, log_dirty, false);
0a122b
     mem->flags = flags;
0a122b
 
0a122b
     /* If nothing changed effectively, no need to issue ioctl */
0a122b
@@ -601,6 +612,8 @@ static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
0a122b
     int err;
0a122b
     MemoryRegion *mr = section->mr;
0a122b
     bool log_dirty = memory_region_is_logging(mr);
0a122b
+    bool writeable = !mr->readonly && !mr->rom_device;
0a122b
+    bool readonly_flag = mr->readonly || memory_region_is_romd(mr);
0a122b
     hwaddr start_addr = section->offset_within_address_space;
0a122b
     ram_addr_t size = section->size;
0a122b
     void *ram = NULL;
0a122b
@@ -620,7 +633,13 @@ static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
0a122b
     }
0a122b
 
0a122b
     if (!memory_region_is_ram(mr)) {
0a122b
-        return;
0a122b
+        if (writeable || !kvm_readonly_mem_allowed) {
0a122b
+            return;
0a122b
+        } else if (!mr->romd_mode) {
0a122b
+            /* If the memory device is not in romd_mode, then we actually want
0a122b
+             * to remove the kvm memory slot so all accesses will trap. */
0a122b
+            add = false;
0a122b
+        }
0a122b
     }
0a122b
 
0a122b
     ram = memory_region_get_ram_ptr(mr) + section->offset_within_region + delta;
0a122b
@@ -669,7 +688,7 @@ static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
0a122b
             mem->memory_size = old.memory_size;
0a122b
             mem->start_addr = old.start_addr;
0a122b
             mem->ram = old.ram;
0a122b
-            mem->flags = kvm_mem_flags(s, log_dirty);
0a122b
+            mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
0a122b
 
0a122b
             err = kvm_set_user_memory_region(s, mem);
0a122b
             if (err) {
0a122b
@@ -690,7 +709,7 @@ static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
0a122b
             mem->memory_size = start_addr - old.start_addr;
0a122b
             mem->start_addr = old.start_addr;
0a122b
             mem->ram = old.ram;
0a122b
-            mem->flags =  kvm_mem_flags(s, log_dirty);
0a122b
+            mem->flags =  kvm_mem_flags(s, log_dirty, readonly_flag);
0a122b
 
0a122b
             err = kvm_set_user_memory_region(s, mem);
0a122b
             if (err) {
0a122b
@@ -714,7 +733,7 @@ static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
0a122b
             size_delta = mem->start_addr - old.start_addr;
0a122b
             mem->memory_size = old.memory_size - size_delta;
0a122b
             mem->ram = old.ram + size_delta;
0a122b
-            mem->flags = kvm_mem_flags(s, log_dirty);
0a122b
+            mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
0a122b
 
0a122b
             err = kvm_set_user_memory_region(s, mem);
0a122b
             if (err) {
0a122b
@@ -736,7 +755,7 @@ static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
0a122b
     mem->memory_size = size;
0a122b
     mem->start_addr = start_addr;
0a122b
     mem->ram = ram;
0a122b
-    mem->flags = kvm_mem_flags(s, log_dirty);
0a122b
+    mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
0a122b
 
0a122b
     err = kvm_set_user_memory_region(s, mem);
0a122b
     if (err) {
0a122b
-- 
0a122b
1.7.1
0a122b