public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kexec_core: Accept unaccepted kexec destination addresses
@ 2024-10-21  3:45 Yan Zhao
  2024-10-21 14:33 ` Eric W. Biederman
  0 siblings, 1 reply; 18+ messages in thread
From: Yan Zhao @ 2024-10-21  3:45 UTC (permalink / raw)
  To: ebiederm
  Cc: kexec, linux-kernel, linux-coco, x86, rick.p.edgecombe,
	kirill.shutemov, Yan Zhao

The kexec destination addresses (incluing those for purgatory, the new
kernel, boot params/cmdline, and initrd) are searched from the free area of
memblock or RAM resources. Since they are not allocated by the currently
running kernel, it is not guaranteed that they are accepted before
relocating the new kernel.

Accept the destination addresses for the new kernel, as the new kernel may
not be able to or may not accept them by itself.

Place the "accept" code immediately after the destination addresses pass
sanity checks, so the code can be shared by both users of the kexec_load
and kexec_file_load system calls.

Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: Yan Zhao <yan.y.zhao@intel.com>
---
 kernel/kexec_core.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/kernel/kexec_core.c b/kernel/kexec_core.c
index c0caa14880c3..d97376eafc1a 100644
--- a/kernel/kexec_core.c
+++ b/kernel/kexec_core.c
@@ -210,6 +210,16 @@ int sanity_check_segment_list(struct kimage *image)
 	}
 #endif
 
+	/*
+	 * The destination addresses are searched from free memory ranges rather
+	 * than being allocated from the current kernel, so they are not
+	 * guaranteed to be accepted by the current kernel.
+	 * Accept those initial pages for the new kernel since it may not be
+	 * able to accept them by itself.
+	 */
+	for (i = 0; i < nr_segments; i++)
+		accept_memory(image->segment[i].mem, image->segment[i].memsz);
+
 	return 0;
 }
 
base-commit: 8cf0b93919e13d1e8d4466eb4080a4c4d9d66d7b
-- 
2.43.2


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

end of thread, other threads:[~2024-12-04  9:22 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21  3:45 [PATCH] kexec_core: Accept unaccepted kexec destination addresses Yan Zhao
2024-10-21 14:33 ` Eric W. Biederman
2024-10-22  3:12   ` Yan Zhao
2024-10-22 12:06   ` Kirill A. Shutemov
2024-10-23 15:44     ` Eric W. Biederman
2024-10-24  0:15       ` Yan Zhao
2024-10-24  0:26         ` Yan Zhao
2024-11-26 11:38         ` Baoquan He
2024-11-27 10:01           ` Yan Zhao
2024-11-28 15:19             ` Baoquan He
2024-11-29  5:52               ` Yan Zhao
2024-12-02 14:17                 ` Baoquan He
2024-12-03 10:06                   ` Yan Zhao
2024-12-03 10:30                     ` Baoquan He
2024-12-04  9:19                       ` Yan Zhao
2024-10-25 13:56       ` Kirill A. Shutemov
2024-11-04  8:35         ` Kirill A. Shutemov
2024-11-08 12:29           ` Kirill A. Shutemov

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