1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
/* $OpenBSD: ldasm.S,v 1.12 2014/07/10 07:41:26 miod Exp $ */
/*
* Copyright (c) 2013 Miodrag Vallat.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Copyright (c) 2006 Dale Rahn
*
* 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.
*
*/
#include <machine/asm.h>
#include <sys/syscall.h>
#include <SYS.h>
/*
* ld.so entry point.
* On entry: r31 points to the kernel argument struct (argv, argv, environ).
* The environment pointers list is followed by an array of AuxInfo
* structs filled by the kernel.
*/
#define DL_DATA_SIZE (4 * 16) /* 16 * sizeof(ELF_Addr) */
ENTRY(_dl_start)
/*
* Two nop because execution may skip up to two instructions.
* See setregs() in the kernel for details.
*
* Note that I have been hacking m88k for years and still fall
* into this trap, every time. -- miod
*/
or %r0, %r0, %r0
or %r0, %r0, %r0
/*
* Get some room for the contiguous AUX pointers array.
*/
or %r30, %r31, 0
subu %r31, %r31, DL_DATA_SIZE
/*
* Invoke _dl_boot_bind
*/
or %r2, %r30, 0 | kernel args
or %r3, %r31, 0 | array base
#if 0 /* _dl_boot_bind() can compute this itself */
bsr 1f | the following instruction is skipped
bcnd eq0, %r0, _DYNAMIC | but gives us the pc-relative offset
1: ld.hu %r5, %r1, 2 | fetch branch offset (low 16 bits)
lda %r4, %r1[%r5] |
#endif
bsr _dl_boot_bind
ld %r2, %r30, 0 | argc
addu %r6, %r30, 4 + 4
lda %r3, %r6[%r2] | envp
ld %r4, %r31, 4 * 7 | ldoff
or %r5, %r31, 0 | array base
bsr.n _dl_boot
addu %r2, %r30, 4 | argv
addu %r31, %r31, DL_DATA_SIZE
bsr 1f | the following instruction is skipped
bcnd eq0, %r0, _dl_dtors | but gives us the pc-relative offset
1: ld.hu %r5, %r1, 2 | fetch branch offset (low 16 bits)
jmp.n %r2
lda %r5, %r1[%r5] | cleanup
END(_dl_start)
/*
* PLT resolver entry point.
* Invoked with the following stack frame:
* r31(0x00) zero
* r31(0x04) ELF object
* r31(0x08) saved r11
* r31(0x0c) saved r1
* All registers but r1 and r11 must be preserved. The resolver must return
* to the resolved address with r1 restored.
*/
#define OBJECT_OFFSET (4 * 1)
#define R11_OFFSET (4 * 2)
#define R1_OFFSET (4 * 3)
#define PLT_FRAME_SIZE (4 * 4)
#define REG_SIZE (4 * 12)
ENTRY(_dl_bind_start)
/*
* Preserve caller-saved registers.
*/
subu %r31, %r31, REG_SIZE
st.d %r2, %r31, 4 * 0
st.d %r4, %r31, 4 * 2
st.d %r6, %r31, 4 * 4
st.d %r8, %r31, 4 * 6
st %r10, %r31, 4 * 8
st.d %r12, %r31, 4 * 10
/*
* Invoke resolver entry point.
*/
ld %r2, %r31, REG_SIZE + OBJECT_OFFSET
bsr.n _dl_bind
ld %r3, %r31, REG_SIZE + R11_OFFSET | reloff
/*
* Preserve return address.
*/
or %r11, %r2, %r0
/*
* Restore caller-saved registers.
*/
ld.d %r12, %r31, 4 * 10
ld %r10, %r31, 4 * 8
ld.d %r8, %r31, 4 * 6
ld.d %r6, %r31, 4 * 4
ld.d %r4, %r31, 4 * 2
ld.d %r2, %r31, 4 * 0
ld %r1, %r31, REG_SIZE + R1_OFFSET
jmp.n %r11
addu %r31, %r31, REG_SIZE + PLT_FRAME_SIZE
/* ld.so SYSCALLS */
#define DL_SYSCALL(n) DL_SYSCALL2(n,n)
#define DL_SYSCALL2(n,c) \
__ENTRY(_dl_,n); \
__DO_SYSCALL(c); \
br _dl_cerror
#define DL_SYSCALL2_NOERR(n,c) \
__ENTRY(_dl_,n); \
__DO_SYSCALL(c)
DL_SYSCALL(close)
jmp %r1
ENTRY(_dl_exit)
__DO_SYSCALL(exit)
1: br 1b
DL_SYSCALL(issetugid)
jmp %r1
DL_SYSCALL2(_syscall,__syscall)
jmp %r1
DL_SYSCALL(munmap)
jmp %r1
DL_SYSCALL(mprotect)
jmp %r1
DL_SYSCALL(open)
jmp %r1
DL_SYSCALL(read)
jmp %r1
DL_SYSCALL(write)
jmp %r1
DL_SYSCALL(fstat)
jmp %r1
DL_SYSCALL(gettimeofday)
jmp %r1
DL_SYSCALL(readlink)
jmp %r1
DL_SYSCALL(lstat)
jmp %r1
DL_SYSCALL(utrace)
jmp %r1
DL_SYSCALL(getentropy)
jmp %r1
DL_SYSCALL2(getcwd,__getcwd)
jmp %r1
DL_SYSCALL2(sysctl,__sysctl)
jmp %r1
DL_SYSCALL(getdents)
jmp %r1
ENTRY(_dl_sigprocmask)
bcnd ne0, %r3, 1f
or %r2, %r0, 1 /* SIG_BLOCK */
br 2f
1:
ld %r3, %r3, 0
2:
or %r13, %r0, SYS_sigprocmask
tb0 0, %r0, 450
br _dl_cerror
bcnd eq0, %r4, 3f
st %r2, %r4, 0
3:
jmp.n %r1
or %r2, %r0, 0
END(_dl_sigprocmask)
_dl_cerror:
jmp.n %r1
subu %r2, %r0, %r2
ENTRY(_dl_cacheflush)
tb0 0, %r0, 451
br _dl_cerror | never hit
jmp %r1
END(_dl_cacheflush)
|