summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2014-12-02 16:22:08 +0000
committerjhb <jhb@FreeBSD.org>2014-12-02 16:22:08 +0000
commitc6eaca622d0df6795d15c9201f60eafee663bb3a (patch)
tree15d6ded87e9a0fda9b8db43b0b13787cdbfc8118 /libexec
parent1daffcfa0280a2d85ea78a541a61589b78055d03 (diff)
downloadFreeBSD-src-c6eaca622d0df6795d15c9201f60eafee663bb3a.zip
FreeBSD-src-c6eaca622d0df6795d15c9201f60eafee663bb3a.tar.gz
The runtime linker needs to include a path to itself in the link map
it exports to the debugger. It currently has two choices: it can use a compiled-in path (/libexec/ld-elf.so.1) or it can use the path stored in the interpreter path in the binary being executed. The runtime linker currently prefers the second. However, this is usually wrong for compat32 binaries since the binary specifies the path of rtld on a 32-bit system (/libexec/ld-elf.so.1) instead of the actual path (/libexec/ld-elf32.so.1). For now, always assume the compiled in path (/libexec/ld-elf32.so.1) as the rtld path and ignore the path in the binary for the 32-bit runtime linker. Differential Revision: https://reviews.freebsd.org/D1236 Reviewed by: kib
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/rtld.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c
index cc7afda..6bbb10c 100644
--- a/libexec/rtld-elf/rtld.c
+++ b/libexec/rtld-elf/rtld.c
@@ -503,6 +503,7 @@ _rtld(Elf_Addr *sp, func_ptr_type *exit_proc, Obj_Entry **objp)
aux_info[AT_STACKPROT]->a_un.a_val != 0)
stack_prot = aux_info[AT_STACKPROT]->a_un.a_val;
+#ifndef COMPAT_32BIT
/*
* Get the actual dynamic linker pathname from the executable if
* possible. (It should always be possible.) That ensures that
@@ -515,6 +516,7 @@ _rtld(Elf_Addr *sp, func_ptr_type *exit_proc, Obj_Entry **objp)
obj_rtld.path = xstrdup(obj_main->interp);
__progname = obj_rtld.path;
}
+#endif
digest_dynamic(obj_main, 0);
dbg("%s valid_hash_sysv %d valid_hash_gnu %d dynsymcount %d",
OpenPOWER on IntegriCloud