#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include LOG_MODULE("PROC0") void init_platform(); void lock_reserved_memory(); void unlock_reserved_memory(); void __do_reserved_memory(int unlock); int mount_bootmedium() { struct v_dnode* dnode; int errno = 0; if ((errno = vfs_walk_proc("/dev/sdb", &dnode, NULL, 0))) { kprintf(KERROR "fail to acquire device. (%d)", errno); return 0; } struct device* dev = (struct device*)dnode->inode->data; if ((errno = vfs_mount("/mnt/lunaix-os", "iso9660", dev, 0))) { kprintf(KERROR "fail to boot medium. (%d)", errno); return 0; } return 1; } int exec_initd() { int errno = 0; struct ld_param param; char filename[] = "/mnt/lunaix-os/usr/init"; ld_create_param(¶m, __current, VMS_SELF); if ((errno = exec_load_byname(¶m, filename, NULL, NULL))) { goto fail; } // user space asm volatile("movw %0, %%ax\n" "movw %%ax, %%es\n" "movw %%ax, %%ds\n" "movw %%ax, %%fs\n" "movw %%ax, %%gs\n" "pushl %0\n" "pushl %1\n" "pushl %2\n" "pushl %3\n" "retf" ::"i"(UDATA_SEG), "r"(param.info.stack_top), "i"(UCODE_SEG), "r"(param.info.entry) : "eax", "memory"); fail("should not reach"); fail: kprintf(KERROR "fail to load initd. (%d)", errno); return 0; } /** * @brief LunaixOS的零号进程,该进程永远为可执行。 * * 这主要是为了保证调度器在没有进程可调度时依然有事可做。 * * 同时,该进程也负责fork出我们的init进程。 * */ void __proc0() { init_platform(); init_proc_user_space(__current); if (!mount_bootmedium() || !exec_initd()) { while (1) { asm("hlt"); } // should not reach } } extern uint8_t __kernel_start; /* link/linker.ld */ extern uint8_t __kernel_end; /* link/linker.ld */ extern uint8_t __init_hhk_end; /* link/linker.ld */ extern multiboot_info_t* _k_init_mb_info; /* k_init.c */ void init_platform() { kprintf(KINFO "\033[11;0mLunaixOS (gcc v%s, %s)\033[39;49m\n", __VERSION__, __TIME__); // 锁定所有系统预留页(内存映射IO,ACPI之类的),并且进行1:1映射 lock_reserved_memory(); // firmware acpi_init(_k_init_mb_info); // die apic_init(); ioapic_init(); // debugger serial_init(); sdbg_init(); // timers & clock rtc_init(); timer_init(SYS_TIMER_FREQUENCY_HZ); clock_init(); // peripherals & chipset features ps2_kbd_init(); block_init(); ahci_init(); pci_init(); // console console_start_flushing(); console_flush(); // expose cake allocator states to vfs cake_export(); unlock_reserved_memory(); // clean up for (size_t i = 0; i < (uintptr_t)(&__init_hhk_end); i += PG_SIZE) { vmm_del_mapping(VMS_SELF, (void*)i); pmm_free_page(KERNEL_PID, (void*)i); } } void lock_reserved_memory() { __do_reserved_memory(0); } void unlock_reserved_memory() { __do_reserved_memory(1); } void __do_reserved_memory(int unlock) { multiboot_memory_map_t* mmaps = _k_init_mb_info->mmap_addr; size_t map_size = _k_init_mb_info->mmap_length / sizeof(multiboot_memory_map_t); // v_mapping mapping; for (unsigned int i = 0; i < map_size; i++) { multiboot_memory_map_t mmap = mmaps[i]; uint8_t* pa = PG_ALIGN(mmap.addr_low); if (mmap.type == MULTIBOOT_MEMORY_AVAILABLE || pa <= MEM_4MB) { // Don't fuck up our kernel code or any free area! continue; } size_t pg_num = CEIL(mmap.len_low, PG_SIZE_BITS); size_t j = 0; if (!unlock) { kprintf("mem: freeze: %p..%p type=%x\n", pa, pa + pg_num * PG_SIZE, mmap.type); for (; j < pg_num; j++) { uintptr_t _pa = pa + (j << PG_SIZE_BITS); if (_pa >= KERNEL_MM_BASE) { // Don't fuck up our kernel space! break; } vmm_set_mapping(VMS_SELF, _pa, _pa, PG_PREM_R, VMAP_NULL); pmm_mark_page_occupied( KERNEL_PID, _pa >> PG_SIZE_BITS, PP_FGLOCKED); } // Save the progress for later unmapping. mmaps[i].len_low = j * PG_SIZE; } else { kprintf("mem: reclaim: %p..%p type=%x\n", pa, pa + pg_num * PG_SIZE, mmap.type); for (; j < pg_num; j++) { uintptr_t _pa = pa + (j << PG_SIZE_BITS); vmm_del_mapping(VMS_SELF, _pa); if (mmap.type == MULTIBOOT_MEMORY_ACPI_RECLAIMABLE) { pmm_mark_page_free(_pa >> PG_SIZE_BITS); } } } } }