1 /* $NetBSD: rtld_start.S,v 1.9 2010/09/30 19:32:40 skrll Exp $ */
4 * Copyright (c) 2002 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #include <machine/asm.h>
33 #include <machine/frame.h>
35 .import _GLOBAL_OFFSET_TABLE_
37 ENTRY($rtld_start,HPPA_FRAME_SIZE)
39 /* Start stack calling convention. */
42 stw,ma %r1, HPPA_FRAME_SIZE(%sp)
45 * Save our single argument, the ps_strings pointer. We'll need this
46 * twice later: once to call _rtld, and again to transfer to the
47 * program's entry point.
49 stw %arg0, HPPA_FRAME_ARG(0)(%r3)
52 * We can't move to C until we relocate at least the
53 * Global Offset Table. Even finding the GOT is tricky
54 * without inadvertently causing the linker to make
55 * relocations for this part of the text segment.
60 L$lpc1: addil L'_DYNAMIC - ($PIC_pcrel$0 - 8), %r19
61 ldo R'_DYNAMIC - ($PIC_pcrel$0 - 12)(%r1),%arg0
64 * Load the absolute address of the beginning of the GOT into %r19, the
65 * shared library linkage table register, leaving it ready-to-use by
66 * the dynamic linker C code.
68 addil L'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 16), %r19
69 ldo R'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 20)(%r1),%r19
72 * The linker sets the first entry in the GOT to the unrelocated
73 * address of _DYNAMIC. Subtract this from the absolute address of
74 * _DYNAMIC to get our relocbase.
77 sub %arg0, %arg1, %arg1 ; %arg1 = relocbase
78 bl _rtld_relocate_nonplt_self, %rp
79 copy %arg1, %r4 ; save for later
82 * Recover the ps_strings pointer, and take out the
85 ldw HPPA_FRAME_ARG(0)(%r3), %arg0 ; ps_strings
86 ldw 0(%arg0), %arg0 ; ps_argvstr member first in struct
89 * ps_argvstr - 4 would get us a pointer to argc, comparable to the
90 * initial stack pointer on architectures where the stack grows down.
91 * Subtracting an additional eight creates the storage for obj and
92 * cleanup that _rtld needs.
95 stw %arg0, HPPA_FRAME_ARG(1)(%r3)
97 /* Call _rtld, copying relocbase into arg1. */
99 copy %r4, %arg1 ; %arg1 = relocbase
101 /* Prepare the arguments for the entry point. */
102 ldw HPPA_FRAME_ARG(1)(%r3), %r1
103 ldw HPPA_FRAME_ARG(0)(%r3), %arg0 ; ps_strings
104 ldw 0(%r1), %arg1 ; cleanup
105 ldw 4(%r1), %arg2 ; obj
107 /* End stack calling convention. */
108 ldo HPPA_FRAME_SIZE(%r3), %sp
109 ldw,mb -HPPA_FRAME_SIZE(%sp), %r3
117 * This does our setup for an object's GOT. %arg0 is the Obj_Entry * for the
118 * object, and %arg1 is its GOT pointer.
120 LEAF_ENTRY(__rtld_setup_hppa_pltgot)
123 * The second entry of the GOT is reserved for the dynamic linker. We
124 * put the Obj_Entry * for the object in there.
129 * Fill the fixup_func and fixup_ltp members of the PLT stub. This
130 * stub is inserted by the linker immediately before the GOT. We use
131 * this stub to enter our binder.
136 L$lpc2: addil L'_rtld_bind_start - ($PIC_pcrel$0 - 8), %arg0
137 ldo R'_rtld_bind_start - ($PIC_pcrel$0 - 12)(%r1),%arg0
142 EXIT(__rtld_hppa_setup_pltgot)
145 * In order to support lazy binding, this implementation of _rtld_bind_start is
146 * very closely tied to the shared-library call stub and the PLT stub, both
147 * inserted by the linker.
151 * This is a magic branch instruction that is used by GCC's
152 * __canonicalize_funcptr_for_compare() function to fixup relocations
153 * in order to do function pointer comparisons.
158 ENTRY(_rtld_bind_start,HPPA_FRAME_SIZE)
160 /* Start stack calling convention. */
164 stw,ma %r1, HPPA_FRAME_SIZE(%sp)
167 * We have to save all calling convention registers that are set by the
168 * caller, because we have to restore them before transferring to the
169 * bound function. Note that this includes %ret0, %ret1, and %t1.
171 * %ret0 and %ret1 because they can have meaning on entry to a
174 * %t1 because it's used by libc to pass on errno values to cerror.
176 stw %rp, HPPA_FRAME_CRP(%r3)
177 stw %arg0, HPPA_FRAME_ARG(0)(%r3)
178 stw %arg1, HPPA_FRAME_ARG(1)(%r3)
179 stw %arg2, HPPA_FRAME_ARG(2)(%r3)
180 stw %arg3, HPPA_FRAME_ARG(3)(%r3)
181 /* 0(%r3) is filled with the saved %r3 above */
186 * The linker PLT stub loads %r20 with (GOT - 8) for the object that
187 * needs binding done. The second entry of the GOT is reserved for the
188 * dynamic linker's use, and we previously stashed the object's
194 * The linker shared-library call stub loads %r19 from the shared
195 * linkage member of the PLT entry. We previously stashed the reloff
196 * of the relocation there.
201 * The linker PLT stub loads %r21 with the fixup_ltp word in itself.
202 * We previously stashed our %r19 value there.
208 * Our hppa version of _rtld_bind returns to us the address of the PLT
209 * entry that it fixed up. Load the function address and shared
210 * linkage for the newly bound function.
215 /* Restore registers saved above. */
216 ldw HPPA_FRAME_CRP(%r3), %rp
217 ldw HPPA_FRAME_ARG(0)(%r3), %arg0
218 ldw HPPA_FRAME_ARG(1)(%r3), %arg1
219 ldw HPPA_FRAME_ARG(2)(%r3), %arg2
220 ldw HPPA_FRAME_ARG(3)(%r3), %arg3
224 /* End stack calling convention. */
225 ldo HPPA_FRAME_SIZE(%r3), %sp
226 ldw,mb -HPPA_FRAME_SIZE(%sp), %r3
228 /* Transfer to the function. */
231 EXIT(_rtld_bind_start)