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
use std::collections::HashSet;
use crate::*;
use crate::segment::*;
use serde::{Deserialize, Serialize};
#[derive(
Default, Debug, Clone, Copy, Hash, PartialOrd, Ord, PartialEq, Eq, Serialize, Deserialize,
)]
pub struct Segment64 {
pub header: Phdr64,
}
#[repr(C)]
#[derive(Debug, Clone, Copy, Hash, PartialOrd, Ord, PartialEq, Eq, Serialize, Deserialize)]
pub struct Phdr64 {
pub p_type: Elf64Word,
pub p_flags: Elf64Word,
pub p_offset: Elf64Off,
pub p_vaddr: Elf64Addr,
pub p_paddr: Elf64Addr,
pub p_filesz: Elf64Xword,
pub p_memsz: Elf64Xword,
pub p_align: Elf64Xword,
}
impl Default for Phdr64 {
fn default() -> Self {
Self {
p_type: 0,
p_flags: 0,
p_offset: 0,
p_vaddr: 0,
p_paddr: 0,
p_filesz: 0,
p_memsz: 0,
p_align: 0,
}
}
}
impl Phdr64 {
pub const SIZE: usize = 0x38;
pub fn get_type(&self) -> segment_type::Type {
segment_type::Type::from(self.p_type)
}
pub fn get_flags(&self) -> HashSet<segment::Flag> {
let mut mask: Elf64Word = 0b1;
let mut flags = HashSet::new();
loop {
if mask == 0 {
break;
}
if self.p_flags & mask != 0 {
flags.insert(segment::Flag::from(mask));
}
mask <<= 1;
}
flags
}
pub fn set_type(&mut self, ptype: segment_type::Type) {
self.p_type = ptype.to_bytes();
}
pub fn set_flags<'a, I>(&mut self, flags: I)
where
I: Iterator<Item = &'a segment::Flag>,
{
for flag in flags {
self.p_flags = self.p_flags | Into::<Elf64Word>::into(*flag);
}
}
pub fn to_le_bytes(&self) -> Vec<u8> {
bincode::serialize(self).unwrap()
}
pub fn deserialize(buf: &[u8], start: usize) -> Result<Self, Box<dyn std::error::Error>> {
match bincode::deserialize(&buf[start..]) {
Ok(header) => Ok(header),
Err(e) => Err(e),
}
}
}