summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorjdp <jdp@FreeBSD.org>1998-03-07 19:24:35 +0000
committerjdp <jdp@FreeBSD.org>1998-03-07 19:24:35 +0000
commit0e58850b93b2207550434648a864ccca98e60c95 (patch)
tree9c30da6156dad6b70480075fefda42f6c51df4a0 /libexec
parentbc665bbb6c10663c54b5f3d49f5e3f82d0a5ca32 (diff)
downloadFreeBSD-src-0e58850b93b2207550434648a864ccca98e60c95.zip
FreeBSD-src-0e58850b93b2207550434648a864ccca98e60c95.tar.gz
Import the ELF dynamic linker. This is the ElfKit version with
quite a few enhancements and bug fixes. There are still some known deficiencies, but it should be adequate to get us started with ELF. Submitted by: John Polstra <jdp@polstra.com>
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/amd64/rtld_start.S83
1 files changed, 83 insertions, 0 deletions
diff --git a/libexec/rtld-elf/amd64/rtld_start.S b/libexec/rtld-elf/amd64/rtld_start.S
new file mode 100644
index 0000000..f82e564
--- /dev/null
+++ b/libexec/rtld-elf/amd64/rtld_start.S
@@ -0,0 +1,83 @@
+/*-
+ * Copyright 1996-1998 John D. Polstra.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $Id: rtld_start.S,v 1.6 1998/03/05 21:05:53 jdp Exp $
+ */
+
+ .text
+ .align 4
+ .globl .rtld_start
+ .type .rtld_start,@function
+.rtld_start:
+ xorl %ebp,%ebp # Clear frame pointer for good form
+ movl %esp,%eax # Save initial stack pointer
+ subl $4,%esp # A place to store exit procedure addr
+ pushl %esp # Pass its address to rtld
+ pushl %eax # Pass initial stack pointer to rtld
+ call _rtld@PLT # Call rtld(sp); returns entry point
+ addl $8,%esp # Remove arguments from stack
+ popl %edx # Get exit procedure address
+/*
+ * At this point, %eax contains the entry point of the main program, and
+ * %edx contains a pointer to a termination function that should be
+ * registered with atexit(). (crt1.o registers it.)
+ */
+.globl .rtld_goto_main
+.rtld_goto_main: # This symbol exists just to make debugging easier.
+ jmp *%eax # Enter main program
+
+
+/*
+ * Binder entry point. Control is transferred to here by code in the PLT.
+ * On entry, there are two arguments on the stack. In ascending address
+ * order, they are (1) "obj", a pointer to the calling object's Obj_Entry,
+ * and (2) "reloff", the byte offset of the appropriate relocation entry
+ * in the PLT relocation table.
+ *
+ * We are careful to preserve all registers, even the the caller-save
+ * registers. That is because this code may be invoked by low-level
+ * assembly-language code that is not ABI-compliant.
+ */
+ .align 4
+ .globl _rtld_bind_start
+ .type _rtld_bind_start,@function
+_rtld_bind_start:
+ pushf # Save eflags
+ pushl %eax # Save %eax
+ pushl %edx # Save %edx
+ pushl %ecx # Save %ecx
+ pushl 20(%esp) # Copy reloff argument
+ pushl 20(%esp) # Copy obj argument
+
+ call _rtld_bind@PLT # Transfer control to the binder
+ /* Now %eax contains the entry point of the function being called. */
+
+ addl $8,%esp # Discard binder arguments
+ movl %eax,20(%esp) # Store target over obj argument
+ popl %ecx # Restore %ecx
+ popl %edx # Restore %edx
+ popl %eax # Restore %eax
+ popf # Restore eflags
+ leal 4(%esp),%esp # Discard reloff, do not change eflags
+ ret # "Return" to target address
OpenPOWER on IntegriCloud