65faa39
commit 5f36e5c70107ecb59281ef57f9f1c0e37ec3076d
65faa39
Author: H.J. Lu <hjl.tools@gmail.com>
65faa39
Date:   Thu Sep 23 09:06:49 2021 -0700
65faa39
65faa39
    ld.so: Initialize bootstrap_map.l_ld_readonly [BZ #28340]
65faa39
    
65faa39
    1. Define DL_RO_DYN_SECTION to initalize bootstrap_map.l_ld_readonly
65faa39
    before calling elf_get_dynamic_info to get dynamic info in bootstrap_map,
65faa39
    2. Define a single
65faa39
    
65faa39
    static inline bool
65faa39
    dl_relocate_ld (const struct link_map *l)
65faa39
    {
65faa39
      /* Don't relocate dynamic section if it is readonly  */
65faa39
      return !(l->l_ld_readonly || DL_RO_DYN_SECTION);
65faa39
    }
65faa39
    
65faa39
    This updates BZ #28340 fix.
65faa39
    
65faa39
    (cherry picked from commit 2ec99d8c42b2ff1a1231e4df462a0910a9b7fdef)
65faa39
65faa39
diff --git a/elf/rtld.c b/elf/rtld.c
65faa39
index 405166d62b34847c..d83ac1bdc40a6081 100644
65faa39
--- a/elf/rtld.c
65faa39
+++ b/elf/rtld.c
65faa39
@@ -548,6 +548,7 @@ _dl_start (void *arg)
65faa39
 
65faa39
   /* Read our own dynamic section and fill in the info array.  */
65faa39
   bootstrap_map.l_ld = (void *) bootstrap_map.l_addr + elf_machine_dynamic ();
65faa39
+  bootstrap_map.l_ld_readonly = DL_RO_DYN_SECTION;
65faa39
   elf_get_dynamic_info (&bootstrap_map);
65faa39
 
65faa39
 #if NO_TLS_OFFSET != 0
65faa39
diff --git a/sysdeps/generic/dl-relocate-ld.h b/sysdeps/generic/dl-relocate-ld.h
65faa39
index 5fae206db9941e97..cfb86c2d6a2394c1 100644
65faa39
--- a/sysdeps/generic/dl-relocate-ld.h
65faa39
+++ b/sysdeps/generic/dl-relocate-ld.h
65faa39
@@ -19,14 +19,7 @@
65faa39
 #ifndef _DL_RELOCATE_LD_H
65faa39
 #define _DL_RELOCATE_LD_H
65faa39
 
65faa39
-/* Return true if dynamic section in the shared library L should be
65faa39
-   relocated.  */
65faa39
-
65faa39
-static inline bool
65faa39
-dl_relocate_ld (const struct link_map *l)
65faa39
-{
65faa39
-  /* Don't relocate dynamic section if it is readonly  */
65faa39
-  return !l->l_ld_readonly;
65faa39
-}
65faa39
+/* The dynamic section is writable.  */
65faa39
+#define DL_RO_DYN_SECTION 0
65faa39
 
65faa39
 #endif /* _DL_RELOCATE_LD_H */
65faa39
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
65faa39
index ed10953f34b96c49..fcbbf6974827cdf1 100644
65faa39
--- a/sysdeps/generic/ldsodefs.h
65faa39
+++ b/sysdeps/generic/ldsodefs.h
65faa39
@@ -69,6 +69,16 @@ __BEGIN_DECLS
65faa39
    `ElfW(TYPE)' is used in place of `Elf32_TYPE' or `Elf64_TYPE'.  */
65faa39
 #define ELFW(type)	_ElfW (ELF, __ELF_NATIVE_CLASS, type)
65faa39
 
65faa39
+/* Return true if dynamic section in the shared library L should be
65faa39
+   relocated.  */
65faa39
+
65faa39
+static inline bool
65faa39
+dl_relocate_ld (const struct link_map *l)
65faa39
+{
65faa39
+  /* Don't relocate dynamic section if it is readonly  */
65faa39
+  return !(l->l_ld_readonly || DL_RO_DYN_SECTION);
65faa39
+}
65faa39
+
65faa39
 /* All references to the value of l_info[DT_PLTGOT],
65faa39
   l_info[DT_STRTAB], l_info[DT_SYMTAB], l_info[DT_RELA],
65faa39
   l_info[DT_REL], l_info[DT_JMPREL], and l_info[VERSYMIDX (DT_VERSYM)]
65faa39
diff --git a/sysdeps/mips/dl-relocate-ld.h b/sysdeps/mips/dl-relocate-ld.h
65faa39
index 0c18d9a567cad54f..376ad75dd1695fe3 100644
65faa39
--- a/sysdeps/mips/dl-relocate-ld.h
65faa39
+++ b/sysdeps/mips/dl-relocate-ld.h
65faa39
@@ -19,14 +19,7 @@
65faa39
 #ifndef _DL_RELOCATE_LD_H
65faa39
 #define _DL_RELOCATE_LD_H
65faa39
 
65faa39
-/* Return true if dynamic section in the shared library L should be
65faa39
-   relocated.  */
65faa39
-
65faa39
-static inline bool
65faa39
-dl_relocate_ld (const struct link_map *l)
65faa39
-{
65faa39
-  /* Never relocate dynamic section.  */
65faa39
-  return false;
65faa39
-}
65faa39
+/* The dynamic section is readonly.  */
65faa39
+#define DL_RO_DYN_SECTION 1
65faa39
 
65faa39
 #endif /* _DL_RELOCATE_LD_H */
65faa39
diff --git a/sysdeps/riscv/dl-relocate-ld.h b/sysdeps/riscv/dl-relocate-ld.h
65faa39
index 10327454b17a7097..2ab2b8ac6c09af82 100644
65faa39
--- a/sysdeps/riscv/dl-relocate-ld.h
65faa39
+++ b/sysdeps/riscv/dl-relocate-ld.h
65faa39
@@ -19,14 +19,7 @@
65faa39
 #ifndef _DL_RELOCATE_LD_H
65faa39
 #define _DL_RELOCATE_LD_H
65faa39
 
65faa39
-/* Return true if dynamic section in the shared library L should be
65faa39
-   relocated.  */
65faa39
-
65faa39
-static inline bool
65faa39
-dl_relocate_ld (const struct link_map *l)
65faa39
-{
65faa39
-  /* Never relocate dynamic section for ABI compatibility.  */
65faa39
-  return false;
65faa39
-}
65faa39
+/* The dynamic section is readonly for ABI compatibility.  */
65faa39
+#define DL_RO_DYN_SECTION 1
65faa39
 
65faa39
 #endif /* _DL_RELOCATE_LD_H */