blob: ca83e58f53a96ea0394b10196bb62635ea409577 [file] [log] [blame]
Jake Ehrlich36a2eb32017-10-10 18:47:09 +00001# This test is checking to ensure that if a section is removed in the presence
2# of a segment that the segment maintains its shape and properties and that any
3# section inside that segment maintains the relative positioning it had in the
4# segment. Note worthy is that .text3 keeps its offset despite it being
5# possible to place it after .text when .text2 is removed.
6
7# RUN: yaml2obj %s -o %t
8# RUN: llvm-objcopy -R .text2 %t %t2
Jordan Rupprecht298ea3f2019-01-11 18:06:31 +00009# RUN: llvm-readobj --file-headers --program-headers --sections %t2 | FileCheck %s
Hubert Tong1f6ddfb2019-06-19 16:04:24 +000010# RUN: od -t x1 -j 8192 -N 4 %t2 | FileCheck %s --check-prefix=DATA
Jake Ehrlich36a2eb32017-10-10 18:47:09 +000011
12!ELF
13FileHeader:
14 Class: ELFCLASS64
15 Data: ELFDATA2LSB
16 Type: ET_EXEC
17 Machine: EM_X86_64
18Sections:
19 - Name: .text
20 Type: SHT_PROGBITS
21 Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
22 Address: 0x1000
23 AddressAlign: 0x1000
24 Size: 4096
25 - Name: .text2
26 Type: SHT_PROGBITS
27 Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
28 Address: 0x2000
29 AddressAlign: 0x1000
30 Size: 4096
31 Content: "DEADBEEF"
32 - Name: .text3
33 Type: SHT_PROGBITS
34 Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
35 Address: 0x3000
36 AddressAlign: 0x1000
37 Size: 4096
38ProgramHeaders:
39 - Type: PT_LOAD
40 Flags: [ PF_X, PF_R ]
41 Sections:
42 - Section: .text
43 - Section: .text2
44 - Section: .text3
George Rimar27799872019-10-20 14:47:17 +000045## TODO (grimar): without the following line (i.e. without an empty symbol table),
46## llvm-objcopy adds an empty .strtab section. It doesn't look correct.
47Symbols: []
Jake Ehrlich36a2eb32017-10-10 18:47:09 +000048
49# Make sure that when we remove a section we overwrite it with zeros
Hubert Tong1f6ddfb2019-06-19 16:04:24 +000050# DATA: {{^[^[:blank:]]+}} 00 00 00 00
Jake Ehrlich36a2eb32017-10-10 18:47:09 +000051
Eugene Leviantc7e6d142019-07-23 08:03:30 +000052#CHECK: SectionHeaderCount: 4
Jake Ehrlich36a2eb32017-10-10 18:47:09 +000053
54# CHECK: Sections [
55# CHECK: Section {
56# CHECK-NEXT: Index: 0
57# CHECK-NEXT: Name: (0)
58# CHECK-NEXT: Type: SHT_NULL (0x0)
59# CHECK-NEXT: Flags [ (0x0)
60# CHECK-NEXT: ]
61# CHECK-NEXT: Address: 0x0
62# CHECK-NEXT: Offset:
63# CHECK-NEXT: Size:
64# CHECK-NEXT: Link: 0
65# CHECK-NEXT: Info: 0
66# CHECK-NEXT: AddressAlignment: 0
67# CHECK-NEXT: EntrySize: 0
68# CHECK-NEXT: }
69# CHECK-NEXT: Section {
70# CHECK-NEXT: Index: 1
71# CHECK-NEXT: Name: .text
72# CHECK-NEXT: Type: SHT_PROGBITS
73# CHECK-NEXT: Flags [
74# CHECK-NEXT: SHF_ALLOC
75# CHECK-NEXT: SHF_EXECINSTR
76# CHECK-NEXT: ]
77# CHECK-NEXT: Address: 0x1000
78# CHECK-NEXT: Offset: 0x1000
79# CHECK-NEXT: Size:
80# CHECK-NEXT: Link: 0
81# CHECK-NEXT: Info: 0
82# CHECK-NEXT: AddressAlignment: 4096
83# CHECK-NEXT: EntrySize: 0
84# CHECK-NEXT: }
85# CHECK-NEXT: Section {
86# CHECK-NEXT: Index: 2
87# CHECK-NEXT: Name: .text3
88# CHECK-NEXT: Type: SHT_PROGBITS (0x1)
89# CHECK-NEXT: Flags [
90# CHECK-NEXT: SHF_ALLOC
91# CHECK-NEXT: SHF_EXECINSTR
92# CHECK-NEXT: ]
93# CHECK-NEXT: Address: 0x3000
94# CHECK-NEXT: Offset: 0x3000
95# CHECK-NEXT: Size:
96# CHECK-NEXT: Link: 0
97# CHECK-NEXT: Info: 0
98# CHECK-NEXT: AddressAlignment: 4096
99# CHECK-NEXT: EntrySize: 0
100# CHECK-NEXT: }
101# CHECK-NEXT: Section {
102# CHECK-NEXT: Index: 3
Jake Ehrlich36a2eb32017-10-10 18:47:09 +0000103# CHECK-NEXT: Name: .shstrtab
104# CHECK-NEXT: Type: SHT_STRTAB (0x3)
105# CHECK-NEXT: Flags [ (0x0)
106# CHECK-NEXT: ]
107# CHECK-NEXT: Address: 0x0
108# CHECK-NEXT: Offset:
109# CHECK-NEXT: Size:
110# CHECK-NEXT: Link: 0
111# CHECK-NEXT: Info: 0
112# CHECK-NEXT: AddressAlignment: 1
113# CHECK-NEXT: EntrySize: 0
114# CHECK-NEXT: }
115# CHECK-NEXT: ]
116
117#CHECK: ProgramHeaders [
118#CHECK-NEXT: ProgramHeader {
119#CHECK-NEXT: Type: PT_LOAD (0x1)
120#CHECK-NEXT: Offset: 0x1000
121#CHECK-NEXT: VirtualAddress: 0x0
122#CHECK-NEXT: PhysicalAddress: 0x0
123#CHECK-NEXT: FileSize: 12288
124#CHECK-NEXT: MemSize: 12288
125#CHECK-NEXT: Flags [ (0x5)
126#CHECK-NEXT: PF_R (0x4)
127#CHECK-NEXT: PF_X (0x1)
128#CHECK-NEXT: ]
129#CHECK-NEXT: Alignment: 4096
130#CHECK-NEXT: }
131#CHECK-NEXT:]