forked from my-unikernel/qemu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spapr: Add PEF based confidential guest support
Some upcoming POWER machines have a system called PEF (Protected Execution Facility) which uses a small ultravisor to allow guests to run in a way that they can't be eavesdropped by the hypervisor. The effect is roughly similar to AMD SEV, although the mechanisms are quite different. Most of the work of this is done between the guest, KVM and the ultravisor, with little need for involvement by qemu. However qemu does need to tell KVM to allow secure VMs. Because the availability of secure mode is a guest visible difference which depends on having the right hardware and firmware, we don't enable this by default. In order to run a secure guest you need to create a "pef-guest" object and set the confidential-guest-support property to point to it. Note that this just *allows* secure guests, the architecture of PEF is such that the guest still needs to talk to the ultravisor to enter secure mode. Qemu has no direct way of knowing if the guest is in secure mode, and certainly can't know until well after machine creation time. To start a PEF-capable guest, use the command line options: -object pef-guest,id=pef0 -machine confidential-guest-support=pef0 Signed-off-by: David Gibson <[email protected]> Reviewed-by: Greg Kurz <[email protected]>
- Loading branch information
Showing
8 changed files
with
191 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
POWER (PAPR) Protected Execution Facility (PEF) | ||
=============================================== | ||
|
||
Protected Execution Facility (PEF), also known as Secure Guest support | ||
is a feature found on IBM POWER9 and POWER10 processors. | ||
|
||
If a suitable firmware including an Ultravisor is installed, it adds | ||
an extra memory protection mode to the CPU. The ultravisor manages a | ||
pool of secure memory which cannot be accessed by the hypervisor. | ||
|
||
When this feature is enabled in QEMU, a guest can use ultracalls to | ||
enter "secure mode". This transfers most of its memory to secure | ||
memory, where it cannot be eavesdropped by a compromised hypervisor. | ||
|
||
Launching | ||
--------- | ||
|
||
To launch a guest which will be permitted to enter PEF secure mode: | ||
|
||
# ${QEMU} \ | ||
-object pef-guest,id=pef0 \ | ||
-machine confidential-guest-support=pef0 \ | ||
... | ||
|
||
Live Migration | ||
---------------- | ||
|
||
Live migration is not yet implemented for PEF guests. For | ||
consistency, we currently prevent migration if the PEF feature is | ||
enabled, whether or not the guest has actually entered secure mode. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/* | ||
* PEF (Protected Execution Facility) for POWER support | ||
* | ||
* Copyright Red Hat. | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
* See the COPYING file in the top-level directory. | ||
* | ||
*/ | ||
|
||
#include "qemu/osdep.h" | ||
|
||
#include "qapi/error.h" | ||
#include "qom/object_interfaces.h" | ||
#include "sysemu/kvm.h" | ||
#include "migration/blocker.h" | ||
#include "exec/confidential-guest-support.h" | ||
#include "hw/ppc/pef.h" | ||
|
||
#define TYPE_PEF_GUEST "pef-guest" | ||
OBJECT_DECLARE_SIMPLE_TYPE(PefGuest, PEF_GUEST) | ||
|
||
typedef struct PefGuest PefGuest; | ||
typedef struct PefGuestClass PefGuestClass; | ||
|
||
struct PefGuestClass { | ||
ConfidentialGuestSupportClass parent_class; | ||
}; | ||
|
||
/** | ||
* PefGuest: | ||
* | ||
* The PefGuest object is used for creating and managing a PEF | ||
* guest. | ||
* | ||
* # $QEMU \ | ||
* -object pef-guest,id=pef0 \ | ||
* -machine ...,confidential-guest-support=pef0 | ||
*/ | ||
struct PefGuest { | ||
ConfidentialGuestSupport parent_obj; | ||
}; | ||
|
||
static int kvmppc_svm_init(Error **errp) | ||
{ | ||
#ifdef CONFIG_KVM | ||
if (!kvm_check_extension(kvm_state, KVM_CAP_PPC_SECURE_GUEST)) { | ||
error_setg(errp, | ||
"KVM implementation does not support Secure VMs (is an ultravisor running?)"); | ||
return -1; | ||
} else { | ||
int ret = kvm_vm_enable_cap(kvm_state, KVM_CAP_PPC_SECURE_GUEST, 0, 1); | ||
|
||
if (ret < 0) { | ||
error_setg(errp, | ||
"Error enabling PEF with KVM"); | ||
return -1; | ||
} | ||
} | ||
|
||
return 0; | ||
#else | ||
g_assert_not_reached(); | ||
#endif | ||
} | ||
|
||
/* | ||
* Don't set error if KVM_PPC_SVM_OFF ioctl is invoked on kernels | ||
* that don't support this ioctl. | ||
*/ | ||
static int kvmppc_svm_off(Error **errp) | ||
{ | ||
#ifdef CONFIG_KVM | ||
int rc; | ||
|
||
rc = kvm_vm_ioctl(KVM_STATE(current_accel()), KVM_PPC_SVM_OFF); | ||
if (rc && rc != -ENOTTY) { | ||
error_setg_errno(errp, -rc, "KVM_PPC_SVM_OFF ioctl failed"); | ||
return rc; | ||
} | ||
return 0; | ||
#else | ||
g_assert_not_reached(); | ||
#endif | ||
} | ||
|
||
int pef_kvm_init(ConfidentialGuestSupport *cgs, Error **errp) | ||
{ | ||
if (!object_dynamic_cast(OBJECT(cgs), TYPE_PEF_GUEST)) { | ||
return 0; | ||
} | ||
|
||
if (!kvm_enabled()) { | ||
error_setg(errp, "PEF requires KVM"); | ||
return -1; | ||
} | ||
|
||
return kvmppc_svm_init(errp); | ||
} | ||
|
||
int pef_kvm_reset(ConfidentialGuestSupport *cgs, Error **errp) | ||
{ | ||
if (!object_dynamic_cast(OBJECT(cgs), TYPE_PEF_GUEST)) { | ||
return 0; | ||
} | ||
|
||
/* | ||
* If we don't have KVM we should never have been able to | ||
* initialize PEF, so we should never get this far | ||
*/ | ||
assert(kvm_enabled()); | ||
|
||
return kvmppc_svm_off(errp); | ||
} | ||
|
||
OBJECT_DEFINE_TYPE_WITH_INTERFACES(PefGuest, | ||
pef_guest, | ||
PEF_GUEST, | ||
CONFIDENTIAL_GUEST_SUPPORT, | ||
{ TYPE_USER_CREATABLE }, | ||
{ NULL }) | ||
|
||
static void pef_guest_class_init(ObjectClass *oc, void *data) | ||
{ | ||
} | ||
|
||
static void pef_guest_init(Object *obj) | ||
{ | ||
} | ||
|
||
static void pef_guest_finalize(Object *obj) | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* PEF (Protected Execution Facility) for POWER support | ||
* | ||
* Copyright Red Hat. | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
* See the COPYING file in the top-level directory. | ||
* | ||
*/ | ||
|
||
#ifndef HW_PPC_PEF_H | ||
#define HW_PPC_PEF_H | ||
|
||
int pef_kvm_init(ConfidentialGuestSupport *cgs, Error **errp); | ||
int pef_kvm_reset(ConfidentialGuestSupport *cgs, Error **errp); | ||
|
||
#endif /* HW_PPC_PEF_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters