2001-12-15 00:25:22 +03:00
|
|
|
/* $NetBSD: rtld_start.S,v 1.8 2001/12/14 21:25:23 thorpej Exp $ */
|
1996-12-16 23:37:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
|
|
|
* 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.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
1999-04-19 03:12:59 +04:00
|
|
|
.extern _GLOBAL_OFFSET_TABLE_
|
2001-12-13 23:30:48 +03:00
|
|
|
.extern _GOT_END_
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1999-04-19 03:12:59 +04:00
|
|
|
/*
|
|
|
|
* Note: we can call ourselves LEAF even though we use callee-saved
|
|
|
|
* registers because we're the root of the call graph.
|
|
|
|
*/
|
|
|
|
LEAF_NOPROFILE(_rtld_start, 0)
|
1996-12-16 23:37:55 +03:00
|
|
|
.set noreorder
|
2001-12-14 00:34:04 +03:00
|
|
|
br pv, 1f
|
|
|
|
1: LDGP(pv)
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1999-04-19 03:12:59 +04:00
|
|
|
/* XXX Partially relocate ourself. */
|
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
/* Step 1 -- Figure out the displacement */
|
|
|
|
|
2001-12-14 00:34:04 +03:00
|
|
|
br t2, 2f /* get our PC */
|
|
|
|
2: ldiq t3, 2b /* get where the linker thought we were */
|
1996-12-16 23:37:55 +03:00
|
|
|
subq t2, t3, t8 /* calculate the displacement */
|
|
|
|
|
|
|
|
|
|
|
|
/* Step 2 -- Find bounds of global offset table */
|
|
|
|
|
|
|
|
lda t5, _GLOBAL_OFFSET_TABLE_
|
|
|
|
addq t8, t5, t9 /* add the displacement */
|
2001-12-13 23:30:48 +03:00
|
|
|
lda t4, _GOT_END_ /* Get the address of the end of the GOT */
|
1996-12-16 23:37:55 +03:00
|
|
|
addq t8, t4, t10 /* add the displacement */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Step 3 -- Every entry in the global offset table needs to
|
|
|
|
* modified for the displacement before any code will work.
|
|
|
|
*/
|
|
|
|
|
2001-12-14 00:34:04 +03:00
|
|
|
3: ldq t1, 0(t9) /* load the value */
|
1996-12-16 23:37:55 +03:00
|
|
|
addq t8, t1, t1 /* add the displacement */
|
|
|
|
stq t1, 0(t9) /* save the new value */
|
|
|
|
lda t9, 8(t9) /* point to next entry */
|
|
|
|
cmpult t9, t10, t1 /* are we done? */
|
2001-12-14 00:34:04 +03:00
|
|
|
bne t1, 3b /* no, do more */
|
1996-12-16 23:37:55 +03:00
|
|
|
|
|
|
|
/*
|
1999-04-19 04:05:00 +04:00
|
|
|
* Ya! Things are far enough so we can do some dynamic linking!
|
1996-12-16 23:37:55 +03:00
|
|
|
*/
|
|
|
|
|
2001-05-28 10:10:20 +04:00
|
|
|
/* Squirrel away ps_strings. */
|
1999-04-19 04:05:00 +04:00
|
|
|
mov a3, s0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate space on the stack for the cleanup and obj_main
|
|
|
|
* entries that _rtld() will provide for us.
|
|
|
|
*/
|
|
|
|
lda sp, -16(sp)
|
|
|
|
|
|
|
|
mov sp, a0 /* v0 = _rtld(sp); */
|
|
|
|
CALL(_rtld)
|
|
|
|
|
|
|
|
ldq a1, 0(sp) /* cleanup */
|
|
|
|
ldq a2, 8(sp) /* obj_main */
|
|
|
|
lda sp, 16(sp) /* pop stack */
|
|
|
|
|
|
|
|
mov sp, a0 /* stack pointer */
|
|
|
|
mov s0, a3 /* ps_strings */
|
|
|
|
|
|
|
|
mov v0, pv /* set up PV for entry point */
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1999-04-19 03:12:59 +04:00
|
|
|
jsr ra, (v0), 0 /* (*_start)(sp, cleanup, obj, ps_strings); */
|
1996-12-16 23:37:55 +03:00
|
|
|
ldgp gp, 0(ra)
|
|
|
|
|
|
|
|
CALL(exit)
|
|
|
|
halt
|
|
|
|
END(_rtld_start)
|
|
|
|
|
2001-12-14 01:34:51 +03:00
|
|
|
#define RTLD_BIND_START_PROLOGUE \
|
|
|
|
/* at_reg already used by PLT code. */ \
|
|
|
|
.set noat ; \
|
|
|
|
\
|
|
|
|
/* \
|
|
|
|
* Allocate stack frame and preserve all registers that the \
|
|
|
|
* caller would have normally saved themselves. \
|
|
|
|
*/ \
|
|
|
|
lda sp, -168(sp) ; \
|
|
|
|
stq ra, 0(sp) ; \
|
|
|
|
stq v0, 8(sp) ; \
|
|
|
|
stq t0, 16(sp) ; \
|
|
|
|
stq t1, 24(sp) ; \
|
|
|
|
stq t2, 32(sp) ; \
|
|
|
|
stq t3, 40(sp) ; \
|
|
|
|
stq t4, 48(sp) ; \
|
|
|
|
stq t5, 56(sp) ; \
|
|
|
|
stq t6, 64(sp) ; \
|
|
|
|
stq t7, 72(sp) ; \
|
|
|
|
stq a0, 80(sp) ; \
|
|
|
|
stq a1, 88(sp) ; \
|
|
|
|
stq a2, 96(sp) ; \
|
|
|
|
stq a3, 104(sp) ; \
|
|
|
|
stq a4, 112(sp) ; \
|
|
|
|
stq a5, 120(sp) ; \
|
|
|
|
stq t8, 128(sp) ; \
|
|
|
|
stq t9, 136(sp) ; \
|
|
|
|
stq t10, 144(sp) ; \
|
|
|
|
stq t11, 152(sp) ; \
|
|
|
|
stq gp, 160(sp) ; \
|
|
|
|
\
|
|
|
|
/* \
|
|
|
|
* Load our global pointer. Note, can't use pv, since it is \
|
|
|
|
* already used by the PLT code. \
|
|
|
|
*/ \
|
|
|
|
br t0, 1f ; \
|
|
|
|
1: LDGP(t0)
|
|
|
|
|
|
|
|
#define RTLD_BIND_START_EPILOGUE \
|
|
|
|
/* Move the destination address into position. */ \
|
|
|
|
mov v0, pv ; \
|
|
|
|
\
|
|
|
|
/* Restore program registers. */ \
|
|
|
|
ldq ra, 0(sp) ; \
|
|
|
|
ldq v0, 8(sp) ; \
|
|
|
|
ldq t0, 16(sp) ; \
|
|
|
|
ldq t1, 24(sp) ; \
|
|
|
|
ldq t2, 32(sp) ; \
|
|
|
|
ldq t3, 40(sp) ; \
|
|
|
|
ldq t4, 48(sp) ; \
|
|
|
|
ldq t5, 56(sp) ; \
|
|
|
|
ldq t6, 64(sp) ; \
|
|
|
|
ldq t7, 72(sp) ; \
|
|
|
|
ldq a0, 80(sp) ; \
|
|
|
|
ldq a1, 88(sp) ; \
|
|
|
|
ldq a2, 96(sp) ; \
|
|
|
|
ldq a3, 104(sp) ; \
|
|
|
|
ldq a4, 112(sp) ; \
|
|
|
|
ldq a5, 120(sp) ; \
|
|
|
|
ldq t8, 128(sp) ; \
|
|
|
|
ldq t9, 136(sp) ; \
|
|
|
|
ldq t10, 144(sp) ; \
|
|
|
|
ldq t11, 152(sp) ; \
|
|
|
|
ldq gp, 160(sp) ; \
|
|
|
|
/* XXX LDGP? */ \
|
|
|
|
\
|
|
|
|
/* \
|
|
|
|
* We've patched the PLT; sync the I-stream. \
|
|
|
|
*/ \
|
|
|
|
imb ; \
|
|
|
|
\
|
|
|
|
/* Pop the stack frame and turn control to the destination. */ \
|
|
|
|
lda sp, 168(sp) ; \
|
|
|
|
jmp zero, (pv)
|
|
|
|
|
1999-04-19 03:12:59 +04:00
|
|
|
/*
|
|
|
|
* Lazy binding entry point, called via PLT.
|
|
|
|
*/
|
|
|
|
NESTED_NOPROFILE(_rtld_bind_start, 0, 168, ra, 0, 0)
|
|
|
|
|
2001-12-14 01:34:51 +03:00
|
|
|
RTLD_BIND_START_PROLOGUE
|
1999-04-19 03:12:59 +04:00
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
/* Set up the arguments for _rtld_bind. */
|
2001-12-13 23:30:48 +03:00
|
|
|
subq at_reg, pv, a1 /* calculate offset of reloc entry */
|
|
|
|
ldq a0, 8(pv) /* object structure */
|
|
|
|
subq a1, 20, a1 /* = (at - pv - 20) / 12 * 24 */
|
|
|
|
addq a1, a1, a1
|
2001-12-14 01:34:51 +03:00
|
|
|
|
|
|
|
CALL(_rtld_bind)
|
|
|
|
|
|
|
|
RTLD_BIND_START_EPILOGUE
|
|
|
|
|
|
|
|
END(_rtld_bind_start)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lazy binding entry point, called via PLT. This version is for the
|
|
|
|
* old PLT entry format.
|
|
|
|
*/
|
|
|
|
NESTED_NOPROFILE(_rtld_bind_start_old, 0, 168, ra, 0, 0)
|
|
|
|
|
|
|
|
RTLD_BIND_START_PROLOGUE
|
|
|
|
|
|
|
|
/* Set up the arguments for _rtld_bind. */
|
1999-04-19 03:12:59 +04:00
|
|
|
ldq a0, 8(pv) /* object structure */
|
1996-12-16 23:37:55 +03:00
|
|
|
mov at_reg, a1 /* offset of reloc entry */
|
2001-12-14 01:34:51 +03:00
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
CALL(_rtld_bind)
|
|
|
|
|
2001-12-14 01:34:51 +03:00
|
|
|
RTLD_BIND_START_EPILOGUE
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2001-12-14 01:34:51 +03:00
|
|
|
END(_rtld_bind_start_old)
|