2018-10-16 12:01:38 +03:00
|
|
|
#include "types.h"
|
|
|
|
#include "VGA.h"
|
|
|
|
#include "kmalloc.h"
|
|
|
|
#include "i386.h"
|
|
|
|
#include "i8253.h"
|
|
|
|
#include "Keyboard.h"
|
|
|
|
#include "Task.h"
|
|
|
|
#include "IPC.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "Disk.h"
|
|
|
|
#include "PIC.h"
|
|
|
|
#include "StdLib.h"
|
|
|
|
#include "Syscall.h"
|
|
|
|
#include "CMOS.h"
|
|
|
|
#include "Userspace.h"
|
2018-10-16 15:17:43 +03:00
|
|
|
#include "IDEDiskDevice.h"
|
2018-10-16 15:33:16 +03:00
|
|
|
#include <VirtualFileSystem/NullDevice.h>
|
|
|
|
#include <VirtualFileSystem/ZeroDevice.h>
|
|
|
|
#include <VirtualFileSystem/FullDevice.h>
|
|
|
|
#include <VirtualFileSystem/RandomDevice.h>
|
2018-10-17 11:55:43 +03:00
|
|
|
#include <VirtualFileSystem/Ext2FileSystem.h>
|
2018-10-17 12:44:06 +03:00
|
|
|
#include <VirtualFileSystem/VirtualFileSystem.h>
|
2018-10-17 13:07:39 +03:00
|
|
|
#include <VirtualFileSystem/FileHandle.h>
|
2018-10-16 15:33:16 +03:00
|
|
|
#include <AK/OwnPtr.h>
|
2018-10-18 00:13:55 +03:00
|
|
|
#include "MemoryManager.h"
|
2018-10-18 16:38:04 +03:00
|
|
|
#include <ELFLoader/ELFLoader.h>
|
2018-10-21 22:59:43 +03:00
|
|
|
#include "Console.h"
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2018-10-22 12:15:16 +03:00
|
|
|
#define TEST_VFS
|
|
|
|
#define TEST_ELF_LOADER
|
|
|
|
#define TEST_CRASHY_USER_PROCESSES
|
2018-10-19 12:28:43 +03:00
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
#if 0
|
|
|
|
/* Keyboard LED disco task ;^) */
|
|
|
|
|
|
|
|
static void led_disco() NORETURN;
|
|
|
|
|
|
|
|
static void led_disco()
|
|
|
|
{
|
|
|
|
BYTE b = 0;
|
|
|
|
for (;;) {
|
|
|
|
sleep(0.5 * TICKS_PER_SECOND);
|
|
|
|
Keyboard::unsetLED((Keyboard::LED)b++);
|
|
|
|
b &= 7;
|
|
|
|
Keyboard::setLED((Keyboard::LED)b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void motd_main() NORETURN;
|
|
|
|
static void motd_main()
|
|
|
|
{
|
|
|
|
kprintf("Hello in motd_main!\n");
|
|
|
|
int fd = Userspace::open("/test.asm");
|
|
|
|
kprintf("motd: fd=%d\n", fd);
|
|
|
|
ASSERT(fd != -1);
|
|
|
|
DO_SYSCALL_A3(0x2000, 1, 2, 3);
|
|
|
|
kprintf("getuid(): %u\n", Userspace::getuid());
|
|
|
|
auto buffer = DataBuffer::createUninitialized(33);
|
|
|
|
memset(buffer->data(), 0, buffer->length());
|
|
|
|
int nread = Userspace::read(fd, buffer->data(), buffer->length() - 1);
|
|
|
|
kprintf("read(): %d\n", nread);
|
|
|
|
buffer->data()[nread] = 0;
|
|
|
|
kprintf("read(): '%s'\n", buffer->data());
|
|
|
|
for (;;) {
|
|
|
|
//kill(4, 5);
|
|
|
|
sleep(1 * TICKS_PER_SECOND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 12:28:43 +03:00
|
|
|
static void syscall_test_main() NORETURN;
|
|
|
|
static void syscall_test_main()
|
|
|
|
{
|
|
|
|
kprintf("Hello in syscall_test_main!\n");
|
|
|
|
for (;;) {
|
|
|
|
Userspace::getuid();
|
|
|
|
// Userspace::yield();
|
|
|
|
//kprintf("getuid(): %u\n", Userspace::getuid());
|
|
|
|
sleep(1 * TICKS_PER_SECOND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
static void user_main() NORETURN;
|
|
|
|
static void user_main()
|
|
|
|
{
|
|
|
|
DO_SYSCALL_A3(0x3000, 2, 3, 4);
|
|
|
|
// Crash ourselves!
|
|
|
|
char* x = reinterpret_cast<char*>(0xbeefbabe);
|
2018-10-18 14:05:00 +03:00
|
|
|
*x = 1;
|
2018-10-18 00:49:32 +03:00
|
|
|
HANG;
|
2018-10-16 12:01:38 +03:00
|
|
|
for (;;) {
|
|
|
|
// nothing?
|
|
|
|
Userspace::sleep(1 * TICKS_PER_SECOND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-22 12:15:16 +03:00
|
|
|
static void init_stage2() NORETURN;
|
|
|
|
static void init_stage2()
|
2018-10-16 12:01:38 +03:00
|
|
|
{
|
2018-10-22 12:15:16 +03:00
|
|
|
kprintf("init stage2...\n");
|
|
|
|
Keyboard::initialize();
|
2018-10-18 00:13:55 +03:00
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
// Anything that registers interrupts goes *after* PIC and IDT for obvious reasons.
|
|
|
|
Syscall::initialize();
|
|
|
|
|
2018-10-19 12:28:43 +03:00
|
|
|
VirtualFileSystem::initializeGlobals();
|
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
extern void panel_main();
|
|
|
|
|
|
|
|
new Task(panel_main, "panel", IPC::Handle::PanelTask, Task::Ring0);
|
|
|
|
|
|
|
|
//new Task(led_disco, "led-disco", IPC::Handle::Any, Task::Ring0);
|
|
|
|
|
|
|
|
Disk::initialize();
|
|
|
|
|
2018-10-21 23:11:46 +03:00
|
|
|
#ifdef TEST_VFS
|
2018-10-17 12:44:06 +03:00
|
|
|
auto vfs = make<VirtualFileSystem>();
|
|
|
|
|
|
|
|
auto dev_zero = make<ZeroDevice>();
|
|
|
|
vfs->registerCharacterDevice(1, 3, *dev_zero);
|
|
|
|
|
2018-10-16 15:33:16 +03:00
|
|
|
auto dev_null = make<NullDevice>();
|
2018-10-17 12:44:06 +03:00
|
|
|
vfs->registerCharacterDevice(1, 5, *dev_zero);
|
|
|
|
|
2018-10-16 15:33:16 +03:00
|
|
|
auto dev_full = make<FullDevice>();
|
2018-10-17 12:44:06 +03:00
|
|
|
vfs->registerCharacterDevice(1, 7, *dev_full);
|
|
|
|
|
2018-10-16 15:33:16 +03:00
|
|
|
auto dev_random = make<RandomDevice>();
|
2018-10-17 12:44:06 +03:00
|
|
|
vfs->registerCharacterDevice(1, 8, *dev_random);
|
2018-10-16 15:17:43 +03:00
|
|
|
|
2018-10-17 12:44:06 +03:00
|
|
|
auto dev_hd0 = IDEDiskDevice::create();
|
2018-10-17 11:55:43 +03:00
|
|
|
auto e2fs = Ext2FileSystem::create(dev_hd0.copyRef());
|
2018-10-22 12:15:16 +03:00
|
|
|
e2fs->initialize();
|
2018-10-17 11:55:43 +03:00
|
|
|
|
2018-10-17 12:44:06 +03:00
|
|
|
vfs->mountRoot(e2fs.copyRef());
|
|
|
|
|
2018-10-18 11:28:09 +03:00
|
|
|
//vfs->listDirectory("/");
|
2018-10-17 12:47:14 +03:00
|
|
|
|
2018-10-17 13:07:39 +03:00
|
|
|
{
|
|
|
|
auto motdFile = vfs->open("/motd.txt");
|
|
|
|
ASSERT(motdFile);
|
|
|
|
auto motdData = motdFile->readEntireFile();
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < motdData.size(); ++i) {
|
|
|
|
kprintf("%c", motdData[i]);
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 11:28:09 +03:00
|
|
|
#endif
|
2018-10-17 13:07:39 +03:00
|
|
|
|
2018-10-21 22:59:43 +03:00
|
|
|
#ifdef TEST_CRASHY_USER_PROCESSES
|
|
|
|
new Task(user_main, "user", IPC::Handle::UserTask, Task::Ring3);
|
|
|
|
#endif
|
|
|
|
|
2018-10-19 12:28:43 +03:00
|
|
|
#ifdef TEST_ELF_LOADER
|
2018-10-18 16:38:04 +03:00
|
|
|
{
|
2018-10-22 12:53:30 +03:00
|
|
|
auto testExecutable = vfs->open("/_test.o");
|
2018-10-18 16:38:04 +03:00
|
|
|
ASSERT(testExecutable);
|
|
|
|
auto testExecutableData = testExecutable->readEntireFile();
|
|
|
|
ASSERT(testExecutableData);
|
2018-10-22 12:15:16 +03:00
|
|
|
|
2018-10-18 16:38:04 +03:00
|
|
|
ExecSpace space;
|
|
|
|
space.loadELF(move(testExecutableData));
|
|
|
|
auto* elf_entry = space.symbolPtr("elf_entry");
|
|
|
|
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 12:28:43 +03:00
|
|
|
#endif
|
|
|
|
|
2018-10-21 22:59:43 +03:00
|
|
|
//new Task(motd_main, "motd", IPC::Handle::MotdTask, Task::Ring0);
|
|
|
|
//new Task(syscall_test_main, "syscall_test", IPC::Handle::MotdTask, Task::Ring3);
|
2018-10-18 16:38:04 +03:00
|
|
|
|
2018-10-22 12:15:16 +03:00
|
|
|
kprintf("init stage2 is done!\n");
|
|
|
|
|
2018-10-22 12:43:55 +03:00
|
|
|
DO_SYSCALL_A1(Syscall::PosixExit, 413);
|
|
|
|
|
|
|
|
kprintf("uh, we're still going after calling sys$exit...\n");
|
|
|
|
HANG;
|
|
|
|
|
2018-10-22 12:15:16 +03:00
|
|
|
for (;;) {
|
|
|
|
asm("hlt");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void init()
|
|
|
|
{
|
|
|
|
cli();
|
|
|
|
|
|
|
|
kmalloc_init();
|
|
|
|
vga_init();
|
|
|
|
|
|
|
|
auto console = make<Console>();
|
|
|
|
|
|
|
|
PIC::initialize();
|
|
|
|
gdt_init();
|
|
|
|
idt_init();
|
|
|
|
|
|
|
|
MemoryManager::initialize();
|
|
|
|
|
|
|
|
PIT::initialize();
|
|
|
|
|
|
|
|
memset(&system, 0, sizeof(system));
|
|
|
|
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);
|
|
|
|
|
|
|
|
Task::initialize();
|
|
|
|
|
|
|
|
auto* init2 = new Task(init_stage2, "init", IPC::Handle::InitTask, Task::Ring0);
|
|
|
|
scheduleNewTask();
|
|
|
|
|
|
|
|
sti();
|
|
|
|
|
|
|
|
// This now becomes the idle task :^)
|
2018-10-16 12:01:38 +03:00
|
|
|
for (;;) {
|
|
|
|
asm("hlt");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|