diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-12-07 06:55:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-12-07 06:55:06 +0000 |
commit | 00a121627cc88aca49d342f674c49d6c14ae1622 (patch) | |
tree | fa317ddf265be3bf577d4096ba07b58245b30b19 /sysdeps | |
parent | bbd0bf24e928516d47a63d0076d9abafb8ce6e95 (diff) | |
download | glibc-00a121627cc88aca49d342f674c49d6c14ae1622.tar glibc-00a121627cc88aca49d342f674c49d6c14ae1622.tar.gz glibc-00a121627cc88aca49d342f674c49d6c14ae1622.tar.bz2 glibc-00a121627cc88aca49d342f674c49d6c14ae1622.zip |
2004-12-01 Jakub Jelinek <jakub@redhat.com>
* elf/rtld.c (process_envvars): Don't consider LD_SHOW_AUXV
and LD_DYNAMIC_WEAK if __libc_enable_secure.
If __libc_enable_secure, /etc/suid-debug doesn't exist and
program will be actually run, turn off all debugging.
* sysdeps/generic/unsecvars.h (UNSECURE_ENVVARS): Add LD_DEBUG,
LD_DYNAMIC_WEAK and LD_SHOW_AUXV.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/unsecvars.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/generic/unsecvars.h b/sysdeps/generic/unsecvars.h index 8a9dd43ce9..eb77b260d8 100644 --- a/sysdeps/generic/unsecvars.h +++ b/sysdeps/generic/unsecvars.h @@ -5,9 +5,12 @@ "LD_PRELOAD\0" \ "LD_LIBRARY_PATH\0" \ "LD_ORIGIN_PATH\0" \ + "LD_DEBUG\0" \ "LD_DEBUG_OUTPUT\0" \ "LD_PROFILE\0" \ "LD_USE_LOAD_BIAS\0" \ + "LD_DYNAMIC_WEAK\0" \ + "LD_SHOW_AUXV\0" \ "GCONV_PATH\0" \ "GETCONF_DIR\0" \ "HOSTALIASES\0" \ |