diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-runtime.c | 6 | ||||
-rw-r--r-- | elf/dl-support.c | 5 | ||||
-rw-r--r-- | elf/rtld.c | 8 |
3 files changed, 17 insertions, 2 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index bff27e721e..57746092f1 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -117,6 +117,9 @@ fixup ( value = elf_machine_plt_value (l, reloc, value); /* Finally, fix up the plt itself. */ + if (__builtin_expect (_dl_bind_not, 0)) + return value; + return elf_machine_fixup_plt (l, result, reloc, rel_addr, value); } #endif @@ -205,7 +208,8 @@ profile_fixup ( value = elf_machine_plt_value (l, reloc, value); /* Store the result for later runs. */ - *resultp = value; + if (__builtin_expect (! _dl_bind_not, 1)) + *resultp = value; } (*mcount_fct) (retaddr, value); diff --git a/elf/dl-support.c b/elf/dl-support.c index 8b1103966a..ec0bbb22bb 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -67,6 +67,9 @@ void *__libc_stack_end; /* Path where the binary is found. */ const char *_dl_origin_path; +/* Nonzero if runtime lookup should not update the .got/.plt. */ +int _dl_bind_not; + /* Initially empty list of loaded objects. */ struct link_map *_dl_loaded; @@ -109,6 +112,8 @@ non_dynamic_init (void) _dl_lazy = *(getenv ("LD_BIND_NOW") ?: "") == '\0'; + _dl_bind_not = *(getenv ("LD_BIND_NOT") ?: "") != '\0'; + _dl_dynamic_weak = *(getenv ("LD_DYNAMIC_WEAK") ?: "") == '\0'; #ifdef DL_PLATFORM_INIT diff --git a/elf/rtld.c b/elf/rtld.c index 8276b79a71..1d144c536e 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -96,6 +96,7 @@ int _dl_debug_statistics; const char *_dl_inhibit_rpath; /* RPATH values which should be ignored. */ const char *_dl_origin_path; +int _dl_bind_not; /* This is a pointer to the map for the main object and through it to all loaded objects. */ @@ -1363,7 +1364,12 @@ process_envvars (enum mode *modep, int *lazyp) case 8: /* Do we bind early? */ if (memcmp (&envline[3], "BIND_NOW", 8) == 0) - bind_now = envline[12] != '\0'; + { + bind_now = envline[12] != '\0'; + break; + } + if (memcmp (&envline[3], "BIND_NOT", 8) == 0) + _dl_bind_not = envline[12] != '\0'; break; case 9: |