[llvm-readobj/libObject] - Introduce a custom warning handler for `ELFFile<ELFT>...
[llvm-complete.git] / test / Object / invalid.test
blob05f38e9d0076e6d03d5238f815d7b110e100be41
1 ## Check that llvm-objdump reports an error when
2 ## .shstrtab has an invalid type.
4 # RUN: yaml2obj %s --docnum=1 -o %t1
5 # RUN: not llvm-objdump -s %t1 2>&1 | FileCheck %s --check-prefix=INVALIDERR
7 # INVALIDERR: error: reading file: Invalid data was encountered while parsing the file
9 --- !ELF
10 FileHeader:
11   Class:   ELFCLASS64
12   Data:    ELFDATA2LSB
13   Type:    ET_DYN
14   Machine: EM_X86_64
15 Sections:
16   - Name: .shstrtab
17     Type: SHT_PROGBITS
19 ## Check that llvm-objdump reports an error when
20 ## .shstrtab has an invalid zero-size.
22 # RUN: yaml2obj %s --docnum=2 -o %t2
23 # RUN: not llvm-objdump -s %t2 2>&1 | FileCheck %s --check-prefix=INVALIDERR
25 --- !ELF
26 FileHeader:
27   Class:   ELFCLASS64
28   Data:    ELFDATA2LSB
29   Type:    ET_DYN
30   Machine: EM_X86_64
31 Sections:
32   - Name: .shstrtab
33     Type: SHT_STRTAB
34     Size: 0
36 ## Check that llvm-objdump reports an error when .shstrtab has an invalid
37 ## size that goes past the end of the file.
39 # RUN: not llvm-objdump -s %p/Inputs/invalid-strtab-size.elf 2>&1 \
40 # RUN:   | FileCheck %s --check-prefix=INVALIDERR
42 ## Check that llvm-dwarfdump reports an error during relocation resolution
43 ## when instead of expected SHT_RELA section it locates a section of a different type.
45 # RUN: yaml2obj %s --docnum=3 -o %t3
46 # RUN: not llvm-dwarfdump -debug-line %t3 2>&1 | FileCheck --check-prefix=RELA %s
48 # RELA: LLVM ERROR: Section is not SHT_RELA
50 --- !ELF
51 FileHeader:
52   Class:   ELFCLASS64
53   Data:    ELFDATA2LSB
54   Type:    ET_REL
55   Machine: EM_X86_64
56 Sections:
57   - Name: .debug_line
58     Type: SHT_PROGBITS
59 ## The exact content does not matter here. We can use any minimal valid debug section
60 ## which is a target for relocation. The idea is to trigger the code that reads the
61 ## relocation's addend during relocation resolution. It should fail if called on
62 ## a non-SHT_RELA section.
63     Content: 380000000200210000000101FB0E0D00010101010000000100000100676C6F62616C2E63707000000000000009020000000000000000130237000101
64   - Name: .rela.debug_line
65     Type: SHT_REL
66     Info: .debug_line
67     Relocations:
68       - Offset: 0x000000000000002E
69         Type:   R_X86_64_64
71 ## Check that llvm-objdump reports an error when it tries to dump section names
72 ## and .shstrtab is not null-terminated.
74 # RUN: yaml2obj %s --docnum=4 -o %t4
75 # RUN: not llvm-objdump -s %t4 2>&1 | FileCheck --check-prefix=INVALIDERR %s
77 --- !ELF
78 FileHeader:
79   Class:   ELFCLASS64
80   Data:    ELFDATA2LSB
81   Type:    ET_DYN
82   Machine: EM_X86_64
83 Sections:
84   - Name: .shstrtab
85     Type: SHT_STRTAB
86     Content: "11"
88 ## Check that llvm-objdump reports an error when it tries to dump a symbol name and
89 ## .strtab is not null-terminated.
91 # RUN: yaml2obj %s --docnum=5 -o %t5
92 # RUN: not llvm-objdump -syms %t5 2>&1 | FileCheck --check-prefix=NONULL %s
94 # NONULL: error: {{.*}}: SHT_STRTAB string table section [index 1] is non-null terminated
96 --- !ELF
97 FileHeader:
98   Class:   ELFCLASS64
99   Data:    ELFDATA2LSB
100   Type:    ET_DYN
101   Machine: EM_X86_64
102 Sections:
103   - Name: .strtab
104     Type: SHT_STRTAB
105     Content: "11"
106 Symbols:
107   - Name: foo
109 ## Check that llvm-readobj reports an error if .symtab has an invalid sh_entsize.
111 # RUN: yaml2obj %s --docnum=6 -o %t6
112 # RUN: not llvm-readobj --symbols %t6 2>&1 | FileCheck --check-prefix=INVALID-SYM-SIZE %s
114 # INVALID-SYM-SIZE: error: section [index 1] has an invalid sh_entsize: 32
116 --- !ELF
117 FileHeader:
118   Class:   ELFCLASS64
119   Data:    ELFDATA2LSB
120   Type:    ET_DYN
121   Machine: EM_X86_64
122 Sections:
123   - Name: .symtab
124     Type: SHT_SYMTAB
125     EntSize: 32
126 Symbols:
127   - Name: foo
129 ## Check that llvm-readobj reports a warning if .dynsym has an invalid sh_entsize.
131 # RUN: yaml2obj %s --docnum=7 -o %t7
132 # RUN: llvm-readobj --dyn-symbols %t7 2>&1 | FileCheck --check-prefix=INVALID-DYNSYM-SIZE %s
134 # INVALID-DYNSYM-SIZE: warning: invalid section size (48) or entity size (32)
136 --- !ELF
137 FileHeader:
138   Class:   ELFCLASS64
139   Data:    ELFDATA2LSB
140   Type:    ET_DYN
141   Machine: EM_X86_64
142 Sections:
143   - Name: .dynsym
144     Type: SHT_DYNSYM
145     EntSize: 32
146 DynamicSymbols:
147   - Name: foo
149 ## Check that llvm-readobj reports an error if .symtab has an invalid sh_link value,
150 ## which is greater than number of sections.
152 # RUN: yaml2obj %s --docnum=8 -o %t8
153 # RUN: not llvm-readobj --symbols %t8 2>&1 | FileCheck --check-prefix=INVALID-SYMTAB-LINK %s
155 # INVALID-SYMTAB-LINK: error: invalid section index: 255
157 --- !ELF
158 FileHeader:
159   Class:   ELFCLASS64
160   Data:    ELFDATA2LSB
161   Type:    ET_REL
162   Machine: EM_X86_64
163 Sections:
164   - Name: .symtab
165     Type: SHT_SYMTAB
166     Link: 0xFF
168 ## Check that llvm-readobj reports an error when trying to dump sections
169 ## when the e_shentsize field is broken.
171 # RUN: yaml2obj %s --docnum=9 -o %t9
172 # RUN: not llvm-readobj -S %t9 2>&1 | FileCheck --check-prefix=INVALID-SH-ENTSIZE %s
174 # INVALID-SH-ENTSIZE: error: {{.*}}: invalid  e_shentsize in ELF header: 1
176 --- !ELF
177 FileHeader:
178   Class:     ELFCLASS64
179   Data:      ELFDATA2LSB
180   Type:      ET_REL
181   Machine:   EM_X86_64
182   SHEntSize: 1
184 ## Check that llvm-readobj reports an error if .symtab has sh_size
185 ## that is not a multiple of sh_entsize.
187 # RUN: yaml2obj %s --docnum=10 -o %t10
188 # RUN: not llvm-readobj --symbols %t10 2>&1 | FileCheck --check-prefix=INVALID-SYMTAB-SIZE %s
190 # INVALID-SYMTAB-SIZE: error: section [index 1] has an invalid sh_size (1) which is not a multiple of its sh_entsize (24)
192 --- !ELF
193 FileHeader:
194   Class:   ELFCLASS64
195   Data:    ELFDATA2LSB
196   Type:    ET_DYN
197   Machine: EM_X86_64
198 Sections:
199   - Name: .symtab
200     Type: SHT_SYMTAB
201     Size: 1
203 ## Test that llvm-readobj reports an error if SHT_SYMTAB_SHNDX section has
204 ## invalid sh_size which should be:
205 ## sizeof(.symtab_shndx) = (sizeof(.symtab) / entsize(.symtab)) * entsize(.symtab_shndx)
207 # RUN: yaml2obj %s --docnum=11 -o %t11
208 # RUN: not llvm-readobj --symbols %t11 2>&1 | FileCheck --check-prefix=INVALID-XINDEX-SIZE %s
210 # INVALID-XINDEX-SIZE: error: {{.*}}: SHT_SYMTAB_SHNDX section has sh_size (24) which is not equal to the number of symbols (6)
212 --- !ELF
213 FileHeader:
214   Class:   ELFCLASS64
215   Data:    ELFDATA2LSB
216   Type:    ET_DYN
217   Machine: EM_X86_64
218 Sections:
219   - Name: .symtab_shndx
220     Type: SHT_SYMTAB_SHNDX
221     Size: 0x18
222     EntSize: 4
223     Link: .symtab
225 ## Check that llvm-readobj reports an error if the e_phentsize field is broken.
227 # RUN: not llvm-readobj --program-headers %p/Inputs/invalid-e_shnum.elf 2>&1 | \
228 # RUN:  FileCheck --check-prefix=INVALID-PH-ENTSIZE %s
230 # INVALID-PH-ENTSIZE: error: invalid e_phentsize: 12336
232 ## Check that llvm-readobj reports an error when we have no SHT_SYMTAB_SHNDX section,
233 ## but have a symbol referencing it.
235 # RUN: not llvm-readobj --symbols %p/Inputs/invalid-ext-symtab-index.elf-x86-64 2>&1 | \
236 # RUN:   FileCheck --check-prefix=INVALID-EXT-SYMTAB-INDEX %s
238 # INVALID-EXT-SYMTAB-INDEX: error: extended symbol index (0) is past the end of the SHT_SYMTAB_SHNDX section of size 0
240 ## Check that llvm-readobj reports an error if a relocation section
241 ## has a broken sh_offset (past the end of the file).
243 # RUN: yaml2obj %s --docnum=12 -o %t12
244 # RUN: yaml2obj %s --docnum=13 -o %t13
245 # RUN: not llvm-readobj -r %t12 2>&1 | FileCheck --check-prefix=INVALID-RELOC-SH-OFFSET %s
246 # RUN: not llvm-readobj -r %t13 2>&1 | FileCheck --check-prefix=INVALID-RELOC-SH-OFFSET %s
248 # INVALID-RELOC-SH-OFFSET: error: section [index 1] has a sh_offset (0x10000) + sh_size (0x0) that cannot be represented
250 --- !ELF
251 FileHeader:
252   Class:   ELFCLASS64
253   Data:    ELFDATA2LSB
254   Type:    ET_REL
255   Machine: EM_386
256 Sections:
257   - Name:     .rel
258     Type:     SHT_REL
259     ShOffset: 0x10000
261 --- !ELF
262 FileHeader:
263   Class:   ELFCLASS64
264   Data:    ELFDATA2LSB
265   Type:    ET_REL
266   Machine: EM_X86_64
267 Sections:
268   - Name:     .rela
269     Type:     SHT_RELA
270     ShOffset: 0x10000
272 ## Check that llvm-objdump reports an error when .shstrtab has a broken sh_offset
273 ## so large that sh_offset + sh_size overflows the platform address size type.
275 # RUN: yaml2obj %s --docnum=14 -o %t14
276 # RUN: not llvm-readobj --symbols %t14 2>&1 | FileCheck --check-prefix=INVALID-SECTION-SIZE2 %s
278 # INVALID-SECTION-SIZE2: error: section [index 1] has a sh_offset (0xffffffff) + sh_size (0x27) that cannot be represented
280 --- !ELF
281 FileHeader:
282   Class:   ELFCLASS64
283   Data:    ELFDATA2LSB
284   Type:    ET_REL
285   Machine: EM_386
286 Sections:
287   - Name:     .shstrtab
288     Type:     SHT_STRTAB
289     ShOffset: 0xFFFFFFFF
291 ## Check that llvm-readobj reports an error when trying to dump sections
292 ## when the e_shnum field is broken (is greater than the actual number of sections).
294 # RUN: yaml2obj %s --docnum=15 -o %t15
295 # RUN: not llvm-readobj -S %t15 2>&1 | FileCheck --check-prefix=INVALID-SECTION-NUM %s
297 # INVALID-SECTION-NUM: error: {{.*}}: section table goes past the end of file
299 --- !ELF
300 FileHeader:
301   Class:   ELFCLASS64
302   Data:    ELFDATA2LSB
303   Type:    ET_REL
304   Machine: EM_X86_64
305   SHNum:   0xFF
307 ## Check that llvm-readobj reports an error if a relocation contains an
308 ## incorrect (too large) symbol index.
310 # RUN: yaml2obj %s --docnum=16 -o %t16
311 # RUN: not llvm-readobj -r %t16 2>&1 | FileCheck --check-prefix=INVALID-REL-SYM %s
313 # INVALID-REL-SYM: error: unable to access section [index 2] data at 0x18000180: offset goes past the end of file
315 --- !ELF
316 FileHeader:
317   Class:   ELFCLASS64
318   Data:    ELFDATA2LSB
319   Type:    ET_REL
320   Machine: EM_X86_64
321 Sections:
322   - Name: .rela.text
323     Type: SHT_RELA
324     Info: 0
325     Relocations:
326       - Offset: 0x0
327         Type:   R_X86_64_64
328         Symbol: 0xFFFFFF
330 ## Check llvm-readobj does not crash on a truncated ELF.
332 ## Create a truncated ELF object with ELFCLASSNONE class using echo.
333 ## 0x7f, 'E', 'L', 'F', ELFCLASS64(2), ELFDATA2LSB(1),
334 ## EV_CURRENT(1), ELFOSABI_LINUX(3), <padding zero bytes>, ET_REL(1), EM_NONE(0)
335 # RUN: echo -e -n "\x7f\x45\x4c\x46\x02\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" > %t11
336 # RUN: not llvm-readobj -r %t11 2>&1 | FileCheck --check-prefix=INVALID-BUFFER %s
338 # INVALID-BUFFER: error: {{.*}}': invalid buffer: the size (18) is smaller than an ELF header (64)
340 # RUN: not llvm-readobj %p/Inputs/invalid-coff-header-too-small 2>&1 | FileCheck --check-prefix=COFF-HEADER %s
341 # COFF-HEADER: The file was not recognized as a valid object file
343 ## Check that llvm-readobj reports an error if section name offset
344 ## overflows the section name string table.
346 # RUN: yaml2obj %s --docnum=17 -o %t17
347 # RUN: not llvm-readobj --sections %t17 2>&1 | FileCheck -DFILE=%t17 --check-prefix=BROKEN-SECNAME %s
349 ## BROKEN-SECNAME: error: '[[FILE]]': a section [index 1] has an invalid sh_name (0x1) offset which goes past the end of the section name string table
351 --- !ELF
352 FileHeader:
353   Class:   ELFCLASS64
354   Data:    ELFDATA2LSB
355   Type:    ET_REL
356   Machine: EM_X86_64
357 Sections:
358   - Name: .shstrtab
359     Type: SHT_STRTAB
360     Size: 1
362 ## Check that llvm-readobj reports an error if a section has a broken offset
363 ## that goes past the end of the file.
365 # RUN: yaml2obj %s --docnum=18 -o %t18
366 # RUN: not llvm-readobj --sections --section-data %t18 2>&1 \
367 # RUN:  | FileCheck --check-prefix=BROKEN-SECSHOFFSET %s
369 # BROKEN-SECSHOFFSET: error: section [index 1] has a sh_offset (0xffff0000) + sh_size (0x0) that cannot be represented
371 --- !ELF
372 FileHeader:
373   Class:   ELFCLASS64
374   Data:    ELFDATA2LSB
375   Type:    ET_REL
376   Machine: EM_X86_64
377 Sections:
378   - Name:     .foo
379     Type:     SHT_PROGBITS
380     ShOffset: 0xFFFF0000
382 ## Check that llvm-readobj reports an error if symbol name
383 ## offset goes past the end of the symbol string table.
385 # RUN: yaml2obj %s --docnum=19 -o %t19
386 # RUN: not llvm-readobj --symbols %t19 2>&1 | FileCheck --check-prefix=INVALID-SYM-NAME %s
388 # INVALID-SYM-NAME: error: Invalid data was encountered while parsing the file
390 --- !ELF
391 FileHeader:
392   Class:   ELFCLASS64
393   Data:    ELFDATA2LSB
394   Type:    ET_REL
395   Machine: EM_X86_64
396 Sections:
397   - Name: .strtab
398     Type: SHT_STRTAB
399     Size: 1
400 Symbols:
401   - Name: foo
403 ## Version index in .gnu.version overflows the version map.
404 ## Check llvm-readobj reports it.
406 # RUN: yaml2obj %s --docnum=20 -o %t20
407 # RUN: not llvm-readobj -dt %t20 2>&1 | FileCheck --check-prefix=INVALID-VERSION %s
409 # INVALID-VERSION: error: Invalid version entry
411 --- !ELF
412 FileHeader:
413   Class:   ELFCLASS64
414   Data:    ELFDATA2LSB
415   Type:    ET_DYN
416   Machine: EM_X86_64
417 Sections:
418   - Name:    .gnu.version
419     Type:    SHT_GNU_versym
420     Entries: [ 0xFF ]
421 DynamicSymbols:
422   - Name: foo
424 ## ELF header contains e_phentsize field with a value != sizeof(Elf_Phdr).
425 ## Check llvm-readobj reports it.
427 # RUN: not llvm-readobj -l %p/Inputs/corrupt-invalid-phentsize.elf.x86-64 2>&1 \
428 # RUN:   | FileCheck --check-prefix=PHENTSIZE %s
430 # PHENTSIZE: error: invalid e_phentsize: 57
432 ## The dynamic table contains DT_STRTAB with a value that is not in any loadable segment.
433 ## Check llvm-readobj reports it.
435 # RUN: yaml2obj %s --docnum=21 -o %t21
436 # RUN: llvm-readobj --dynamic-table %t21 2>&1 | FileCheck --check-prefix=INVALID-DTSTRTAB %s
438 # INVALID-DTSTRTAB: warning: Unable to parse DT_STRTAB: virtual address is not in any segment: 0xffff0000
440 --- !ELF
441 FileHeader:
442   Class:   ELFCLASS64
443   Data:    ELFDATA2LSB
444   Type:    ET_EXEC
445   Machine: EM_X86_64
446 Sections:
447   - Name:    .dynamic
448     Type:    SHT_DYNAMIC
449     Address: 0x1000
450     Entries:
451       - Tag:   DT_STRTAB
452         Value: 0xFFFF0000
453       - Tag:   DT_NULL
454         Value: 0x0
455 ProgramHeaders:
456   - Type: PT_LOAD
457     VAddr: 0x1000
458     Sections:
459       - Section: .dynamic
461 ## Check that llvm-readobj reports a warning when a dynamic relocation section
462 ## has sh_entsize field with size != sizeof(Elf_Rela).
464 # RUN: llvm-readobj --dyn-relocations \
465 # RUN:   %p/Inputs/corrupt-invalid-relocation-size.elf.x86-64 2>&1 \
466 # RUN:    | FileCheck --check-prefix=RELOC-BROKEN-ENTSIZE %s
468 # RELOC-BROKEN-ENTSIZE: warning: invalid section size (24) or entity size (25)
470 ## Check that llvm-readobj reports a warning when .dynamic section has an invalid
471 ## size, which isn't a multiple of the dynamic entry size. 
473 # RUN: yaml2obj %s --docnum=22 -o %t22
474 # RUN: llvm-readobj --dyn-relocations %t22 2>&1 | FileCheck --check-prefix=DYN-TABLE-SIZE %s
476 # DYN-TABLE-SIZE: warning: invalid section size (1) or entity size (16)
478 --- !ELF
479 FileHeader:
480   Class:   ELFCLASS64
481   Data:    ELFDATA2LSB
482   Type:    ET_EXEC
483   Machine: EM_X86_64
484 Sections:
485   - Name:    .dynamic
486     Type:    SHT_DYNAMIC
487     Content: "00"
489 ## PT_DYNAMIC's p_offset field is so large that p_offset + p_filesz is larger
490 ## than the object size. Check llvm-readobj reports it.
492 # RUN: yaml2obj %s --docnum=23 -o %t23
493 # RUN: not llvm-readobj --dyn-relocations %t23 2>&1 | FileCheck --check-prefix=DYN-TABLE-PHDR %s
495 # DYN-TABLE-PHDR: error: PT_DYNAMIC segment offset + size exceeds the size of the file
497 --- !ELF
498 FileHeader:
499   Class:   ELFCLASS64
500   Data:    ELFDATA2LSB
501   Type:    ET_EXEC
502   Machine: EM_X86_64
503 Sections:
504   - Name: .dynamic
505     Type: SHT_DYNAMIC
506     Entries:
507       - Tag:   DT_NULL
508         Value: 0
509 ProgramHeaders:
510   - Type:   PT_DYNAMIC
511     Offset: 0xffff0000
512     Sections:
513       - Section: .dynamic
515 ## PT_DYNAMIC's p_filesz field is so large that p_offset + p_filesz is larger
516 ## than the object size. Check llvm-readobj reports it.
518 # RUN: yaml2obj %s --docnum=24 -o %t24
519 # RUN: not llvm-readobj --dyn-relocations %t24 2>&1 \
520 # RUN:  | FileCheck --check-prefix=DYN-TABLE-PHDR %s
522 --- !ELF
523 FileHeader:
524   Class:   ELFCLASS64
525   Data:    ELFDATA2LSB
526   Type:    ET_EXEC
527   Machine: EM_X86_64
528 Sections:
529   - Name: .dynamic
530     Type: SHT_DYNAMIC
531     Entries:
532       - Tag:   DT_NULL
533         Value: 0
534 ProgramHeaders:
535   - Type:     PT_DYNAMIC
536     FileSize: 0xffff0000
537     Sections:
538       - Section: .dynamic
540 # RUN: yaml2obj --docnum=25 %s -o %t25
541 # RUN: not obj2yaml 2>&1 %t25 | FileCheck %s -DFILE=%t25 --check-prefix=INVALID-SHSTRNDX
543 # INVALID-SHSTRNDX: Error reading file: [[FILE]]: section header string table index 255 does not exist
545 --- !ELF
546 FileHeader:
547   Class:    ELFCLASS64
548   Data:     ELFDATA2LSB
549   Type:     ET_REL
550   Machine:  EM_X86_64
551   SHStrNdx: 0xFF
552 Sections:
553   - Name: .foo
554     Type: SHT_PROGBITS
556 ## We report an error if the number of sections stored in sh_size
557 ## is greater than UINT64_MAX / sizeof(Elf_Shdr) == 288230376151711743.
558 ## Here we check that do not crash on a border value.
560 # RUN: yaml2obj --docnum=26 %s -o %t26
561 # RUN: not llvm-readobj -h %t26 2>&1 | FileCheck -DFILE=%t26 --check-prefix=INVALID-SEC-NUM1 %s
563 # INVALID-SEC-NUM1: error: '[[FILE]]': invalid section header table offset (e_shoff = 0x40) or invalid number of sections specified in the first section header's sh_size field (0x3ffffffffffffff)
565 --- !ELF
566 FileHeader:
567   Class:   ELFCLASS64
568   Data:    ELFDATA2LSB
569   Type:    ET_REL
570   Machine: EM_X86_64
571   SHNum:   0x0
572 Sections:
573   - Type: SHT_NULL
574     Size: 288230376151711743
576 ## See above, but now we test the UINT64_MAX / sizeof(Elf_Shdr) value.
577 ## The error is slightly different in this case.
579 # RUN: yaml2obj --docnum=27 %s -o %t27
580 # RUN: not llvm-readobj -h %t27 2>&1 | FileCheck -DFILE=%t27 --check-prefix=INVALID-SEC-NUM2 %s
582 # INVALID-SEC-NUM2: error: '[[FILE]]': invalid number of sections specified in the NULL section's sh_size field (288230376151711744)
584 --- !ELF
585 FileHeader:
586   Class:   ELFCLASS64
587   Data:    ELFDATA2LSB
588   Type:    ET_REL
589   Machine: EM_X86_64
590   SHNum:   0x0
591 Sections:
592   - Type: SHT_NULL
593     Size: 288230376151711744
595 ## Check the case when SHOffset is too large. SHOffset + sizeof(Elf_Shdr) overflows the uint64 type.
597 # RUN: yaml2obj --docnum=28 %s -o %t28
598 # RUN: not llvm-readobj -h %t28 2>&1 | FileCheck -DFILE=%t28 --check-prefix=INVALID-SEC-NUM3 %s
600 # INVALID-SEC-NUM3: error: '[[FILE]]': section header table goes past the end of the file: e_shoff = 0xffffffffffffffff
602 --- !ELF
603 FileHeader:
604   Class:    ELFCLASS64
605   Data:     ELFDATA2LSB
606   Type:     ET_REL
607   Machine:  EM_X86_64
608   SHOffset: 0xffffffffffffffff
610 ## Check that llvm-objdump reports an error when it tries to dump a
611 ## symbol name and .strtab is empty.
613 # RUN: yaml2obj %s --docnum=29 -o %t29
614 # RUN: not llvm-objdump -syms %t29 2>&1 | FileCheck -DFILE=%t29 --check-prefix=STRTAB-EMPTY2 %s
616 # STRTAB-EMPTY2: error: '[[FILE]]': SHT_STRTAB string table section [index 1] is empty
618 --- !ELF
619 FileHeader:
620   Class:   ELFCLASS64
621   Data:    ELFDATA2LSB
622   Type:    ET_DYN
623   Machine: EM_X86_64
624 Sections:
625   - Name: .strtab
626     Type: SHT_STRTAB
627     Content: ""
628 Symbols:
629   - Name: foo
631 ## Check that we report an error if SHT_GNU_versym has invalid
632 ## sh_entsize value (3 instead of 2) when trying to access the entries.
634 # RUN: yaml2obj %s --docnum=30 -o %t30
635 # RUN: not llvm-readobj -V %t30 2>&1 | FileCheck --check-prefix=INVALID-VER-SHENTSIZE %s
637 # INVALID-VER-SHENTSIZE: error: section [index 1] has invalid sh_entsize: expected 2, but got 3
639 --- !ELF
640 FileHeader:
641   Class:   ELFCLASS64
642   Data:    ELFDATA2LSB
643   OSABI:   ELFOSABI_FREEBSD
644   Type:    ET_DYN
645   Machine: EM_X86_64
646 Sections:
647   - Name:    .gnu.version
648     Type:    SHT_GNU_versym
649     EntSize: 0x0000000000000003
650     Entries: [ ]
651 ## Needed to trigger creation of .dynsym.
652 DynamicSymbols:
653   - Name:    foo
654     Binding: STB_GLOBAL
656 ## Check the case when e_shstrndx == SHN_XINDEX, but null section's sh_link contains
657 ## the index of a section header string table that is larger than the number of the sections.
659 # RUN: yaml2obj --docnum=31 %s -o %t31
660 # RUN: not llvm-objcopy %t31 2>&1 | FileCheck %s -DFILE=%t31 --check-prefix=INVALID-SHSTRTAB-INDEX
662 # INVALID-SHSTRTAB-INDEX: error: section header string table index 255 does not exist
664 --- !ELF
665 FileHeader:
666   Class:    ELFCLASS64
667   Data:     ELFDATA2LSB
668   Type:     ET_REL
669   Machine:  EM_X86_64
670 ## SHN_XINDEX == 0xffff.
671   SHStrNdx: 0xffff
672 Sections:
673   - Type: SHT_NULL
674     Link: 0xff