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
use crate::*;
use crate::segment::*;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Copy, Hash, PartialOrd, Ord, PartialEq, Eq, Serialize, Deserialize)]
pub struct Segment32 {
pub header: Phdr32,
}
impl Segment for Segment32 {
type Header = Phdr32;
fn new(header: Phdr32) -> Self {
Self { header }
}
fn header_deserialize(
buf: &[u8],
header_start: usize,
) -> Result<Phdr32, Box<dyn std::error::Error>> {
match bincode::deserialize(&buf[header_start..]) {
Ok(header) => Ok(header),
Err(e) => Err(e),
}
}
fn header_size() -> usize {
Phdr32::size() as usize
}
}
impl Segment32 {
pub fn new(header: Phdr32) -> Self {
Self { header }
}
}
#[repr(C)]
#[derive(Debug, Clone, Copy, Hash, PartialOrd, Ord, PartialEq, Eq, Serialize, Deserialize)]
pub struct Phdr32 {
pub p_type: Elf32Word,
pub p_offset: Elf32Off,
pub p_vaddr: Elf32Addr,
pub p_paddr: Elf32Addr,
pub p_filesz: Elf32Word,
pub p_memsz: Elf32Word,
pub p_flags: Elf32Word,
pub p_align: Elf32Word,
}
impl Default for Phdr32 {
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 Phdr32 {
pub fn size() -> Elf32Half {
0x20
}
pub fn get_type(&self) -> segment_type::Type {
segment_type::Type::from(self.p_type)
}
pub fn set_type(&mut self, ptype: segment_type::Type) {
self.p_type = ptype.to_bytes();
}
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),
}
}
}