Blame SOURCES/ltrace-0.7.91-arm.patch

03779e
diff --git a/ltrace-elf.c b/ltrace-elf.c
03779e
index 92b642b..6f86d56 100644
03779e
--- a/ltrace-elf.c
03779e
+++ b/ltrace-elf.c
03779e
@@ -531,6 +531,38 @@ elf_read_relocs(struct ltelf *lte, Elf_Scn *scn, GElf_Shdr *shdr,
03779e
 	return 0;
03779e
 }
03779e
 
03779e
+int
03779e
+elf_load_dynamic_entry(struct ltelf *lte, int tag, GElf_Addr *valuep)
03779e
+{
03779e
+	Elf_Scn *scn;
03779e
+	GElf_Shdr shdr;
03779e
+	if (elf_get_section_type(lte, SHT_DYNAMIC, &scn, &shdr) < 0
03779e
+	    || scn == NULL) {
03779e
+	fail:
03779e
+		fprintf(stderr, "Couldn't get SHT_DYNAMIC: %s\n",
03779e
+			elf_errmsg(-1));
03779e
+		return -1;
03779e
+	}
03779e
+
03779e
+	Elf_Data *data = elf_loaddata(scn, &shdr);
03779e
+	if (data == NULL)
03779e
+		goto fail;
03779e
+
03779e
+	size_t j;
03779e
+	for (j = 0; j < shdr.sh_size / shdr.sh_entsize; ++j) {
03779e
+		GElf_Dyn dyn;
03779e
+		if (gelf_getdyn(data, j, &dyn) == NULL)
03779e
+			goto fail;
03779e
+
03779e
+		if(dyn.d_tag == tag) {
03779e
+			*valuep = dyn.d_un.d_ptr;
03779e
+			return 0;
03779e
+		}
03779e
+	}
03779e
+
03779e
+	return -1;
03779e
+}
03779e
+
03779e
 static int
03779e
 ltelf_read_elf(struct ltelf *lte, const char *filename)
