2018-10-16 11:01:38 +02:00
|
|
|
#include "types.h"
|
|
|
|
#include "VGA.h"
|
|
|
|
#include "kmalloc.h"
|
|
|
|
#include "i386.h"
|
|
|
|
#include "i8253.h"
|
|
|
|
#include "Keyboard.h"
|
|
|
|
#include "Task.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "Disk.h"
|
|
|
|
#include "PIC.h"
|
|
|
|
#include "StdLib.h"
|
|
|
|
#include "Syscall.h"
|
|
|
|
#include "CMOS.h"
|
2018-10-16 14:17:43 +02:00
|
|
|
#include "IDEDiskDevice.h"
|
2018-10-16 14:33:16 +02:00
|
|
|
#include <VirtualFileSystem/NullDevice.h>
|
|
|
|
#include <VirtualFileSystem/ZeroDevice.h>
|
|
|
|
#include <VirtualFileSystem/FullDevice.h>
|
|
|
|
#include <VirtualFileSystem/RandomDevice.h>
|
2018-10-17 10:55:43 +02:00
|
|
|
#include <VirtualFileSystem/Ext2FileSystem.h>
|
2018-10-17 11:44:06 +02:00
|
|
|
#include <VirtualFileSystem/VirtualFileSystem.h>
|
2018-10-17 12:07:39 +02:00
|
|
|
#include <VirtualFileSystem/FileHandle.h>
|
2018-10-16 14:33:16 +02:00
|
|
|
#include <AK/OwnPtr.h>
|
2018-10-17 23:13:55 +02:00
|
|
|
#include "MemoryManager.h"
|
2018-10-18 15:38:04 +02:00
|
|
|
#include <ELFLoader/ELFLoader.h>
|
2018-10-21 21:59:43 +02:00
|
|
|
#include "Console.h"
|
2018-10-23 11:57:38 +02:00
|
|
|
#include "ProcFileSystem.h"
|
2018-10-25 17:29:49 +02:00
|
|
|
#include "RTC.h"
|
2018-10-16 11:01:38 +02:00
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
#define TEST_VFS
|
2018-10-26 22:32:35 +02:00
|
|
|
#define KERNEL_MAP
|
2018-10-23 15:41:55 +02:00
|
|
|
//#define STRESS_TEST_SPAWNING
|
2018-10-22 15:42:39 +02:00
|
|
|
//#define TEST_ELF_LOADER
|
2018-10-16 11:01:38 +02:00
|
|
|
|
|
|
|
system_t system;
|
|
|
|
|
|
|
|
void banner()
|
|
|
|
{
|
|
|
|
kprintf("\n");
|
|
|
|
vga_set_attr(0x0a);
|
|
|
|
kprintf(" _____ _ _ \n");
|
|
|
|
vga_set_attr(0x0b);
|
|
|
|
kprintf("| __|___ ___| |_ ___ ___| |_ \n");
|
|
|
|
vga_set_attr(0x0c);
|
|
|
|
kprintf("| | | -_| _| . | -_| _| _|\n");
|
|
|
|
vga_set_attr(0x0d);
|
|
|
|
kprintf("|_____|___|_| |___|___|_| |_| \n");
|
|
|
|
vga_set_attr(0x07);
|
|
|
|
kprintf("\n");
|
|
|
|
}
|
|
|
|
|
2018-10-26 22:32:35 +02:00
|
|
|
static byte parseHexDigit(char nibble)
|
|
|
|
{
|
|
|
|
if (nibble >= '0' && nibble <= '9')
|
|
|
|
return nibble - '0';
|
|
|
|
ASSERT(nibble >= 'a' && nibble <= 'f');
|
|
|
|
return 10 + (nibble - 'a');
|
|
|
|
}
|
|
|
|
|
|
|
|
static Vector<KSym>* s_ksyms;
|
|
|
|
|
|
|
|
Vector<KSym>& ksyms()
|
|
|
|
{
|
|
|
|
return *s_ksyms;
|
|
|
|
}
|
|
|
|
|
2018-10-27 00:14:24 +02:00
|
|
|
const KSym* ksymbolicate(dword address)
|
|
|
|
{
|
|
|
|
if (address < ksyms().first().address || address > ksyms().last().address)
|
|
|
|
return nullptr;
|
|
|
|
for (unsigned i = 0; i < ksyms().size(); ++i) {
|
|
|
|
if (address < ksyms()[i + 1].address)
|
|
|
|
return &ksyms()[i];
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-10-26 22:32:35 +02:00
|
|
|
static void loadKernelMap(const ByteBuffer& buffer)
|
|
|
|
{
|
|
|
|
s_ksyms = new Vector<KSym>;
|
|
|
|
auto* bufptr = (const char*)buffer.pointer();
|
|
|
|
auto* startOfName = bufptr;
|
|
|
|
dword address = 0;
|
|
|
|
|
|
|
|
while (bufptr < buffer.endPointer()) {
|
|
|
|
for (unsigned i = 0; i < 8; ++i)
|
|
|
|
address = (address << 4) | parseHexDigit(*(bufptr++));
|
|
|
|
bufptr += 3;
|
|
|
|
startOfName = bufptr;
|
|
|
|
while (*(++bufptr)) {
|
|
|
|
if (*bufptr == '\n') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ksyms().append({ address, String(startOfName, bufptr - startOfName) });
|
|
|
|
++bufptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 15:41:55 +02:00
|
|
|
static void undertaker_main() NORETURN;
|
|
|
|
static void undertaker_main()
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
Task::doHouseKeeping();
|
2018-10-23 15:59:38 +02:00
|
|
|
sleep(300);
|
2018-10-23 15:41:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
static void init_stage2() NORETURN;
|
|
|
|
static void init_stage2()
|
2018-10-16 11:01:38 +02:00
|
|
|
{
|
2018-10-22 11:15:16 +02:00
|
|
|
kprintf("init stage2...\n");
|
2018-10-17 23:13:55 +02:00
|
|
|
|
2018-10-16 11:01:38 +02:00
|
|
|
Syscall::initialize();
|
|
|
|
|
2018-10-23 10:12:50 +02:00
|
|
|
auto keyboard = make<Keyboard>();
|
2018-10-16 11:01:38 +02:00
|
|
|
|
|
|
|
Disk::initialize();
|
|
|
|
|
2018-10-21 22:11:46 +02:00
|
|
|
#ifdef TEST_VFS
|
2018-10-17 11:44:06 +02:00
|
|
|
auto vfs = make<VirtualFileSystem>();
|
|
|
|
|
|
|
|
auto dev_zero = make<ZeroDevice>();
|
2018-10-26 11:20:20 +02:00
|
|
|
vfs->registerCharacterDevice(1, 5, *dev_zero);
|
2018-10-17 11:44:06 +02:00
|
|
|
|
2018-10-16 14:33:16 +02:00
|
|
|
auto dev_null = make<NullDevice>();
|
2018-10-26 11:20:20 +02:00
|
|
|
vfs->registerCharacterDevice(1, 3, *dev_null);
|
2018-10-17 11:44:06 +02:00
|
|
|
|
2018-10-16 14:33:16 +02:00
|
|
|
auto dev_full = make<FullDevice>();
|
2018-10-17 11:44:06 +02:00
|
|
|
vfs->registerCharacterDevice(1, 7, *dev_full);
|
|
|
|
|
2018-10-16 14:33:16 +02:00
|
|
|
auto dev_random = make<RandomDevice>();
|
2018-10-17 11:44:06 +02:00
|
|
|
vfs->registerCharacterDevice(1, 8, *dev_random);
|
2018-10-16 14:17:43 +02:00
|
|
|
|
2018-10-23 10:12:50 +02:00
|
|
|
vfs->registerCharacterDevice(85, 1, *keyboard);
|
|
|
|
|
2018-10-17 11:44:06 +02:00
|
|
|
auto dev_hd0 = IDEDiskDevice::create();
|
2018-10-17 10:55:43 +02:00
|
|
|
auto e2fs = Ext2FileSystem::create(dev_hd0.copyRef());
|
2018-10-22 11:15:16 +02:00
|
|
|
e2fs->initialize();
|
2018-10-17 10:55:43 +02:00
|
|
|
|
2018-10-17 11:44:06 +02:00
|
|
|
vfs->mountRoot(e2fs.copyRef());
|
|
|
|
|
2018-10-26 22:32:35 +02:00
|
|
|
#ifdef KERNEL_MAP
|
|
|
|
{
|
|
|
|
auto handle = vfs->open("/kernel.map");
|
|
|
|
if (!handle) {
|
|
|
|
kprintf("Failed to open /kernel.map\n");
|
|
|
|
} else {
|
|
|
|
auto buffer = handle->readEntireFile();
|
|
|
|
ASSERT(buffer);
|
|
|
|
loadKernelMap(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-26 17:42:12 +02:00
|
|
|
vfs->mount(ProcFileSystem::the(), "/proc");
|
2018-10-17 11:47:14 +02:00
|
|
|
|
2018-10-18 10:28:09 +02:00
|
|
|
#endif
|
2018-10-17 12:07:39 +02:00
|
|
|
|
2018-10-19 11:28:43 +02:00
|
|
|
#ifdef TEST_ELF_LOADER
|
2018-10-18 15:38:04 +02:00
|
|
|
{
|
2018-10-22 14:41:54 +02:00
|
|
|
auto testExecutable = vfs->open("/bin/id");
|
2018-10-18 15:38:04 +02:00
|
|
|
ASSERT(testExecutable);
|
|
|
|
auto testExecutableData = testExecutable->readEntireFile();
|
|
|
|
ASSERT(testExecutableData);
|
2018-10-22 11:15:16 +02:00
|
|
|
|
2018-10-18 15:38:04 +02:00
|
|
|
ExecSpace space;
|
|
|
|
space.loadELF(move(testExecutableData));
|
2018-10-22 14:41:54 +02:00
|
|
|
auto* elf_entry = space.symbolPtr("_start");
|
2018-10-18 15:38:04 +02:00
|
|
|
ASSERT(elf_entry);
|
|
|
|
|
|
|
|
typedef int (*MainFunctionPtr)(void);
|
|
|
|
kprintf("elf_entry: %p\n", elf_entry);
|
|
|
|
int rc = reinterpret_cast<MainFunctionPtr>(elf_entry)();
|
|
|
|
kprintf("it returned %d\n", rc);
|
|
|
|
}
|
2018-10-19 11:28:43 +02:00
|
|
|
#endif
|
|
|
|
|
2018-10-23 15:41:55 +02:00
|
|
|
#ifdef STRESS_TEST_SPAWNING
|
|
|
|
dword lastAlloc = sum_alloc;
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < 100; ++i) {
|
2018-10-25 12:06:00 +02:00
|
|
|
int error;
|
|
|
|
auto* shTask = Task::createUserTask("/bin/id", (uid_t)100, (gid_t)100, (pid_t)0, error);
|
2018-10-23 15:41:55 +02:00
|
|
|
kprintf("malloc stats: alloc:%u free:%u\n", sum_alloc, sum_free);
|
|
|
|
kprintf("sizeof(Task):%u\n", sizeof(Task));
|
|
|
|
kprintf("delta:%u\n",sum_alloc - lastAlloc);
|
|
|
|
lastAlloc = sum_alloc;
|
|
|
|
sleep(600);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-25 12:06:00 +02:00
|
|
|
int error;
|
|
|
|
auto* shTask = Task::createUserTask("/bin/sh", (uid_t)100, (gid_t)100, (pid_t)0, error);
|
2018-10-22 15:42:39 +02:00
|
|
|
|
2018-10-23 23:32:53 +02:00
|
|
|
banner();
|
2018-10-22 11:15:16 +02:00
|
|
|
|
2018-10-22 12:58:29 +02:00
|
|
|
#if 0
|
|
|
|
// It would be nice to exit this process, but right now it instantiates all kinds of things.
|
|
|
|
// At the very least it needs to be made sure those things stick around as appropriate.
|
2018-10-22 11:43:55 +02:00
|
|
|
DO_SYSCALL_A1(Syscall::PosixExit, 413);
|
|
|
|
|
|
|
|
kprintf("uh, we're still going after calling sys$exit...\n");
|
|
|
|
HANG;
|
2018-10-22 12:58:29 +02:00
|
|
|
#endif
|
2018-10-22 11:43:55 +02:00
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
for (;;) {
|
2018-10-25 13:07:59 +02:00
|
|
|
//sleep(3600 * TICKS_PER_SECOND);
|
2018-10-22 11:15:16 +02:00
|
|
|
asm("hlt");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void init()
|
|
|
|
{
|
|
|
|
cli();
|
|
|
|
|
|
|
|
kmalloc_init();
|
|
|
|
vga_init();
|
|
|
|
|
|
|
|
auto console = make<Console>();
|
|
|
|
|
2018-10-25 17:29:49 +02:00
|
|
|
RTC::initialize();
|
2018-10-22 11:15:16 +02:00
|
|
|
PIC::initialize();
|
|
|
|
gdt_init();
|
|
|
|
idt_init();
|
|
|
|
|
|
|
|
MemoryManager::initialize();
|
|
|
|
|
2018-10-22 13:10:08 +02:00
|
|
|
VirtualFileSystem::initializeGlobals();
|
|
|
|
StringImpl::initializeGlobals();
|
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
PIT::initialize();
|
|
|
|
|
|
|
|
memset(&system, 0, sizeof(system));
|
2018-10-25 17:29:49 +02:00
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
WORD base_memory = (CMOS::read(0x16) << 8) | CMOS::read(0x15);
|
|
|
|
WORD ext_memory = (CMOS::read(0x18) << 8) | CMOS::read(0x17);
|
|
|
|
|
|
|
|
kprintf("%u kB base memory\n", base_memory);
|
|
|
|
kprintf("%u kB extended memory\n", ext_memory);
|
|
|
|
|
2018-10-26 17:42:12 +02:00
|
|
|
auto procfs = ProcFileSystem::create();
|
|
|
|
procfs->initialize();
|
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
Task::initialize();
|
|
|
|
|
2018-10-25 11:15:17 +02:00
|
|
|
Task::createKernelTask(undertaker_main, "undertaker");
|
|
|
|
Task::createKernelTask(init_stage2, "init");
|
2018-10-23 15:41:55 +02:00
|
|
|
|
2018-10-22 11:15:16 +02:00
|
|
|
scheduleNewTask();
|
|
|
|
|
|
|
|
sti();
|
|
|
|
|
|
|
|
// This now becomes the idle task :^)
|
2018-10-16 11:01:38 +02:00
|
|
|
for (;;) {
|
|
|
|
asm("hlt");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|