diff options
author | dzwdz | 2021-07-10 17:41:32 +0200 |
---|---|---|
committer | dzwdz | 2021-07-10 17:41:32 +0200 |
commit | 1bf5e324005ce7122a195af106cec656960648dc (patch) | |
tree | 7a8394a5243ad50d1e8d5574d94908461fe96cc6 /src/arch/i386 | |
parent | 6cbdc62b5cbe34d7355047722d6d483a4d25c7f3 (diff) |
a sensible source structure
The idea is that src/kernel/ is only allowed to interface with the
hardware using whatever's defined in src/arch/generic.h. I'll probably
write a small script for checking this later on.
This is a giant commit so I've probably fucked something up. It boots
fine on Bochs and QEMU, so at least there's that.
Diffstat (limited to 'src/arch/i386')
-rw-r--r-- | src/arch/i386/boot.c | 16 | ||||
-rw-r--r-- | src/arch/i386/boot.s | 25 | ||||
-rw-r--r-- | src/arch/i386/gdt.h | 16 | ||||
-rw-r--r-- | src/arch/i386/gdt/farjump.s | 9 | ||||
-rw-r--r-- | src/arch/i386/gdt/gdt.c | 119 | ||||
-rw-r--r-- | src/arch/i386/interrupts/idt.c | 75 | ||||
-rw-r--r-- | src/arch/i386/interrupts/idt.h | 3 | ||||
-rw-r--r-- | src/arch/i386/interrupts/isr.c | 24 | ||||
-rw-r--r-- | src/arch/i386/interrupts/isr.h | 15 | ||||
-rw-r--r-- | src/arch/i386/multiboot.s | 11 | ||||
-rw-r--r-- | src/arch/i386/sysenter.h | 2 | ||||
-rw-r--r-- | src/arch/i386/sysenter.s | 31 | ||||
-rw-r--r-- | src/arch/i386/tty.c | 36 | ||||
-rw-r--r-- | src/arch/i386/tty.h | 8 |
14 files changed, 390 insertions, 0 deletions
diff --git a/src/arch/i386/boot.c b/src/arch/i386/boot.c new file mode 100644 index 0000000..b2b84f0 --- /dev/null +++ b/src/arch/i386/boot.c @@ -0,0 +1,16 @@ +#include <arch/i386/gdt.h> +#include <arch/i386/interrupts/idt.h> +#include <arch/i386/sysenter.h> +#include <arch/i386/tty.h> +#include <kernel/main.h> + +void kmain_early() { + tty_clear(); + tty_const("gdt..."); + gdt_init(); + tty_const("idt..."); + idt_init(); + tty_const("sysenter..."); + sysenter_setup(); + kmain(); +} diff --git a/src/arch/i386/boot.s b/src/arch/i386/boot.s new file mode 100644 index 0000000..74ec312 --- /dev/null +++ b/src/arch/i386/boot.s @@ -0,0 +1,25 @@ +/* a lil stack TODO move to linker.ld */ +.section .bss +.global stack_top +.type stack_top, @object +.align 16 +stack_bottom: +.skip 16384 +stack_top: + + +.section .text +.global _start +.type _start, @function +_start: + mov $stack_top, %esp + call kmain_early + +.global halt_cpu +.type halt_cpu, @function +halt_cpu: + cli +1: hlt + jmp 1b + +.size _start, . - _start diff --git a/src/arch/i386/gdt.h b/src/arch/i386/gdt.h new file mode 100644 index 0000000..bcb9870 --- /dev/null +++ b/src/arch/i386/gdt.h @@ -0,0 +1,16 @@ +#pragma once + +enum { + SEG_null, + // order dictated by SYSENTER + SEG_r0code, + SEG_r0data, + SEG_r3code, + SEG_r3data, + SEG_TSS, + + SEG_end +}; + +void gdt_init(); +void gdt_farjump(int segment); diff --git a/src/arch/i386/gdt/farjump.s b/src/arch/i386/gdt/farjump.s new file mode 100644 index 0000000..85d8ba5 --- /dev/null +++ b/src/arch/i386/gdt/farjump.s @@ -0,0 +1,9 @@ +.section .text +.global gdt_farjump +.type gdt_farjump, @function +gdt_farjump: + /* retf pops off the return address and code segment off the stack. + * it turns out that in the i386 cdecl calling convention they're in + * the correct place already. + */ + retf diff --git a/src/arch/i386/gdt/gdt.c b/src/arch/i386/gdt/gdt.c new file mode 100644 index 0000000..3e0647b --- /dev/null +++ b/src/arch/i386/gdt/gdt.c @@ -0,0 +1,119 @@ +#include <arch/generic.h> +#include <arch/i386/gdt.h> +#include <kernel/util.h> +#include <stdint.h> + + +struct gdt_entry { + uint64_t limit_low : 16; + uint64_t base_low : 24; + uint64_t accessed : 1; // set by the processor + // CODE | DATA + uint64_t rw : 1; // readable? | writeable? + uint64_t conforming : 1; // conforming? | expands down? + uint64_t code : 1; // 1 | 0 + + uint64_t codeordata : 1; // 1 for everything other than TSS and LDT + uint64_t ring : 2; + uint64_t present : 1; // always 1 + uint64_t limit_high : 4; + uint64_t available : 1; // ??? + uint64_t long_mode : 1; + uint64_t x32 : 1; + uint64_t gran : 1; // 1 - 4kb, 0 - 1b + uint64_t base_high : 8; +} __attribute__((packed)); + +struct tss_entry { + uint32_t prev_tss; // unused + uint32_t esp0; // kernel mode stack pointer + uint32_t ss0; // kernel mode stack segment + // total size = 0x68 (?) - 3 * sizeof(uint32_t) = 5c + uint8_t _unused[0x5c]; +} __attribute__((packed)); + +struct lgdt_arg { + uint16_t limit; + uint32_t base; +} __attribute__((packed)); + +static struct gdt_entry GDT[SEG_end]; +static struct tss_entry TSS; +static struct lgdt_arg lgdt_arg; // probably doesn't need to be global + +static void gdt_prepare(); +static void gdt_load(); + + +static void gdt_prepare() { + GDT[SEG_null].present = 0; + + GDT[SEG_r0data].limit_low = 0xFFFF; + GDT[SEG_r0data].limit_high = 0xF; + GDT[SEG_r0data].gran = 1; // 4KB * 0xFFFFF = (almost) 4GB + GDT[SEG_r0data].base_low = 0; + GDT[SEG_r0data].base_high = 0; + GDT[SEG_r0data].accessed = 0; + GDT[SEG_r0data].rw = 1; + GDT[SEG_r0data].conforming = 0; + GDT[SEG_r0data].code = 0; + GDT[SEG_r0data].codeordata = 1; + GDT[SEG_r0data].ring = 0; + GDT[SEG_r0data].present = 1; + GDT[SEG_r0data].long_mode = 0; // ??? + GDT[SEG_r0data].available = 1; // ??? + GDT[SEG_r0data].x32 = 1; + + // copy to r0 code + GDT[SEG_r0code] = GDT[SEG_r0data]; + GDT[SEG_r0code].code = 1; + + GDT[SEG_r3data] = GDT[SEG_r0data]; + GDT[SEG_r3data].ring = 3; + GDT[SEG_r3code] = GDT[SEG_r0code]; + GDT[SEG_r3code].ring = 3; + + // tss + memset(&TSS, 0, sizeof(TSS)); + TSS.ss0 = SEG_r0data << 3; // kernel data segment + TSS.esp0 = (uint32_t) &stack_top; + + GDT[SEG_TSS].limit_low = sizeof(TSS); + GDT[SEG_TSS].base_low = (uint32_t) &TSS; + GDT[SEG_TSS].accessed = 1; // 1 for TSS + GDT[SEG_TSS].rw = 0; // 1 busy / 0 not busy + GDT[SEG_TSS].conforming = 0; // 0 for TSS + GDT[SEG_TSS].code = 1; // 32bit + GDT[SEG_TSS].codeordata = 0; // is a system entry + GDT[SEG_TSS].ring = 3; + GDT[SEG_TSS].present = 1; + GDT[SEG_TSS].limit_high = (sizeof(TSS) >> 16) & 0xf; + GDT[SEG_TSS].available = 0; // 0 for TSS + GDT[SEG_TSS].long_mode = 0; + GDT[SEG_TSS].x32 = 0; // idk + GDT[SEG_TSS].gran = 0; + GDT[SEG_TSS].base_high = (((uint32_t) &TSS) >> 24) & 0xff; +} + +static void gdt_load() { + lgdt_arg.limit = sizeof(GDT) - 1; + lgdt_arg.base = (uint32_t) &GDT; + asm("lgdt (%0)" + : : "r" (&lgdt_arg) : "memory"); + asm("ltr %%ax" + : : "a" (SEG_TSS << 3 | 3) : "memory"); + + // update all segment registers + gdt_farjump(SEG_r0code << 3); + asm("mov %0, %%ds;" + "mov %0, %%ss;" + "mov %0, %%es;" + "mov %0, %%fs;" + "mov %0, %%gs;" + : : "r" (SEG_r0data << 3) : "memory"); +} + +void gdt_init() { + gdt_prepare(); + gdt_load(); +} diff --git a/src/arch/i386/interrupts/idt.c b/src/arch/i386/interrupts/idt.c new file mode 100644 index 0000000..4e23118 --- /dev/null +++ b/src/arch/i386/interrupts/idt.c @@ -0,0 +1,75 @@ +#include <arch/i386/gdt.h> +#include <arch/i386/interrupts/idt.h> +#include <arch/i386/interrupts/isr.h> +#include <kernel/panic.h> +#include <stdbool.h> +#include <stdint.h> + +struct idt_entry { + uint16_t offset_low ; + uint16_t code_seg ; + uint8_t zero ; // unused, has to be 0 + uint8_t type : 4; // 16/32 bit, task/interrupt/task gate + uint8_t storage : 1; // 0 for interrupt/trap gates + uint8_t ring : 2; + uint8_t present : 1; + uint16_t offset_high ; +} __attribute__((packed)); + +// is exactly the same as lgdt_arg, i should combine them into a single struct +// later +struct lidt_arg { + uint16_t limit; + uint32_t base; +} __attribute__((packed)); + + +static struct idt_entry IDT[256]; +static struct lidt_arg lidt_arg; + +static inline void idt_add(uint8_t num, bool user, void (*isr)); +static void idt_prepare(); +static void idt_load(); +static void idt_test(); + + +static inline void idt_add(uint8_t num, bool user, void (*isr)) { + uintptr_t offset = (uintptr_t) isr; + + IDT[num] = (struct idt_entry) { + .offset_low = offset, + .offset_high = offset >> 16, + .code_seg = SEG_r0code << 3, + .zero = 0, + .present = 1, + .ring = user ? 3 : 0, + .storage = 0, + .type = 0xE, // 32-bit interrupt gate + }; +} + +static void idt_prepare() { + for (int i = 0; i < 256; i++) + IDT[i].present = 0; + + idt_add(0x08, false, isr_double_fault); + idt_add(0x0d, false, isr_general_protection_fault); + idt_add(0x34, false, isr_test_interrupt); +} + +static void idt_load() { + lidt_arg.limit = sizeof(IDT) - 1; + lidt_arg.base = (uintptr_t) &IDT; + asm("lidt (%0)" : : "r" (&lidt_arg) : "memory"); +} + +static void idt_test() { + asm("int $0x34" : : : "memory"); + if (!isr_test_interrupt_called) panic(); +} + +void idt_init() { + idt_prepare(); + idt_load(); + idt_test(); +} diff --git a/src/arch/i386/interrupts/idt.h b/src/arch/i386/interrupts/idt.h new file mode 100644 index 0000000..5627657 --- /dev/null +++ b/src/arch/i386/interrupts/idt.h @@ -0,0 +1,3 @@ +#pragma once + +void idt_init(); diff --git a/src/arch/i386/interrupts/isr.c b/src/arch/i386/interrupts/isr.c new file mode 100644 index 0000000..03399ea --- /dev/null +++ b/src/arch/i386/interrupts/isr.c @@ -0,0 +1,24 @@ +#include <arch/i386/interrupts/isr.h> +#include <arch/i386/tty.h> +#include <kernel/panic.h> +#include <stdbool.h> +#include <stdint.h> + +bool isr_test_interrupt_called = false; + +__attribute__((interrupt)) +void isr_double_fault(struct interrupt_frame *frame) { + tty_const("#DF"); + panic(); +} + +__attribute__((interrupt)) +void isr_general_protection_fault(struct interrupt_frame *frame) { + tty_const("#GP"); + panic(); +} + +__attribute__((interrupt)) +void isr_test_interrupt(struct interrupt_frame *frame) { + isr_test_interrupt_called = true; +} diff --git a/src/arch/i386/interrupts/isr.h b/src/arch/i386/interrupts/isr.h new file mode 100644 index 0000000..150fc46 --- /dev/null +++ b/src/arch/i386/interrupts/isr.h @@ -0,0 +1,15 @@ +#pragma once +#include <stdbool.h> + +struct interrupt_frame; + +extern bool isr_test_interrupt_called; // used in the self-test in idt.c + +__attribute__((interrupt)) +void isr_double_fault(struct interrupt_frame *frame); + +__attribute__((interrupt)) +void isr_general_protection_fault(struct interrupt_frame *frame); + +__attribute__((interrupt)) +void isr_test_interrupt(struct interrupt_frame *frame); diff --git a/src/arch/i386/multiboot.s b/src/arch/i386/multiboot.s new file mode 100644 index 0000000..2194982 --- /dev/null +++ b/src/arch/i386/multiboot.s @@ -0,0 +1,11 @@ +.set MAGIC, 0x1BADB002 +.set FLAG_ALIGN, 1<<0 /* align modules on page boundaries */ +.set FLAG_MEMINFO, 1<<1 /* memory map */ +.set FLAGS, FLAG_ALIGN | FLAG_MEMINFO +.set CHECKSUM, -(MAGIC + FLAGS) + +.section .multiboot +.align 4 +.long MAGIC +.long FLAGS +.long CHECKSUM diff --git a/src/arch/i386/sysenter.h b/src/arch/i386/sysenter.h new file mode 100644 index 0000000..b531fe8 --- /dev/null +++ b/src/arch/i386/sysenter.h @@ -0,0 +1,2 @@ +#pragma once +void sysenter_setup(); diff --git a/src/arch/i386/sysenter.s b/src/arch/i386/sysenter.s new file mode 100644 index 0000000..666c0f0 --- /dev/null +++ b/src/arch/i386/sysenter.s @@ -0,0 +1,31 @@ +/* arch/i386/gdt.c */ +.set SEG_r0code, 1 +.set SEG_r3code, 3 +.set SEG_r3data, 4 + +.set IA32_SYSENTER_CS, 0x174 + +.section .text +.global sysexit +.type sysexit, @function +sysexit: + pop %ecx + pop %edx + + mov $(SEG_r3data << 3 | 3), %ax + mov %ax, %ds + mov %ax, %es + mov %ax, %fs + mov %ax, %gs + + sysexit + + +.global sysenter_setup +.type sysenter_setup, @function +sysenter_setup: + xor %edx, %edx + mov $(SEG_r0code << 3), %eax + mov $IA32_SYSENTER_CS, %ecx + wrmsr + ret diff --git a/src/arch/i386/tty.c b/src/arch/i386/tty.c new file mode 100644 index 0000000..a7c74f5 --- /dev/null +++ b/src/arch/i386/tty.c @@ -0,0 +1,36 @@ +#include <arch/i386/tty.h> + +struct vga_cell { + unsigned char c; + unsigned char style; +} __attribute__((__packed__)); + +static const size_t vga_len = 80 * 25; +static struct vga_cell *vga = (void*) 0xB8000; +static size_t vga_pos = 0; + +static void tty_scroll() { + for (int i = 0; i < vga_len - 80; i++) { + vga[i] = vga[i + 80]; + } + vga_pos -= 80; +} + +void tty_putchar(char c) +{ + if (vga_pos >= vga_len - 80) tty_scroll(); + vga[vga_pos++].c = c; +} + +void tty_write(const char *buf, size_t len) +{ + for (size_t i = 0; i < len; i++) { + tty_putchar(buf[i]); + } +} + +void tty_clear() { + for (size_t i = 0; i < vga_len; i++) + vga[i].c = ' '; + vga_pos = 0; +} diff --git a/src/arch/i386/tty.h b/src/arch/i386/tty.h new file mode 100644 index 0000000..3dc1525 --- /dev/null +++ b/src/arch/i386/tty.h @@ -0,0 +1,8 @@ +#pragma once +#include <stddef.h> + +void tty_putchar(char c); +void tty_write(const char *buf, size_t len); +void tty_clear(); + +#define tty_const(str) tty_write(str, sizeof(str) - 1) |