public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README
@ 2023-02-03 14:04 Min Xu
  2023-02-03 14:21 ` Yao, Jiewen
  2023-02-03 15:18 ` Gerd Hoffmann
  0 siblings, 2 replies; 3+ messages in thread
From: Min Xu @ 2023-02-03 14:04 UTC (permalink / raw)
  To: devel
  Cc: Min M Xu, Erdem Aktas, James Bottomley, Jiewen Yao, Gerd Hoffmann,
	Tom Lendacky, Michael Roth

From: Min M Xu <min.m.xu@intel.com>

TDVF's README is updated based on the latest feature.
 - RTMR based measurement is supported in OvmfPkgX64 (Config-A)
 - Features of Config-B have all been implemented, such as removing
   unnecessary attack surfaces.

Cc: Erdem Aktas <erdemaktas@google.com>
Cc: James Bottomley <jejb@linux.ibm.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Tom Lendacky <thomas.lendacky@amd.com>
Cc: Michael Roth <michael.roth@amd.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
---
 OvmfPkg/IntelTdx/README | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/OvmfPkg/IntelTdx/README b/OvmfPkg/IntelTdx/README
index cc01ebca5c0a..7307ede78faf 100644
--- a/OvmfPkg/IntelTdx/README
+++ b/OvmfPkg/IntelTdx/README
@@ -26,17 +26,19 @@ There are 2 configurations for TDVF.
  - The OvmfX64Pkg.dsc includes SEV/TDX/normal OVMF basic boot capability.
    The final binary can run on SEV/TDX/normal OVMF.
  - No changes to existing OvmfPkgX64 image layout.
- - No need to add additional security features if they do not exist today.
  - No need to remove features if they exist today.
- - RTMR is not supported.
  - PEI phase is NOT skipped in either Td or Non-Td.
+ - RTMR based measurement is supported.
+ - External inputs from Host VMM are measured, such as TdHob, CFV.
+ - Other external inputs are measured, such as FW_CFG data, os loader,
+   initrd, etc.
 
 <b>Config-B:</b>
- - (*) Add a standalone IntelTdx.dsc to a TDX specific directory for a *full*
+ - Add a standalone IntelTdx.dsc to a TDX specific directory for a *full*
    feature TDVF.(Align with existing SEV)
