aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-18 19:29:44 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-18 19:29:44 -0400
commitf389c4984a0fee80c5322e4d1ec3aa207e9b5c01 (patch)
tree4d46e10d0503cb6c07caf1fa679eae4dc30a4ab5 /arch
parent23815f88df6c45247f3755dc7857f4013264c04f (diff)
downloadmusl-f389c4984a0fee80c5322e4d1ec3aa207e9b5c01.zip
musl-f389c4984a0fee80c5322e4d1ec3aa207e9b5c01.tar.gz
musl-f389c4984a0fee80c5322e4d1ec3aa207e9b5c01.tar.bz2
make the dynamic linker find its path file relative to its own location
prior to this change, using a non-default syslibdir was impractical on systems where the ordinary library paths contain musl-incompatible library files. the file containing search paths was always taken from /etc, which would either correspond to a system-wide musl installation, or fail to exist at all, resulting in searching of the default library path. the new search strategy is safe even for suid programs because the pathname used comes from the PT_INTERP header of the program being run, rather than any external input. as part of this change, I have also begun differentiating the names of arch variants that differ by endianness or floating point calling convention. the corresponding changes in the build system and and gcc wrapper script (to use an alternate dynamic linker name) for these configurations have not yet been made.
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/reloc.h15
-rw-r--r--arch/i386/reloc.h2
-rw-r--r--arch/microblaze/reloc.h9
-rw-r--r--arch/mips/reloc.h9
-rw-r--r--arch/powerpc/reloc.h2
-rw-r--r--arch/x86_64/reloc.h2
6 files changed, 33 insertions, 6 deletions
diff --git a/arch/arm/reloc.h b/arch/arm/reloc.h
index b41314d..9ca0b48 100644
--- a/arch/arm/reloc.h
+++ b/arch/arm/reloc.h
@@ -1,7 +1,20 @@
#include <string.h>
#include <elf.h>
+#include <endian.h>
-#define ETC_LDSO_PATH "/etc/ld-musl-arm.path"
+#if __BYTE_ORDER == __BIG_ENDIAN
+#define ENDIAN_SUFFIX "eb"
+#else
+#define ENDIAN_SUFFIX ""
+#endif
+
+#if __SOFTFP__
+#define FP_SUFFIX ""
+#else
+#define FP_SUFFIX "hf"
+#endif
+
+#define LDSO_ARCH "arm" ENDIAN_SUFFIX FP_SUFFIX
#define IS_COPY(x) ((x)==R_ARM_COPY)
#define IS_PLT(x) ((x)==R_ARM_JUMP_SLOT)
diff --git a/arch/i386/reloc.h b/arch/i386/reloc.h
index da0bc05..3923b54 100644
--- a/arch/i386/reloc.h
+++ b/arch/i386/reloc.h
@@ -1,7 +1,7 @@
#include <string.h>
#include <elf.h>
-#define ETC_LDSO_PATH "/etc/ld-musl-i386.path"
+#define LDSO_ARCH "i386"
#define IS_COPY(x) ((x)==R_386_COPY)
#define IS_PLT(x) ((x)==R_386_JMP_SLOT)
diff --git a/arch/microblaze/reloc.h b/arch/microblaze/reloc.h
index 81add5e..60f7422 100644
--- a/arch/microblaze/reloc.h
+++ b/arch/microblaze/reloc.h
@@ -1,7 +1,14 @@
#include <string.h>
#include <elf.h>
+#include <endian.h>
-#define ETC_LDSO_PATH "/etc/ld-musl-microblaze.path"
+#if __BYTE_ORDER == __LITTLE_ENDIAN
+#define ENDIAN_SUFFIX "el"
+#else
+#define ENDIAN_SUFFIX ""
+#endif
+
+#define LDSO_ARCH "microblaze" ENDIAN_SUFFIX
#define IS_COPY(x) ((x)==R_MICROBLAZE_COPY)
#define IS_PLT(x) ((x)==R_MICROBLAZE_JUMP_SLOT)
diff --git a/arch/mips/reloc.h b/arch/mips/reloc.h
index f5e9c77..4c035f3 100644
--- a/arch/mips/reloc.h
+++ b/arch/mips/reloc.h
@@ -1,7 +1,14 @@
#include <string.h>
#include <elf.h>
+#include <endian.h>
-#define ETC_LDSO_PATH "/etc/ld-musl-mips.path"
+#if __BYTE_ORDER == __LITTLE_ENDIAN
+#define ENDIAN_SUFFIX "el"
+#else
+#define ENDIAN_SUFFIX ""
+#endif
+
+#define LDSO_ARCH "mips" ENDIAN_SUFFIX
#define IS_COPY(x) ((x)==R_MIPS_COPY)
#define IS_PLT(x) 1
diff --git a/arch/powerpc/reloc.h b/arch/powerpc/reloc.h
index 113dfa1..80b9ebc 100644
--- a/arch/powerpc/reloc.h
+++ b/arch/powerpc/reloc.h
@@ -1,7 +1,7 @@
#include <string.h>
#include <elf.h>
-#define ETC_LDSO_PATH "/etc/ld-musl-powerpc.path"
+#define LDSO_ARCH "powerpc" ENDIAN_SUFFIX
#define IS_COPY(x) ((x)==R_PPC_COPY)
#define IS_PLT(x) ((x)==R_PPC_JMP_SLOT)
diff --git a/arch/x86_64/reloc.h b/arch/x86_64/reloc.h
index 38a6073..28cf7cc 100644
--- a/arch/x86_64/reloc.h
+++ b/arch/x86_64/reloc.h
@@ -2,7 +2,7 @@
#include <string.h>
#include <elf.h>
-#define ETC_LDSO_PATH "/etc/ld-musl-x86_64.path"
+#define LDSO_ARCH "x86_64"
#define IS_COPY(x) ((x)==R_X86_64_COPY)
#define IS_PLT(x) ((x)==R_X86_64_JUMP_SLOT)