aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.c
blob: 74337996d1222472152733c07417b7546eede3e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <stdint.h>
#include <kernel/syscall/syscall.h>
#include <kernel/interrupts/interrupts.h>
#include <kernel/system.h>
#include <kernel/lib/stdio.h>
#include <kernel/io/io.h>
#include <kernel/tasks/process.h>

typedef uint32_t (*syscall_func)(uint32_t, ...);

uint32_t (*syscalls[])() = { [0] = (uint32_t(*)())halt_loop, // DEBUG!
			     [1] = sys_exec,
			     [2] = (uint32_t(*)())sys_putch,
			     [3] = sys_scancode,
			     [4] = sys_malloc,
			     [5] = sys_free,
			     [6] = sys_pointers };

void syscall_handler(struct regs *r)
{
	cli();

	if (r->eax >= sizeof(syscalls) / sizeof(*syscalls))
		return;

	syscall_func location = (syscall_func)syscalls[r->eax];
	if (!location)
		return;

	log("[SYSCALL] %d at [0x%x] with 0x%x 0x%x 0x%x 0x%x", r->eax, location, r->ebx, r->ecx,
	    r->edx, r->esi, r->edi);

	r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi);

	sti();
}

void syscalls_install()
{
	isr_install_handler(0x80, syscall_handler);
}