]> sourceware.org Git - glibc.git/commitdiff
elf: Assert that objects are relocated before their constructors run
authorFlorian Weimer <fweimer@redhat.com>
Mon, 18 May 2020 13:21:04 +0000 (15:21 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Mon, 18 May 2020 13:30:09 +0000 (15:30 +0200)
If we try to run constructors before relocation, this is always
a dynamic linker bug.  An assert is easier to notice than a call
via an invalid function pointer (which may not even produce a valid
call stack).

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
elf/dl-init.c

index 1234611a1c89532e108c8e381e9c5615e1fcffd5..518824e8a582631408acc39f3a1f523125af7518 100644 (file)
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <https://www.gnu.org/licenses/>.  */
 
+#include <assert.h>
 #include <stddef.h>
 #include <ldsodefs.h>
 #include <elf-initfini.h>
@@ -28,6 +29,11 @@ typedef void (*init_t) (int, char **, char **);
 static void
 call_init (struct link_map *l, int argc, char **argv, char **env)
 {
+  /* If the object has not been relocated, this is a bug.  The
+     function pointers are invalid in this case.  (Executables do not
+     need relocation, and neither do proxy objects.)  */
+  assert (l->l_real->l_relocated || l->l_real->l_type == lt_executable);
+
   if (l->l_init_called)
     /* This object is all done.  */
     return;
This page took 0.055338 seconds and 5 git commands to generate.