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 "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 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-16 11:01:38 +02: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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 13:05:00 +02:00
|
|
|
*x = 1;
|
2018-10-17 23:49:32 +02:00
|
|
|
HANG;
|
2018-10-16 11:01:38 +02:00
|
|
|
for (;;) {
|
|
|
|
// nothing?
|
|
|
|
Userspace::sleep(1 * TICKS_PER_SECOND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 14:53:00 +02:00
|
|
|
static void user_kprintf_main() NORETURN;
|
|
|
|
static void user_kprintf_main()
|
|
|
|
{
|
|
|
|
DO_SYSCALL_A1(0x4000, 0);
|
|
|
|
kprintf("This should not work!\n");
|
|
|
|
HANG;
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
|
|
|
void init()
|
|
|
|
{
|
|
|
|
disableInterrupts();
|
|
|
|
|
|
|
|
kmalloc_init();
|
|
|
|
vga_init();
|
|
|
|
|
|
|
|
PIC::initialize();
|
|
|
|
gdt_init();
|
|
|
|
idt_init();
|
|
|
|
|
2018-10-17 23:13:55 +02:00
|
|
|
MemoryManager::initialize();
|
|
|
|
|
2018-10-16 11:01:38 +02:00
|
|
|
// Anything that registers interrupts goes *after* PIC and IDT for obvious reasons.
|
|
|
|
Syscall::initialize();
|
|
|
|
PIT::initialize();
|
|
|
|
Keyboard::initialize();
|
|
|
|
Task::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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2018-10-16 11:06:35 +02:00
|
|
|
scheduleNewTask();
|
2018-10-16 11:01:38 +02:00
|
|
|
enableInterrupts();
|
|
|
|
|
|
|
|
banner();
|
|
|
|
|
|
|
|
Disk::initialize();
|
|
|
|
|
2018-10-17 11:44:06 +02:00
|
|
|
auto vfs = make<VirtualFileSystem>();
|
|
|
|
|
|
|
|
auto dev_zero = make<ZeroDevice>();
|
|
|
|
vfs->registerCharacterDevice(1, 3, *dev_zero);
|
|
|
|
|
2018-10-16 14:33:16 +02:00
|
|
|
auto dev_null = make<NullDevice>();
|
2018-10-17 11:44:06 +02:00
|
|
|
vfs->registerCharacterDevice(1, 5, *dev_zero);
|
|
|
|
|
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-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());
|
|
|
|
e2fs->initialize();
|
|
|
|
|
2018-10-17 11:44:06 +02:00
|
|
|
vfs->mountRoot(e2fs.copyRef());
|
|
|
|
|
2018-10-18 10:28:09 +02:00
|
|
|
//new Task(motd_main, "motd", IPC::Handle::MotdTask, Task::Ring0);
|
2018-10-16 11:01:38 +02:00
|
|
|
new Task(user_main, "user", IPC::Handle::UserTask, Task::Ring3);
|
2018-10-18 14:53:00 +02:00
|
|
|
new Task(user_kprintf_main, "user_kprintf", IPC::Handle::UserTask, Task::Ring3);
|
2018-10-16 11:01:38 +02:00
|
|
|
|
2018-10-18 10:28:09 +02:00
|
|
|
//vfs->listDirectory("/");
|
2018-10-17 11:47:14 +02:00
|
|
|
|
2018-10-18 14:53:00 +02:00
|
|
|
#if 1
|
2018-10-17 12:07:39 +02: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 10:28:09 +02:00
|
|
|
#endif
|
2018-10-17 12:07:39 +02:00
|
|
|
|
2018-10-16 11:01:38 +02:00
|
|
|
// The idle task will spend its eternity here for now.
|
|
|
|
for (;;) {
|
|
|
|
asm("hlt");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|