aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--apps/Makefile4
-rw-r--r--apps/idle.c7
-rw-r--r--apps/init.c6
-rw-r--r--apps/link.ld5
-rw-r--r--boot/Makefile2
-rw-r--r--kernel/Makefile2
-rw-r--r--kernel/features/load.c4
-rw-r--r--kernel/features/mm.c14
-rw-r--r--kernel/features/proc.c8
10 files changed, 27 insertions, 27 deletions
diff --git a/Makefile b/Makefile
index 9603296..f08c26b 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ all: compile
# TODO: Fix stack protector in userspace
# TODO: Fix ubsan in userspace (probably due to kernel size)
-debug: CFLAGS_DEFAULT += -Wno-error -ggdb3 -s #-fsanitize=undefined # -fstack-protector-all
+debug: CFLAGS_DEFAULT += -Wno-error -ggdb3 -s #-fsanitize=undefined #-fstack-protector-all
debug: compile
export
diff --git a/apps/Makefile b/apps/Makefile
index 9ad268e..66f8e42 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -4,6 +4,7 @@ COBJS = init.o idle.o wm.o test.o window.o #mandelbrot.o window.o exec.o files.o
CC = ccache ../cross/opt/bin/i686-elf-gcc
LD = ccache ../cross/opt/bin/i686-elf-ld
OC = ccache ../cross/opt/bin/i686-elf-objcopy
+ST = ccache ../cross/opt/bin/i686-elf-strip
CFLAGS = $(CFLAGS_DEFAULT) -I../libc/inc/ -I../libgui/inc/ -I../libtxt/inc/ -Duserspace
@@ -12,8 +13,9 @@ all: $(COBJS)
%.o: %.c
@mkdir -p ../build/apps/
@$(CC) -c $(CFLAGS) $< -o $@
- @$(LD) -o $(@:.o=.elf) -L../build/ $@ -lgui -ltxt -lc
+ @$(LD) -o $(@:.o=.elf) -Tlink.ld -L../build/ -static $@ -lgui -ltxt -lc
@cp $(@:.o=.elf) ../build/apps/$(@:.o=)
+#@$(ST) --strip-all ../build/apps/$(@:.o=)
# %.o: %.c
# @mkdir -p ../build/apps/
diff --git a/apps/idle.c b/apps/idle.c
index 3f10c3e..15ffc68 100644
--- a/apps/idle.c
+++ b/apps/idle.c
@@ -1,7 +1,12 @@
// MIT License, Copyright (c) 2021 Marvin Borner
-int main(void)
+#include <def.h>
+
+int main(int argc, char **argv)
{
+ UNUSED(argc);
+ UNUSED(argv);
while (1)
;
+ return 0;
}
diff --git a/apps/init.c b/apps/init.c
index c26e3ad..221708e 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -9,11 +9,9 @@ int main(int argc, char **argv)
UNUSED(argc);
UNUSED(argv);
log("Arrived!\n");
- while (1)
- ;
- assert(exec("/bin/wm", "wm", NULL) == 0);
- assert(exec("/bin/window", "test", NULL) == 0);
+ /* assert(exec("/bin/wm", "wm", NULL) == 0); */
+ /* assert(exec("/bin/window", "test", NULL) == 0); */
return 0;
}
diff --git a/apps/link.ld b/apps/link.ld
index 781e38d..e28bb34 100644
--- a/apps/link.ld
+++ b/apps/link.ld
@@ -1,11 +1,10 @@
OUTPUT_FORMAT("elf32-i386")
OUTPUT_ARCH(i386)
-STARTUP(libc.a) /* HUH */
ENTRY(_start)
SECTIONS
{
- . = 0x00000000;
+ . = 0x40000000;
.text : {
code = .;
@@ -26,7 +25,5 @@ SECTIONS
. = ALIGN(4096);
}
- _GLOBAL_OFFSET_TABLE_ = .;
-
. = ALIGN(4096);
}
diff --git a/boot/Makefile b/boot/Makefile
index 714ec22..7ef6cab 100644
--- a/boot/Makefile
+++ b/boot/Makefile
@@ -5,7 +5,7 @@ LD = ccache ../cross/opt/bin/i686-elf-ld
OC = ccache ../cross/opt/bin/i686-elf-objcopy
AS = ccache nasm
-CFLAGS = $(CFLAGS_DEFAULT) -ffreestanding -fno-stack-protector -fno-sanitize=undefined
+CFLAGS = $(CFLAGS_DEFAULT) -ffreestanding -fno-stack-protector -fno-sanitize=undefined -Ofast
ASFLAGS = -f elf32
diff --git a/kernel/Makefile b/kernel/Makefile
index e9ade73..1d9e87a 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -37,4 +37,4 @@ all: compile
compile: $(COBJS)
@mkdir -p ../build/
@$(LD) -N -z undefs -ekernel_main -Ttext 0x00050000 -o ../build/kernel.elf -L../build/ $+ -lk
- @$(LD) -N -Tlink.ld -o ../build/kernel.bin -L../build/ $+ -lk
+ @$(LD) -N -z max-page-size=0x1000 -Tlink.ld -o ../build/kernel.bin -L../build/ $+ -lk
diff --git a/kernel/features/load.c b/kernel/features/load.c
index 079cbbe..d3f3495 100644
--- a/kernel/features/load.c
+++ b/kernel/features/load.c
@@ -119,8 +119,8 @@ s32 elf_load(const char *path, struct proc *proc)
memory_switch_dir(proc->page_dir);
u32 stack = (u32)memory_alloc(proc->page_dir, PROC_STACK_SIZE, MEMORY_USER | MEMORY_CLEAR);
- proc->regs.ebp = stack + PROC_STACK_SIZE - 1;
- proc->regs.useresp = stack + PROC_STACK_SIZE - 1;
+ proc->regs.ebp = stack + PROC_STACK_SIZE;
+ proc->regs.useresp = stack + PROC_STACK_SIZE;
proc->regs.eip = header.entry;
proc->entry = header.entry;
diff --git a/kernel/features/mm.c b/kernel/features/mm.c
index 01e21e7..b06657f 100644
--- a/kernel/features/mm.c
+++ b/kernel/features/mm.c
@@ -48,8 +48,8 @@ void page_fault_handler(struct regs *r)
struct page_dir *dir = NULL;
if (proc && proc->page_dir) {
dir = proc->page_dir;
- printf("Stack is at %x, entry at %x\n", virtual_to_physical(dir, proc->regs.ebp),
- virtual_to_physical(dir, proc->entry));
+ /* printf("Stack is at %x, entry at %x\n", virtual_to_physical(dir, proc->regs.ebp), */
+ /* virtual_to_physical(dir, proc->entry)); */
} else {
dir = &kernel_dir;
}
@@ -165,7 +165,7 @@ void physical_free(struct memory_range range)
* Virtual
*/
-#define PDI(vaddr) (((vaddr) >> 22) & 0x03ff)
+#define PDI(vaddr) ((vaddr) >> 22)
#define PTI(vaddr) (((vaddr) >> 12) & 0x03ff)
u8 virtual_present(struct page_dir *dir, u32 vaddr)
@@ -210,15 +210,11 @@ void virtual_map(struct page_dir *dir, struct memory_range prange, u32 vaddr, u3
struct page_table *table =
(struct page_table *)(dir_entry->bits.address * PAGE_SIZE);
- if (dir_entry->bits.present) {
- // TODO: Is this a security risk?
- if (flags & MEMORY_USER)
- dir_entry->bits.user = 1;
- } else {
+ if (!dir_entry->bits.present) {
table = memory_alloc_identity(dir, MEMORY_CLEAR);
dir_entry->bits.present = 1;
dir_entry->bits.writable = 1;
- dir_entry->bits.user = flags & MEMORY_USER;
+ dir_entry->bits.user = 1;
dir_entry->bits.address = (u32)(table) >> 12;
}
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index aa595ff..5d3c8aa 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -81,11 +81,13 @@ void proc_print(void)
{
struct node *node = proc_list->head;
- printf("\nPROCESSES\n");
+ printf("--- PROCESSES ---\n");
struct proc *proc = NULL;
while (node && (proc = node->data)) {
- printf("Process %d: %s [%s]\n", proc->pid, proc->name,
- proc->state == PROC_RUNNING ? "RUNNING" : "SLEEPING");
+ printf("Process %d: %s [%s] [entry: %x; stack: %x]\n", proc->pid, proc->name,
+ proc->state == PROC_RUNNING ? "RUNNING" : "SLEEPING",
+ virtual_to_physical(proc->page_dir, proc->entry),
+ virtual_to_physical(proc->page_dir, proc->regs.ebp));
node = node->next;
}
printf("\n");