KVM: PPC: Book3S HV: Implement H_SVM_INIT_ABORT hcall
authorSukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Tue, 7 Jan 2020 02:02:37 +0000 (18:02 -0800)
committerPaul Mackerras <paulus@ozlabs.org>
Fri, 17 Jan 2020 04:08:31 +0000 (15:08 +1100)
Implement the H_SVM_INIT_ABORT hcall which the Ultravisor can use to
abort an SVM after it has issued the H_SVM_INIT_START and before the
H_SVM_INIT_DONE hcalls. This hcall could be used when Ultravisor
encounters security violations or other errors when starting an SVM.

Note that this hcall is different from UV_SVM_TERMINATE ucall which
is used by HV to terminate/cleanup an VM that has becore secure.

The H_SVM_INIT_ABORT basically undoes operations that were done
since the H_SVM_INIT_START hcall - i.e page-out all the VM pages back
to normal memory, and terminate the SVM.

(If we do not bring the pages back to normal memory, the text/data
of the VM would be stuck in secure memory and since the SVM did not
go secure, its MSR_S bit will be clear and the VM wont be able to
access its pages even to do a clean exit).

Based on patches and discussion with Paul Mackerras, Ram Pai and
Bharata Rao.

Signed-off-by: Ram Pai <linuxram@linux.ibm.com>
Signed-off-by: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
Signed-off-by: Bharata B Rao <bharata@linux.ibm.com>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Documentation/powerpc/ultravisor.rst
arch/powerpc/include/asm/hvcall.h
arch/powerpc/include/asm/kvm_book3s_uvmem.h
arch/powerpc/include/asm/kvm_host.h
arch/powerpc/kvm/book3s_hv.c
arch/powerpc/kvm/book3s_hv_uvmem.c

index 730854f73830a6afd4bb5db3c96eefe43120b1c8..363736d7fd36f02af4329b0f517e2749ee09dea3 100644 (file)
@@ -948,6 +948,66 @@ Use cases
     up its internal state for this virtual machine.
 
 
+H_SVM_INIT_ABORT
+----------------
+
+    Abort the process of securing an SVM.
+
+Syntax
+~~~~~~
+
+.. code-block:: c
+
+       uint64_t hypercall(const uint64_t H_SVM_INIT_ABORT)
+
+Return values
+~~~~~~~~~~~~~
+
+    One of the following values:
+
+       * H_PARAMETER           on successfully cleaning up the state,
+                               Hypervisor will return this value to the
+                               **guest**, to indicate that the underlying
+                               UV_ESM ultracall failed.
+
+       * H_STATE               if called after a VM has gone secure (i.e
+                               H_SVM_INIT_DONE hypercall was successful).
+
+       * H_UNSUPPORTED         if called from a wrong context (e.g. from a
+                               normal VM).
+
+Description
+~~~~~~~~~~~
+
+    Abort the process of securing a virtual machine. This call must
+    be made after a prior call to ``H_SVM_INIT_START`` hypercall and
+    before a call to ``H_SVM_INIT_DONE``.
+
+    On entry into this hypercall the non-volatile GPRs and FPRs are
+    expected to contain the values they had at the time the VM issued
+    the UV_ESM ultracall. Further ``SRR0`` is expected to contain the
+    address of the instruction after the ``UV_ESM`` ultracall and ``SRR1``
+    the MSR value with which to return to the VM.
+
+    This hypercall will cleanup any partial state that was established for
+    the VM since the prior ``H_SVM_INIT_START`` hypercall, including paging
+    out pages that were paged-into secure memory, and issue the
+    ``UV_SVM_TERMINATE`` ultracall to terminate the VM.
+
+    After the partial state is cleaned up, control returns to the VM
+    (**not Ultravisor**), at the address specified in ``SRR0`` with the
+    MSR values set to the value in ``SRR1``.
+
+Use cases
+~~~~~~~~~
+
+    If after a successful call to ``H_SVM_INIT_START``, the Ultravisor
+    encounters an error while securing a virtual machine, either due
+    to lack of resources or because the VM's security information could
+    not be validated, Ultravisor informs the Hypervisor about it.
+    Hypervisor should use this call to clean up any internal state for
+    this virtual machine and return to the VM.
+
 H_SVM_PAGE_IN
 -------------
 
index 13bd870609c33dcd1744d62f0768d2761ef14e9d..e90c073e437ea9103409222475dfada25e14325b 100644 (file)
 #define H_SVM_PAGE_OUT         0xEF04
 #define H_SVM_INIT_START       0xEF08
 #define H_SVM_INIT_DONE                0xEF0C
+#define H_SVM_INIT_ABORT       0xEF14
 
 /* Values for 2nd argument to H_SET_MODE */
 #define H_SET_MODE_RESOURCE_SET_CIABR          1
index 3cf8425b9838c5914ac75a2501b4e391da126b0c..5a9834e0e2d1d7122086ae7d4fcef118ec9b97d0 100644 (file)
@@ -19,6 +19,7 @@ unsigned long kvmppc_h_svm_page_out(struct kvm *kvm,
 unsigned long kvmppc_h_svm_init_start(struct kvm *kvm);
 unsigned long kvmppc_h_svm_init_done(struct kvm *kvm);
 int kvmppc_send_page_to_uv(struct kvm *kvm, unsigned long gfn);
+unsigned long kvmppc_h_svm_init_abort(struct kvm *kvm);
 void kvmppc_uvmem_drop_pages(const struct kvm_memory_slot *free,
                             struct kvm *kvm, bool skip_page_out);
 #else
@@ -62,6 +63,11 @@ static inline unsigned long kvmppc_h_svm_init_done(struct kvm *kvm)
        return H_UNSUPPORTED;
 }
 
+static inline unsigned long kvmppc_h_svm_init_abort(struct kvm *kvm)
+{
+       return H_UNSUPPORTED;
+}
+
 static inline int kvmppc_send_page_to_uv(struct kvm *kvm, unsigned long gfn)
 {
        return -EFAULT;
index 0a398f2321c2be5faead19447d3c4ac535d0664c..6e8b8ffd06adc4eda2aecfbae38f5ef54a9de42f 100644 (file)
@@ -278,6 +278,7 @@ struct kvm_resize_hpt;
 /* Flag values for kvm_arch.secure_guest */
 #define KVMPPC_SECURE_INIT_START 0x1 /* H_SVM_INIT_START has been called */
 #define KVMPPC_SECURE_INIT_DONE  0x2 /* H_SVM_INIT_DONE completed */
+#define KVMPPC_SECURE_INIT_ABORT 0x4 /* H_SVM_INIT_ABORT issued */
 
 struct kvm_arch {
        unsigned int lpid;
index 47ffc7f1b1042405e9b1dfb898a7197bf27d8d58..1118cff7f7ef28e0aa56c543e07d27a4d44580ee 100644 (file)
@@ -1091,6 +1091,9 @@ int kvmppc_pseries_do_hcall(struct kvm_vcpu *vcpu)
        case H_SVM_INIT_DONE:
                ret = kvmppc_h_svm_init_done(vcpu->kvm);
                break;
+       case H_SVM_INIT_ABORT:
+               ret = kvmppc_h_svm_init_abort(vcpu->kvm);
+               break;
 
        default:
                return RESUME_HOST;
index ffa602a97dba6d4685a23bc3e2084703c85b4494..4d1f25a3959a542a2de48a360ab23dbf96e01e69 100644 (file)
@@ -286,6 +286,34 @@ void kvmppc_uvmem_drop_pages(const struct kvm_memory_slot *free,
        }
 }
 
+unsigned long kvmppc_h_svm_init_abort(struct kvm *kvm)
+{
+       int srcu_idx;
+       struct kvm_memory_slot *memslot;
+
+       /*
+        * Expect to be called only after INIT_START and before INIT_DONE.
+        * If INIT_DONE was completed, use normal VM termination sequence.
+        */
+       if (!(kvm->arch.secure_guest & KVMPPC_SECURE_INIT_START))
+               return H_UNSUPPORTED;
+
+       if (kvm->arch.secure_guest & KVMPPC_SECURE_INIT_DONE)
+               return H_STATE;
+
+       srcu_idx = srcu_read_lock(&kvm->srcu);
+
+       kvm_for_each_memslot(memslot, kvm_memslots(kvm))
+               kvmppc_uvmem_drop_pages(memslot, kvm, false);
+
+       srcu_read_unlock(&kvm->srcu, srcu_idx);
+
+       kvm->arch.secure_guest = 0;
+       uv_svm_terminate(kvm->arch.lpid);
+
+       return H_PARAMETER;
+}
+
 /*
  * Get a free device PFN from the pool
  *