mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
x86/virt/tdx: Use auto-generated code to read global metadata
The TDX module provides a set of "Global Metadata Fields". They report things like TDX module version, supported features, and fields related to create/run TDX guests and so on. Currently the kernel only reads "TD Memory Region" (TDMR) related fields for module initialization. There are needs to read more global metadata fields for future use: - Supported features ("TDX_FEATURES0") to fail module initialization when the module doesn't support "not clobbering host RBP when exiting from TDX guest" feature [1]. - KVM TDX baseline support and other features like TDX Connect will need to read more. The current global metadata reading code has limitations (e.g., it only has a primitive helper to read metadata field with 16-bit element size, while TDX supports 8/16/32/64 bits metadata element sizes). It needs tweaks in order to read more metadata fields. But even with the tweaks, when new code is added to read a new field, the reviewers will still need to review against the spec to make sure the new code doesn't screw up things like using the wrong metadata field ID (each metadata field is associated with a unique field ID, which is a TDX-defined u64 constant) etc. TDX documents all global metadata fields in a 'global_metadata.json' file as part of TDX spec [2]. JSON format is machine readable. Instead of tweaking the metadata reading code, use a script to generate the code so that: 1) Using the generated C is simple. 2) Adding a field is simple, e.g., the script just pulls the field ID out of the JSON for a given field thus no manual review is needed. Specifically, to match the layout of the 'struct tdx_sys_info' and its sub-structures, the script uses a table with each entry containing the the name of the sub-structures (which reflects the "Class") and the "Field Name" of all its fields, and auto-generate: 1) The 'struct tdx_sys_info' and all 'struct tdx_sys_info_xx' sub-structures in 'tdx_global_metadata.h'. 2) The main function 'get_tdx_sys_info()' which reads all metadata to 'struct tdx_sys_info' and the 'get_tdx_sys_info_xx()' functions which read 'struct tdx_sys_info_xx()' in 'tdx_global_metadata.c'. Using the generated C is simple: 1) include "tdx_global_metadata.h" to the local "tdx.h"; 2) explicitly include "tdx_global_metadata.c" to the local "tdx.c" after the read_sys_metadata_field() primitive (which is a wrapper of TDH.SYS.RD SEAMCALL to read global metadata). Adding a field is also simple: 1) just add the new field to an existing structure, or add it with a new structure; 2) re-run the script to generate the new code; 3) update the existing tdx_global_metadata.{hc} with the new ones. For now, use the auto-generated code to read the TDMR related fields and the aforesaid metadata field "TDX_FEATURES0". The tdx_global_metadata.{hc} can be generated by running below: #python tdx_global_metadata.py global_metadata.json \ tdx_global_metadata.h tdx_global_metadata.c .. where the 'global_metadata.json' can be fetched from [2] and the 'tdx_global_metadata.py' can be found from [3]. Co-developed-by: Kai Huang <kai.huang@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Kai Huang <kai.huang@intel.com> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Reviewed-by: Dan Williams <dan.j.williams@intel.com> Link: https://lore.kernel.org/fc0e8ab7-86d4-4428-be31-82e1ece6dd21@intel.com/ [1] Link: https://cdrdv2.intel.com/v1/dl/getContent/795381 [2] Link: https://lore.kernel.org/762a50133300710771337398284567b299a86f67.camel@intel.com/ [3] Link: https://lore.kernel.org/all/cbe3f12b1e5479399b53f4873f2ff783d9fc669b.1734188033.git.kai.huang%40intel.com
This commit is contained in:
parent
c4e0862a62
commit
04a7bc7316
48
arch/x86/virt/vmx/tdx/tdx_global_metadata.c
Normal file
48
arch/x86/virt/vmx/tdx/tdx_global_metadata.c
Normal file
@ -0,0 +1,48 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Automatically generated functions to read TDX global metadata.
|
||||
*
|
||||
* This file doesn't compile on its own as it lacks of inclusion
|
||||
* of SEAMCALL wrapper primitive which reads global metadata.
|
||||
* Include this file to other C file instead.
|
||||
*/
|
||||
|
||||
static int get_tdx_sys_info_features(struct tdx_sys_info_features *sysinfo_features)
|
||||
{
|
||||
int ret = 0;
|
||||
u64 val;
|
||||
|
||||
if (!ret && !(ret = read_sys_metadata_field(0x0A00000300000008, &val)))
|
||||
sysinfo_features->tdx_features0 = val;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int get_tdx_sys_info_tdmr(struct tdx_sys_info_tdmr *sysinfo_tdmr)
|
||||
{
|
||||
int ret = 0;
|
||||
u64 val;
|
||||
|
||||
if (!ret && !(ret = read_sys_metadata_field(0x9100000100000008, &val)))
|
||||
sysinfo_tdmr->max_tdmrs = val;
|
||||
if (!ret && !(ret = read_sys_metadata_field(0x9100000100000009, &val)))
|
||||
sysinfo_tdmr->max_reserved_per_tdmr = val;
|
||||
if (!ret && !(ret = read_sys_metadata_field(0x9100000100000010, &val)))
|
||||
sysinfo_tdmr->pamt_4k_entry_size = val;
|
||||
if (!ret && !(ret = read_sys_metadata_field(0x9100000100000011, &val)))
|
||||
sysinfo_tdmr->pamt_2m_entry_size = val;
|
||||
if (!ret && !(ret = read_sys_metadata_field(0x9100000100000012, &val)))
|
||||
sysinfo_tdmr->pamt_1g_entry_size = val;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int get_tdx_sys_info(struct tdx_sys_info *sysinfo)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
ret = ret ?: get_tdx_sys_info_features(&sysinfo->features);
|
||||
ret = ret ?: get_tdx_sys_info_tdmr(&sysinfo->tdmr);
|
||||
|
||||
return ret;
|
||||
}
|
25
arch/x86/virt/vmx/tdx/tdx_global_metadata.h
Normal file
25
arch/x86/virt/vmx/tdx/tdx_global_metadata.h
Normal file
@ -0,0 +1,25 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/* Automatically generated TDX global metadata structures. */
|
||||
#ifndef _X86_VIRT_TDX_AUTO_GENERATED_TDX_GLOBAL_METADATA_H
|
||||
#define _X86_VIRT_TDX_AUTO_GENERATED_TDX_GLOBAL_METADATA_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
struct tdx_sys_info_features {
|
||||
u64 tdx_features0;
|
||||
};
|
||||
|
||||
struct tdx_sys_info_tdmr {
|
||||
u16 max_tdmrs;
|
||||
u16 max_reserved_per_tdmr;
|
||||
u16 pamt_4k_entry_size;
|
||||
u16 pamt_2m_entry_size;
|
||||
u16 pamt_1g_entry_size;
|
||||
};
|
||||
|
||||
struct tdx_sys_info {
|
||||
struct tdx_sys_info_features features;
|
||||
struct tdx_sys_info_tdmr tdmr;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user