LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Daniel Kiper <daniel.kiper@oracle.com>
To: linux-kernel@vger.kernel.org, x86@kernel.org
Cc: dpsmith@apertussolutions.com, eric.snowberg@oracle.com,
hpa@zytor.com, kanth.ghatraju@oracle.com, konrad.wilk@oracle.com,
ross.philipson@oracle.com
Subject: [PATCH RFC 2/2] x86/boot: Introduce dummy MLE header
Date: Fri, 24 May 2019 11:55:04 +0200 [thread overview]
Message-ID: <20190524095504.12894-3-daniel.kiper@oracle.com> (raw)
In-Reply-To: <20190524095504.12894-1-daniel.kiper@oracle.com>
DO NOT APPLY!!!
THIS PATCH INTRODUCES DUMMY MLE HEADER AND SIMPLY ILLUSTRATES HOW TO
EXTEND THE setup_header2 PROPERLY.
DO NOT APPLY!!!
Signed-off-by: Ross Philipson <ross.philipson@oracle.com>
Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
Reviewed-by: Ross Philipson <ross.philipson@oracle.com>
---
Documentation/x86/boot.txt | 6 ++++++
arch/x86/Kconfig | 7 +++++++
arch/x86/boot/compressed/Makefile | 1 +
| 6 ++++++
arch/x86/boot/compressed/sl_stub.S | 28 ++++++++++++++++++++++++++++
5 files changed, 48 insertions(+)
create mode 100644 arch/x86/boot/compressed/sl_stub.S
diff --git a/Documentation/x86/boot.txt b/Documentation/x86/boot.txt
index ff10c6116662..09cf50d7dca2 100644
--- a/Documentation/x86/boot.txt
+++ b/Documentation/x86/boot.txt
@@ -793,6 +793,12 @@ Offset/size: 0x0004/4
This field contains the size of the setup_header2 including setup_header2.header.
It should be used by the boot loader to detect supported fields in the setup_header2.
+Field name: mle_header_offset
+Offset/size: 0x0008/4
+
+ This field contains the MLE header offset from the beginning of the kernel image.
+ If it is set to zero then it means that MLE header is not build into the kernel.
+
**** THE IMAGE CHECKSUM
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 5ad92419be19..021e274ede54 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1961,6 +1961,13 @@ config EFI_MIXED
If unsure, say N.
+config SECURE_LAUNCH_STUB
+ bool "Secure Launch stub support"
+ depends on X86_64
+ ---help---
+ This kernel feature allows a bzImage to be loaded directly
+ through Intel TXT or AMD SKINIT measured launch.
+
config SECCOMP
def_bool y
prompt "Enable seccomp to safely compute untrusted bytecode"
diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile
index c12ccc2bd923..9722d119e19a 100644
--- a/arch/x86/boot/compressed/Makefile
+++ b/arch/x86/boot/compressed/Makefile
@@ -78,6 +78,7 @@ vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/setup_header2.o $(obj)/head_$(BITS).
vmlinux-objs-$(CONFIG_EARLY_PRINTK) += $(obj)/early_serial_console.o
vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/kaslr.o
+vmlinux-objs-$(CONFIG_SECURE_LAUNCH_STUB) += $(obj)/sl_stub.o
ifdef CONFIG_X86_64
vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/kaslr_64.o
vmlinux-objs-y += $(obj)/mem_encrypt.o
--git a/arch/x86/boot/compressed/setup_header2.S b/arch/x86/boot/compressed/setup_header2.S
index 0b3963296825..eb732626fd22 100644
--- a/arch/x86/boot/compressed/setup_header2.S
+++ b/arch/x86/boot/compressed/setup_header2.S
@@ -9,4 +9,10 @@ setup_header2:
.ascii "hDR2"
/* Size. */
.long setup_header2_end - setup_header2
+ /* MLE header offset. */
+#ifdef CONFIG_SECURE_LAUNCH_STUB
+ .long mle_header
+#else
+ .long 0
+#endif
setup_header2_end:
diff --git a/arch/x86/boot/compressed/sl_stub.S b/arch/x86/boot/compressed/sl_stub.S
new file mode 100644
index 000000000000..34f5000528e4
--- /dev/null
+++ b/arch/x86/boot/compressed/sl_stub.S
@@ -0,0 +1,28 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+
+/*
+ * Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
+ *
+ * Author(s):
+ * Ross Philipson <ross.philipson@oracle.com>
+ */
+ .code32
+ .text
+
+ /* The MLE Header per the TXT Specification, section 4.1 */
+ .global mle_header
+
+mle_header:
+ .long 0x9082ac5a /* UUID0 */
+ .long 0x74a7476f /* UUID1 */
+ .long 0xa2555c0f /* UUID2 */
+ .long 0x42b651cb /* UUID3 */
+ .long 0x00000034 /* MLE header size */
+ .long 0x00020002 /* MLE version 2.2 */
+ .long 0x01234567 /* Linear entry point of MLE (virt. address) */
+ .long 0x00000000 /* First valid page of MLE */
+ .long 0x00000000 /* Offset within binary of first byte of MLE */
+ .long 0x00000000 /* Offset within binary of last byte + 1 of MLE */
+ .long 0x00000223 /* Bit vector of MLE-supported capabilities */
+ .long 0x00000000 /* Starting linear address of command line */
+ .long 0x00000000 /* Ending linear address of command line */
--
2.11.0
next prev parent reply other threads:[~2019-05-24 9:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-24 9:55 [PATCH RFC 0/2] x86/boot: Introduce the setup_header2 Daniel Kiper
2019-05-24 9:55 ` [PATCH RFC 1/2] " Daniel Kiper
2019-06-06 22:06 ` H. Peter Anvin
2019-06-14 11:06 ` Daniel Kiper
2019-05-24 9:55 ` Daniel Kiper [this message]
2019-06-05 13:50 ` [PATCH RFC 0/2] " Daniel Kiper
2019-06-05 14:01 ` Konrad Rzeszutek Wilk
2019-06-06 11:51 ` Daniel Kiper
2019-06-06 17:30 ` Konrad Rzeszutek Wilk
2019-06-06 17:46 ` Daniel Kiper
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190524095504.12894-3-daniel.kiper@oracle.com \
--to=daniel.kiper@oracle.com \
--cc=dpsmith@apertussolutions.com \
--cc=eric.snowberg@oracle.com \
--cc=hpa@zytor.com \
--cc=kanth.ghatraju@oracle.com \
--cc=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=ross.philipson@oracle.com \
--cc=x86@kernel.org \
--subject='Re: [PATCH RFC 2/2] x86/boot: Introduce dummy MLE header' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).