[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 03/10] modules: Don't allocate space for non-allocable section
From: |
Mate Kukri |
Subject: |
[PATCH v6 03/10] modules: Don't allocate space for non-allocable sections. |
Date: |
Thu, 19 Sep 2024 17:31:57 +0100 |
From: Peter Jones <pjones@redhat.com>
Currently when loading grub modules, we allocate space for all sections,
including those without SHF_ALLOC set. We then copy the sections that
/do/ have SHF_ALLOC set into the allocated memory, leaving some of our
allocation untouched forever. Additionally, on platforms with GOT
fixups and trampolines, we currently compute alignment round-ups for the
sections and sections with sh_size = 0.
This patch removes the extra space from the allocation computation, and
makes the allocation computation loop skip empty sections as the loading
loop does.
Signed-off-by: Peter Jones <pjones@redhat.com>
Signed-off-by: Jan Setje-Eilers <jan.setjeeilers@oracle.com>
Signed-off-by: Mate Kukri <mate.kukri@canonical.com>
Reviewed-By: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
---
grub-core/kern/dl.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/grub-core/kern/dl.c b/grub-core/kern/dl.c
index 0bf40caa6..37db9fab0 100644
--- a/grub-core/kern/dl.c
+++ b/grub-core/kern/dl.c
@@ -237,6 +237,9 @@ grub_dl_load_segments (grub_dl_t mod, const Elf_Ehdr *e)
i < e->e_shnum;
i++, s = (const Elf_Shdr *)((const char *) s + e->e_shentsize))
{
+ if (s->sh_size == 0 || !(s->sh_flags & SHF_ALLOC))
+ continue;
+
tsize = ALIGN_UP (tsize, s->sh_addralign) + s->sh_size;
if (talign < s->sh_addralign)
talign = s->sh_addralign;
--
2.39.2
- [PATCH v6 00/10] UEFI NX support and NX Linux loader using shim loader protocol, Mate Kukri, 2024/09/19
- [PATCH v6 02/10] modules: strip .llvm_addrsig sections and similar., Mate Kukri, 2024/09/19
- [PATCH v6 03/10] modules: Don't allocate space for non-allocable sections.,
Mate Kukri <=
- [PATCH v6 01/10] modules: make .module_license read-only, Mate Kukri, 2024/09/19
- [PATCH v6 04/10] modules: load module sections at page-aligned addresses, Mate Kukri, 2024/09/19
- [PATCH v6 08/10] efi: Provide wrappers for load_image, start_image, unload_image, Mate Kukri, 2024/09/19
- [PATCH v6 05/10] nx: add memory attribute get/set API, Mate Kukri, 2024/09/19
- [PATCH v6 09/10] efi: Use shim's loader protocol for EFI image verification and loading, Mate Kukri, 2024/09/19
- [PATCH v6 10/10] efi: Disallow fallback to legacy Linux loader when shim says NX is required., Mate Kukri, 2024/09/19
- [PATCH v6 07/10] nx: set the nx compatible flag in EFI GRUB images, Mate Kukri, 2024/09/19