[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241002160722.20025-4-arbn@yandex-team.com>
Date: Wed, 2 Oct 2024 18:07:18 +0200
From: Andrey Ryabinin <arbn@...dex-team.com>
To: linux-kernel@...r.kernel.org
Cc: Alexander Graf <graf@...zon.com>,
James Gowans <jgowans@...zon.com>,
Mike Rapoport <rppt@...nel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-mm@...ck.org,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>,
Borislav Petkov <bp@...en8.de>,
Dave Hansen <dave.hansen@...ux.intel.com>,
x86@...nel.org,
"H. Peter Anvin" <hpa@...or.com>,
Eric Biederman <ebiederm@...ssion.com>,
kexec@...ts.infradead.org,
Steven Rostedt <rostedt@...dmis.org>,
Masami Hiramatsu <mhiramat@...nel.org>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>,
linux-trace-kernel@...r.kernel.org,
valesini@...dex-team.com,
Andrey Ryabinin <arbn@...dex-team.com>
Subject: [RFC PATCH 3/7] [hack] purgatory: disable purgatory verification.
Kstate changes data in kexec segments after the calculation
of the checksum, so we don't pass purgatroy verification stage.
Disable it for now. Proper solution will be later, in next versions of
the patchset.
Signed-off-by: Andrey Ryabinin <arbn@...dex-team.com>
---
arch/x86/purgatory/purgatory.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/x86/purgatory/purgatory.c b/arch/x86/purgatory/purgatory.c
index aea47e7939637..cdec5f21282a7 100644
--- a/arch/x86/purgatory/purgatory.c
+++ b/arch/x86/purgatory/purgatory.c
@@ -45,6 +45,8 @@ void purgatory(void)
{
int ret;
+ if (IS_ENABLED(CONFIG_KSTATE))
+ return;
ret = verify_sha256_digest();
if (ret) {
/* loop forever */
--
2.45.2
Powered by blists - more mailing lists