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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
use alloc::collections::BTreeMap;
use core::convert::TryInto;
#[cfg(feature = "newlib")]
use core::slice;
use core::{intrinsics, ptr};
use x86::controlregs::{cr0, cr0_write, cr4, Cr0};
use crate::arch::mm::VirtAddr;
use crate::arch::x86_64::kernel::irq::{get_irq_name, IrqStatistics};
use crate::arch::x86_64::kernel::percore::*;
use crate::arch::x86_64::kernel::serial::SerialPort;
use crate::environment;
use crate::kernel_message_buffer;
use crate::scheduler::CoreId;
#[cfg(feature = "acpi")]
pub mod acpi;
pub mod apic;
#[cfg(feature = "pci")]
pub mod fuse;
pub mod gdt;
pub mod idt;
pub mod irq;
#[cfg(feature = "pci")]
pub mod pci;
#[cfg(feature = "pci")]
mod pci_ids;
pub mod percore;
pub mod pic;
pub mod pit;
pub mod processor;
pub mod scheduler;
pub mod serial;
#[cfg(feature = "smp")]
mod smp_boot_code;
pub mod systemtime;
#[cfg(feature = "vga")]
mod vga;
#[cfg(not(test))]
global_asm!(include_str!("start.s"));
#[cfg(all(not(test), not(fsgsbase)))]
global_asm!(include_str!("switch.s"));
#[cfg(all(not(test), fsgsbase))]
global_asm!(include_str!("switch_fsgsbase.s"));
const SERIAL_PORT_BAUDRATE: u32 = 115_200;
static mut IRQ_COUNTERS: BTreeMap<CoreId, &IrqStatistics> = BTreeMap::new();
const BOOTINFO_MAGIC_NUMBER: u32 = 0xC0DE_CAFEu32;
#[repr(C)]
pub struct BootInfo {
magic_number: u32,
version: u32,
base: u64,
limit: u64,
image_size: u64,
tls_start: u64,
tls_filesz: u64,
tls_memsz: u64,
current_stack_address: u64,
current_percore_address: u64,
host_logical_addr: u64,
boot_gtod: u64,
mb_info: u64,
cmdline: u64,
cmdsize: u64,
cpu_freq: u32,
boot_processor: u32,
cpu_online: u32,
possible_cpus: u32,
current_boot_id: u32,
uartport: u16,
single_kernel: u8,
uhyve: u8,
hcip: [u8; 4],
hcgateway: [u8; 4],
hcmask: [u8; 4],
}
#[cfg(not(target_os = "hermit"))]
static mut BOOT_INFO: *mut BootInfo = ptr::null_mut();
#[cfg(all(target_os = "hermit", not(feature = "newlib")))]
#[link_section = ".data"]
static mut BOOT_INFO: *mut BootInfo = ptr::null_mut();
#[cfg(all(target_os = "hermit", feature = "newlib"))]
#[link_section = ".mboot"]
static mut BOOT_INFO: *mut BootInfo = ptr::null_mut();
static mut COM1: SerialPort = SerialPort::new(0x3f8);
pub fn has_ipdevice() -> bool {
let ip = unsafe { core::ptr::read_volatile(&(*BOOT_INFO).hcip) };
!(ip[0] == 255 && ip[1] == 255 && ip[2] == 255 && ip[3] == 255)
}
#[cfg(not(feature = "newlib"))]
pub fn uhyve_get_ip() -> [u8; 4] {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).hcip) }
}
#[no_mangle]
#[cfg(not(feature = "newlib"))]
pub fn sys_uhyve_get_ip() -> [u8; 4] {
kernel_function!(uhyve_get_ip())
}
#[cfg(not(feature = "newlib"))]
pub fn uhyve_get_gateway() -> [u8; 4] {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).hcgateway) }
}
#[no_mangle]
#[cfg(not(feature = "newlib"))]
pub fn sys_uhyve_get_gateway() -> [u8; 4] {
kernel_function!(uhyve_get_gateway())
}
#[cfg(not(feature = "newlib"))]
pub fn uhyve_get_mask() -> [u8; 4] {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).hcmask) }
}
#[no_mangle]
#[cfg(not(feature = "newlib"))]
pub fn sys_uhyve_get_mask() -> [u8; 4] {
kernel_function!(uhyve_get_mask())
}
#[no_mangle]
#[cfg(feature = "newlib")]
pub unsafe extern "C" fn sys_uhyve_get_ip(ip: *mut u8) {
switch_to_kernel!();
let data = core::ptr::read_volatile(&(*BOOT_INFO).hcip);
slice::from_raw_parts_mut(ip, 4).copy_from_slice(&data);
switch_to_user!();
}
#[no_mangle]
#[cfg(feature = "newlib")]
pub unsafe extern "C" fn sys_uhyve_get_gateway(gw: *mut u8) {
switch_to_kernel!();
let data = core::ptr::read_volatile(&(*BOOT_INFO).hcgateway);
slice::from_raw_parts_mut(gw, 4).copy_from_slice(&data);
switch_to_user!();
}
#[no_mangle]
#[cfg(feature = "newlib")]
pub unsafe extern "C" fn sys_uhyve_get_mask(mask: *mut u8) {
switch_to_kernel!();
let data = core::ptr::read_volatile(&(*BOOT_INFO).hcmask);
slice::from_raw_parts_mut(mask, 4).copy_from_slice(&data);
switch_to_user!();
}
pub fn get_base_address() -> VirtAddr {
unsafe { VirtAddr(core::ptr::read_volatile(&(*BOOT_INFO).base)) }
}
pub fn get_image_size() -> usize {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).image_size) as usize }
}
pub fn get_limit() -> usize {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).limit) as usize }
}
pub fn get_tls_start() -> VirtAddr {
unsafe { VirtAddr(core::ptr::read_volatile(&(*BOOT_INFO).tls_start)) }
}
pub fn get_tls_filesz() -> usize {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).tls_filesz) as usize }
}
pub fn get_tls_memsz() -> usize {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).tls_memsz) as usize }
}
pub fn get_mbinfo() -> VirtAddr {
unsafe { VirtAddr(core::ptr::read_volatile(&(*BOOT_INFO).mb_info)) }
}
#[cfg(feature = "smp")]
pub fn get_processor_count() -> u32 {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).cpu_online) as u32 }
}
#[cfg(not(feature = "smp"))]
pub fn get_processor_count() -> u32 {
1
}
pub fn is_uhyve() -> bool {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).uhyve) & 0x1 == 0x1 }
}
pub fn is_uhyve_with_pci() -> bool {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).uhyve) & 0x3 == 0x3 }
}
pub fn is_single_kernel() -> bool {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).single_kernel) != 0 }
}
pub fn get_cmdsize() -> usize {
unsafe { core::ptr::read_volatile(&(*BOOT_INFO).cmdsize) as usize }
}
pub fn get_cmdline() -> VirtAddr {
unsafe { VirtAddr(core::ptr::read_volatile(&(*BOOT_INFO).cmdline)) }
}
pub fn message_output_init() {
percore::init();
unsafe {
COM1.port_address = core::ptr::read_volatile(&(*BOOT_INFO).uartport);
}
if environment::is_single_kernel() {
unsafe {
COM1.init(SERIAL_PORT_BAUDRATE);
}
}
}
#[cfg(all(not(target_os = "hermit"), not(target_os = "windows")))]
pub fn output_message_byte(byte: u8) {
extern "C" {
fn write(fd: i32, buf: *const u8, count: usize) -> isize;
}
unsafe {
let _ = write(2, &byte as *const _, 1);
}
}
#[cfg(target_os = "windows")]
pub fn output_message_byte(byte: u8) {
extern "C" {
fn _write(fd: i32, buf: *const u8, count: u32) -> isize;
}
unsafe {
let _ = _write(2, &byte as *const _, 1);
}
}
#[cfg(not(target_os = "hermit"))]
#[test]
fn test_output() {
output_message_byte('t' as u8);
output_message_byte('e' as u8);
output_message_byte('s' as u8);
output_message_byte('t' as u8);
output_message_byte('\n' as u8);
}
#[cfg(target_os = "hermit")]
pub fn output_message_byte(byte: u8) {
if environment::is_single_kernel() {
unsafe {
COM1.write_byte(byte);
}
#[cfg(feature = "vga")]
vga::write_byte(byte);
} else {
kernel_message_buffer::write_byte(byte);
}
}
pub fn output_message_buf(buf: &[u8]) {
for byte in buf {
output_message_byte(*byte);
}
}
#[cfg(target_os = "hermit")]
pub fn boot_processor_init() {
processor::detect_features();
processor::configure();
if cfg!(feature = "vga") && environment::is_single_kernel() && !environment::is_uhyve() {
#[cfg(feature = "vga")]
vga::init();
}
crate::mm::init();
crate::mm::print_information();
environment::init();
gdt::init();
gdt::add_current_core();
idt::install();
pic::init();
irq::install();
processor::detect_frequency();
processor::print_information();
unsafe {
trace!("Cr0: 0x{:x}, Cr4: 0x{:x}", cr0(), cr4());
}
systemtime::init();
if environment::is_single_kernel() {
if is_uhyve_with_pci() || !is_uhyve() {
#[cfg(feature = "pci")]
pci::init();
#[cfg(feature = "pci")]
pci::print_information();
}
if !environment::is_uhyve() {
#[cfg(feature = "acpi")]
acpi::init();
}
}
apic::init();
scheduler::install_timer_handler();
finish_processor_init();
irq::enable();
}
#[cfg(target_os = "hermit")]
pub fn boot_application_processors() {
#[cfg(feature = "smp")]
apic::boot_application_processors();
apic::print_information();
}
#[cfg(all(target_os = "hermit", feature = "smp"))]
pub fn application_processor_init() {
percore::init();
processor::configure();
gdt::add_current_core();
idt::install();
apic::init_x2apic();
apic::init_local_apic();
unsafe {
trace!("Cr0: 0x{:x}, Cr4: 0x{:x}", cr0(), cr4());
}
irq::enable();
finish_processor_init();
}
fn finish_processor_init() {
if environment::is_uhyve() {
apic::add_local_apic_id(core_id() as u8);
apic::init_next_processor_variables(core_id() + 1);
}
unsafe {
let _ = intrinsics::atomic_xadd(&mut (*BOOT_INFO).cpu_online as *mut u32, 1);
}
}
pub fn print_statistics() {
info!("Number of interrupts");
unsafe {
for (core_id, irg_statistics) in IRQ_COUNTERS.iter() {
for (i, counter) in irg_statistics.counters.iter().enumerate() {
if *counter > 0 {
match get_irq_name(i.try_into().unwrap()) {
Some(name) => {
info!("[{}][{}]: {}", core_id, name, *counter);
}
_ => {
info!("[{}][{}]: {}", core_id, i, *counter);
}
}
}
}
}
}
}
#[cfg(target_os = "hermit")]
#[inline(never)]
#[no_mangle]
unsafe fn pre_init(boot_info: &'static mut BootInfo) -> ! {
assert_eq!(boot_info.magic_number, BOOTINFO_MAGIC_NUMBER);
let mut cr0 = cr0();
cr0.remove(Cr0::CR0_CACHE_DISABLE | Cr0::CR0_NOT_WRITE_THROUGH);
cr0_write(cr0);
BOOT_INFO = boot_info as *mut BootInfo;
if boot_info.cpu_online == 0 {
crate::boot_processor_main()
} else {
#[cfg(not(feature = "smp"))]
{
error!("SMP support deactivated");
loop {
processor::halt();
}
}
#[cfg(feature = "smp")]
crate::application_processor_main();
}
}