nalika / rpms / grub2

Forked from rpms/grub2 2 years ago
Clone
b9d01e
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
b9d01e
From: Peter Jones <pjones@redhat.com>
b9d01e
Date: Thu, 24 Feb 2022 16:32:51 -0500
b9d01e
Subject: [PATCH] modules: make .module_license read-only
b9d01e
b9d01e
Currently .module_license is set writable (that is, the section has the
b9d01e
SHF_WRITE flag set) in the module's ELF headers.  This probably never
b9d01e
actually matters, but it can't possibly be correct.
b9d01e
b9d01e
This patch sets that data as "const", which causes that flag not to be
b9d01e
set.
b9d01e
b9d01e
Signed-off-by: Peter Jones <pjones@redhat.com>
b9d01e
(cherry picked from commit 2eff3e2c9d9e6b75daa81b840c96f112ef7d5de6)
b9d01e
(cherry picked from commit 3c3c1858d1c056eee660d67888be80e7eae498ca)
b9d01e
---
b9d01e
 include/grub/dl.h | 2 +-
b9d01e
 1 file changed, 1 insertion(+), 1 deletion(-)
b9d01e
b9d01e
diff --git a/include/grub/dl.h b/include/grub/dl.h
b9d01e
index 6a3e251b45..9ec6caf3f9 100644
b9d01e
--- a/include/grub/dl.h
b9d01e
+++ b/include/grub/dl.h
b9d01e
@@ -121,7 +121,7 @@ grub_mod_fini (void)
b9d01e
 #define ATTRIBUTE_USED __unused__
b9d01e
 #endif
b9d01e
 #define GRUB_MOD_LICENSE(license)	\
b9d01e
-  static char grub_module_license[] __attribute__ ((section (GRUB_MOD_SECTION (module_license)), ATTRIBUTE_USED)) = "LICENSE=" license;
b9d01e
+  static const char grub_module_license[] __attribute__ ((section (GRUB_MOD_SECTION (module_license)), ATTRIBUTE_USED)) = "LICENSE=" license;
b9d01e
 #define GRUB_MOD_DEP(name)	\
b9d01e
 static const char grub_module_depend_##name[] \
b9d01e
  __attribute__((section(GRUB_MOD_SECTION(moddeps)), ATTRIBUTE_USED)) = #name