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
247
248
249
250
251
252
253
254
255
|
## Check that we are able to dump MIPS PLT GOT entries using -A properly.
# RUN: yaml2obj --docnum=1 %s -o %t.plt.o
# RUN: llvm-readobj -A %t.plt.o | FileCheck %s --check-prefix=LLVM
# RUN: llvm-readelf -A %t.plt.o | \
# RUN: FileCheck %s --strict-whitespace --match-full-lines --check-prefix=GNU
# LLVM: PLT GOT {
# LLVM-NEXT: Reserved entries [
# LLVM-NEXT: Entry {
# LLVM-NEXT: Address: 0x2000
# LLVM-NEXT: Initial: 0x0
# LLVM-NEXT: Purpose: PLT lazy resolver
# LLVM-NEXT: }
# LLVM-NEXT: Entry {
# LLVM-NEXT: Address: 0x2008
# LLVM-NEXT: Initial: 0x0
# LLVM-NEXT: Purpose: Module pointer
# LLVM-NEXT: }
# LLVM-NEXT: ]
# LLVM-NEXT: Entries [
# LLVM-NEXT: Entry {
# LLVM-NEXT: Address: 0x2010
# LLVM-NEXT: Initial: 0x0
# LLVM-NEXT: Value: 0x0
# LLVM-NEXT: Type: None (0x0)
# LLVM-NEXT: Section: Undefined (0x0)
# LLVM-NEXT: Name: foo (5)
# LLVM-NEXT: }
# LLVM-NEXT: Entry {
# LLVM-NEXT: Address: 0x2018
# LLVM-NEXT: Initial: 0x0
# LLVM-NEXT: Value: 0x0
# LLVM-NEXT: Type: None (0x0)
# LLVM-NEXT: Section: Undefined (0x0)
# LLVM-NEXT: Name: bar (1)
# LLVM-NEXT: }
# LLVM-NEXT: ]
# LLVM-NEXT: }
# GNU:PLT GOT:
# GNU-EMPTY:
# GNU-NEXT: Reserved entries:
# GNU-NEXT: Address Initial Purpose
# GNU-NEXT: 0000000000002000 0000000000000000 PLT lazy resolver
# GNU-NEXT: 0000000000002008 0000000000000000 Module pointer
# GNU-EMPTY:
# GNU-NEXT: Entries:
# GNU-NEXT: Address Initial Sym.Val. Type Ndx Name
# GNU-NEXT: 0000000000002010 0000000000000000 0000000000000000 NOTYPE UND foo
# GNU-NEXT: 0000000000002018 0000000000000000 0000000000000000 NOTYPE UND bar
# GNU-NOT:{{.}}
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_MIPS
Sections:
- Name: .rel.plt
Type: SHT_REL
Flags: [ SHF_ALLOC ]
Address: 0x1000
Link: .dynsym
Relocations:
- Offset: 0x1
Symbol: 1
Type: R_MIPS_JUMP_SLOT
- Offset: 0x2
Symbol: 2
Type: R_MIPS_JUMP_SLOT
- Name: .got.plt
Type: SHT_PROGBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x2000
Size: 32 ## (dynamic symbols number + 2) * 8
- Name: .dynamic
Type: SHT_DYNAMIC
Entries:
- Tag: DT_JMPREL
Value: 0x1000
- Tag: DT_MIPS_PLTGOT
Value: 0x2000
DynamicSymbols:
- Name: "foo"
- Name: "bar"
## Check we report errors when dynamic tags, needed for dumping PLT, are missing.
# RUN: yaml2obj --docnum=2 -DTAG=DT_MIPS_PLTGOT %s -o %t.err1.o
# RUN: llvm-readobj -A %t.err1.o 2>&1 | FileCheck %s -DFILE=%t.err1.o --check-prefixes=NO-OUTPUT,ERR1
# RUN: yaml2obj --docnum=2 -DTAG=DT_JMPREL %s -o %t.err2.o
# RUN: llvm-readobj -A %t.err2.o 2>&1 | FileCheck %s -DFILE=%t.err2.o --check-prefixes=NO-OUTPUT,ERR2
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_EXEC
Machine: EM_MIPS
Sections:
- Name: .dynamic
Type: SHT_DYNAMIC
Entries:
- Tag: [[TAG]]
Value: 0
- Tag: DT_NULL
Value: 0
## Check we report errors when we are unable to find PLTGOT/JMPREL sections.
# RUN: yaml2obj --docnum=3 %s -DVAL1=0xffff -o %t.err3.o
# RUN: llvm-readobj -A %t.err3.o 2>&1 | FileCheck %s -DFILE=%t.err3.o -check-prefixes=NO-OUTPUT,ERR3
# RUN: yaml2obj --docnum=3 %s -DVAL2=0xffff -o %t.err4.o
# RUN: llvm-readobj -A %t.err4.o 2>&1 | FileCheck %s -DFILE=%t.err4.o -check-prefixes=NO-OUTPUT,ERR4
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_EXEC
Machine: EM_MIPS
Sections:
- Name: .dynamic
Type: SHT_DYNAMIC
Entries:
- Tag: DT_MIPS_PLTGOT
Value: [[VAL1=0]]
- Tag: DT_JMPREL
Value: [[VAL2=0]]
- Tag: DT_NULL
Value: 0
- Name: .foo
Type: SHT_PROGBITS
Address: 0x100
ShSize: 0xffffffff
Link: [[LINK=0x1]]
DynamicSymbols: []
## Check we report errors when we are unable to dump PLTGOT properly.
# RUN: yaml2obj --docnum=3 -DVAL1=0x100 %s -o %t.err5.o
# RUN: llvm-readobj -A %t.err5.o 2>&1 | FileCheck %s -DFILE=%t.err5.o -check-prefixes=NO-OUTPUT,ERR5
# RUN: yaml2obj --docnum=3 -DVAL2=0x100 -DLINK=0xaaaaaaaa %s -o %t.err6.o
# RUN: llvm-readobj -A %t.err6.o 2>&1 | FileCheck %s -DFILE=%t.err6.o -check-prefixes=NO-OUTPUT,ERR6
# RUN: yaml2obj --docnum=3 -DVAL2=0x100 %s -o %t.err7.o
# RUN: llvm-readobj -A %t.err7.o 2>&1 | FileCheck %s -DFILE=%t.err7.o -check-prefixes=NO-OUTPUT,ERR7
# NO-OUTPUT: LoadName: <Not found>
# NO-OUTPUT-NEXT: There is no .MIPS.abiflags section in the file.
# NO-OUTPUT-NEXT: There is no .MIPS.options section in the file.
# NO-OUTPUT-NEXT: There is no .reginfo section in the file.
# ERR1-NEXT: warning: '[[FILE]]': cannot find JMPREL dynamic tag
# ERR2-NEXT: warning: '[[FILE]]': cannot find MIPS_PLTGOT dynamic tag
# ERR3-NEXT: warning: '[[FILE]]': there is no non-empty PLTGOT section at 0xffff
# ERR4-NEXT: warning: '[[FILE]]': there is no non-empty RELPLT section at 0xffff
# ERR5-NEXT: warning: '[[FILE]]': unable to read PLTGOT section content: section [index 2] has a sh_offset (0x70) + sh_size (0xffffffff) that is greater than the file size (0x280)
# ERR6-NEXT: warning: '[[FILE]]': unable to get a symbol table linked to the SHT_PROGBITS section with index 2: invalid section index: 2863311530
# ERR7-NEXT: warning: '[[FILE]]': unable to get a string table for the SHT_DYNAMIC section with index 1: invalid sh_type for symbol table, expected SHT_SYMTAB or SHT_DYNSYM
# NO-OUTPUT-EMPTY:
# NO-OUTPUT-NOT: {{.}}
## Check how we print PLT entries when they are unnamed section symbols.
# RUN: yaml2obj --docnum=4 %s -o %t3
# RUN: llvm-readobj -A %t3 2>&1 | FileCheck %s -DFILE=%t3 --check-prefix=SEC-SYMS-LLVM
# RUN: llvm-readelf -A %t3 2>&1 | FileCheck %s -DFILE=%t3 --check-prefix=SEC-SYMS-GNU
# SEC-SYMS-LLVM: PLT GOT {
# SEC-SYMS-LLVM: Entries [
# SEC-SYMS-LLVM: Entry {
# SEC-SYMS-LLVM: Section: Absolute (0xFFF1)
# SEC-SYMS-LLVM-NEXT: warning: '[[FILE]]': unable to get section index for symbol with st_shndx = 0xfff1 (SHN_ABS)
# SEC-SYMS-LLVM-NEXT: Name: <?> (0)
# SEC-SYMS-LLVM-NEXT: }
# SEC-SYMS-LLVM-NEXT: Entry {
# SEC-SYMS-LLVM: Section: .got.plt (0x2)
# SEC-SYMS-LLVM-NEXT: Name: .got.plt (0)
# SEC-SYMS-LLVM-NEXT: }
# SEC-SYMS-LLVM-NEXT: Entry {
# SEC-SYMS-LLVM: Section: Common (0xFFF2)
# SEC-SYMS-LLVM-NEXT: warning: '[[FILE]]': unable to get section index for symbol with st_shndx = 0xfff2 (SHN_COMMON)
# SEC-SYMS-LLVM-NEXT: Name: <?> (0)
# SEC-SYMS-LLVM-NEXT: }
# SEC-SYMS-LLVM-NEXT: Entry {
# SEC-SYMS-LLVM: Type: Section (0x3)
# SEC-SYMS-LLVM-NEXT: warning: '[[FILE]]': found an extended symbol index (4), but unable to locate the extended symbol index table
# SEC-SYMS-LLVM-NEXT: Section: Reserved (0xFFFF)
# SEC-SYMS-LLVM-NEXT: Name: <?> (0)
# SEC-SYMS-LLVM-NEXT: }
# SEC-SYMS-LLVM-NEXT: ]
# SEC-SYMS-LLVM-NEXT: }
# SEC-SYMS-GNU: PLT GOT:
# SEC-SYMS-GNU: Entries:
# SEC-SYMS-GNU-NEXT: Address {{.*}} Ndx Name
# SEC-SYMS-GNU-NEXT: warning: '[[FILE]]': unable to get section index for symbol with st_shndx = 0xfff1 (SHN_ABS)
# SEC-SYMS-GNU-NEXT: 0000000000002010 {{.*}} ABS <?>
# SEC-SYMS-GNU-NEXT: 0000000000002018 {{.*}} 2 .got.plt
# SEC-SYMS-GNU-NEXT: warning: '[[FILE]]': unable to get section index for symbol with st_shndx = 0xfff2 (SHN_COMMON)
# SEC-SYMS-GNU-NEXT: 0000000000002020 {{.*}} COM <?>
# SEC-SYMS-GNU-NEXT: warning: '[[FILE]]': found an extended symbol index (4), but unable to locate the extended symbol index table
# SEC-SYMS-GNU-NEXT: 0000000000002028 {{.*}} RSV[0xffff] <?>
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_MIPS
Sections:
- Name: .rel.plt
Type: SHT_REL
Flags: [ SHF_ALLOC ]
Address: 0x1000
Link: .dynsym
Relocations:
- Offset: 0x1
Symbol: 1
Type: R_MIPS_JUMP_SLOT
- Offset: 0x2
Symbol: 2
Type: R_MIPS_JUMP_SLOT
- Offset: 0x2
Symbol: 3
Type: R_MIPS_JUMP_SLOT
- Offset: 0x3
Symbol: 4
Type: R_MIPS_JUMP_SLOT
- Name: .got.plt
Type: SHT_PROGBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x2000
Size: 48 ## (dynamic symbols number + 2) * 8
- Name: .dynamic
Type: SHT_DYNAMIC
Entries:
- Tag: DT_JMPREL
Value: 0x1000
- Tag: DT_MIPS_PLTGOT
Value: 0x2000
DynamicSymbols:
- Type: STT_SECTION
Index: SHN_ABS
- Type: STT_SECTION
Section: .got.plt
- Type: STT_SECTION
Index: SHN_COMMON
- Type: STT_SECTION
Index: SHN_XINDEX
|