- - (*) Threat model: VMM is out of TCB. (We need necessary change to prevent
+ - Threat model: VMM is out of TCB. (We need necessary change to prevent
    attack from VMM)
- - (*) IntelTdx.dsc includes TDX/normal OVMF basic boot capability. The final
+ - IntelTdx.dsc includes TDX/normal OVMF basic boot capability. The final
    binary can run on TDX/normal OVMF.
  - It might eventually merge with AmdSev.dsc, but NOT at this point of
    time. And we don?t know when it will happen. We need sync with AMD in
@@ -48,13 +50,6 @@ There are 2 configurations for TDVF.
    initrd, etc.
  - Need to remove unnecessary attack surfaces, such as network stack.
 
-In current stage, <b>Config-A</b> has been merged into edk2-master branch.
-The corresponding pkg file is OvmfPkg/OvmfPkgX64.dsc.
-
-<b>Config-B</b> is split into several waves. The corresponding pkg file is
-OvmfPkg/IntelTdx/IntelTdxX64.dsc. The features with (*) have been implemented
-and merged into edk2-master branch. Others are in upstreaming progress.
-
 Build
 ------
 - Build the TDVF (Config-A) target:
-- 
2.29.2.windows.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README
  2023-02-03 14:04 [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README Min Xu
@ 2023-02-03 14:21 ` Yao, Jiewen
  2023-02-03 15:18 ` Gerd Hoffmann
  1 sibling, 0 replies; 3+ messages in thread
From: Yao, Jiewen @ 2023-02-03 14:21 UTC (permalink / raw)
  To: Xu, Min M, devel@edk2.groups.io
  Cc: Aktas, Erdem, James Bottomley, Gerd Hoffmann, Tom Lendacky,
	Michael Roth

Reviewed-by: Jiewen Yao <Jiewen.yao@Intel.com>

> -----Original Message-----
> From: Xu, Min M <min.m.xu@intel.com>
> Sent: Friday, February 3, 2023 10:04 PM
> To: devel@edk2.groups.io
> Cc: Xu, Min M <min.m.xu@intel.com>; Aktas, Erdem
> <erdemaktas@google.com>; James Bottomley <jejb@linux.ibm.com>; Yao,
> Jiewen <jiewen.yao@intel.com>; Gerd Hoffmann <kraxel@redhat.com>; Tom
> Lendacky <thomas.lendacky@amd.com>; Michael Roth
> <michael.roth@amd.com>
> Subject: [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README
> 
> From: Min M Xu <min.m.xu@intel.com>
> 
> TDVF's README is updated based on the latest feature.
>  - RTMR based measurement is supported in OvmfPkgX64 (Config-A)
>  - Features of Config-B have all been implemented, such as removing
>    unnecessary attack surfaces.
> 
> Cc: Erdem Aktas <erdemaktas@google.com>
> Cc: James Bottomley <jejb@linux.ibm.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Cc: Tom Lendacky <thomas.lendacky@amd.com>
> Cc: Michael Roth <michael.roth@amd.com>
> Signed-off-by: Min Xu <min.m.xu@intel.com>
> ---
>  OvmfPkg/IntelTdx/README | 19 +++++++------------
>  1 file changed, 7 insertions(+), 12 deletions(-)
> 
> diff --git a/OvmfPkg/IntelTdx/README b/OvmfPkg/IntelTdx/README
> index cc01ebca5c0a..7307ede78faf 100644
> --- a/OvmfPkg/IntelTdx/README
> +++ b/OvmfPkg/IntelTdx/README
> @@ -26,17 +26,19 @@ There are 2 configurations for TDVF.
>   - The OvmfX64Pkg.dsc includes SEV/TDX/normal OVMF basic boot capability.
>     The final binary can run on SEV/TDX/normal OVMF.
>   - No changes to existing OvmfPkgX64 image layout.
> - - No need to add additional security features if they do not exist today.
>   - No need to remove features if they exist today.
> - - RTMR is not supported.
>   - PEI phase is NOT skipped in either Td or Non-Td.
> + - RTMR based measurement is supported.
> + - External inputs from Host VMM are measured, such as TdHob, CFV.
> + - Other external inputs are measured, such as FW_CFG data, os loader,
> +   initrd, etc.
> 
>  <b>Config-B:</b>
> - - (*) Add a standalone IntelTdx.dsc to a TDX specific directory for a *full*
> + - Add a standalone IntelTdx.dsc to a TDX specific directory for a *full*
>     feature TDVF.(Align with existing SEV)
> - - (*) Threat model: VMM is out of TCB. (We need necessary change to prevent
> + - Threat model: VMM is out of TCB. (We need necessary change to prevent
>     attack from VMM)
> - - (*) IntelTdx.dsc includes TDX/normal OVMF basic boot capability. The final
> + - IntelTdx.dsc includes TDX/normal OVMF basic boot capability. The final
>     binary can run on TDX/normal OVMF.
>   - It might eventually merge with AmdSev.dsc, but NOT at this point of
>     time. And we don?t know when it will happen. We need sync with AMD in
> @@ -48,13 +50,6 @@ There are 2 configurations for TDVF.
>     initrd, etc.
>   - Need to remove unnecessary attack surfaces, such as network stack.
> 
> -In current stage, <b>Config-A</b> has been merged into edk2-master branch.
> -The corresponding pkg file is OvmfPkg/OvmfPkgX64.dsc.
> -
> -<b>Config-B</b> is split into several waves. The corresponding pkg file is
> -OvmfPkg/IntelTdx/IntelTdxX64.dsc. The features with (*) have been
> implemented
> -and merged into edk2-master branch. Others are in upstreaming progress.
> -
>  Build
>  ------
>  - Build the TDVF (Config-A) target:
> --
> 2.29.2.windows.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README
  2023-02-03 14:04 [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README Min Xu
  2023-02-03 14:21 ` Yao, Jiewen
@ 2023-02-03 15:18 ` Gerd Hoffmann
  1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2023-02-03 15:18 UTC (permalink / raw)
  To: Min Xu
  Cc: devel, Erdem Aktas, James Bottomley, Jiewen Yao, Tom Lendacky,
	Michael Roth

On Fri, Feb 03, 2023 at 10:04:25PM +0800, Min Xu wrote:
> From: Min M Xu <min.m.xu@intel.com>
> 
> TDVF's README is updated based on the latest feature.
>  - RTMR based measurement is supported in OvmfPkgX64 (Config-A)
>  - Features of Config-B have all been implemented, such as removing
>    unnecessary attack surfaces.

Acked-by: Gerd Hoffmann <kraxel@redhat.com>

take care,
  Gerd


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-02-03 15:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-03 14:04 [PATCH V1 1/1] OvmfPkg/IntelTdx: Update README Min Xu
2023-02-03 14:21 ` Yao, Jiewen
2023-02-03 15:18 ` Gerd Hoffmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox