1998-03-07 19:24:35 +00:00
|
|
|
/*-
|
|
|
|
* 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.
|
|
|
|
*
|
1999-08-28 00:22:10 +00:00
|
|
|
* $FreeBSD$
|
1998-03-07 19:24:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
.text
|
|
|
|
.align 4
|
|
|
|
.globl .rtld_start
|
|
|
|
.type .rtld_start,@function
|
|
|
|
.rtld_start:
|
2003-05-24 17:37:51 +00:00
|
|
|
xorq %rbp,%rbp # Clear frame pointer for good form
|
2004-03-21 01:43:39 +00:00
|
|
|
subq $24,%rsp # A place to store exit procedure addr
|
2003-05-24 17:37:51 +00:00
|
|
|
movq %rdi,%r12
|
|
|
|
movq %rsp,%rsi # save address of exit proc
|
|
|
|
movq %rsp,%rdx # construct address of obj_main
|
|
|
|
addq $8,%rdx
|
2015-03-29 18:53:21 +00:00
|
|
|
call _rtld # Call rtld(sp); returns entry point
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %rsi # Get exit procedure address
|
|
|
|
movq %r12,%rdi # *ap
|
1998-03-07 19:24:35 +00:00
|
|
|
/*
|
2003-05-24 17:37:51 +00:00
|
|
|
* At this point, %rax contains the entry point of the main program, and
|
|
|
|
* %rdx contains a pointer to a termination function that should be
|
1998-03-07 19:24:35 +00:00
|
|
|
* registered with atexit(). (crt1.o registers it.)
|
|
|
|
*/
|
|
|
|
.globl .rtld_goto_main
|
|
|
|
.rtld_goto_main: # This symbol exists just to make debugging easier.
|
2003-05-24 17:37:51 +00:00
|
|
|
jmp *%rax # Enter main program
|
1998-03-07 19:24:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2011-10-16 14:30:28 +00:00
|
|
|
* We are careful to preserve all registers, even the caller-save
|
1998-03-07 19:24:35 +00:00
|
|
|
* registers. That is because this code may be invoked by low-level
|
|
|
|
* assembly-language code that is not ABI-compliant.
|
2003-05-24 17:37:51 +00:00
|
|
|
*
|
|
|
|
* Stack map:
|
2004-03-21 01:43:39 +00:00
|
|
|
* reloff 0x60
|
|
|
|
* obj 0x58
|
|
|
|
* spare 0x50
|
2003-05-24 17:37:51 +00:00
|
|
|
* rflags 0x48
|
|
|
|
* rax 0x40
|
|
|
|
* rdx 0x38
|
|
|
|
* rcx 0x30
|
|
|
|
* rsi 0x28
|
|
|
|
* rdi 0x20
|
|
|
|
* r8 0x18
|
|
|
|
* r9 0x10
|
|
|
|
* r10 0x8
|
|
|
|
* r11 0x0
|
1998-03-07 19:24:35 +00:00
|
|
|
*/
|
|
|
|
.align 4
|
|
|
|
.globl _rtld_bind_start
|
|
|
|
.type _rtld_bind_start,@function
|
|
|
|
_rtld_bind_start:
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_startproc
|
|
|
|
.cfi_adjust_cfa_offset 16
|
2004-03-21 01:43:39 +00:00
|
|
|
subq $8,%rsp
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
2003-05-24 17:37:51 +00:00
|
|
|
pushfq # Save rflags
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %rax # Save %rax
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %rax,-32
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %rdx # Save %rdx
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %rdx,-40
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %rcx # Save %rcx
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %rcx,-48
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %rsi # Save %rsi
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %rsi,-56
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %rdi # Save %rdi
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %rdi,-64
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %r8 # Save %r8
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %r8,-72
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %r9 # Save %r9
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %r9,-80
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %r10 # Save %r10
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %r10,-88
|
2003-05-24 17:37:51 +00:00
|
|
|
pushq %r11 # Save %r11
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset 8
|
|
|
|
.cfi_offset %r11,-96
|
2003-05-24 17:37:51 +00:00
|
|
|
|
2004-03-21 01:43:39 +00:00
|
|
|
movq 0x58(%rsp),%rdi # Fetch obj argument
|
|
|
|
movq 0x60(%rsp),%rsi # Fetch reloff argument
|
2003-05-24 17:37:51 +00:00
|
|
|
leaq (%rsi,%rsi,2),%rsi # multiply by 3
|
|
|
|
leaq (,%rsi,8),%rsi # now 8, for 24 (sizeof Elf_Rela)
|
1998-03-07 19:24:35 +00:00
|
|
|
|
2015-03-29 18:53:21 +00:00
|
|
|
call _rtld_bind # Transfer control to the binder
|
2003-05-24 17:37:51 +00:00
|
|
|
/* Now %rax contains the entry point of the function being called. */
|
1998-03-07 19:24:35 +00:00
|
|
|
|
2004-03-21 01:43:39 +00:00
|
|
|
movq %rax,0x60(%rsp) # Store target over reloff argument
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %r11 # Restore %r11
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %r11
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %r10 # Restore %r10
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %r10
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %r9 # Restore %r9
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %r9
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %r8 # Restore %r8
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %r8
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %rdi # Restore %rdi
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %rdi
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %rsi # Restore %rsi
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %rsi
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %rcx # Restore %rcx
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %rcx
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %rdx # Restore %rdx
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %rdx
|
2003-05-24 17:37:51 +00:00
|
|
|
popq %rax # Restore %rax
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
|
|
|
.cfi_restore %rax
|
2003-05-24 17:37:51 +00:00
|
|
|
popfq # Restore rflags
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_adjust_cfa_offset -8
|
2004-03-21 01:43:39 +00:00
|
|
|
leaq 16(%rsp),%rsp # Discard spare, obj, do not change rflags
|
1998-03-07 19:24:35 +00:00
|
|
|
ret # "Return" to target address
|
2014-04-14 22:44:50 +00:00
|
|
|
.cfi_endproc
|
|
|
|
.size _rtld_bind_start, . - _rtld_bind_start
|
2011-01-07 16:07:05 +00:00
|
|
|
|
2017-01-16 14:49:29 +00:00
|
|
|
.align 4
|
|
|
|
.globl rtld_dynamic_addr
|
|
|
|
.type rtld_dynamic_addr,@function
|
|
|
|
rtld_dynamic_addr:
|
|
|
|
.cfi_startproc
|
|
|
|
.weak _DYNAMIC
|
|
|
|
.hidden _DYNAMIC
|
|
|
|
lea _DYNAMIC(%rip),%rax
|
|
|
|
ret
|
|
|
|
.cfi_endproc
|
|
|
|
.size rtld_dynamic_addr, . - rtld_dynamic_addr
|
|
|
|
|
2011-01-07 16:07:05 +00:00
|
|
|
.section .note.GNU-stack,"",%progbits
|