lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 22 Sep 2021 17:34:19 -0700 From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@...ux.intel.com> To: Thomas Gleixner <tglx@...utronix.de>, Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>, x86@...nel.org, "H . Peter Anvin" <hpa@...or.com> Cc: Dave Hansen <dave.hansen@...el.com>, Tony Luck <tony.luck@...el.com>, Dan Williams <dan.j.williams@...el.com>, Andi Kleen <ak@...ux.intel.com>, Kirill Shutemov <kirill.shutemov@...ux.intel.com>, Sean Christopherson <seanjc@...gle.com>, Kuppuswamy Sathyanarayanan <knsathya@...nel.org>, linux-kernel@...r.kernel.org Subject: [PATCH v6 0/5] Add TDX Guest Support (boot fixes) Hi All, Intel's Trust Domain Extensions (TDX) protect guest VMs from malicious hosts and some physical attacks. This series adds boot code support and some additional fixes required for successful boot of TDX guest. This series is the continuation of the patch series titled "Add TDX Guest Support (Initial support)" and "Add TDX Guest Support (#VE handler support )", which added initial support and #VE handler support for TDX guests. You can find the related patchsets in the following links. [set 1, v7] - https://lore.kernel.org/lkml/20210916183550.15349-1-sathyanarayanan.kuppuswamy@linux.intel.com/ [set 2, v6] - https://lore.kernel.org/lkml/20210922225239.3501262-1-sathyanarayanan.kuppuswamy@linux.intel.com/ Also please note that this series alone is not necessarily fully functional. You can find TDX related documents in the following link. https://software.intel.com/content/www/br/pt/develop/articles/intel-trust-domain-extensions.html Changes since v5: * Rebased on top of Tom Lendackys CC guest change. * Rebased on top of v5.15-rc1 * No functional changes. Changes since v4: * Renamed tdg_* prefix with tdx_*. * No functional changes. Changes since v3: * Rebased on top of Tom Lendackys protected guest change. * No functional changes. Changes since v2: * Rebased on top of v5.14-rc1. * No functional changes. Changes since v1: * Rebased on top of v3 version of "Add TDX Guest Support (Initial support)" patchset. Since it had some changes at the TDCALL implementation level, we have to rebase other dependent patches. Kuppuswamy Sathyanarayanan (2): x86/topology: Disable CPU online/offline control for TDX guest x86: Skip WBINVD instruction for VM guest Sean Christopherson (3): x86/boot: Add a trampoline for APs booting in 64-bit mode x86/boot: Avoid #VE during boot for TDX platforms x86/tdx: Forcefully disable legacy PIC for TDX guests arch/x86/boot/compressed/head_64.S | 16 +++++-- arch/x86/boot/compressed/pgtable.h | 2 +- arch/x86/include/asm/acenv.h | 7 ++- arch/x86/include/asm/realmode.h | 12 +++++ arch/x86/kernel/head_64.S | 20 +++++++- arch/x86/kernel/smpboot.c | 2 +- arch/x86/kernel/tdx.c | 19 ++++++++ arch/x86/kernel/topology.c | 3 +- arch/x86/realmode/rm/header.S | 1 + arch/x86/realmode/rm/trampoline_64.S | 59 ++++++++++++++++++++++-- arch/x86/realmode/rm/trampoline_common.S | 12 ++++- 11 files changed, 139 insertions(+), 14 deletions(-) -- 2.25.1
Powered by blists - more mailing lists