nalika / rpms / grub2

Forked from rpms/grub2 2 years ago
Clone

Blame SOURCES/0269-modules-make-.module_license-read-only.patch

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