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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
use crate::{HeaderTagFlag, MbiTagType};
use crate::{HeaderTagType, StructAsBytes};
use core::fmt;
use core::fmt::{Debug, Formatter};
use core::marker::PhantomData;
use core::mem::size_of;
use std::collections::HashSet;
#[derive(Copy, Clone)]
#[repr(C, packed(8))]
pub struct InformationRequestHeaderTag<const N: usize> {
typ: HeaderTagType,
flags: HeaderTagFlag,
size: u32,
requests: [MbiTagType; N],
}
impl<const N: usize> InformationRequestHeaderTag<N> {
pub fn new(flags: HeaderTagFlag, requests: [MbiTagType; N], size: Option<u32>) -> Self {
InformationRequestHeaderTag {
typ: HeaderTagType::InformationRequest,
flags,
size: size.unwrap_or(size_of::<Self>() as u32),
requests,
}
}
pub const fn typ(&self) -> HeaderTagType {
self.typ
}
pub const fn flags(&self) -> HeaderTagFlag {
self.flags
}
pub const fn size(&self) -> u32 {
self.size
}
pub const fn requests(&self) -> [MbiTagType; N] {
self.requests
}
pub const fn dynamic_requests_size(&self) -> u32 {
let base_struct_size = size_of::<InformationRequestHeaderTag<0>>();
let size_diff = self.size - base_struct_size as u32;
if size_diff > 0 {
size_diff / size_of::<u32>() as u32
} else {
0
}
}
pub fn req_iter(&self) -> InformationRequestHeaderTagIter {
let base_struct_size = size_of::<InformationRequestHeaderTag<0>>();
let count = self.dynamic_requests_size();
let base_ptr = self as *const InformationRequestHeaderTag<N>;
let base_ptr = base_ptr as *const u8;
let base_ptr = unsafe { base_ptr.add(base_struct_size) };
let base_ptr = base_ptr as *const MbiTagType;
InformationRequestHeaderTagIter::new(count, base_ptr)
}
}
impl<const N: usize> Debug for InformationRequestHeaderTag<N> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.debug_struct("InformationRequestHeaderTag")
.field("type", &{ self.typ })
.field("flags", &{ self.flags })
.field("size", &{ self.size })
.field("requests", &{ self.req_iter() })
.finish()
}
}
impl<const N: usize> StructAsBytes for InformationRequestHeaderTag<N> {}
#[derive(Debug)]
pub struct InformationRequestHeaderTagBuilder {
flag: HeaderTagFlag,
irs: HashSet<MbiTagType>,
}
impl InformationRequestHeaderTagBuilder {
pub fn new(flag: HeaderTagFlag) -> Self {
Self {
irs: HashSet::new(),
flag,
}
}
pub fn expected_len(&self) -> usize {
let basic_header_size = size_of::<InformationRequestHeaderTag<0>>();
let req_tags_size = self.irs.len() * size_of::<MbiTagType>();
basic_header_size + req_tags_size
}
pub fn add_ir(mut self, tag: MbiTagType) -> Self {
self.irs.insert(tag);
self
}
pub fn add_irs(mut self, tags: &[MbiTagType]) -> Self {
self.irs.extend(tags);
self
}
pub fn build(self) -> Vec<u8> {
let expected_len = self.expected_len();
let mut data = Vec::with_capacity(expected_len);
let basic_tag = InformationRequestHeaderTag::<0>::new(
self.flag,
[],
Some(expected_len as u32),
);
data.extend(basic_tag.struct_as_bytes());
#[cfg(debug_assertions)]
{
let basic_tag_size = size_of::<InformationRequestHeaderTag<0>>();
assert_eq!(
data.len(),
basic_tag_size,
"the vector must be as long as the basic tag!"
);
}
for tag in &self.irs {
let bytes: [u8; 4] = (*tag as u32).to_ne_bytes();
data.extend(bytes);
}
debug_assert_eq!(
data.len(),
expected_len,
"the byte vector must be as long as the expected size of the struct"
);
data
}
}
#[derive(Copy, Clone)]
pub struct InformationRequestHeaderTagIter<'a> {
base_ptr: *const MbiTagType,
i: u32,
count: u32,
_marker: PhantomData<&'a ()>,
}
impl<'a> InformationRequestHeaderTagIter<'a> {
fn new(count: u32, base_ptr: *const MbiTagType) -> Self {
Self {
i: 0,
count,
base_ptr,
_marker: PhantomData::default(),
}
}
}
impl<'a> Iterator for InformationRequestHeaderTagIter<'a> {
type Item = &'a MbiTagType;
fn next(&mut self) -> Option<Self::Item> {
if self.i < self.count {
let ptr = unsafe { self.base_ptr.offset(self.i as isize) };
self.i += 1;
Some(unsafe { &*ptr })
} else {
None
}
}
}
impl<'a> Debug for InformationRequestHeaderTagIter<'a> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
let mut debug = f.debug_list();
(*self).for_each(|e| {
debug.entry(e);
});
debug.finish()
}
}
#[cfg(test)]
mod tests {
use crate::{
HeaderTagFlag, InformationRequestHeaderTag, InformationRequestHeaderTagBuilder, MbiTagType,
};
#[test]
fn test_builder() {
let builder = InformationRequestHeaderTagBuilder::new(HeaderTagFlag::Required)
.add_ir(MbiTagType::EfiMmap)
.add_ir(MbiTagType::BootLoaderName)
.add_ir(MbiTagType::Cmdline);
assert_eq!(builder.expected_len(), 2 + 2 + 4 + 3 * 4);
let tag = builder.build();
let tag = unsafe {
(tag.as_ptr() as *const InformationRequestHeaderTag<3>)
.as_ref()
.unwrap()
};
assert_eq!(tag.flags, HeaderTagFlag::Required);
assert_eq!(tag.size, 2 + 2 + 4 + 3 * 4);
assert_eq!(tag.dynamic_requests_size(), 3);
assert!(tag.requests.contains(&MbiTagType::EfiMmap));
assert!(tag.requests.contains(&MbiTagType::BootLoaderName));
assert!(tag.requests.contains(&MbiTagType::Cmdline));
assert_eq!(tag.requests.len(), 3);
assert!(!tag.requests.contains(&MbiTagType::AcpiV1));
println!("{:#?}", tag);
}
}