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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
use crate::{
AddressHeaderTag, ConsoleHeaderTag, EfiBootServiceHeaderTag, EndHeaderTag,
EntryAddressHeaderTag, EntryEfi32HeaderTag, EntryEfi64HeaderTag, FramebufferHeaderTag,
HeaderTag, HeaderTagISA, HeaderTagType, InformationRequestHeaderTag, RelocatableHeaderTag,
};
use core::fmt::{Debug, Formatter};
use core::mem::size_of;
pub const MULTIBOOT2_HEADER_MAGIC: u32 = 0xe85250d6;
#[repr(transparent)]
pub struct Multiboot2Header<'a> {
inner: &'a Multiboot2BasicHeader,
}
impl<'a> Multiboot2Header<'a> {
pub unsafe fn from_addr(addr: usize) -> Self {
assert_ne!(0, addr, "`addr` is null pointer");
assert_eq!(
addr % 8,
0,
"`addr` must be 8-byte aligned, see Multiboot2 spec"
);
let ptr = addr as *const Multiboot2BasicHeader;
let reference = &*ptr;
assert_eq!(
reference.header_magic(),
MULTIBOOT2_HEADER_MAGIC,
"The Multiboot2 header must contain the MULTIBOOT2_HEADER_MAGIC={:x}",
MULTIBOOT2_HEADER_MAGIC
);
assert!(
reference.verify_checksum(),
"checksum invalid! Is {:x}, expected {:x}",
reference.checksum(),
Self::calc_checksum(reference.header_magic, reference.arch, reference.length)
);
Self { inner: reference }
}
pub const fn verify_checksum(&self) -> bool {
self.inner.verify_checksum()
}
pub const fn header_magic(&self) -> u32 {
self.inner.header_magic()
}
pub const fn arch(&self) -> HeaderTagISA {
self.inner.arch()
}
pub const fn length(&self) -> u32 {
self.inner.length()
}
pub const fn checksum(&self) -> u32 {
self.inner.checksum()
}
pub fn iter(&self) -> Multiboot2HeaderTagIter {
self.inner.tag_iter()
}
pub const fn calc_checksum(magic: u32, arch: HeaderTagISA, length: u32) -> u32 {
Multiboot2BasicHeader::calc_checksum(magic, arch, length)
}
}
impl<'a> Debug for Multiboot2Header<'a> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
let reference = unsafe { &*(self.inner as *const Multiboot2BasicHeader) };
Debug::fmt(reference, f)
}
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct Multiboot2BasicHeader {
header_magic: u32,
arch: HeaderTagISA,
length: u32,
checksum: u32,
}
impl Multiboot2BasicHeader {
#[cfg(feature = "builder")]
pub(crate) const fn new(arch: HeaderTagISA, length: u32) -> Self {
let magic = MULTIBOOT2_HEADER_MAGIC;
let checksum = Self::calc_checksum(magic, arch, length);
Multiboot2BasicHeader {
header_magic: magic,
arch,
length,
checksum,
}
}
pub const fn verify_checksum(&self) -> bool {
let check = Self::calc_checksum(self.header_magic, self.arch, self.length);
check == self.checksum
}
pub const fn calc_checksum(magic: u32, arch: HeaderTagISA, length: u32) -> u32 {
(0x100000000 - magic as u64 - arch as u64 - length as u64) as u32
}
pub const fn header_magic(&self) -> u32 {
self.header_magic
}
pub const fn arch(&self) -> HeaderTagISA {
self.arch
}
pub const fn length(&self) -> u32 {
self.length
}
pub const fn checksum(&self) -> u32 {
self.checksum
}
pub fn tag_iter(&self) -> Multiboot2HeaderTagIter {
let base_hdr_size = size_of::<Multiboot2BasicHeader>();
if base_hdr_size == self.length as usize {
panic!("No end tag!");
}
let tag_base_addr = self as *const Multiboot2BasicHeader;
let tag_base_addr = tag_base_addr as *const u8;
let tag_base_addr = unsafe { tag_base_addr.add(base_hdr_size) };
let tag_base_addr = unsafe { tag_base_addr.add(tag_base_addr.align_offset(8)) };
let tag_base_addr = tag_base_addr as *const HeaderTag;
let tags_len = self.length as usize - base_hdr_size;
Multiboot2HeaderTagIter::new(tag_base_addr, tags_len as u32)
}
}
impl Debug for Multiboot2BasicHeader {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Multiboot2Header")
.field("header_magic", &{ self.header_magic })
.field("arch", &{ self.arch })
.field("length", &{ self.length })
.field("checksum", &{ self.checksum })
.field("tags", &self.tag_iter())
.finish()
}
}
#[derive(Clone)]
pub struct Multiboot2HeaderTagIter {
base: *const HeaderTag,
n: u32,
size: u32,
tag_count: u32,
end_tag_found: bool,
}
impl Multiboot2HeaderTagIter {
fn new(base: *const HeaderTag, size: u32) -> Self {
let base = base as *const u8;
let base = unsafe { base.add(base.align_offset(8)) };
let base = base as *const HeaderTag;
Self {
base,
n: 0,
size,
tag_count: 0,
end_tag_found: false,
}
}
}
impl Iterator for Multiboot2HeaderTagIter {
type Item = *const HeaderTag;
fn next(&mut self) -> Option<Self::Item> {
if self.n >= self.size {
return None;
}
let ptr = self.base as *const u8;
let ptr = unsafe { ptr.add(self.n as usize) };
let ptr = ptr as *const HeaderTag;
assert_eq!(ptr as usize % 8, 0, "must be 8-byte aligned");
let tag = unsafe { &*ptr };
assert!(
tag.size() <= 500,
"no real mb2 header should be bigger than 500bytes - probably wrong memory?! is: {}",
{ tag.size() }
);
assert!(
tag.size() >= 8,
"no real mb2 header tag is smaller than 8 bytes - probably wrong memory?! is: {}",
{ tag.size() }
);
assert!(
!self.end_tag_found,
"There is more than one end tag! Maybe the `length` property is invalid?"
);
self.n += tag.size();
self.n += self.n % 8;
self.tag_count += 1;
if tag.typ() == HeaderTagType::End {
self.end_tag_found = true;
}
assert!(self.tag_count < HeaderTagType::count(), "Invalid Multiboot2 header tags! There are more tags than technically possible! Maybe the `length` property is invalid?");
Some(ptr)
}
}
impl Debug for Multiboot2HeaderTagIter {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
let mut debug = f.debug_list();
self.clone().for_each(|t| unsafe {
let typ = (*t).typ();
if typ == HeaderTagType::End {
let entry = t as *const EndHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::InformationRequest {
let entry = t as *const InformationRequestHeaderTag<0>;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::Address {
let entry = t as *const AddressHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::EntryAddress {
let entry = t as *const EntryAddressHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::ConsoleFlags {
let entry = t as *const ConsoleHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::Framebuffer {
let entry = t as *const FramebufferHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::EfiBS {
let entry = t as *const EfiBootServiceHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::EntryAddressEFI32 {
let entry = t as *const EntryEfi32HeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::EntryAddressEFI64 {
let entry = t as *const EntryEfi64HeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else if typ == HeaderTagType::Relocatable {
let entry = t as *const RelocatableHeaderTag;
let entry = &*(entry);
debug.entry(entry);
} else {
panic!("unknown tag ({:?})!", typ);
}
});
debug.finish()
}
}
#[cfg(test)]
mod tests {
use crate::Multiboot2BasicHeader;
#[test]
fn test_assert_size() {
assert_eq!(core::mem::size_of::<Multiboot2BasicHeader>(), 4 + 4 + 4 + 4);
}
}