KVM: PPC: Book3S HV: Add a capability for enabling secure guests
authorPaul Mackerras <paulus@ozlabs.org>
Thu, 19 Mar 2020 04:29:55 +0000 (15:29 +1100)
committerPaul Mackerras <paulus@ozlabs.org>
Thu, 26 Mar 2020 00:09:04 +0000 (11:09 +1100)
At present, on Power systems with Protected Execution Facility
hardware and an ultravisor, a KVM guest can transition to being a
secure guest at will.  Userspace (QEMU) has no way of knowing
whether a host system is capable of running secure guests.  This
will present a problem in future when the ultravisor is capable of
migrating secure guests from one host to another, because
virtualization management software will have no way to ensure that
secure guests only run in domains where all of the hosts can
support secure guests.

This adds a VM capability which has two functions: (a) userspace
can query it to find out whether the host can support secure guests,
and (b) userspace can enable it for a guest, which allows that
guest to become a secure guest.  If userspace does not enable it,
KVM will return an error when the ultravisor does the hypercall
that indicates that the guest is starting to transition to a
secure guest.  The ultravisor will then abort the transition and
the guest will terminate.

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Ram Pai <linuxram@us.ibm.com>
Documentation/virt/kvm/api.rst
arch/powerpc/include/asm/kvm_book3s_uvmem.h
arch/powerpc/include/asm/kvm_host.h
arch/powerpc/include/asm/kvm_ppc.h
arch/powerpc/kvm/book3s_hv.c
arch/powerpc/kvm/book3s_hv_uvmem.c
arch/powerpc/kvm/powerpc.c
include/uapi/linux/kvm.h

index 158d1186d1038dcaba5fac463e35c9228f8a613e..a9255002aa1c2e0ba1e0e66c026f7231ef8711f0 100644 (file)
@@ -5779,6 +5779,23 @@ it hard or impossible to use it correctly.  The availability of
 KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2 signals that those bugs are fixed.
 Userspace should not try to use KVM_CAP_MANUAL_DIRTY_LOG_PROTECT.
 
+7.19 KVM_CAP_PPC_SECURE_GUEST
+------------------------------
+
+:Architectures: ppc
+
+This capability indicates that KVM is running on a host that has
+ultravisor firmware and thus can support a secure guest.  On such a
+system, a guest can ask the ultravisor to make it a secure guest,
+one whose memory is inaccessible to the host except for pages which
+are explicitly requested to be shared with the host.  The ultravisor
+notifies KVM when a guest requests to become a secure guest, and KVM
+has the opportunity to veto the transition.
+
+If present, this capability can be enabled for a VM, meaning that KVM
+will allow the transition to secure guest mode.  Otherwise KVM will
+veto the transition.
+
 8. Other capabilities.
 ======================
 
index 5a9834e0e2d1d7122086ae7d4fcef118ec9b97d0..9cb7d8be23666ec38fbdd2990d96e9f9c67652b5 100644 (file)
@@ -5,6 +5,7 @@
 #ifdef CONFIG_PPC_UV
 int kvmppc_uvmem_init(void);
 void kvmppc_uvmem_free(void);
+bool kvmppc_uvmem_available(void);
 int kvmppc_uvmem_slot_init(struct kvm *kvm, const struct kvm_memory_slot *slot);
 void kvmppc_uvmem_slot_free(struct kvm *kvm,
                            const struct kvm_memory_slot *slot);
@@ -30,6 +31,11 @@ static inline int kvmppc_uvmem_init(void)
 
 static inline void kvmppc_uvmem_free(void) { }
 
+static inline bool kvmppc_uvmem_available(void)
+{
+       return false;
+}
+
 static inline int
 kvmppc_uvmem_slot_init(struct kvm *kvm, const struct kvm_memory_slot *slot)
 {
index 6e8b8ffd06adc4eda2aecfbae38f5ef54a9de42f..f99b4333dfbaeb32fc9827db4b93a83a5ca165d5 100644 (file)
@@ -303,6 +303,7 @@ struct kvm_arch {
        u8 radix;
        u8 fwnmi_enabled;
        u8 secure_guest;
+       u8 svm_enabled;
        bool threads_indep;
        bool nested_enable;
        pgd_t *pgtable;
index e716862d56b9d16dcd7ad00c46a3cecebabfdac2..94f5a32acaf1b34f8dfd3c77d83e9b850f98887e 100644 (file)
@@ -313,6 +313,7 @@ struct kvmppc_ops {
                               int size);
        int (*store_to_eaddr)(struct kvm_vcpu *vcpu, ulong *eaddr, void *ptr,
                              int size);
+       int (*enable_svm)(struct kvm *kvm);
        int (*svm_off)(struct kvm *kvm);
 };
 
index a308de610cdfa53df32742db9affb5ce7f05009a..fa6e4fc7d0e4745953138b9959096c9d7ec6d5e8 100644 (file)
@@ -5428,6 +5428,21 @@ static void unpin_vpa_reset(struct kvm *kvm, struct kvmppc_vpa *vpa)
        vpa->update_pending = 0;
 }
 
