Teach i386 to pass &_DYNAMIC to _dl_boot_bind()
authorguenther <guenther@openbsd.org>
Sun, 7 Aug 2016 02:30:55 +0000 (02:30 +0000)
committerguenther <guenther@openbsd.org>
Sun, 7 Aug 2016 02:30:55 +0000 (02:30 +0000)
lib/csu/boot.h
lib/csu/i386/md_init.h

index da699ef..88aee95 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: boot.h,v 1.18 2016/08/07 02:30:04 guenther Exp $ */
+/*     $OpenBSD: boot.h,v 1.19 2016/08/07 02:30:55 guenther Exp $ */
 
 /*
  * Copyright (c) 1998 Per Fogelstrom, Opsycon AB
@@ -148,7 +148,7 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp)
 
 #if defined(__alpha__)
        dynp = (Elf_Dyn *)((long)_DYNAMIC);
-#elif defined(__i386__) || defined(__mips64__)
+#elif defined(__mips64__)
        dynp = (Elf_Dyn *)((long)_DYNAMIC + loff);
 #else
        dynp = dynamicp;
index 33fc12c..a7fba83 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: md_init.h,v 1.7 2016/03/20 02:32:39 guenther Exp $ */
+/* $OpenBSD: md_init.h,v 1.8 2016/08/07 02:30:55 guenther Exp $ */
 
 /*-
  * Copyright (c) 2001 Ross Harvey
@@ -95,7 +95,8 @@
        "__start:                               \n" \
        "       movl    %esp,%eax       # save SP for dl_boot_bind \n" \
        "       subl    $16*4,%esp      # allocate dl_data \n" \
-       "       pushl   $0      # push 0 for dynamicp (unused on i386) \n" \
+       "       call    1f              # push &_DYNAMIC... \n" \
+       "1:     addl    $(_DYNAMIC-1b),(%esp)   # ...for dl_boot_bind \n" \
        "       movl    %esp,%ebx               \n" \
        "       pushl   %ebx            # push dl_data for dl_boot_bind \n" \
        "                                       \n" \