03779e
 {
03779e
diff --git a/ltrace-elf.h b/ltrace-elf.h
03779e
index ea14512..db4ffe9 100644
03779e
--- a/ltrace-elf.h
03779e
+++ b/ltrace-elf.h
03779e
@@ -139,6 +139,10 @@ struct elf_each_symbol_t {
03779e
 int elf_read_relocs(struct ltelf *lte, Elf_Scn *scn, GElf_Shdr *shdr,
03779e
 		    struct vect *rela_vec);
03779e
 
03779e
+/* Read a given DT_ TAG from LTE.  Value is returned in *VALUEP.
03779e
+ * Returns 0 on success or a negative value on failure.  */
03779e
+int elf_load_dynamic_entry(struct ltelf *lte, int tag, GElf_Addr *valuep);
03779e
+
03779e
 /* Read, respectively, 1, 2, 4, or 8 bytes from Elf data at given
03779e
  * OFFSET, and store it in *RETP.  Returns 0 on success or a negative
03779e
  * value if there's not enough data.  */
03779e
diff --git a/sysdeps/linux-gnu/arm/arch.h b/sysdeps/linux-gnu/arm/arch.h
03779e
index 58a7fdf..6d0d902 100644
03779e
--- a/sysdeps/linux-gnu/arm/arch.h
03779e
+++ b/sysdeps/linux-gnu/arm/arch.h
03779e
@@ -22,6 +22,8 @@
03779e
 #ifndef LTRACE_ARM_ARCH_H
03779e
 #define LTRACE_ARM_ARCH_H
03779e
 
03779e
+#include <libelf.h>
03779e
+
03779e
 #define ARCH_HAVE_ENABLE_BREAKPOINT 1
03779e
 #define ARCH_HAVE_DISABLE_BREAKPOINT 1
03779e
 
03779e
@@ -47,7 +49,7 @@ struct arch_breakpoint_data {
03779e
 
03779e
 #define ARCH_HAVE_LTELF_DATA
03779e
 struct arch_ltelf_data {
03779e
-	/* We have this only for the hooks.  */
03779e
+	Elf_Data *jmprel_data;
03779e
 };
03779e
 
03779e
 #define ARCH_HAVE_LIBRARY_DATA
03779e
diff --git a/sysdeps/linux-gnu/arm/fetch.c b/sysdeps/linux-gnu/arm/fetch.c
03779e
index 5081d78..b500448 100644
03779e
--- a/sysdeps/linux-gnu/arm/fetch.c
03779e
+++ b/sysdeps/linux-gnu/arm/fetch.c
03779e
@@ -32,200 +32,12 @@
03779e
 #include "backend.h"
03779e
 #include "fetch.h"
03779e
 #include "library.h"
03779e
-#include "ltrace-elf.h"
03779e
 #include "proc.h"
03779e
 #include "ptrace.h"
03779e
 #include "regs.h"
03779e
 #include "type.h"
03779e
 #include "value.h"
03779e
 
03779e
-static int
03779e
-get_hardfp(uint64_t abi_vfp_args)
03779e
-{
03779e
-	if (abi_vfp_args == 2)
03779e
-		fprintf(stderr,
03779e
-			"Tag_ABI_VFP_args value 2 (tool chain-specific "
03779e
-			"conventions) not supported.\n");
03779e
-	return abi_vfp_args == 1;
03779e
-}
03779e
-
03779e
-int
03779e
-arch_elf_init(struct ltelf *lte, struct library *lib)
03779e
-{
03779e
-	/* Nothing in this section is strictly critical.  It's not
03779e
-	 * that much of a deal if we fail to guess right whether the
03779e
-	 * ABI is softfp or hardfp.  */
03779e
-	unsigned hardfp = 0;
03779e
-
03779e
-	Elf_Scn *scn;
03779e
-	Elf_Data *data;
03779e
-	GElf_Shdr shdr;
03779e
-	if (elf_get_section_type(lte, SHT_ARM_ATTRIBUTES, &scn, &shdr) < 0
03779e
-	    || (scn != NULL && (data = elf_loaddata(scn, &shdr)) == NULL)) {
03779e
-		fprintf(stderr,
03779e
-			"Error when obtaining ARM attribute section: %s\n",
03779e
-			elf_errmsg(-1));
03779e
-		goto done;
03779e
-
03779e
-	} else if (scn != NULL && data != NULL) {
03779e
-		GElf_Xword offset = 0;
03779e
-		uint8_t version;
03779e
-		if (elf_read_next_u8(data, &offset, &version) < 0) {
03779e
-			goto done;
03779e
-		} else if (version != 'A') {
03779e
-			fprintf(stderr, "Unsupported ARM attribute section "
03779e
-				"version %d ('%c').\n", version, version);
03779e
-			goto done;
03779e
-		}
03779e
-
03779e
-		do {
03779e
-			const char signature[] = "aeabi";
03779e
-			/* N.B. LEN is including the length field
03779e
-			 * itself.  */
03779e
-			uint32_t sec_len;
03779e
-			if (elf_read_u32(data, offset, &sec_len) < 0
03779e
-			    || !elf_can_read_next(data, offset, sec_len)) {
03779e
-				goto done;
03779e
-			}
03779e
-			const GElf_Xword next_offset = offset + sec_len;
03779e
-			offset += 4;
03779e
-
03779e
-			if (sec_len < 4 + sizeof signature
03779e
-			    || strcmp(signature, data->d_buf + offset) != 0)
03779e
-				goto skip;
03779e
-			offset += sizeof signature;
03779e
-
03779e
-			const GElf_Xword offset0 = offset;
03779e
-			uint64_t tag;
03779e
-			uint32_t sub_len;
03779e
-			if (elf_read_next_uleb128(data, &offset, &tag) < 0
03779e
-			    || elf_read_next_u32(data, &offset, &sub_len) < 0
03779e
-			    || !elf_can_read_next(data, offset0, sub_len))
03779e
-				goto done;
03779e
-
03779e
-			if (tag != 1)
03779e
-				/* IHI0045D_ABI_addenda: "section and
03779e
-				 * symbol attributes are deprecated
03779e
-				 * [...] consumers are permitted to
03779e
-				 * ignore them."  */
03779e
-				goto skip;
03779e
-
03779e
-			while (offset < offset0 + sub_len) {
03779e
-				if (elf_read_next_uleb128(data,
03779e
-							  &offset, &tag) < 0)
03779e
-					goto done;
03779e
-
03779e
-				switch (tag) {
03779e
-					uint64_t v;
03779e
-				case 6: /* Tag_CPU_arch */
03779e
-				case 7: /* Tag_CPU_arch_profile */
03779e
-				case 8: /* Tag_ARM_ISA_use */
03779e
-				case 9: /* Tag_THUMB_ISA_use */
03779e
-				case 10: /* Tag_FP_arch */
03779e
-				case 11: /* Tag_WMMX_arch */
03779e
-				case 12: /* Tag_Advanced_SIMD_arch */
03779e
-				case 13: /* Tag_PCS_config */
03779e
-				case 14: /* Tag_ABI_PCS_R9_use */
03779e
-				case 15: /* Tag_ABI_PCS_RW_data */
03779e
-				case 16: /* Tag_ABI_PCS_RO_data */
03779e
-				case 17: /* Tag_ABI_PCS_GOT_use */
03779e
-				case 18: /* Tag_ABI_PCS_wchar_t */
03779e
-				case 19: /* Tag_ABI_FP_rounding */
03779e
-				case 20: /* Tag_ABI_FP_denormal */
03779e
-				case 21: /* Tag_ABI_FP_exceptions */
03779e
-				case 22: /* Tag_ABI_FP_user_exceptions */
03779e
-				case 23: /* Tag_ABI_FP_number_model */
03779e
-				case 24: /* Tag_ABI_align_needed */
03779e
-				case 25: /* Tag_ABI_align_preserved */
03779e
-				case 26: /* Tag_ABI_enum_size */
03779e
-				case 27: /* Tag_ABI_HardFP_use */
03779e
-				case 28: /* Tag_ABI_VFP_args */
03779e
-				case 29: /* Tag_ABI_WMMX_args */
03779e
-				case 30: /* Tag_ABI_optimization_goals */
03779e
-				case 31: /* Tag_ABI_FP_optimization_goals */
03779e
-				case 32: /* Tag_compatibility */
03779e
-				case 34: /* Tag_CPU_unaligned_access */
03779e
-				case 36: /* Tag_FP_HP_extension */
03779e
-				case 38: /* Tag_ABI_FP_16bit_format */
03779e
-				case 42: /* Tag_MPextension_use */
03779e
-				case 70: /* Tag_MPextension_use as well */
03779e
-				case 44: /* Tag_DIV_use */
03779e
-				case 64: /* Tag_nodefaults */
03779e
-				case 66: /* Tag_T2EE_use */
03779e
-				case 68: /* Tag_Virtualization_use */
03779e
-				uleb128:
03779e
-					if (elf_read_next_uleb128
03779e
-						(data, &offset, &v) < 0)
03779e
-						goto done;
03779e
-					if (tag == 28)
03779e
-						hardfp = get_hardfp(v);
03779e
-					if (tag != 32)
03779e
-						continue;
03779e
-
03779e
-					/* Tag 32 has two arguments,
03779e
-					 * fall through.  */
03779e
-
03779e
-				case 4:	/* Tag_CPU_raw_name */
03779e
-				case 5:	/* Tag_CPU_name */
03779e
-				case 65: /* Tag_also_compatible_with */
03779e
-				case 67: /* Tag_conformance */
03779e
-				ntbs:
03779e
-					offset += strlen(data->d_buf
03779e
-							 + offset) + 1;
03779e
-					continue;
03779e
-				}
03779e
-
03779e
-				/* Handle unknown tags in a generic
03779e
-				 * manner, if possible.  */
03779e
-				if (tag <= 32) {
03779e
-					fprintf(stderr,
03779e
-						"Unknown tag %lld "
03779e
-						"at offset %#llx "
03779e
-						"of ARM attribute section.",
03779e
-						tag, offset);
03779e
-					goto skip;
03779e
-				} else if (tag % 2 == 0) {
03779e
-					goto uleb128;
03779e
-				} else {
03779e
-					goto ntbs;
03779e
-				}
03779e
-			}
03779e
-
03779e
-		skip:
03779e
-			offset = next_offset;
03779e
-
03779e
-		} while (elf_can_read_next(data, offset, 1));
03779e
-
03779e
-	}
03779e
-
03779e
-done:
03779e
-	lib->arch.hardfp = hardfp;
03779e
-	return 0;
03779e
-}
03779e
-
03779e
-void
03779e
-arch_elf_destroy(struct ltelf *lte)
03779e
-{
03779e
-}
03779e
-
03779e
-int
03779e
-arch_library_init(struct library *lib)
03779e
-{
03779e
-	return 0;
03779e
-}
03779e
-
03779e
-void
03779e
-arch_library_destroy(struct library *lib)
03779e
-{
03779e
-}
03779e
-
03779e
-int
03779e
-arch_library_clone(struct library *retp, struct library *lib)
03779e
-{
03779e
-	retp->arch = lib->arch;
03779e
-	return 0;
03779e
-}
03779e
-
03779e
 enum {
03779e
 	/* How many (double) VFP registers the AAPCS uses for
03779e
 	 * parameter passing.  */
03779e
diff --git a/sysdeps/linux-gnu/arm/plt.c b/sysdeps/linux-gnu/arm/plt.c
03779e
index d1bf7ca..9e9e37f 100644
03779e
--- a/sysdeps/linux-gnu/arm/plt.c
03779e
+++ b/sysdeps/linux-gnu/arm/plt.c
03779e
@@ -1,5 +1,6 @@
03779e
 /*
03779e
  * This file is part of ltrace.
03779e
+ * Copyright (C) 2013 Petr Machata, Red Hat Inc.
03779e
  * Copyright (C) 2010 Zach Welch, CodeSourcery
03779e
  * Copyright (C) 2004,2008,2009 Juan Cespedes
03779e
  *
03779e
@@ -20,20 +21,205 @@
03779e
  */
03779e
 
03779e
 #include <gelf.h>
03779e
+#include <stdio.h>
03779e
+#include <string.h>
03779e
 
03779e
 #include "proc.h"
03779e
 #include "library.h"
03779e
 #include "ltrace-elf.h"
03779e
 
03779e
 static int
03779e
+get_hardfp(uint64_t abi_vfp_args)
03779e
+{
03779e
+	if (abi_vfp_args == 2)
03779e
+		fprintf(stderr,
03779e
+			"Tag_ABI_VFP_args value 2 (tool chain-specific "
03779e
+			"conventions) not supported.\n");
03779e
+	return abi_vfp_args == 1;
03779e
+}
03779e
+
03779e
+int
03779e
+arch_elf_init(struct ltelf *lte, struct library *lib)
03779e
+{
03779e
+	GElf_Addr jmprel_addr;
03779e
+	Elf_Scn *jmprel_sec;
03779e
+	GElf_Shdr jmprel_shdr;
03779e
+	if (elf_load_dynamic_entry(lte, DT_JMPREL, &jmprel_addr) < 0
03779e
+	    || elf_get_section_covering(lte, jmprel_addr,
03779e
+					&jmprel_sec, &jmprel_shdr) < 0
03779e
+	    || jmprel_sec == NULL)
03779e
+		return -1;
03779e
+
03779e
+	lte->arch.jmprel_data = elf_loaddata(jmprel_sec, &jmprel_shdr);
03779e
+	if (lte->arch.jmprel_data == NULL)
03779e
+		return -1;
03779e
+
03779e
+	/* Nothing in this section is strictly critical.  It's not
03779e
+	 * that much of a deal if we fail to guess right whether the
03779e
+	 * ABI is softfp or hardfp.  */
03779e
+	unsigned hardfp = 0;
03779e
+
03779e
+	Elf_Scn *scn;
03779e
+	Elf_Data *data;
03779e
+	GElf_Shdr shdr;
03779e
+	if (elf_get_section_type(lte, SHT_ARM_ATTRIBUTES, &scn, &shdr) < 0
03779e
+	    || (scn != NULL && (data = elf_loaddata(scn, &shdr)) == NULL)) {
03779e
+		fprintf(stderr,
03779e
+			"Error when obtaining ARM attribute section: %s\n",
03779e
+			elf_errmsg(-1));
03779e
+		goto done;
03779e
+
03779e
+	} else if (scn != NULL && data != NULL) {
03779e
+		GElf_Xword offset = 0;
03779e
+		uint8_t version;
03779e
+		if (elf_read_next_u8(data, &offset, &version) < 0) {
03779e
+			goto done;
03779e
+		} else if (version != 'A') {
03779e
+			fprintf(stderr, "Unsupported ARM attribute section "
03779e
+				"version %d ('%c').\n", version, version);
03779e
+			goto done;
03779e
+		}
03779e
+
03779e
+		do {
03779e
+			const char signature[] = "aeabi";
03779e
+			/* N.B. LEN is including the length field
03779e
+			 * itself.  */
03779e
+			uint32_t sec_len;
03779e
+			if (elf_read_u32(data, offset, &sec_len) < 0
03779e
+			    || !elf_can_read_next(data, offset, sec_len)) {
03779e
+				goto done;
03779e
+			}
03779e
+			const GElf_Xword next_offset = offset + sec_len;
03779e
+			offset += 4;
03779e
+
03779e
+			if (sec_len < 4 + sizeof signature
03779e
+			    || strcmp(signature, data->d_buf + offset) != 0)
03779e
+				goto skip;
03779e
+			offset += sizeof signature;
03779e
+
03779e
+			const GElf_Xword offset0 = offset;
03779e
+			uint64_t tag;
03779e
+			uint32_t sub_len;
03779e
+			if (elf_read_next_uleb128(data, &offset, &tag) < 0
03779e
+			    || elf_read_next_u32(data, &offset, &sub_len) < 0
03779e
+			    || !elf_can_read_next(data, offset0, sub_len))
03779e
+				goto done;
03779e
+
03779e
+			if (tag != 1)
03779e
+				/* IHI0045D_ABI_addenda: "section and
03779e
+				 * symbol attributes are deprecated
03779e
+				 * [...] consumers are permitted to
03779e
+				 * ignore them."  */
03779e
+				goto skip;
03779e
+
03779e
+			while (offset < offset0 + sub_len) {
03779e
+				if (elf_read_next_uleb128(data,
03779e
+							  &offset, &tag) < 0)
03779e
+					goto done;
03779e
+
03779e
+				switch (tag) {
03779e
+					uint64_t v;
03779e
+				case 6: /* Tag_CPU_arch */
03779e
+				case 7: /* Tag_CPU_arch_profile */
03779e
+				case 8: /* Tag_ARM_ISA_use */
03779e
+				case 9: /* Tag_THUMB_ISA_use */
03779e
+				case 10: /* Tag_FP_arch */
03779e
+				case 11: /* Tag_WMMX_arch */
03779e
+				case 12: /* Tag_Advanced_SIMD_arch */
03779e
+				case 13: /* Tag_PCS_config */
03779e
+				case 14: /* Tag_ABI_PCS_R9_use */
03779e
+				case 15: /* Tag_ABI_PCS_RW_data */
03779e
+				case 16: /* Tag_ABI_PCS_RO_data */
03779e
+				case 17: /* Tag_ABI_PCS_GOT_use */
03779e
+				case 18: /* Tag_ABI_PCS_wchar_t */
03779e
+				case 19: /* Tag_ABI_FP_rounding */
03779e
+				case 20: /* Tag_ABI_FP_denormal */
03779e
+				case 21: /* Tag_ABI_FP_exceptions */
03779e
+				case 22: /* Tag_ABI_FP_user_exceptions */
03779e
+				case 23: /* Tag_ABI_FP_number_model */
03779e
+				case 24: /* Tag_ABI_align_needed */
03779e
+				case 25: /* Tag_ABI_align_preserved */
03779e
+				case 26: /* Tag_ABI_enum_size */
03779e
+				case 27: /* Tag_ABI_HardFP_use */
03779e
+				case 28: /* Tag_ABI_VFP_args */
03779e
+				case 29: /* Tag_ABI_WMMX_args */
03779e
+				case 30: /* Tag_ABI_optimization_goals */
03779e
+				case 31: /* Tag_ABI_FP_optimization_goals */
03779e
+				case 32: /* Tag_compatibility */
03779e
+				case 34: /* Tag_CPU_unaligned_access */
03779e
+				case 36: /* Tag_FP_HP_extension */
03779e
+				case 38: /* Tag_ABI_FP_16bit_format */
03779e
+				case 42: /* Tag_MPextension_use */
03779e
+				case 70: /* Tag_MPextension_use as well */
03779e
+				case 44: /* Tag_DIV_use */
03779e
+				case 64: /* Tag_nodefaults */
03779e
+				case 66: /* Tag_T2EE_use */
03779e
+				case 68: /* Tag_Virtualization_use */
03779e
+				uleb128:
03779e
+					if (elf_read_next_uleb128
03779e
+						(data, &offset, &v) < 0)
03779e
+						goto done;
03779e
+					if (tag == 28)
03779e
+						hardfp = get_hardfp(v);
03779e
+					if (tag != 32)
03779e
+						continue;
03779e
+
03779e
+					/* Tag 32 has two arguments,
03779e
+					 * fall through.  */
03779e
+
03779e
+				case 4:	/* Tag_CPU_raw_name */
03779e
+				case 5:	/* Tag_CPU_name */
03779e
+				case 65: /* Tag_also_compatible_with */
03779e
+				case 67: /* Tag_conformance */
03779e
+				ntbs:
03779e
+					offset += strlen(data->d_buf
03779e
+							 + offset) + 1;
03779e
+					continue;
03779e
+				}
03779e
+
03779e
+				/* Handle unknown tags in a generic
03779e
+				 * manner, if possible.  */
03779e
+				if (tag <= 32) {
03779e
+					fprintf(stderr,
03779e
+						"Unknown tag %lld "
03779e
+						"at offset %#llx "
03779e
+						"of ARM attribute section.",
03779e
+						tag, offset);
03779e
+					goto skip;
03779e
+				} else if (tag % 2 == 0) {
03779e
+					goto uleb128;
03779e
+				} else {
03779e
+					goto ntbs;
03779e
+				}
03779e
+			}
03779e
+
03779e
+		skip:
03779e
+			offset = next_offset;
03779e
+
03779e
+		} while (elf_can_read_next(data, offset, 1));
03779e
+
03779e
+	}
03779e
+
03779e
+done:
03779e
+	lib->arch.hardfp = hardfp;
03779e
+	return 0;
03779e
+}
03779e
+
03779e
+void
03779e
+arch_elf_destroy(struct ltelf *lte)
03779e
+{
03779e
+}
03779e
+
03779e
+static int
03779e
 arch_plt_entry_has_stub(struct ltelf *lte, size_t off) {
03779e
-	uint16_t op = *(uint16_t *)((char *)lte->relplt->d_buf + off);
03779e
+	char *buf = (char *) lte->arch.jmprel_data->d_buf;
03779e
+	uint16_t op = *(uint16_t *) (buf + off);
03779e
 	return op == 0x4778;
03779e
 }
03779e
 
03779e
 GElf_Addr
03779e
 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela) {
03779e
-	size_t start = lte->relplt->d_size + 12;
03779e
+	size_t start = lte->arch.jmprel_data->d_size + 12;
03779e
 	size_t off = start + 20, i;
03779e
 	for (i = 0; i < ndx; i++)
03779e
 		off += arch_plt_entry_has_stub(lte, off) ? 16 : 12;
03779e
@@ -47,3 +233,21 @@ sym2addr(struct process *proc, struct library_symbol *sym)
03779e
 {
03779e
 	return sym->enter_addr;
03779e
 }
03779e
+
03779e
+int
03779e
+arch_library_init(struct library *lib)
03779e
+{
03779e
+	return 0;
03779e
+}
03779e
+
03779e
+void
03779e
+arch_library_destroy(struct library *lib)
03779e
+{
03779e
+}
03779e
+
03779e
+int
03779e
+arch_library_clone(struct library *retp, struct library *lib)
03779e
+{
03779e
+	retp->arch = lib->arch;
03779e
+	return 0;
03779e
+}
03779e
diff --git a/sysdeps/linux-gnu/ppc/plt.c b/sysdeps/linux-gnu/ppc/plt.c
03779e
index 5e3ffe1..3ec1397 100644
03779e
--- a/sysdeps/linux-gnu/ppc/plt.c
03779e
+++ b/sysdeps/linux-gnu/ppc/plt.c
03779e
@@ -402,38 +402,6 @@ get_glink_vma(struct ltelf *lte, GElf_Addr ppcgot, Elf_Data *plt_data)
03779e
 }
03779e
 
03779e
 static int
03779e
-load_dynamic_entry(struct ltelf *lte, int tag, GElf_Addr *valuep)
03779e
-{
03779e
-	Elf_Scn *scn;
03779e
-	GElf_Shdr shdr;
03779e
-	if (elf_get_section_type(lte, SHT_DYNAMIC, &scn, &shdr) < 0
03779e
-	    || scn == NULL) {
03779e
-	fail:
03779e
-		fprintf(stderr, "Couldn't get SHT_DYNAMIC: %s\n",
03779e
-			elf_errmsg(-1));
03779e
-		return -1;
03779e
-	}
03779e
-
03779e
-	Elf_Data *data = elf_loaddata(scn, &shdr);
03779e
-	if (data == NULL)
03779e
-		goto fail;
03779e
-
03779e
-	size_t j;
03779e
-	for (j = 0; j < shdr.sh_size / shdr.sh_entsize; ++j) {
03779e
-		GElf_Dyn dyn;
03779e
-		if (gelf_getdyn(data, j, &dyn) == NULL)
03779e
-			goto fail;
03779e
-
03779e
-		if(dyn.d_tag == tag) {
03779e
-			*valuep = dyn.d_un.d_ptr;
03779e
-			return 0;
03779e
-		}
03779e
-	}
03779e
-
03779e
-	return -1;
03779e
-}
03779e
-
03779e
-static int
03779e
 nonzero_data(Elf_Data *data)
03779e
 {
03779e
 	/* We are not supposed to get here if there's no PLT.  */
03779e
@@ -488,8 +456,8 @@ arch_elf_init(struct ltelf *lte, struct library *lib)
03779e
 	Elf_Scn *rela_sec;
03779e
 	GElf_Shdr rela_shdr;
03779e
 	if ((lte->ehdr.e_machine == EM_PPC64 || lte->arch.secure_plt)
03779e
-	    && load_dynamic_entry(lte, DT_RELA, &rela) == 0
03779e
-	    && load_dynamic_entry(lte, DT_RELASZ, &relasz) == 0
03779e
+	    && elf_load_dynamic_entry(lte, DT_RELA, &rela) == 0
03779e
+	    && elf_load_dynamic_entry(lte, DT_RELASZ, &relasz) == 0
03779e
 	    && elf_get_section_covering(lte, rela, &rela_sec, &rela_shdr) == 0
03779e
 	    && rela_sec != NULL) {
03779e
 
03779e
@@ -509,7 +477,7 @@ arch_elf_init(struct ltelf *lte, struct library *lib)
03779e
 
03779e
 	if (lte->ehdr.e_machine == EM_PPC && lte->arch.secure_plt) {
03779e
 		GElf_Addr ppcgot;
03779e
-		if (load_dynamic_entry(lte, DT_PPC_GOT, &ppcgot) < 0) {
03779e
+		if (elf_load_dynamic_entry(lte, DT_PPC_GOT, &ppcgot) < 0) {
03779e
 			fprintf(stderr, "couldn't find DT_PPC_GOT\n");
03779e
 			return -1;
03779e
 		}
03779e
@@ -522,7 +490,8 @@ arch_elf_init(struct ltelf *lte, struct library *lib)
03779e
 
03779e
 	} else if (lte->ehdr.e_machine == EM_PPC64) {
03779e
 		GElf_Addr glink_vma;
03779e
-		if (load_dynamic_entry(lte, DT_PPC64_GLINK, &glink_vma) < 0) {
03779e
+		if (elf_load_dynamic_entry(lte, DT_PPC64_GLINK,
03779e
+					   &glink_vma) < 0) {
03779e
 			fprintf(stderr, "couldn't find DT_PPC64_GLINK\n");
03779e
 			return -1;
03779e
 		}
03779e
@@ -532,8 +501,8 @@ arch_elf_init(struct ltelf *lte, struct library *lib)
03779e
 
03779e
 	} else {
03779e
 		/* By exhaustion--PPC32 BSS.  */
03779e
-		if (load_dynamic_entry(lte, DT_PLTGOT,
03779e
-				       &lib->arch.pltgot_addr) < 0) {
03779e
+		if (elf_load_dynamic_entry(lte, DT_PLTGOT,
03779e
+					   &lib->arch.pltgot_addr) < 0) {
03779e
 			fprintf(stderr, "couldn't find DT_PLTGOT\n");
03779e
 			return -1;
03779e
 		}