Commit 614dc0fb authored by Tom Lendacky's avatar Tom Lendacky Committed by Borislav Petkov (AMD)

sev-guest: configfs-tsm: Allow the privlevel_floor attribute to be updated

With the introduction of an SVSM, Linux will be running at a non-zero
VMPL. Any request for an attestation report at a higher privilege VMPL
than what Linux is currently running will result in an error. Allow for
the privlevel_floor attribute to be updated dynamically.

  [ bp: Trim commit message. ]
Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/5a736be9384aebd98a0b7c929660f8a97cbdc366.1717600736.git.thomas.lendacky@amd.com
parent eb65f96c
...@@ -892,7 +892,7 @@ static int sev_report_new(struct tsm_report *report, void *data) ...@@ -892,7 +892,7 @@ static int sev_report_new(struct tsm_report *report, void *data)
return 0; return 0;
} }
static const struct tsm_ops sev_tsm_ops = { static struct tsm_ops sev_tsm_ops = {
.name = KBUILD_MODNAME, .name = KBUILD_MODNAME,
.report_new = sev_report_new, .report_new = sev_report_new,
}; };
...@@ -979,6 +979,9 @@ static int __init sev_guest_probe(struct platform_device *pdev) ...@@ -979,6 +979,9 @@ static int __init sev_guest_probe(struct platform_device *pdev)
snp_dev->input.resp_gpa = __pa(snp_dev->response); snp_dev->input.resp_gpa = __pa(snp_dev->response);
snp_dev->input.data_gpa = __pa(snp_dev->certs_data); snp_dev->input.data_gpa = __pa(snp_dev->certs_data);
/* Set the privlevel_floor attribute based on the vmpck_id */
sev_tsm_ops.privlevel_floor = vmpck_id;
ret = tsm_register(&sev_tsm_ops, snp_dev, &tsm_report_extra_type); ret = tsm_register(&sev_tsm_ops, snp_dev, &tsm_report_extra_type);
if (ret) if (ret)
goto e_free_cert_data; goto e_free_cert_data;
......
...@@ -54,7 +54,7 @@ struct tsm_report { ...@@ -54,7 +54,7 @@ struct tsm_report {
*/ */
struct tsm_ops { struct tsm_ops {
const char *name; const char *name;
const unsigned int privlevel_floor; unsigned int privlevel_floor;
int (*report_new)(struct tsm_report *report, void *data); int (*report_new)(struct tsm_report *report, void *data);
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment