00db10
commit 3e058c9d7eab6d6361e7cda5ba1394bc1757c9f6
00db10
Author: H.J. Lu <hjl.tools@gmail.com>
00db10
Date:   Fri May 22 17:46:42 2015 -0700
00db10
00db10
    Don't issue an error if DT_PLTRELSZ is missing
00db10
    
00db10
    A shared object doesn't need PLT if there are no PLT relocations.  It
00db10
    shouldn't be an error if DT_PLTRELSZ is missing.
00db10
    
00db10
    	[BZ #18410]
00db10
    	* elf/dl-reloc.c (_dl_relocate_object): Don't issue an error
00db10
    	for missing DT_PLTRELSZ.
00db10
00db10
diff -rup a/elf/dl-reloc.c b/elf/dl-reloc.c
00db10
--- a/elf/dl-reloc.c	2017-10-04 16:42:16.000000000 -0400
00db10
+++ b/elf/dl-reloc.c	2017-10-05 17:44:14.486358084 -0400
00db10
@@ -259,21 +259,13 @@ _dl_relocate_object (struct link_map *l,
00db10
     ELF_DYNAMIC_RELOCATE (l, lazy, consider_profiling, skip_ifunc);
00db10
 
00db10
 #ifndef PROF
00db10
-    if (__builtin_expect (consider_profiling, 0))
00db10
+    if (__builtin_expect (consider_profiling, 0)
00db10
+	&& l->l_info[DT_PLTRELSZ] != NULL)
00db10
       {
00db10
 	/* Allocate the array which will contain the already found
00db10
 	   relocations.  If the shared object lacks a PLT (for example
00db10
 	   if it only contains lead function) the l_info[DT_PLTRELSZ]
00db10
 	   will be NULL.  */
00db10
-	if (l->l_info[DT_PLTRELSZ] == NULL)
00db10
-	  {
00db10
-	    errstring = N_("%s: no PLTREL found in object %s\n");
00db10
-	  fatal:
00db10
-	    _dl_fatal_printf (errstring,
00db10
-			      rtld_progname ?: "<program name unknown>",
00db10
-			      l->l_name);
00db10
-	  }
00db10
-
00db10
 	size_t sizeofrel = l->l_info[DT_PLTREL]->d_un.d_val == DT_RELA
00db10
 			   ? sizeof (ElfW(Rela))
00db10
 			   : sizeof (ElfW(Rel));
00db10
@@ -284,7 +276,7 @@ _dl_relocate_object (struct link_map *l,
00db10
 	  {
00db10
 	    errstring = N_("\
00db10
 %s: out of memory to store relocation results for %s\n");
00db10
-	    goto fatal;
00db10
+	    _dl_fatal_printf (errstring, rtld_progname, l->l_name);
00db10
 	  }
00db10
       }
00db10
 #endif