powerpc: Relocate stinfo->main
authorAlan Modra <amodra@gmail.com>
Sun, 23 Jan 2022 23:55:49 +0000 (10:25 +1030)
committerAlan Modra <amodra@gmail.com>
Sat, 9 Apr 2022 23:07:38 +0000 (08:37 +0930)
start_addresses in sysdeps/powerpc/powerpc64/start.S is historical
baggage that should disappear.  Until someone does that, relocating
stinfo->main by hand is one solution to the fact that the field may be
unrelocated at the time it is accessed.  This is similar to what is
done for dynamic tags via the D_PTR macro.  stinfo->init and
stinfo->fini are zero in both powerpc64/start.S and powerpc32/start.S,
so make it a little more obvious they are unused by passing NULLs to
LIBC_START_MAIN.  The makefile change is needed to pick up
elf/dl-static-tls.h from dl-machine.h.

Reviewed-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
sysdeps/unix/sysv/linux/powerpc/Makefile
sysdeps/unix/sysv/linux/powerpc/libc-start.c

index fc7c29c6953b8b5ee8bb18bb363043de57d9158f..93783cae0000dc897eec970a018793b7c3e353e2 100644 (file)
@@ -27,3 +27,9 @@ tests += $(tests-static)
 tests += test-gettimebasefreq
 tests += test-powerpc-linux-sysconf
 endif
+
+ifeq ($(subdir),csu)
+# to relocate stinfo->main
+CPPFLAGS-libc-start.o += -I../elf
+CPPFLAGS-libc-start.op += -I../elf
+endif
index bb97d161454d645020dcd094b575ccea2b550088..8413c84783002a9bfe7becbe34c1800638f057cd 100644 (file)
 #ifndef SHARED
 #include <hwcapinfo.h>
 #endif
+#if ENABLE_STATIC_PIE && !defined SHARED
+/* For elf_machine_load_address.  */
+#include <dl-machine.h>
+#endif
 
 /* The main work is done in the generic function.  */
 #define LIBC_START_MAIN generic_start_main
@@ -95,8 +99,15 @@ __libc_start_main_impl (int argc, char **argv,
   __tcb_parse_hwcap_and_convert_at_platform ();
 #endif
 
-  return generic_start_main (stinfo->main, argc, argv, auxvec,
-                            stinfo->init, stinfo->fini, rtld_fini,
+  void *stmain = stinfo->main;
+#if ENABLE_STATIC_PIE && !defined SHARED
+  struct link_map *map = _dl_get_dl_main_map ();
+  if (!map->l_relocated)
+    stmain = (char *) stmain + elf_machine_load_address ();
+#endif
+
+  return generic_start_main (stmain, argc, argv, auxvec,
+                            NULL, NULL, rtld_fini,
                             stack_on_entry);
 }
 DEFINE_LIBC_START_MAIN_VERSION