Inter-revision diff: patch 18

Comparing v4 (message) to v5 (message)

--- v4
+++ v5
@@ -1,256 +1,120 @@
-The SEV-SNP firmware provides the SNP_CONFIG command used to set the
-system-wide configuration value for SNP guests. The information includes
-the TCB version string to be reported in guest attestation reports.
+Version 2 of the GHCB specification defines VMGEXIT that is used to get
+the extended attestation report. The extended attestation report includes
+the certificate blobs provided through the SNP_SET_EXT_CONFIG.
 
-Version 2 of the GHCB specification adds an NAE (SNP extended guest
-request) that a guest can use to query the reports that include additional
-certificates.
-
-In both cases, userspace provided additional data is included in the
-attestation reports. The userspace will use the SNP_SET_EXT_CONFIG
-command to give the certificate blob and the reported TCB version string
-at once. Note that the specification defines certificate blob with a
-specific GUID format; the userspace is responsible for building the
-proper certificate blob. The ioctl treats it an opaque blob.
-
-While it is not defined in the spec, but let's add SNP_GET_EXT_CONFIG
-command that can be used to obtain the data programmed through the
-SNP_SET_EXT_CONFIG.
+The snp_guest_ext_guest_request() will be used by the hypervisor to get
+the extended attestation report. See the GHCB specification for more
+details.
 
 Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
 ---
- Documentation/virt/coco/sevguest.rst |  28 +++++++
- drivers/crypto/ccp/sev-dev.c         | 117 +++++++++++++++++++++++++++
- drivers/crypto/ccp/sev-dev.h         |   3 +
- include/uapi/linux/psp-sev.h         |  16 ++++
- 4 files changed, 164 insertions(+)
+ drivers/crypto/ccp/sev-dev.c | 43 ++++++++++++++++++++++++++++++++++++
+ include/linux/psp-sev.h      | 24 ++++++++++++++++++++
+ 2 files changed, 67 insertions(+)
 
-diff --git a/Documentation/virt/coco/sevguest.rst b/Documentation/virt/coco/sevguest.rst
-index 7c51da010039..64a1b5167b33 100644
---- a/Documentation/virt/coco/sevguest.rst
-+++ b/Documentation/virt/coco/sevguest.rst
-@@ -134,3 +134,31 @@ See GHCB specification for further detail on how to parse the certificate blob.
- The SNP_PLATFORM_STATUS command is used to query the SNP platform status. The
- status includes API major, minor version and more. See the SEV-SNP
- specification for further details.
-+
-+2.4 SNP_SET_EXT_CONFIG
-+----------------------
-+:Technology: sev-snp
-+:Type: hypervisor ioctl cmd
-+:Parameters (in): struct sev_data_snp_ext_config
-+:Returns (out): 0 on success, -negative on error
-+
-+The SNP_SET_EXT_CONFIG is used to set the system-wide configuration such as
-+reported TCB version in the attestation report. The command is similar to
-+SNP_CONFIG command defined in the SEV-SNP spec. The main difference is the
-+command also accepts an additional certificate blob defined in the GHCB
-+specification.
-+
-+If the certs_address is zero, then previous certificate blob will deleted.
-+For more information on the certificate blob layout, see the GHCB spec
-+(extended guest request message).
-+
-+
-+2.4 SNP_GET_EXT_CONFIG
-+----------------------
-+:Technology: sev-snp
-+:Type: hypervisor ioctl cmd
-+:Parameters (in): struct sev_data_snp_ext_config
-+:Returns (out): 0 on success, -negative on error
-+
-+The SNP_SET_EXT_CONFIG is used to query the system-wide configuration set
-+through the SNP_SET_EXT_CONFIG.
 diff --git a/drivers/crypto/ccp/sev-dev.c b/drivers/crypto/ccp/sev-dev.c
-index 65003aba807a..1984a7b2c4e1 100644
+index 9ba194acbe85..e2650c3d0d0a 100644
 --- a/drivers/crypto/ccp/sev-dev.c
 +++ b/drivers/crypto/ccp/sev-dev.c
-@@ -1087,6 +1087,10 @@ static int __sev_snp_shutdown_locked(int *error)
- 	/* Free the status page */
- 	__snp_free_firmware_pages(sev->snp_plat_status_page, 0, true);
+@@ -22,6 +22,7 @@
+ #include <linux/firmware.h>
+ #include <linux/gfp.h>
+ #include <linux/cpufeature.h>
++#include <linux/sev-guest.h>
  
