Skip to content

Commit d58d30c

Browse files
andreeaflorescualexandruag
authored andcommitted
regenerated test_elfnote.bin using ELFIO
Added reproduction steps and the source file from which the binary was generated. Signed-off-by: Andreea Florescu <fandree@amazon.com>
1 parent a2cedb2 commit d58d30c

File tree

3 files changed

+106
-0
lines changed

3 files changed

+106
-0
lines changed

docs/TESTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,16 @@ All the ELF files used in `linux-loader` are generated using the `ELFIO` tool.
5353
The [`.cpp` source files](elfio_files) are created from the ELFIO `writer`
5454
example, with minimal changes on top.
5555

56+
The next section includes an example of how to use the source files to generate
57+
the binaries used in the unit tests.
58+
5659
| Source File | Generated Binary File |
5760
|-------------|-----------------------|
5861
| bad_align_writer.cpp | test_bad_align.bin |
5962
| invalid_pvh_note_writer.cpp | test_invalid_pvh_note.bin |
6063
| dummy_note.cpp | test_dummy_note.bin |
6164
| basic_elf.cpp | test_elf.bin |
65+
| pvh_note.cpp | test_elfnote.bin |
6266

6367
#### Example for generating `test_bad_align.bin`
6468

docs/elfio_files/ignored_phv.cpp

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
/*
2+
Copyright (C) 2001-present by Serge Lamikhov-Center
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to deal
6+
in the Software without restriction, including without limitation the rights
7+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20+
THE SOFTWARE.
21+
*/
22+
23+
#include <elfio/elfio.hpp>
24+
25+
using namespace ELFIO;
26+
27+
int main( void )
28+
{
29+
elfio writer;
30+
31+
// You can't proceed without this function call!
32+
writer.create( ELFCLASS64, ELFDATA2LSB );
33+
34+
writer.set_os_abi( ELFOSABI_LINUX );
35+
writer.set_type( ET_EXEC );
36+
writer.set_machine( EM_X86_64 );
37+
38+
// Create a loadable segment
39+
segment* load_seg = writer.segments.add();
40+
load_seg->set_type( PT_LOAD );
41+
load_seg->set_virtual_address( 0x400000 );
42+
load_seg->set_physical_address( 0x400000 );
43+
load_seg->set_flags( PF_R );
44+
load_seg->set_align( 0x200000 );
45+
46+
// Create a note segment
47+
segment* note_seg = writer.segments.add();
48+
note_seg->set_type( PT_NOTE );
49+
note_seg->set_virtual_address( 0x4000b0 );
50+
note_seg->set_physical_address( 0x4000b0 );
51+
note_seg->set_flags( PF_R );
52+
note_seg->set_align( 0x4 );
53+
54+
// Create a .note.dummy section, and add it to the note segment.
55+
section* dummy_note_sec = writer.sections.add( ".note.dummy" );
56+
dummy_note_sec->set_type( SHT_NOTE );
57+
dummy_note_sec->set_addr_align( 0x4 );
58+
dummy_note_sec->set_flags( SHF_ALLOC );
59+
note_section_accessor dummy_note_writer( writer, dummy_note_sec );
60+
61+
unsigned char dummy_desc[8] = { 0xfe, 0xca, 0xfe, 0xca, 0x00, 0x00 };
62+
dummy_note_writer.add_note( 0x01, "dummy", dummy_desc, sizeof( dummy_desc ) );
63+
64+
note_seg->add_section_index( dummy_note_sec->get_index(),
65+
dummy_note_sec->get_addr_align() );
66+
67+
// Create a .note.Xen section, and add it to the note segment.
68+
section* xen_note_sec = writer.sections.add( ".note.Xen" );
69+
xen_note_sec->set_type( SHT_NOTE );
70+
xen_note_sec->set_addr_align( 0x4 );
71+
xen_note_sec->set_flags( SHF_ALLOC );
72+
note_section_accessor xen_note_writer( writer, xen_note_sec );
73+
74+
unsigned char xen_descr[8] = { 0x1f, 0xfe, 0xe1, 0x01 };
75+
xen_note_writer.add_note( 0x12, "Xen", xen_descr, sizeof( xen_descr ) );
76+
77+
note_seg->add_section_index( xen_note_sec->get_index(),
78+
xen_note_sec->get_addr_align() );
79+
80+
// Create a .note.gnu.build-id section, and add it to the note segment.
81+
section* gnu_note_sec = writer.sections.add( ".note.gnu.build-id" );
82+
gnu_note_sec->set_type( SHT_NOTE );
83+
gnu_note_sec->set_addr_align( 0x4 );
84+
gnu_note_sec->set_flags( SHF_ALLOC );
85+
note_section_accessor gnu_note_writer( writer, gnu_note_sec );
86+
87+
unsigned char gnu_descr[20] = { 0x28, 0xcc, 0x3d, 0x3d, 0x89, 0xe5, 0xbf,
88+
0xc6, 0x07, 0xa8, 0xce, 0xe3, 0x29, 0xcc,
89+
0x70, 0xd0, 0xbf, 0x34, 0x69, 0x2b };
90+
gnu_note_writer.add_note( 0x03, "GNU", gnu_descr, sizeof( gnu_descr ) );
91+
92+
note_seg->add_section_index( gnu_note_sec->get_index(),
93+
gnu_note_sec->get_addr_align() );
94+
// Setup entry point. Usually, a linker sets this address on base of
95+
// ‘_start’ label.
96+
writer.set_entry( 0x400108 );
97+
98+
// Create ELF file
99+
writer.save( "test_elfnote.bin" );
100+
101+
return 0;
102+
}
-4 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)