]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
elf: Pass the fd to note processing
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Wed, 28 Oct 2020 15:17:06 +0000 (15:17 +0000)
committerSzabolcs Nagy <szabolcs.nagy@arm.com>
Wed, 25 Nov 2020 15:25:13 +0000 (15:25 +0000)
To handle GNU property notes on aarch64 some segments need to
be mmaped again, so the fd of the loaded ELF module is needed.

When the fd is not available (kernel loaded modules), then -1
is passed.

The fd is passed to both _dl_process_pt_gnu_property and
_dl_process_pt_note for consistency. Target specific note
processing functions are updated accordingly.

elf/dl-load.c
elf/rtld.c
sysdeps/aarch64/dl-prop.h
sysdeps/generic/dl-prop.h
sysdeps/generic/ldsodefs.h
sysdeps/x86/dl-prop.h

index b0d65f32cc37b7a9fdc43b89dc70ea0c2af39eb7..74039f22a6b5067042cb1d53b364871b7214f714 100644 (file)
@@ -837,10 +837,12 @@ _dl_init_paths (const char *llp, const char *source)
 
 /* Process PT_GNU_PROPERTY program header PH in module L after
    PT_LOAD segments are mapped.  Only one NT_GNU_PROPERTY_TYPE_0
-   note is handled which contains processor specific properties.  */
+   note is handled which contains processor specific properties.
+   FD is -1 for the kernel mapped main executable otherwise it is
+   the fd used for loading module L.  */
 
 void
-_dl_process_pt_gnu_property (struct link_map *l, const ElfW(Phdr) *ph)
+_dl_process_pt_gnu_property (struct link_map *l, int fd, const ElfW(Phdr) *ph)
 {
   const ElfW(Nhdr) *note = (const void *) (ph->p_vaddr + l->l_addr);
   const ElfW(Addr) size = ph->p_memsz;
@@ -887,7 +889,7 @@ _dl_process_pt_gnu_property (struct link_map *l, const ElfW(Phdr) *ph)
              last_type = type;
 
              /* Target specific property processing.  */
-             if (_dl_process_gnu_property (l, type, datasz, ptr) == 0)
+             if (_dl_process_gnu_property (l, fd, type, datasz, ptr) == 0)
                return;
 
              /* Check the next property item.  */
@@ -1379,10 +1381,10 @@ cannot enable executable stack as shared object requires");
     switch (ph[-1].p_type)
       {
       case PT_NOTE:
-       _dl_process_pt_note (l, &ph[-1]);
+       _dl_process_pt_note (l, fd, &ph[-1]);
        break;
       case PT_GNU_PROPERTY:
-       _dl_process_pt_gnu_property (l, &ph[-1]);
+       _dl_process_pt_gnu_property (l, fd, &ph[-1]);
        break;
       }
 
index c4ffc8d4b771b8d0751438041547acac2b967ceb..ec62567580795aca1748cdb42da7a85a9b62f0d3 100644 (file)
@@ -1540,10 +1540,10 @@ dl_main (const ElfW(Phdr) *phdr,
     switch (ph[-1].p_type)
       {
       case PT_NOTE:
-       _dl_process_pt_note (main_map, &ph[-1]);
+       _dl_process_pt_note (main_map, -1, &ph[-1]);
        break;
       case PT_GNU_PROPERTY:
-       _dl_process_pt_gnu_property (main_map, &ph[-1]);
+       _dl_process_pt_gnu_property (main_map, -1, &ph[-1]);
        break;
       }
 
index b0785bda831bcb2cb8233038b8be477f11b36773..2016d1472e1e69b82040dee1c11f2dd96efdfc90 100644 (file)
@@ -35,13 +35,13 @@ _dl_open_check (struct link_map *m)
 }
 
 static inline void __attribute__ ((always_inline))
-_dl_process_pt_note (struct link_map *l, const ElfW(Phdr) *ph)
+_dl_process_pt_note (struct link_map *l, int fd, const ElfW(Phdr) *ph)
 {
 }
 
 static inline int
-_dl_process_gnu_property (struct link_map *l, uint32_t type, uint32_t datasz,
-                         void *data)
+_dl_process_gnu_property (struct link_map *l, int fd, uint32_t type,
+                         uint32_t datasz, void *data)
 {
   if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
     {
index f1cf576fe3c69bc9dacb42526a65c2c11563b4e8..df27ff8e6a09c5c84f5f3b132eac1b293247d383 100644 (file)
@@ -37,15 +37,15 @@ _dl_open_check (struct link_map *m)
 }
 
 static inline void __attribute__ ((always_inline))
-_dl_process_pt_note (struct link_map *l, const ElfW(Phdr) *ph)
+_dl_process_pt_note (struct link_map *l, int fd, const ElfW(Phdr) *ph)
 {
 }
 
 /* Called for each property in the NT_GNU_PROPERTY_TYPE_0 note of L,
    processing of the properties continues until this returns 0.  */
 static inline int __attribute__ ((always_inline))
-_dl_process_gnu_property (struct link_map *l, uint32_t type, uint32_t datasz,
-                         void *data)
+_dl_process_gnu_property (struct link_map *l, int fd, uint32_t type,
+                         uint32_t datasz, void *data)
 {
   return 0;
 }
index b1da03cafee54ed21c758e71becbb1b1dcb7ac2e..89eab4719df7b2209ecb309b7c7b0fbf0c9e0ecb 100644 (file)
@@ -933,8 +933,9 @@ extern void _dl_rtld_di_serinfo (struct link_map *loader,
                                 Dl_serinfo *si, bool counting);
 
 /* Process PT_GNU_PROPERTY program header PH in module L after
-   PT_LOAD segments are mapped.  */
-void _dl_process_pt_gnu_property (struct link_map *l, const ElfW(Phdr) *ph);
+   PT_LOAD segments are mapped from file FD.  */
+void _dl_process_pt_gnu_property (struct link_map *l, int fd,
+                                 const ElfW(Phdr) *ph);
 
 
 /* Search loaded objects' symbol tables for a definition of the symbol
index 89911e19e238ff64a080cf787a29e949da133718..4eb3b85a7bd1a1982724effb2ffeb08e621d3b9e 100644 (file)
@@ -145,15 +145,15 @@ _dl_process_cet_property_note (struct link_map *l,
 }
 
 static inline void __attribute__ ((unused))
-_dl_process_pt_note (struct link_map *l, const ElfW(Phdr) *ph)
+_dl_process_pt_note (struct link_map *l, int fd, const ElfW(Phdr) *ph)
 {
   const ElfW(Nhdr) *note = (const void *) (ph->p_vaddr + l->l_addr);
   _dl_process_cet_property_note (l, note, ph->p_memsz, ph->p_align);
 }
 
 static inline int __attribute__ ((always_inline))
-_dl_process_gnu_property (struct link_map *l, uint32_t type, uint32_t datasz,
-                         void *data)
+_dl_process_gnu_property (struct link_map *l, int fd, uint32_t type,
+                         uint32_t datasz, void *data)
 {
   return 0;
 }