-+	/* Free the memory used for caching the certificate data */
-+	kfree(sev->snp_certs_data);
-+	sev->snp_certs_data = NULL;
+ #include <asm/smp.h>
+ 
+@@ -1677,6 +1678,48 @@ int snp_guest_dbg_decrypt(struct sev_data_snp_dbg *data, int *error)
+ }
+ EXPORT_SYMBOL_GPL(snp_guest_dbg_decrypt);
+ 
++int snp_guest_ext_guest_request(struct sev_data_snp_guest_request *data,
++				unsigned long vaddr, unsigned long *npages, unsigned long *fw_err)
++{
++	unsigned long expected_npages;
++	struct sev_device *sev;
++	int rc;
 +
- 	/* SHUTDOWN requires the DF_FLUSH */
- 	wbinvd_on_all_cpus();
- 	__sev_do_cmd_locked(SEV_CMD_SNP_DF_FLUSH, NULL, NULL);
-@@ -1373,6 +1377,113 @@ static int sev_ioctl_snp_platform_status(struct sev_issue_cmd *argp)
- 	return 0;
- }
- 
-+static int sev_ioctl_snp_get_config(struct sev_issue_cmd *argp)
-+{
-+	struct sev_device *sev = psp_master->sev_data;
-+	struct sev_user_data_ext_snp_config input;
-+	int ret;
++	if (!psp_master || !psp_master->sev_data)
++		return -ENODEV;
 +
-+	if (!sev->snp_inited || !argp->data)
++	sev = psp_master->sev_data;
++
++	if (!sev->snp_inited)
 +		return -EINVAL;
 +
-+	if (copy_from_user(&input, (void __user *)argp->data, sizeof(input)))
-+		return -EFAULT;
-+
-+	/* Copy the TCB version programmed through the SET_CONFIG to userspace */
-+	if (input.config_address) {
-+		if (copy_to_user((void * __user)input.config_address,
-+				&sev->snp_config, sizeof (struct sev_user_data_snp_config)))
-+			return -EFAULT;
++	/*
++	 * Check if there is enough space to copy the certificate chain. Otherwise
++	 * return ERROR code defined in the GHCB specification.
++	 */
++	expected_npages = sev->snp_certs_len >> PAGE_SHIFT;
++	if (*npages < expected_npages) {
++		*npages = expected_npages;
++		*fw_err = SNP_GUEST_REQ_INVALID_LEN;
++		return -EINVAL;
 +	}
 +
-+	/* Copy the extended certs programmed through the SNP_SET_CONFIG */
-+	if (input.certs_address && sev->snp_certs_data) {
-+		if (input.certs_len < sev->snp_certs_len) {
-+			/* Return the certs length to userspace */
-+			input.certs_len = sev->snp_certs_len;
++	rc = sev_do_cmd(SEV_CMD_SNP_GUEST_REQUEST, data, (int *)&fw_err);
++	if (rc)
++		return rc;
 +
-+			ret = -ENOSR;
-+			goto e_done;
-+		}
-+
-+		if (copy_to_user((void * __user)input.certs_address,
-+				sev->snp_certs_data, sev->snp_certs_len))
-+			return -EFAULT;
++	/* Copy the certificate blob */
++	if (sev->snp_certs_data) {
++		*npages = expected_npages;
++		memcpy((void *)vaddr, sev->snp_certs_data, *npages << PAGE_SHIFT);
++	} else {
++		*npages = 0;
 +	}
 +
-+	ret = 0;
++	return rc;
++}
++EXPORT_SYMBOL_GPL(snp_guest_ext_guest_request);
 +
-+e_done:
-+	if (copy_to_user((void __user *)argp->data, &input, sizeof(input)))
-+		ret = -EFAULT;
+ static void sev_exit(struct kref *ref)
+ {
+ 	misc_deregister(&misc_dev->misc);
+diff --git a/include/linux/psp-sev.h b/include/linux/psp-sev.h
+index 00bd684dc094..ea94ce4d834a 100644
+--- a/include/linux/psp-sev.h
++++ b/include/linux/psp-sev.h
+@@ -924,6 +924,23 @@ void *psp_copy_user_blob(u64 uaddr, u32 len);
+ void *snp_alloc_firmware_page(gfp_t mask);
+ void snp_free_firmware_page(void *addr);
+ 
++/**
++ * snp_guest_ext_guest_request - perform the SNP extended guest request command
++ *  defined in the GHCB specification.
++ *
++ * @data: the input guest request structure
++ * @vaddr: address where the certificate blob need to be copied.
++ * @npages: number of pages for the certificate blob.
++ *    If the specified page count is less than the certificate blob size, then the
++ *    required page count is returned with error code defined in the GHCB spec.
++ *    If the specified page count is more than the certificate blob size, then
++ *    page count is updated to reflect the amount of valid data copied in the
++ *    vaddr.
++ */
++int snp_guest_ext_guest_request(struct sev_data_snp_guest_request *data,
++				unsigned long vaddr, unsigned long *npages,
++				unsigned long *error);
 +
-+	return ret;
+ #else	/* !CONFIG_CRYPTO_DEV_SP_PSP */
+ 
+ static inline int
+@@ -971,6 +988,13 @@ static inline void *snp_alloc_firmware_page(gfp_t mask)
+ 
+ static inline void snp_free_firmware_page(void *addr) { }
+ 
++static inline int snp_guest_ext_guest_request(struct sev_data_snp_guest_request *data,
++					      unsigned long vaddr, unsigned long *n,
++					      unsigned long *error)
++{
++	return -ENODEV;
 +}
 +
-+static int sev_ioctl_snp_set_config(struct sev_issue_cmd *argp, bool writable)
-+{
-+	struct sev_device *sev = psp_master->sev_data;
-+	struct sev_user_data_ext_snp_config input;
-+	struct sev_user_data_snp_config config;
-+	void *certs = NULL;
-+	int ret = 0;
-+
-+	if (!sev->snp_inited || !argp->data)
-+		return -EINVAL;
-+
-+	if (!writable)
-+		return -EPERM;
-+
-+	if (copy_from_user(&input, (void __user *)argp->data, sizeof(input)))
-+		return -EFAULT;
-+
-+	/* Copy the certs from userspace */
-+	if (input.certs_address) {
-+		if (!input.certs_len || !IS_ALIGNED(input.certs_len, PAGE_SIZE))
-+			return -EINVAL;
-+
-+		certs = psp_copy_user_blob(input.certs_address, input.certs_len);
-+		if (IS_ERR(certs))
-+			return PTR_ERR(certs);
-+
-+	}
-+
-+	/* Issue the PSP command to update the TCB version using the SNP_CONFIG. */
-+	if (input.config_address) {
-+		if (copy_from_user(&config,
-+				   (void __user *)input.config_address, sizeof(config))) {
-+			ret = -EFAULT;
-+			goto e_free;
-+		}
-+
-+		ret = __sev_do_cmd_locked(SEV_CMD_SNP_CONFIG, &config, &argp->error);
-+		if (ret)
-+			goto e_free;
-+
-+		memcpy(&sev->snp_config, &config, sizeof(config));
-+	}
-+
-+	/*
-+	 * If the new certs are passed then cache it else free the old certs.
-+	 */
-+	if (certs) {
-+		kfree(sev->snp_certs_data);
-+		sev->snp_certs_data = certs;
-+		sev->snp_certs_len = input.certs_len;
-+	} else {
-+		kfree(sev->snp_certs_data);
-+		sev->snp_certs_data = NULL;
-+		sev->snp_certs_len = 0;
-+	}
-+
-+	return 0;
-+
-+e_free:
-+	kfree(certs);
-+	return ret;
-+}
-+
-+
- static long sev_ioctl(struct file *file, unsigned int ioctl, unsigned long arg)
- {
- 	void __user *argp = (void __user *)arg;
-@@ -1427,6 +1538,12 @@ static long sev_ioctl(struct file *file, unsigned int ioctl, unsigned long arg)
- 	case SNP_PLATFORM_STATUS:
- 		ret = sev_ioctl_snp_platform_status(&input);
- 		break;
-+	case SNP_SET_EXT_CONFIG:
-+		ret = sev_ioctl_snp_set_config(&input, writable);
-+		break;
-+	case SNP_GET_EXT_CONFIG:
-+		ret = sev_ioctl_snp_get_config(&input);
-+		break;
- 	default:
- 		ret = -EINVAL;
- 		goto out;
-diff --git a/drivers/crypto/ccp/sev-dev.h b/drivers/crypto/ccp/sev-dev.h
-index 5efe162ad82d..37dc58c09cb6 100644
---- a/drivers/crypto/ccp/sev-dev.h
-+++ b/drivers/crypto/ccp/sev-dev.h
-@@ -67,6 +67,9 @@ struct sev_device {
- 	bool snp_inited;
- 	struct snp_host_map snp_host_map[MAX_SNP_HOST_MAP_BUFS];
- 	struct page *snp_plat_status_page;
-+	void *snp_certs_data;
-+	u32 snp_certs_len;
-+	struct sev_user_data_snp_config snp_config;
- };
+ #endif	/* CONFIG_CRYPTO_DEV_SP_PSP */
  
- int sev_dev_init(struct psp_device *psp);
-diff --git a/include/uapi/linux/psp-sev.h b/include/uapi/linux/psp-sev.h
-index 0c383d322097..12c758b616c2 100644
---- a/include/uapi/linux/psp-sev.h
-+++ b/include/uapi/linux/psp-sev.h
-@@ -29,6 +29,8 @@ enum {
- 	SEV_GET_ID,	/* This command is deprecated, use SEV_GET_ID2 */
- 	SEV_GET_ID2,
- 	SNP_PLATFORM_STATUS = 256,
-+	SNP_SET_EXT_CONFIG,
-+	SNP_GET_EXT_CONFIG,
- 
- 	SEV_MAX,
- };
-@@ -190,6 +192,20 @@ struct sev_user_data_snp_config {
- 	__u8 rsvd[52];
- } __packed;
- 
-+/**
-+ * struct sev_data_snp_ext_config - system wide configuration value for SNP.
-+ *
-+ * @config_address: address of the struct sev_user_data_snp_config or 0 when
-+ *      	reported_tcb does not need to be updated.
-+ * @certs_address: address of extended guest request certificate chain or
-+ *              0 when previous certificate should be removed on SNP_SET_EXT_CONFIG.
-+ * @certs_len: length of the certs
-+ */
-+struct sev_user_data_ext_snp_config {
-+	__u64 config_address;		/* In */
-+	__u64 certs_address;		/* In */
-+	__u32 certs_len;		/* In */
-+};
- 
- /**
-  * struct sev_issue_cmd - SEV ioctl parameters
+ #endif	/* __PSP_SEV_H__ */
 -- 
 2.17.1
 
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help