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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
use section::Section64;
use segment::Segment64;
use crate::{
header,
section::{self, Contents64, ShdrPreparation64, StrTabEntry},
segment,
};
const SHSTRTAB_INITIAL_SIZE: usize = 0xb;
#[derive(Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
#[repr(C)]
pub struct ELF64 {
pub ehdr: header::Ehdr64,
pub sections: Vec<section::Section64>,
pub segments: Vec<segment::Segment64>,
}
impl Default for ELF64 {
fn default() -> Self {
Self {
ehdr: {
let mut hdr = header::Ehdr64::default();
hdr.e_shnum = 2;
hdr.e_shstrndx = 1;
hdr.e_shoff += SHSTRTAB_INITIAL_SIZE as u64;
hdr
},
sections: {
let mut scts = Vec::with_capacity(50);
scts.push(section::Section64::new_null_section());
let shstrtab_contents = Contents64::new_string_table(vec![".shstrtab".to_string()]);
scts.push(section::Section64 {
name: ".shstrtab".to_string(),
header: section::Shdr64 {
sh_name: 1,
sh_type: section::Type::StrTab.into(),
sh_flags: 0,
sh_addr: 0,
sh_offset: header::Ehdr64::SIZE as u64,
sh_size: shstrtab_contents.size() as u64,
sh_link: 0,
sh_info: 0,
sh_addralign: 1,
sh_entsize: 0,
},
contents: shstrtab_contents,
});
scts
},
segments: Vec::with_capacity(10),
}
}
}
impl ELF64 {
pub fn add_section(&mut self, mut sct: Section64) {
let last_sct_idx = self.sections.len() - 2;
self.fill_elf_info(&mut sct, last_sct_idx);
self.ehdr.e_shoff += sct.header.sh_size;
self.ehdr.e_shnum += 1;
self.ehdr.e_shstrndx += 1;
self.sections.insert(self.sections.len() - 1, sct);
}
pub fn add_segment(&mut self, sgt: Segment64) {
self.ehdr.e_shoff += segment::Phdr64::SIZE as u64;
for sct in self.sections.iter_mut() {
sct.header.sh_offset += segment::Phdr64::SIZE as u64;
}
self.ehdr.e_phnum += 1;
self.segments.push(sgt);
}
pub fn first_shidx_by<P>(&self, predicate: P) -> Option<usize>
where
P: Fn(§ion::Section64) -> bool,
{
for (i, sct) in self.sections.iter().enumerate() {
if predicate(sct) {
return Some(i);
}
}
None
}
pub fn first_section_by<P>(&self, predicate: P) -> Option<§ion::Section64>
where
P: Fn(§ion::Section64) -> bool,
{
match self.first_shidx_by(predicate) {
Some(idx) => Some(&self.sections[idx]),
None => None,
}
}
pub fn first_mut_section_by<P>(&mut self, predicate: P) -> Option<&mut section::Section64>
where
P: Fn(§ion::Section64) -> bool,
{
match self.first_shidx_by(predicate) {
Some(idx) => Some(&mut self.sections[idx]),
None => None,
}
}
pub fn to_le_bytes(&self) -> Vec<u8> {
let mut file_binary: Vec<u8> = Vec::new();
let mut header_binary = self.ehdr.to_le_bytes();
file_binary.append(&mut header_binary);
for seg in self.segments.iter() {
let mut phdr_binary = seg.header.to_le_bytes();
file_binary.append(&mut phdr_binary);
}
for sct in self.sections.iter() {
let mut section_binary = sct.to_le_bytes();
file_binary.append(&mut section_binary);
}
for sct in self.sections.iter() {
let mut shdr_binary = sct.header.to_le_bytes();
file_binary.append(&mut shdr_binary);
}
file_binary
}
fn fill_elf_info(&mut self, new_sct: &mut Section64, prev_sct_idx: usize) {
let shstrtab_len = self.sections[self.ehdr.e_shstrndx as usize].contents.size() as usize;
let prev_offset = self.sections[prev_sct_idx].header.sh_offset;
let prev_size = self.sections[prev_sct_idx].header.sh_size;
new_sct.header.sh_name = shstrtab_len as u32 + 1;
if let Contents64::StrTab(ref mut tab) =
self.sections[self.ehdr.e_shstrndx as usize].contents
{
tab.push(StrTabEntry {
v: new_sct.name.clone(),
idx: shstrtab_len + 1,
});
}
if prev_sct_idx == 0 {
new_sct.header.sh_offset = header::Ehdr64::SIZE as u64
+ segment::Phdr64::SIZE as u64 * self.segments.len() as u64
+ SHSTRTAB_INITIAL_SIZE as u64;
} else {
new_sct.header.sh_offset = prev_offset + prev_size;
}
new_sct.header.sh_size = new_sct.contents.size() as u64;
}
}