forked from qmonnet/rbpf
-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Moves ELF header parsing from load() to load_with_parser(). * Reorders UnsupportedSBPFVersion to be directly checked behind the header OutOfBounds. * Splits out Executable::load_with_lenient_parser(). * Adds Executable::load_with_strict_parser(). * Adds new linker script and test ELF. * Adds tests.
- Loading branch information
Showing
10 changed files
with
471 additions
and
42 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
PHDRS | ||
{ | ||
text PT_LOAD ; | ||
rodata PT_LOAD ; | ||
data PT_LOAD ; | ||
dynamic PT_DYNAMIC ; | ||
} | ||
|
||
SECTIONS | ||
{ | ||
. = SIZEOF_HEADERS; | ||
.text : { *(.text*) } :text | ||
.rodata : { *(.rodata*) } :rodata | ||
.data.rel.ro : { *(.data.rel.ro*) } :rodata | ||
.dynamic : { *(.dynamic) } :dynamic | ||
.dynsym : { *(.dynsym) } :data | ||
.dynstr : { *(.dynstr) } :data | ||
.rel.dyn : { *(.rel.dyn) } :data | ||
.data : { *(.data*) } :data | ||
.bss : { *(.bss*) } :data | ||
.text 0x000000000 : { *(.text*) } :text | ||
.rodata 0x100000000 : { *(.rodata*) } :rodata | ||
.bss.stack 0x200000000 : { *(.bss.stack*) } :stack | ||
.bss.heap 0x300000000 : { *(.bss.heap*) } :heap | ||
.dynsym 0xFFFFFFFF00000000 : { *(.dynsym) } :dynsym | ||
.dynstr : { *(.dynstr) } :other | ||
.dynamic : { *(.dynamic) } :other | ||
.symtab : { *(.symtab) } :other | ||
.shstrtab : { *(.shstrtab) } :other | ||
.strtab : { *(.strtab) } :other | ||
/DISCARD/ : { | ||
*(.comment*) | ||
*(.eh_frame*) | ||
*(.gnu.hash*) | ||
*(.hash*) | ||
*(*hash*) | ||
*(.bss*) | ||
*(.data*) | ||
*(.rel.dyn*) | ||
} | ||
} | ||
|
||
PHDRS | ||
{ | ||
text PT_LOAD FLAGS(1); | ||
rodata PT_LOAD FLAGS(4); | ||
stack PT_GNU_STACK FLAGS(6); | ||
heap PT_LOAD FLAGS(6); | ||
dynsym PT_NULL FLAGS(0); | ||
other PT_NULL FLAGS(0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
PHDRS | ||
{ | ||
text PT_LOAD ; | ||
rodata PT_LOAD ; | ||
data PT_LOAD ; | ||
dynamic PT_DYNAMIC ; | ||
} | ||
|
||
SECTIONS | ||
{ | ||
. = SIZEOF_HEADERS; | ||
.text : { *(.text*) } :text | ||
.rodata : { *(.rodata*) } :rodata | ||
.data.rel.ro : { *(.data.rel.ro*) } :rodata | ||
.dynamic : { *(.dynamic) } :dynamic | ||
.dynsym : { *(.dynsym) } :data | ||
.dynstr : { *(.dynstr) } :data | ||
.rel.dyn : { *(.rel.dyn) } :data | ||
.data : { *(.data*) } :data | ||
.bss : { *(.bss*) } :data | ||
/DISCARD/ : { | ||
*(.eh_frame*) | ||
*(.gnu.hash*) | ||
*(.hash*) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#![feature(linkage)] | ||
|
||
#[link_section = ".bss.stack"] | ||
pub static _STACK: [u8; 0x1000] = [0; 0x1000]; | ||
#[link_section = ".bss.heap"] | ||
pub static _HEAP: [u8; 0x1000] = [0; 0x1000]; | ||
|
||
static _VAL_A: u64 = 41; | ||
static VAL_B: u64 = 42; | ||
static _VAL_C: u64 = 43; | ||
|
||
#[inline(never)] | ||
#[linkage="external"] | ||
fn foo() -> u64 { | ||
return unsafe { core::ptr::read_volatile(&VAL_B) }; | ||
} | ||
|
||
#[no_mangle] | ||
pub fn entrypoint() -> u64 { | ||
return foo(); | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters