From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 94F2BC433EF for ; Wed, 20 Apr 2022 00:43:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1358641AbiDTAq3 (ORCPT ); Tue, 19 Apr 2022 20:46:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58908 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1358642AbiDTAq0 (ORCPT ); Tue, 19 Apr 2022 20:46:26 -0400 Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C7D1E17A93; Tue, 19 Apr 2022 17:43:41 -0700 (PDT) Received: (Authenticated sender: joao@overdrivepizza.com) by mail.gandi.net (Postfix) with ESMTPSA id BFA7F1BF206; Wed, 20 Apr 2022 00:43:33 +0000 (UTC) From: joao@overdrivepizza.com To: linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org Cc: joao@overdrivepizza.com, peterz@infradead.org, jpoimboe@redhat.com, andrew.cooper3@citrix.com, keescook@chromium.org, samitolvanen@google.com, mark.rutland@arm.com, hjl.tools@gmail.com, alyssa.milburn@linux.intel.com, ndesaulniers@google.com, gabriel.gomes@linux.intel.com, rick.p.edgecombe@intel.com Subject: [RFC PATCH 08/11] x86/ibt: Add CET_TEST module for IBT testing Date: Tue, 19 Apr 2022 17:42:38 -0700 Message-Id: <20220420004241.2093-9-joao@overdrivepizza.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220420004241.2093-1-joao@overdrivepizza.com> References: <20220420004241.2093-1-joao@overdrivepizza.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-hardening@vger.kernel.org From: Joao Moreira Add a kernel module that violates IBT policy on load, triggering a control protection fault and makes the enforcement visible. Signed-off-by: Joao Moreira Tinkered-from-work-by: Alyssa Milburn --- arch/x86/Kconfig.debug | 5 +++++ arch/x86/kernel/Makefile | 1 + arch/x86/kernel/cet_test.c | 30 ++++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 arch/x86/kernel/cet_test.c diff --git a/arch/x86/Kconfig.debug b/arch/x86/Kconfig.debug index d3a6f74a94bd..d2463dd912c1 100644 --- a/arch/x86/Kconfig.debug +++ b/arch/x86/Kconfig.debug @@ -279,3 +279,8 @@ endchoice config FRAME_POINTER depends on !UNWINDER_ORC && !UNWINDER_GUESS bool + +config X86_CET_TEST + depends on m + depends on X86_KERNEL_IBT + tristate "in-kernel CET testing module" diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index cb947569e9d8..a82bcd14bd40 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile @@ -149,6 +149,7 @@ obj-$(CONFIG_UNWINDER_GUESS) += unwind_guess.o obj-$(CONFIG_AMD_MEM_ENCRYPT) += sev.o obj-$(CONFIG_X86_KERNEL_FINEIBT) += fineibt.o +obj-$(CONFIG_X86_CET_TEST) += cet_test.o ### # 64 bit specific files diff --git a/arch/x86/kernel/cet_test.c b/arch/x86/kernel/cet_test.c new file mode 100644 index 000000000000..c48be8cbd0b5 --- /dev/null +++ b/arch/x86/kernel/cet_test.c @@ -0,0 +1,30 @@ +// SPDX-License-Identifier: GPL-2.0-only + +#include + +static int cet_test_init(void) +{ + pr_info("CET test, expect faults\n"); + + // FIXME: use register_die_notifier + + asm volatile( + "lea 1f(%%rip), %%rax\n" + "jmp *%%rax\n" + "nop\n" + "1:\n" + /* no endbranch */ + "nop\n" + :::"rax" + ); + return 0; +} + +static void cet_test_exit(void) +{ +} + +module_init(cet_test_init); +module_exit(cet_test_exit); + +MODULE_LICENSE("GPL v2"); -- 2.35.1