Luna/kernel/src/main.cpp

114 lines
3.5 KiB
C++
Raw Normal View History

2022-12-23 12:09:21 +00:00
#include "ELF.h"
#include "InitRD.h"
2022-11-30 12:29:28 +00:00
#include "Log.h"
2022-11-15 18:10:32 +00:00
#include "arch/CPU.h"
#include "arch/MMU.h"
#include "arch/PCI.h"
2022-11-19 19:01:01 +00:00
#include "arch/Timer.h"
2022-11-19 16:59:49 +00:00
#include "boot/Init.h"
2022-12-03 16:25:25 +00:00
#include "config.h"
#include "fs/devices/DeviceRegistry.h"
#include "fs/tmpfs/FileSystem.h"
#include "memory/Heap.h"
#include "memory/KernelVM.h"
2022-11-19 16:59:49 +00:00
#include "memory/MemoryManager.h"
2022-12-07 14:04:11 +00:00
#include "thread/Scheduler.h"
#include "video/Framebuffer.h"
#include "video/TextConsole.h"
2022-12-19 11:24:15 +00:00
#include <luna/CString.h>
2022-12-07 10:40:02 +00:00
#include <luna/Result.h>
2022-12-07 11:25:42 +00:00
#include <luna/Units.h>
2022-10-16 13:31:58 +00:00
extern void set_host_name(StringView);
void reap_thread()
{
while (true)
{
CPU::disable_interrupts();
auto dying_threads = Scheduler::check_for_dying_threads();
CPU::enable_interrupts();
dying_threads.consume([](Thread* thread) { Scheduler::reap_thread(thread); });
kernel_sleep(250);
}
}
Result<void> init()
2022-09-05 14:13:51 +00:00
{
kinfoln("Starting Moon %s, built on %s at %s", MOON_VERSION, __DATE__, __TIME__);
2022-11-19 11:30:36 +00:00
// Default hostname if nobody from userspace changes it
set_host_name("moon"_sv);
kinfoln("Current platform: %s", CPU::platform_string());
kinfoln("Current processor: %s", CPU::identify().value_or("(unknown)"));
2022-11-13 13:29:15 +00:00
Timer::init();
kinfoln("Total memory: %s", to_dynamic_unit(MemoryManager::total()).release_value().chars());
kinfoln("Free memory: %s", to_dynamic_unit(MemoryManager::free()).release_value().chars());
kinfoln("Used memory: %s", to_dynamic_unit(MemoryManager::used()).release_value().chars());
kinfoln("Reserved memory: %s", to_dynamic_unit(MemoryManager::reserved()).release_value().chars());
2022-11-30 11:42:11 +00:00
Thread::init();
Scheduler::init();
VFS::root_fs = TRY(TmpFS::FileSystem::create());
TRY(DeviceRegistry::init());
InitRD::populate_vfs();
auto init = TRY(VFS::resolve_path("/bin/init", Credentials {}));
2023-03-24 20:05:38 +00:00
TRY(Scheduler::new_userspace_thread(init, "/bin/init"));
2023-03-24 20:05:38 +00:00
Scheduler::new_kernel_thread(reap_thread, "[reap]").release_value();
2022-12-07 14:04:11 +00:00
2023-01-23 20:24:05 +00:00
PCI::scan(
[](const PCI::Device& device) {
kinfoln("Found PCI mass storage device %.4x:%.4x, at address %u:%u:%u", device.id.vendor, device.id.device,
device.address.bus, device.address.slot, device.address.function);
},
{ .klass = 1 });
CPU::platform_finish_init();
// Disable console logging before transferring control to userspace.
setup_log(log_debug_enabled(), log_serial_enabled(), false);
2022-12-07 14:04:11 +00:00
CPU::enable_interrupts();
return {};
}
[[noreturn]] void init_wrapper()
{
auto rc = init();
2022-11-30 16:16:36 +00:00
if (rc.has_error()) kerrorln("Runtime error: %s", rc.error_string());
2022-12-07 14:04:11 +00:00
CPU::idle_loop();
2023-01-02 12:07:29 +00:00
}
static constexpr u64 BOOTSTRAP_STACK_PAGES = 8;
// FIXME: Reclaim this memory as soon as we leave the init task (so as soon as the Scheduler runs a task switch)
static u64 allocate_initial_kernel_stack()
{
u64 address = MemoryManager::alloc_for_kernel(BOOTSTRAP_STACK_PAGES + 1, MMU::ReadWrite | MMU::NoExecute).value();
// First page is a guard page, the rest is stack.
MMU::unmap(address); // Unmap (without deallocating VM) one guard page so that attempts to access it fail with a
// non-present page fault.
// The actual stack.
Stack stack { address + ARCH_PAGE_SIZE, BOOTSTRAP_STACK_PAGES * ARCH_PAGE_SIZE };
return stack.top();
}
extern "C" [[noreturn]] void _start()
{
Init::check_magic();
Init::early_init();
u64 bootstrap_stack_top = allocate_initial_kernel_stack();
CPU::bootstrap_switch_stack(bootstrap_stack_top, (void*)init_wrapper);
}