blob: 3fe6296645b51392d8e8a3be647823bf57108729 [file] [log] [blame]
Kevin Enderby40fdbf82016-01-26 18:20:49 +00001// An odd Mach-O file, with just a mach header with all but the magic field
2// and filetype zeros. The cputype and cpusubtype fields being zero are invalid,
3// but that does not mater for the most part to display some of the contents.
4RUN: llvm-objdump -private-headers %p/Inputs/macho-invalid-zero-ncmds -macho \
5RUN: | FileCheck -check-prefix ZERO-NCMDS %s
6ZERO-NCMDS: MH_MAGIC_64 0 0 0x00 OBJECT 0 0 0x00000000
Filipe Cabecinhas40139502015-01-15 22:52:38 +00007
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +00008RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho64-invalid-incomplete-load-command 2>&1 \
Filipe Cabecinhas40139502015-01-15 22:52:38 +00009RUN: | FileCheck -check-prefix INCOMPLETE-LOADC %s
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +000010INCOMPLETE-LOADC: truncated or malformed object (load command 0 extends past the end all load commands in the file)
Filipe Cabecinhas40139502015-01-15 22:52:38 +000011
Kevin Enderby368e7142016-05-03 17:16:08 +000012RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho64-invalid-incomplete-load-command.1 2>&1 \
13RUN: | FileCheck -check-prefix INCOMPLETE-LOADC-1 %s
14INCOMPLETE-LOADC-1: truncated or malformed object (load command 1 extends past the end all load commands in the file)
15
Kevin Enderby87025742016-04-13 21:17:58 +000016RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho-invalid-too-small-load-command 2>&1 \
Filipe Cabecinhas40139502015-01-15 22:52:38 +000017RUN: | FileCheck -check-prefix SMALL-LOADC-SIZE %s
Kevin Enderby87025742016-04-13 21:17:58 +000018RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho64-invalid-too-small-load-command 2>&1 \
Filipe Cabecinhas40139502015-01-15 22:52:38 +000019RUN: | FileCheck -check-prefix SMALL-LOADC-SIZE %s
Kevin Enderby6e295f22016-04-21 21:20:40 +000020SMALL-LOADC-SIZE: truncated or malformed object (load commands extend past the end of the file)
Filipe Cabecinhas40139502015-01-15 22:52:38 +000021
Kevin Enderbya8e3ab02016-05-03 23:13:50 +000022RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho64-invalid-too-small-load-command.1 2>&1 \
23RUN: | FileCheck -check-prefix SMALL-LOADC-SIZE-1 %s
24SMALL-LOADC-SIZE-1: truncated or malformed object (load command 1 with size less than 8 bytes)
25
Filipe Cabecinhas40139502015-01-15 22:52:38 +000026RUN: not llvm-objdump -private-headers %p/Inputs/macho-invalid-too-small-segment-load-command 2>&1 \
27RUN: | FileCheck -check-prefix SMALL-SEGLOADC-SIZE %s
Kevin Enderbyb34e3a12016-05-05 17:43:35 +000028RUN: not llvm-objdump -private-headers %p/Inputs/macho-invalid-too-small-segment-load-command.1 2>&1 \
Filipe Cabecinhas40139502015-01-15 22:52:38 +000029RUN: | FileCheck -check-prefix SMALL-SEGLOADC-SIZE %s
Kevin Enderbyb34e3a12016-05-05 17:43:35 +000030SMALL-SEGLOADC-SIZE: truncated or malformed object (load command 0 LC_SEGMENT cmdsize too small)
31RUN: not llvm-objdump -private-headers %p/Inputs/macho64-invalid-too-small-segment-load-command 2>&1 \
32RUN: | FileCheck -check-prefix SMALL-SEGLOADC-SIZE-64 %s
33SMALL-SEGLOADC-SIZE-64: truncated or malformed object (load command 0 LC_SEGMENT_64 cmdsize too small)
Filipe Cabecinhas40139502015-01-15 22:52:38 +000034
35RUN: not llvm-objdump -private-headers %p/Inputs/macho-invalid-no-size-for-sections 2>&1 \
36RUN: | FileCheck -check-prefix TOO-MANY-SECTS %s
Kevin Enderbyb34e3a12016-05-05 17:43:35 +000037TOO-MANY-SECTS: truncated or malformed object (load command 0 inconsistent cmdsize in LC_SEGMENT for the number of sections)
Filipe Cabecinhas40139502015-01-15 22:52:38 +000038RUN: not llvm-objdump -private-headers %p/Inputs/macho64-invalid-no-size-for-sections 2>&1 \
Kevin Enderbyb34e3a12016-05-05 17:43:35 +000039RUN: | FileCheck -check-prefix TOO-MANY-SECTS-64 %s
40TOO-MANY-SECTS-64: truncated or malformed object (load command 0 inconsistent cmdsize in LC_SEGMENT_64 for the number of sections)
Filipe Cabecinhas40139502015-01-15 22:52:38 +000041
Kevin Enderby87025742016-04-13 21:17:58 +000042RUN: not llvm-objdump -macho -t %p/Inputs/macho-invalid-bad-symbol-index 2>&1 \
Filipe Cabecinhas40139502015-01-15 22:52:38 +000043RUN: | FileCheck -check-prefix BAD-SYMBOL %s
Kevin Enderby87025742016-04-13 21:17:58 +000044BAD-SYMBOL: truncated or malformed object (ilocalsym plus nlocalsym in LC_DYSYMTAB load command extends past the end of the symbol table)
45RUN: llvm-objdump -macho -t %p/Inputs/macho-valid-0-nsyms 2>&1 \
Kevin Enderby1829c682016-01-22 22:49:55 +000046RUN: | FileCheck -check-prefix ZERO-NSYMS %s
47ZERO-NSYMS: SYMBOL TABLE
Filipe Cabecinhas40139502015-01-15 22:52:38 +000048
49RUN: not llvm-objdump -t %p/Inputs/macho-invalid-symbol-name-past-eof 2>&1 \
50RUN: | FileCheck -check-prefix NAME-PAST-EOF %s
Kevin Enderby81e8b7d2016-04-20 21:24:34 +000051NAME-PAST-EOF: truncated or malformed object (bad string index: 4261412866 for symbol at index 0)
Kevin Enderbyf681ec52016-01-22 18:47:14 +000052RUN: llvm-nm -pa %p/Inputs/macho-invalid-symbol-name-past-eof 2>&1 \
53RUN: | FileCheck -check-prefix NAME-PAST-EOF-nm-pa %s
54NAME-PAST-EOF-nm-pa: 0000000000000000 - 00 0000 SO bad string index
55RUN: llvm-nm -pax %p/Inputs/macho-invalid-symbol-name-past-eof 2>&1 \
56RUN: | FileCheck -check-prefix NAME-PAST-EOF-nm-pax %s
57NAME-PAST-EOF-nm-pax: 0000000000000000 64 00 0000 fe000002 bad string index
Filipe Cabecinhas40139502015-01-15 22:52:38 +000058
Kevin Enderbyac9e1552016-05-17 17:10:12 +000059RUN: not llvm-objdump -t %p/Inputs/macho-bad-archive1.a 2>&1 \
60RUN: | FileCheck -check-prefix NAME-PAST-EOF-ARCHIVE %s
61NAME-PAST-EOF-ARCHIVE: macho-bad-archive1.a(macho-invalid-symbol-name-past-eof) truncated or malformed object (bad string index: 4261412866 for symbol at index 0)
62
Kevin Enderby9acb1092016-05-31 20:35:34 +000063RUN: not llvm-objdump -macho -arch all -t %p/Inputs/macho-universal-bad1.x86_64.i386 2>&1 \
64RUN: | FileCheck -check-prefix NAME-PAST-EOF-FAT %s
65NAME-PAST-EOF-FAT: macho-universal-bad1.x86_64.i386 (for architecture x86_64) truncated or malformed object (bad string index: 4261412866 for symbol at index 0)
66RUN: not llvm-objdump -macho -arch all -t %p/Inputs/macho-universal-archive-bad1.x86_64.i386 2>&1 \
67RUN: | FileCheck -check-prefix NAME-PAST-EOF-FAT-ARCHIVE %s
68NAME-PAST-EOF-FAT-ARCHIVE: macho-universal-archive-bad1.x86_64.i386(macho-invalid-symbol-name-past-eof) (for architecture x86_64) truncated or malformed object (bad string index: 4261412866 for symbol at index 0)
69
Kevin Enderby1f472ea2016-01-21 21:13:27 +000070RUN: llvm-nm %p/Inputs/macho-invalid-section-index-getSectionRawName 2>&1 \
Rafael Espindola0d85d102015-05-22 14:59:27 +000071RUN: | FileCheck -check-prefix INVALID-SECTION-IDX-SYMBOL-SEC %s
Kevin Enderby1f472ea2016-01-21 21:13:27 +000072INVALID-SECTION-IDX-SYMBOL-SEC: 0000000100000000 S __mh_execute_header
73RUN: llvm-nm -m %p/Inputs/macho-invalid-section-index-getSectionRawName 2>&1 \
74RUN: | FileCheck -check-prefix INVALID-SECTION-IDX-SYMBOL-SEC-m %s
75INVALID-SECTION-IDX-SYMBOL-SEC-m: 0000000100000000 (?,?) [referenced dynamically] external __mh_execute_header
76RUN: llvm-nm -pax %p/Inputs/macho-invalid-section-index-getSectionRawName 2>&1 \
77RUN: | FileCheck -check-prefix INVALID-SECTION-IDX-SYMBOL-SEC-pax %s
78INVALID-SECTION-IDX-SYMBOL-SEC-pax: 0000000100000000 0f 42 0010 00000065 __mh_execute_header
Kevin Enderby5afbc1c2016-03-23 20:27:00 +000079RUN: not llvm-objdump -t %p/Inputs/macho-invalid-section-index-getSectionRawName 2>&1 \
80RUN: | FileCheck -check-prefix INVALID-SECTION-IDX-SYMBOL-SEC-objdump %s
Kevin Enderby7bd8d992016-05-02 20:28:12 +000081INVALID-SECTION-IDX-SYMBOL-SEC-objdump: truncated or malformed object (bad section index: 66 for symbol at index 8)
Alexey Samsonov9f336632015-06-04 19:45:22 +000082
Kevin Enderby87025742016-04-13 21:17:58 +000083RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho-invalid-header 2>&1 | FileCheck -check-prefix INVALID-HEADER %s
84INVALID-HEADER: The file was not recognized as a valid object file
Alexey Samsonovf8a7bf82015-06-04 22:26:44 +000085
Kevin Enderby87025742016-04-13 21:17:58 +000086RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho64-invalid-incomplete-segment-load-command 2>&1 | FileCheck -check-prefix INCOMPLETE-SEGMENT-LOADC %s
Kevin Enderby6e295f22016-04-21 21:20:40 +000087INCOMPLETE-SEGMENT-LOADC: truncated or malformed object (load commands extend past the end of the file)
Kevin Enderbyac9e1552016-05-17 17:10:12 +000088
89RUN: not llvm-objdump -macho -private-headers %p/Inputs/macho-bad-archive2.a 2>&1 | FileCheck -check-prefix INCOMPLETE-SEGMENT-LOADC-ARCHIVE %s
90INCOMPLETE-SEGMENT-LOADC-ARCHIVE: macho-bad-archive2.a(macho64-invalid-incomplete-segment-load-command) truncated or malformed object (load commands extend past the end of the file)
Kevin Enderby9acb1092016-05-31 20:35:34 +000091
92RUN: not llvm-objdump -macho -private-headers -arch all %p/Inputs/macho-universal-bad2.x86_64.i386 2>&1 | FileCheck -check-prefix INCOMPLETE-SEGMENT-LOADC-FAT %s
93INCOMPLETE-SEGMENT-LOADC-FAT: macho-universal-bad2.x86_64.i386 (for architecture x86_64) truncated or malformed object (load commands extend past the end of the file)
94
95RUN: not llvm-objdump -macho -private-headers -arch all %p/Inputs/macho-universal-archive-bad2.x86_64.i386 2>&1 | FileCheck -check-prefix INCOMPLETE-SEGMENT-LOADC-FAT-ARCHIVE %s
96INCOMPLETE-SEGMENT-LOADC-FAT-ARCHIVE: macho-universal-archive-bad2.x86_64.i386(macho64-invalid-incomplete-segment-load-command) (for architecture x86_64) truncated or malformed object (load commands extend past the end of the file)