1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
use crate::elf::header::{Header, Header64Pt2, HeaderPt1, HeaderPt2};
use crate::elf::program::{ProgramHeader, ProgramIter};
macro_rules! check {
($e:expr) => {
if !$e {
return Err("");
}
};
($e:expr, $msg: expr) => {
if !$e {
return Err($msg);
}
};
}
#[derive(Debug)]
pub struct ElfFile64<'a> {
pub input: &'a [u8],
pub header1: &'a HeaderPt1,
pub header2: &'a Header64Pt2,
}
impl<'a> ElfFile64<'a> {
pub fn new(input: &'a [u8]) -> Result<ElfFile64<'a>, &'static str> {
let header = match header::parse_header(input) {
Ok(h) => h,
Err(e) => return Err(e),
};
let pt2 = match header.pt2 {
HeaderPt2::Header32(_) => return Err("Not support 32-bit ELF"),
HeaderPt2::Header64(pt2) => pt2,
};
Ok(ElfFile64 {
input,
header1: header.pt1,
header2: pt2,
})
}
}
#[derive(Debug)]
pub struct ElfFile<'a> {
pub input: &'a [u8],
pub header: Header<'a>,
}
impl<'a> ElfFile<'a> {
pub fn new(input: &'a [u8]) -> Result<ElfFile<'a>, &'static str> {
let header = match header::parse_header(input) {
Ok(h) => h,
Err(e) => return Err(e),
};
Ok(ElfFile { input, header })
}
pub fn program_header(&self, index: u16) -> Result<ProgramHeader<'a>, &'static str> {
program::parse_program_header(self.input, self.header, index)
}
pub fn program_iter<'b>(&'b self) -> ProgramIter<'b, 'a> {
ProgramIter {
file: self,
next_index: 0,
}
}
}
pub mod control_flow;
pub mod dynamic;
pub mod header;
pub mod program;
pub mod sections;
pub mod slice;
pub mod symtabl;
pub mod zero;