All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Fix SVM hang at startup
@ 2020-03-20 10:26 ` Laurent Dufour
  0 siblings, 0 replies; 42+ messages in thread
From: Laurent Dufour @ 2020-03-20 10:26 UTC (permalink / raw)
  To: linuxppc-dev, linux-kernel, kvm-ppc

This series is fixing a SVM hang occurring when starting a SVM requiring
more secure memory than available. The hang happens in the SVM when calling
UV_ESM.

The following is happening:

1. SVM calls UV_ESM
2. Ultravisor (UV) calls H_SVM_INIT_START
3. Hypervisor (HV) calls UV_REGISTER_MEM_SLOT
4. UV returns error because there is not enough free secure memory
5. HV enter the error path in kvmppc_h_svm_init_start()
6. In the return path, since kvm->arch.secure_guest is not yet set hrfid is
   called
7. As the HV doesn't know the SVM calling context hrfid is jumping to
   unknown address in the SVM leading to various expections.

This series fixes the setting of kvm->arch.secure_guest in
kvmppc_h_svm_init_start() to ensure that UV_RETURN is called on the return
path to get back to the UV.

In addition to ensure that a malicious VM will not call UV reserved Hcall,
a check of the Secure bit in the calling MSR is addded to reject such a
call.

It is assumed that the UV will filtered out such Hcalls made by a malicious
SVM.

Laurent Dufour (2):
  KVM: PPC: Book3S HV: check caller of H_SVM_* Hcalls
  KVM: PPC: Book3S HV: H_SVM_INIT_START must call UV_RETURN

 arch/powerpc/kvm/book3s_hv.c       | 32 ++++++++++++++++++++----------
 arch/powerpc/kvm/book3s_hv_uvmem.c |  3 ++-
 2 files changed, 23 insertions(+), 12 deletions(-)

-- 
2.25.2


^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2020-03-24 14:29 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-20 10:26 [PATCH 0/2] Fix SVM hang at startup Laurent Dufour
2020-03-20 10:26 ` Laurent Dufour
2020-03-20 10:26 ` [PATCH 1/2] KVM: PPC: Book3S HV: check caller of H_SVM_* Hcalls Laurent Dufour
2020-03-20 10:26   ` Laurent Dufour
2020-03-20 10:26   ` Laurent Dufour
2020-03-20 12:22   ` Greg Kurz
2020-03-20 12:22     ` Greg Kurz
2020-03-20 12:22     ` Greg Kurz
2020-03-20 14:43     ` Laurent Dufour
2020-03-20 14:43       ` Laurent Dufour
2020-03-20 14:43       ` Laurent Dufour
2020-03-23 23:43     ` Paul Mackerras
2020-03-23 23:43       ` Paul Mackerras
2020-03-23 23:43       ` Paul Mackerras
2020-03-24 12:00       ` Greg Kurz
2020-03-24 12:00         ` Greg Kurz
2020-03-24 12:00         ` Greg Kurz
2020-03-24 13:13         ` Laurent Dufour
2020-03-24 13:13           ` Laurent Dufour
2020-03-24 13:13           ` Laurent Dufour
2020-03-21  0:40   ` Ram Pai
2020-03-21  0:40     ` Ram Pai
2020-03-20 10:26 ` [PATCH 2/2] KVM: PPC: Book3S HV: H_SVM_INIT_START must call UV_RETURN Laurent Dufour
2020-03-20 10:26   ` Laurent Dufour
2020-03-20 10:26   ` Laurent Dufour
2020-03-20 11:24   ` Bharata B Rao
2020-03-20 11:36     ` Bharata B Rao
2020-03-20 11:24     ` Bharata B Rao
2020-03-20 14:36     ` Laurent Dufour
2020-03-20 14:36       ` Laurent Dufour
2020-03-20 14:36       ` Laurent Dufour
2020-03-23  4:21       ` Bharata B Rao
2020-03-23  4:33         ` Bharata B Rao
2020-03-23  4:21         ` Bharata B Rao
2020-03-21  0:47   ` Ram Pai
2020-03-21  0:47     ` Ram Pai
2020-03-21  0:47     ` Ram Pai
2020-03-23 14:09   ` Fabiano Rosas
2020-03-23 14:09     ` Fabiano Rosas
2020-03-23 14:09     ` Fabiano Rosas
2020-03-24  2:54 ` [PATCH 0/2] Fix SVM hang at startup Paul Mackerras
2020-03-24  2:54   ` Paul Mackerras

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.