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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <drivers/cpu.h>
#include <drivers/int.h>
#include <drivers/timer.h>
#include <errno.h>
#include <fs.h>
#include <io.h>
#include <load.h>
#include <mem.h>
#include <mm.h>
#include <print.h>
#include <proc.h>
#include <str.h>
#include <sys.h>
#include <syscall.h>
static u32 syscall_handler(u32 esp)
{
struct int_frame_user *frame = (struct int_frame_user *)esp;
enum sys num = frame->eax;
#if DEBUG_SYSCALLS
printf("[SYSCALL] %d from %s\n", num, proc_current()->name);
#endif
switch (num) {
// Memory operations
case SYS_ALLOC: {
frame->eax = memory_sys_alloc(proc_current()->page_dir, frame->ebx,
(u32 *)frame->ecx, (u32 *)frame->edx, (u8)frame->esi);
break;
}
case SYS_FREE: {
frame->eax = memory_sys_free(proc_current()->page_dir, frame->ebx);
break;
}
case SYS_SHACCESS: {
frame->eax = memory_sys_shaccess(proc_current()->page_dir, frame->ebx,
(u32 *)frame->ecx, (u32 *)frame->edx);
break;
}
// File operations
case SYS_STAT: {
frame->eax = vfs_stat((char *)frame->ebx, (struct stat *)frame->ecx);
break;
}
case SYS_READ: {
frame->eax =
vfs_read((char *)frame->ebx, (void *)frame->ecx, frame->edx, frame->esi);
break;
}
case SYS_WRITE: {
frame->eax =
vfs_write((char *)frame->ebx, (void *)frame->ecx, frame->edx, frame->esi);
break;
}
// I/O operations
case SYS_IOPOLL: {
frame->eax = io_poll((void *)frame->ebx);
break;
}
case SYS_IOREAD: {
res ready = io_ready(frame->ebx);
if (ready == -EAGAIN) {
io_block(frame->ebx, proc_current());
} else if (ready != EOK) {
frame->eax = ready;
break;
}
frame->eax = io_read(frame->ebx, (void *)frame->ecx, frame->edx, frame->esi);
break;
}
case SYS_IOWRITE: {
frame->eax = io_write(frame->ebx, (void *)frame->ecx, frame->edx, frame->esi);
break;
}
case SYS_IOCONTROL: {
frame->eax = io_control(frame->ebx, frame->ecx, (void *)frame->edx,
(void *)frame->esi, (void *)frame->edi);
break;
}
// Process operations
case SYS_EXEC: {
char *path = (char *)frame->ebx;
struct proc *proc = proc_make(PROC_PRIV_NONE);
frame->eax = (u32)elf_load(path, proc);
if (frame->eax != EOK)
proc_exit(proc, -frame->eax);
else
proc_yield();
break;
}
case SYS_EXIT: {
frame->eax = EOK;
proc_exit(proc_current(), (s32)frame->ebx);
break;
}
case SYS_YIELD: {
frame->eax = EOK;
proc_yield();
break;
}
// System operations
case SYS_BOOT: { // TODO: Move
if (frame->ebx != SYS_BOOT_MAGIC) {
frame->eax = -EINVAL;
break;
}
if (!proc_super()) {
frame->eax = -EACCES;
}
switch (frame->ecx) {
case SYS_BOOT_REBOOT:
print("Rebooting...\n");
outb(0x64, 0xfe);
__asm__ volatile("cli\nud2");
break;
case SYS_BOOT_SHUTDOWN:
print("Shutting down...\n");
outw(0xB004, 0x2000);
outw(0x604, 0x2000);
outw(0x4004, 0x3400);
outb(0x64, 0xfe);
__asm__ volatile("cli\nud2");
break;
default:
frame->eax = -EINVAL;
}
break;
}
case SYS_MIN:
case SYS_MAX:
frame->eax = -EINVAL;
break;
default: {
frame->eax = -EINVAL;
printf("Unknown syscall %d!\n", num);
break;
}
}
return esp;
}
// Internal scheduler (=> yield) call
static u32 syscall_special_handler(u32 esp)
{
if (proc_current())
proc_reset_quantum(proc_current());
return scheduler(esp);
}
CLEAR void syscall_init(void)
{
int_special_handler_add(0, syscall_handler);
int_special_handler_add(1, syscall_special_handler);
}
|