target/i386/sev: Move qmp_query_sev_attestation_report() to sev.c
Move qmp_query_sev_attestation_report() from monitor.c to sev.c and make sev_get_attestation_report() static. We don't need the stub anymore, remove it. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20211007161716.453984-18-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
02eacf3137
commit
3208de1cd2
@ -763,12 +763,6 @@ void qmp_sev_inject_launch_secret(const char *packet_hdr,
|
||||
sev_inject_launch_secret(packet_hdr, secret, gpa, errp);
|
||||
}
|
||||
|
||||
SevAttestationReport *
|
||||
qmp_query_sev_attestation_report(const char *mnonce, Error **errp)
|
||||
{
|
||||
return sev_get_attestation_report(mnonce, errp);
|
||||
}
|
||||
|
||||
SGXInfo *qmp_query_sgx(Error **errp)
|
||||
{
|
||||
return sgx_get_info(errp);
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qapi/qapi-commands-misc-target.h"
|
||||
#include "qapi/qmp/qerror.h"
|
||||
#include "qapi/error.h"
|
||||
#include "sev.h"
|
||||
|
||||
@ -52,8 +53,8 @@ int sev_es_save_reset_vector(void *flash_ptr, uint64_t flash_size)
|
||||
g_assert_not_reached();
|
||||
}
|
||||
|
||||
SevAttestationReport *sev_get_attestation_report(const char *mnonce,
|
||||
Error **errp)
|
||||
SevAttestationReport *qmp_query_sev_attestation_report(const char *mnonce,
|
||||
Error **errp)
|
||||
{
|
||||
error_setg(errp, "SEV is not available in this QEMU");
|
||||
return NULL;
|
||||
|
@ -32,6 +32,8 @@
|
||||
#include "migration/blocker.h"
|
||||
#include "qom/object.h"
|
||||
#include "monitor/monitor.h"
|
||||
#include "qapi/qapi-commands-misc-target.h"
|
||||
#include "qapi/qmp/qerror.h"
|
||||
#include "exec/confidential-guest-support.h"
|
||||
#include "hw/i386/pc.h"
|
||||
|
||||
@ -515,8 +517,8 @@ out:
|
||||
return cap;
|
||||
}
|
||||
|
||||
SevAttestationReport *
|
||||
sev_get_attestation_report(const char *mnonce, Error **errp)
|
||||
static SevAttestationReport *sev_get_attestation_report(const char *mnonce,
|
||||
Error **errp)
|
||||
{
|
||||
struct kvm_sev_attestation_report input = {};
|
||||
SevAttestationReport *report = NULL;
|
||||
@ -578,6 +580,12 @@ sev_get_attestation_report(const char *mnonce, Error **errp)
|
||||
return report;
|
||||
}
|
||||
|
||||
SevAttestationReport *qmp_query_sev_attestation_report(const char *mnonce,
|
||||
Error **errp)
|
||||
{
|
||||
return sev_get_attestation_report(mnonce, errp);
|
||||
}
|
||||
|
||||
static int
|
||||
sev_read_file_base64(const char *filename, guchar **data, gsize *len)
|
||||
{
|
||||
|
@ -52,8 +52,6 @@ extern uint32_t sev_get_cbit_position(void);
|
||||
extern uint32_t sev_get_reduced_phys_bits(void);
|
||||
extern char *sev_get_launch_measurement(void);
|
||||
extern SevCapability *sev_get_capabilities(Error **errp);
|
||||
extern SevAttestationReport *
|
||||
sev_get_attestation_report(const char *mnonce, Error **errp);
|
||||
extern bool sev_add_kernel_loader_hashes(SevKernelLoaderContext *ctx, Error **errp);
|
||||
|
||||
int sev_encrypt_flash(uint8_t *ptr, uint64_t len, Error **errp);
|
||||
|
Loading…
Reference in New Issue
Block a user