+/*
+ * Enable a guest to become a secure VM, or test whether
+ * that could be enabled.
+ * Called when the KVM_CAP_PPC_SECURE_GUEST capability is
+ * tested (kvm == NULL) or enabled (kvm != NULL).
+ */
+static int kvmhv_enable_svm(struct kvm *kvm)
+{
+       if (!kvmppc_uvmem_available())
+               return -EINVAL;
+       if (kvm)
+               kvm->arch.svm_enabled = 1;
+       return 0;
+}
+
 /*
  *  IOCTL handler to turn off secure mode of guest
  *
@@ -5548,6 +5563,7 @@ static struct kvmppc_ops kvm_ops_hv = {
        .enable_nested = kvmhv_enable_nested,
        .load_from_eaddr = kvmhv_load_from_eaddr,
        .store_to_eaddr = kvmhv_store_to_eaddr,
+       .enable_svm = kvmhv_enable_svm,
        .svm_off = kvmhv_svm_off,
 };
 
index 53b88cae3e73e6c367c5d0a491212c9ecb68bd6e..6ed98e70097d560251322795da50421a25b50cb8 100644 (file)
@@ -113,6 +113,15 @@ struct kvmppc_uvmem_page_pvt {
        bool skip_page_out;
 };
 
+bool kvmppc_uvmem_available(void)
+{
+       /*
+        * If kvmppc_uvmem_bitmap != NULL, then there is an ultravisor
+        * and our data structures have been initialized successfully.
+        */
+       return !!kvmppc_uvmem_bitmap;
+}
+
 int kvmppc_uvmem_slot_init(struct kvm *kvm, const struct kvm_memory_slot *slot)
 {
        struct kvmppc_uvmem_slot *p;
@@ -218,6 +227,10 @@ unsigned long kvmppc_h_svm_init_start(struct kvm *kvm)
        if (!kvm_is_radix(kvm))
                return H_UNSUPPORTED;
 
+       /* NAK the transition to secure if not enabled */
+       if (!kvm->arch.svm_enabled)
+               return H_AUTHORITY;
+
        srcu_idx = srcu_read_lock(&kvm->srcu);
        slots = kvm_memslots(kvm);
        kvm_for_each_memslot(memslot, slots) {
index e229a81016d0f09ba1d55d08cabbc176a09eb271..c48862d86adc40c028ad05507f37e9d7819d19a7 100644 (file)
@@ -668,6 +668,12 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
                r = !!(cur_cpu_spec->cpu_user_features2 & PPC_FEATURE2_HTM) ||
                     (hv_enabled && cpu_has_feature(CPU_FTR_P9_TM_HV_ASSIST));
                break;
+#endif
+#if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
+       case KVM_CAP_PPC_SECURE_GUEST:
+               r = hv_enabled && kvmppc_hv_ops->enable_svm &&
+                       !kvmppc_hv_ops->enable_svm(NULL);
+               break;
 #endif
        default:
                r = 0;
@@ -2166,6 +2172,14 @@ int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
                        break;
                r = kvm->arch.kvm_ops->enable_nested(kvm);
                break;
+#endif
+#if defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
+       case KVM_CAP_PPC_SECURE_GUEST:
+               r = -EINVAL;
+               if (!is_kvmppc_hv_enabled(kvm) || !kvm->arch.kvm_ops->enable_svm)
+                       break;
+               r = kvm->arch.kvm_ops->enable_svm(kvm);
+               break;
 #endif
        default:
                r = -EINVAL;
index 5e6234cb25a6a446264521b455667de429f9ba5e..428c7dde6b4b3761f9df65ed9181b50e1c9f7165 100644 (file)
@@ -1016,6 +1016,7 @@ struct kvm_ppc_resize_hpt {
 #define KVM_CAP_ARM_INJECT_EXT_DABT 178
 #define KVM_CAP_S390_VCPU_RESETS 179
 #define KVM_CAP_S390_PROTECTED 180
+#define KVM_CAP_PPC_SECURE_GUEST 181
 
 #ifdef KVM_CAP_IRQ_ROUTING