Blame SOURCES/ltrace-0.7.91-x86_64-irelative.patch

f84355
@@ -, +, @@ 
f84355
 relocation
f84355
- In general they are.  But IRELATIVE relocations are sorted to come
f84355
  last, and PLT entries are not sorted accordingly.
f84355
---
f84355
 sysdeps/linux-gnu/x86/arch.h |   11 +++++
f84355
 sysdeps/linux-gnu/x86/plt.c  |  101 +++++++++++++++++++++++++++++++++++++++++-
f84355
 2 files changed, 111 insertions(+), 1 deletions(-)
f84355
--- a/sysdeps/linux-gnu/x86/arch.h	
f84355
+++ a/sysdeps/linux-gnu/x86/arch.h	
f84355
@@ -19,6 +19,10 @@ 
f84355
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
f84355
  * 02110-1301 USA
f84355
  */
f84355
+#ifndef LTRACE_X86_ARCH_H
f84355
+#define LTRACE_X86_ARCH_H
f84355
+
f84355
+#include "vect.h"
f84355
 
f84355
 #define BREAKPOINT_VALUE {0xcc}
f84355
 #define BREAKPOINT_LENGTH 1
f84355
@@ -30,9 +34,16 @@ 
f84355
 
f84355
 #define ARCH_HAVE_ADD_PLT_ENTRY
f84355
 
f84355
+#define ARCH_HAVE_LTELF_DATA
f84355
+struct arch_ltelf_data {
f84355
+	struct vect plt_map;
f84355
+};
f84355
+
f84355
 #ifdef __x86_64__
f84355
 #define LT_ELFCLASS	ELFCLASS64
f84355
 #define LT_ELF_MACHINE	EM_X86_64
f84355
 #endif
f84355
 #define LT_ELFCLASS2	ELFCLASS32
f84355
 #define LT_ELF_MACHINE2	EM_386
f84355
+
f84355
+#endif /* LTRACE_X86_ARCH_H */
f84355
--- a/sysdeps/linux-gnu/x86/plt.c	
f84355
+++ a/sysdeps/linux-gnu/x86/plt.c	
f84355
@@ -27,10 +27,19 @@ 
f84355
 #include "library.h"
f84355
 #include "trace.h"
f84355
 
f84355
+static GElf_Addr
f84355
+x86_plt_offset(uint32_t i)
f84355
+{
f84355
+	/* Skip the first PLT entry, which contains a stub to call the
f84355
+	 * resolver.  */
f84355
+	return (i + 1) * 16;
f84355
+}
f84355
+
f84355
 GElf_Addr
f84355
 arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela *rela)
f84355
 {
f84355
-	return lte->plt_addr + (ndx + 1) * 16;
f84355
+	uint32_t i = *VECT_ELEMENT(&lte->arch.plt_map, uint32_t, ndx);
f84355
+	return x86_plt_offset(i) + lte->plt_addr;
f84355
 }
f84355
 
f84355
 void *
f84355
@@ -62,3 +71,93 @@ arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte,
f84355
 
f84355
 	return PLT_DEFAULT;
f84355
 }
f84355
+
f84355
+int
f84355
+arch_elf_init(struct ltelf *lte, struct library *lib)
f84355
+{
f84355
+	VECT_INIT(&lte->arch.plt_map, unsigned int);
f84355
+
f84355
+	/* IRELATIVE slots may make the whole situation a fair deal
f84355
+	 * more complex.  On x86{,_64}, the PLT slots are not
f84355
+	 * presented in the order of the corresponding relocations,
f84355
+	 * but in the order it which these symbols are in the symbol
f84355
+	 * table.  That's static symbol table, which may be stripped
f84355
+	 * off, not dynsym--that doesn't contain IFUNC symbols at all.
f84355
+	 * So we have to decode each PLT entry to figure out what
f84355
+	 * entry it corresponds to.  We need to interpret the PLT
f84355
+	 * table to figure this out.
f84355
+	 *
f84355
+	 * On i386, the PLT entry format is as follows:
f84355
+	 *
f84355
+	 *	8048300:   ff 25 0c a0 04 08       jmp    *0x804a00c
f84355
+	 *	8048306:   68 20 00 00 00          push   $0x20
f84355
+	 *	804830b:   e9 e0 ff ff ff          jmp    80482f0 <_init+0x30>
f84355
+	 *
f84355
+	 * For PIE binaries it is the following:
f84355
+	 *
f84355
+	 *	    410:   ff a3 10 00 00 00       jmp    *0x10(%ebx)
f84355
+	 *	    416:   68 00 00 00 00          push   $0x0
f84355
+	 *	    41b:   e9 d0 ff ff ff          jmp    3f0 <_init+0x30>
f84355
+	 *
f84355
+	 * On x86_64, it is:
f84355
+	 *
f84355
+	 *	 400420:   ff 25 f2 0b 20 00       jmpq   *0x200bf2(%rip)        # 601018 <_GLOBAL_OFFSET_TABLE_+0x18>
f84355
+	 *	 400426:   68 00 00 00 00          pushq  $0x0
f84355
+	 *	 40042b:   e9 e0 ff ff ff          jmpq   400410 <_init+0x18>
f84355
+	 *
f84355
+         * On i386, the argument to push is an offset of relocation to
f84355
+	 * use.  The first PLT slot has an offset of 0x0, the second
f84355
+	 * 0x8, etc.  On x86_64, it's directly the index that we are
f84355
+	 * looking for.
f84355
+	 */
f84355
+
f84355
+	/* Here we scan the PLT table and initialize a map of
f84355
+	 * relocation->slot number in lte->arch.plt_map.  */
f84355
+
f84355
+	size_t i;
f84355
+	for (i = 0; i < vect_size(&lte->plt_relocs); ++i) {
f84355
+
f84355
+		GElf_Addr offset = x86_plt_offset(i);
f84355
+		uint32_t reloc_arg = 0;
f84355
+
f84355
+		uint8_t byte;
f84355
+		if (elf_read_next_u8(lte->plt_data, &offset, &byte) < 0
f84355
+		    || byte != 0xff
f84355
+		    || elf_read_next_u8(lte->plt_data, &offset, &byte) < 0
f84355
+		    || (byte != 0xa3 && byte != 0x25))
f84355
+			goto next;
f84355
+
f84355
+		/* Skip immediate argument in the instruction.  */
f84355
+		offset += 4;
f84355
+
f84355
+		if (elf_read_next_u8(lte->plt_data, &offset, &byte) < 0
f84355
+		    || byte != 0x68
f84355
+		    || elf_read_next_u32(lte->plt_data,
f84355
+					 &offset, &reloc_arg) < 0) {
f84355
+			reloc_arg = 0;
f84355
+			goto next;
f84355
+		}
f84355
+
f84355
+		if (lte->ehdr.e_machine == EM_386) {
f84355
+			if (reloc_arg % 8 != 0) {
f84355
+				reloc_arg = 0;
f84355
+				goto next;
f84355
+			}
f84355
+			reloc_arg /= 8;
f84355
+		}
f84355
+
f84355
+	next:
f84355
+		if (VECT_PUSHBACK(&lte->arch.plt_map, &reloc_arg) < 0) {
f84355
+			arch_elf_destroy(lte);
f84355
+			return -1;
f84355
+		}
f84355
+	}
f84355
+
f84355
+	return 0;
f84355
+}
f84355
+
f84355
+void
f84355
+arch_elf_destroy(struct ltelf *lte)
f84355
+{
f84355
+	VECT_DESTROY(&lte->arch.plt_map, uint32_t, NULL, NULL);
f84355
+}
f84355
--