|
| 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( 0x0 ); |
| 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( 0x04000e0 ); |
| 50 | + note_seg->set_physical_address( 0x04000e0 ); |
| 51 | + note_seg->set_flags( PF_R ); |
| 52 | + note_seg->set_align( 0x4 ); |
| 53 | + |
| 54 | + // Create a .note.Xen section, and add it to the note segment. |
| 55 | + section* xen_note_sec = writer.sections.add( ".note.Xen" ); |
| 56 | + xen_note_sec->set_type( SHT_NOTE ); |
| 57 | + xen_note_sec->set_addr_align( 0x4 ); |
| 58 | + xen_note_sec->set_flags( SHF_ALLOC ); |
| 59 | + note_section_accessor xen_note_writer( writer, xen_note_sec ); |
| 60 | + |
| 61 | + char descr[2] = { 0x1f, 0x1e }; |
| 62 | + xen_note_writer.add_note( 0x12, "Xen", descr, sizeof( descr ) ); |
| 63 | + |
| 64 | + note_seg->add_section_index( xen_note_sec->get_index(), |
| 65 | + xen_note_sec->get_addr_align() ); |
| 66 | + |
| 67 | + // Setup entry point. Usually, a linker sets this address on base of |
| 68 | + // ‘_start’ label. |
| 69 | + writer.set_entry( 0x400104 ); |
| 70 | + |
| 71 | + // Create ELF file |
| 72 | + writer.save( "test_invalid_pvh_note.bin" ); |
| 73 | + |
| 74 | + return 0; |
| 75 | +} |
0 commit comments