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
|
/* $OpenBSD: ldasm.S,v 1.18 2014/07/05 20:41:25 miod Exp $ */
/*
* Copyright (c) 1999 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.
*
*/
#define AUX_entry 9
#include <machine/asm.h>
#include <sys/syscall.h>
ENTRY(_dl_start)
mr 19, 1
stwu 1, (-16 -((AUX_entry+3)*4))(1) # Some space.
mflr 27 /* save off old link register */
stw 27, 4(19) /* save in normal location */
# squirrel away the arguments for main
mr 20, 3 #argc
mr 21, 4 #argv
mr 22, 5 #envp
mr 23, 6 # ???
bl 1f
# this instruction never gets executed but can be used
# to find the virtual address where the page is loaded.
bl _GLOBAL_OFFSET_TABLE_@local-4
bl _DYNAMIC@local
1:
mflr 5 # this stores where we are (+4)
lwz 18, 0(5) # load the instruction at offset_sym
# it contains an offset to the location
# of the GOT.
rlwinm 18,18,0,8,30 # mask off the offset portion of the instr.
/*
* these adds effectively calculate the value the
* bl _GLOBAL_OFFSET_TABLE_@local-4
* operation that would be below would calculate.
*/
add 28, 18, 5
mr 6, 5 # save offset for later use
/* mprotect GOT-4 for correct execution of blrl instruction */
li 0, SYS_mprotect
mr 3, 28
li 4, 4
li 5, 7 /* (PROT_READ|PROT_WRITE|PROT_EXEC) */
sc
mr 5, 6
li 0, 0
dcbf 5, 18
sync
isync
icbi 5, 18 # make certain that the got table addr is
# not in the icache
sync
isync
/* This calculates the address of _DYNAMIC the same way
* that the GLOBAL_OFFSET_TABLE was calculated.
*/
lwz 18, 4(5)
rlwinm 18,18,0,8,30 # mask off the offset portion of the instr.
add 8, 18, 5 # address of _DYNAMIC (arg6 for _dl_boot)
addi 18, 8, 4 # correction.
lwz 4, 4(28) # load address of _DYNAMIC according to got.
sub 4, 18, 4 # determine load offset
mr 17, 4 # save for _dl_boot
subi 3, 21, 4 # Get stack pointer (arg0 for _dl_boot).
addi 4, 1, 8 # dl_data
mr 5, 18 # dynamicp
bl _dl_boot_bind@local
mr 3, 21 # argv
mr 4, 22 # envp
mr 5, 17 # loff
addi 6, 1, 8 # dl_data
bl _dl_boot@local
mtctr 3 # put return value into ctr to execute
# get back the squirreled away the arguments for main
mr 3, 20
mr 4, 21
mr 5, 22
mr 6, 23
bl _GLOBAL_OFFSET_TABLE_@local-4
mflr 31
lwz 7, _dl_dtors@got(31)
mtlr 27
lwz 1, 0(1) # Restore stack pointer.
bctr # Go execute the 'real' program.
ENTRY(_dl_bind_start)
stwu 1,-64(1)
stw 0,8(1) # save r0 - cerror ;-)
mflr 0
stw 0,68(1) # save lr
stw 3,12(1) # save r3-r10, C calling convention
stw 4,20(1) # r13 - r31 are preserved by called code
stw 5,24(1)
stw 6,28(1)
stw 7,32(1)
stw 8,36(1)
stw 9,40(1)
stw 10,44(1)
mr 3,12 # obj
mr 4,11 # reloff
bl _dl_bind@plt # _rtld_bind(obj, reloff)
mtctr 3
lwz 3,12(1)
lwz 4,20(1)
lwz 5,24(1)
lwz 6,28(1)
lwz 7,32(1)
lwz 8,36(1)
lwz 9,40(1)
lwz 10,44(1)
lwz 0,68(1) # restore lr
mtlr 0
lwz 0,8(1)
addi 1,1,64
bctr
#define DL_SYSCALL(n) DL_SYSCALL2(n,n)
#define DL_SYSCALL_NOERR(n) DL_SYSCALL2_NOERR(n,n)
#define DL_SYSCALL2(n,c) \
ENTRY(_dl_##n) \
li 0, SYS_##c; \
sc; \
cmpwi 0, 0; \
beqlr+; \
b _dl_cerror
#define DL_SYSCALL2_NOERR(n,c) \
ENTRY(_dl_##n) \
li 0, SYS_##c; \
sc; \
blr
_dl_cerror:
neg 3, 3
blr
ENTRY(_dl_sigprocmask)
/* _dl_sigprocmask does not support NULL as the new mask */
#if 0
cmpwi 4, 0
bne+ 1f
li 3, 1 /* SIG_BLOCK */
b 2f
1:
#endif
lwz 4, 0(4)
2:
li 0, SYS_sigprocmask
sc
cmpwi 0, 0
bne- _dl_cerror
cmpwi 5, 0
beq- 1f
stw 3, 0(5)
1:
li 3, 0
blr
DL_SYSCALL(close)
DL_SYSCALL_NOERR(exit)
DL_SYSCALL(fcntl)
DL_SYSCALL(fstat)
DL_SYSCALL2(getcwd,__getcwd)
DL_SYSCALL(getdents)
DL_SYSCALL(gettimeofday)
DL_SYSCALL_NOERR(issetugid)
DL_SYSCALL(lstat)
DL_SYSCALL(mmap)
DL_SYSCALL(mprotect)
DL_SYSCALL(munmap)
DL_SYSCALL(open)
DL_SYSCALL(read)
DL_SYSCALL(readlink)
DL_SYSCALL2(_syscall,__syscall)
DL_SYSCALL2(sysctl,__sysctl)
DL_SYSCALL(utrace)
DL_SYSCALL(write)
|