1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/kernelmq/init.c

61 lines
1.8 KiB
C
Raw Normal View History

#include "panic.h"
#include "pfa.h"
#include "protected.h"
2017-11-04 10:45:58 -04:00
#include "paging.h"
2017-11-04 07:07:04 -04:00
2017-11-09 11:00:36 -05:00
#include "info.h"
#include "stdlib.h"
#include "module.h"
2017-11-04 06:09:53 -04:00
2020-11-25 04:06:27 -05:00
#include "tasks.h"
2020-11-25 05:35:16 -05:00
#include "elf.h"
2020-11-25 05:44:36 -05:00
#include "logger.h"
2020-11-25 04:06:27 -05:00
2017-11-04 06:09:53 -04:00
static struct KernelMQ_Info kinfo;
void init(const struct KernelMQ_Info *const kinfo_ptr)
2017-11-01 00:43:42 -04:00
{
2017-11-04 07:07:04 -04:00
kmemset(&kinfo, 0, sizeof(struct KernelMQ_Info));
assert(kernelmq_info_validate_and_copy(&kinfo, kinfo_ptr), "Invalid kernel information.");
2017-11-04 06:38:28 -04:00
pfa_initialize(&kinfo);
2017-11-04 08:12:20 -04:00
protected_initialize(&kinfo);
2017-11-05 10:26:30 -05:00
// Set up a new post-relocate bootstrap pagetable so that
// we can map in VM, and we no longer rely on pre-relocated
// data.
2017-11-04 10:45:58 -04:00
paging_clear();
paging_identity(); // Still need 1:1 for lapic and video mem and such.
paging_mapkernel(&kinfo);
2017-11-04 10:45:58 -04:00
paging_load();
2020-11-25 03:14:21 -05:00
if (kinfo.modules_count > 0) {
2020-11-25 05:44:36 -05:00
const struct KernelMQ_ELF_Header *const elf_header =
(void*)kinfo.modules[0].base;
const unsigned char is_elf_header_valid =
elf_header->magic_0x7F == 0x7F &&
elf_header->magic_E == 'E' &&
elf_header->magic_L == 'L' &&
elf_header->magic_F == 'F' &&
elf_header->bitness == 1 &&
elf_header->endianness == 1 &&
elf_header->header_version == 1 &&
elf_header->os_abi == 0 &&
elf_header->obj_type == 2 &&
elf_header->isa == 3 &&
elf_header->elf_version == 1 &&
elf_header->arch_flags == 0 &&
elf_header->header_size == 52;
if (is_elf_header_valid) {
tasks_switch_to_user(elf_header->entrypoint);
}
else {
logger_warn_from("init", "Invalid ELF header");
}
2020-11-25 03:14:21 -05:00
}
2017-11-03 01:10:07 -04:00
}