[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 01/10] modules: make .module_license read-only
From: |
Mate Kukri |
Subject: |
[PATCH v6 01/10] modules: make .module_license read-only |
Date: |
Thu, 19 Sep 2024 17:31:55 +0100 |
From: Peter Jones <pjones@redhat.com>
Currently .module_license is set writable (that is, the section has the
SHF_WRITE flag set) in the module's ELF headers. This probably never
actually matters, but it can't possibly be correct.
This patch sets that data as "const", which causes that flag not to be
set.
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>
---
include/grub/dl.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/grub/dl.h b/include/grub/dl.h
index cd1f46c8b..750fc8d3d 100644
--- a/include/grub/dl.h
+++ b/include/grub/dl.h
@@ -119,7 +119,7 @@ grub_mod_fini (void)
#define ATTRIBUTE_USED __unused__
#endif
#define GRUB_MOD_LICENSE(license) \
- static char grub_module_license[] __attribute__ ((section (GRUB_MOD_SECTION
(module_license)), ATTRIBUTE_USED)) = "LICENSE=" license;
+ static const char grub_module_license[] __attribute__ ((section
(GRUB_MOD_SECTION (module_license)), ATTRIBUTE_USED)) = "LICENSE=" license;
#define GRUB_MOD_DEP(name) \
static const char grub_module_depend_##name[] \
__attribute__((section(GRUB_MOD_SECTION(moddeps)), ATTRIBUTE_USED)) = #name
--
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, 2024/09/19
- [PATCH v6 01/10] modules: make .module_license read-only,
Mate Kukri <=
- [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
- [PATCH v6 06/10] nx: set page permissions for loaded modules., Mate Kukri, 2024/09/19