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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
#include <string.h>
#include <process.h>
#include <vfs.h>
#include <sct.h>
typedef struct {
uint32_t sc_id, a, b, c, d, e; // a: ebx, b: ecx, c: edx, d: esi, e: edi
} sc_args_t;
typedef uint32_t (*syscall_handler_t)(sc_args_t);
static syscall_handler_t sc_handlers[SC_MAX] = { 0 };
static char* sc_copy_string(uint32_t s, uint32_t slen) {
const char* addr = (const char*)s;
probe_for_read(addr, slen);
char* buf = malloc(slen+1);
if (buf == 0) return 0;
memcpy(buf, addr, slen);
buf[slen] = 0;
return buf;
}
// ==================== //
// THE SYSCALLS CODE !! //
// ==================== //
static uint32_t exit_sc(sc_args_t args) {
dbg_printf("Proc %d exit with code %d\n", current_process()->pid, args.a);
// TODO : use code... and process exiting is not supposed to be done this way
exit();
return 0;
}
static uint32_t yield_sc(sc_args_t args) {
yield();
return 0;
}
static uint32_t usleep_sc(sc_args_t args) {
usleep(args.a);
return 0;
}
static uint32_t dbg_print_sc(sc_args_t args) {
char* msg = sc_copy_string(args.a, args.b);
if (msg == 0) return -1;
dbg_print(msg);
free(msg);
return 0;
}
static uint32_t mmap_sc(sc_args_t args) {
return mmap(current_process(), (void*)args.a, args.b, args.c);
}
static uint32_t mmap_file_sc(sc_args_t args) {
int fd = args.a;
fs_handle_t *h = proc_read_fd(current_process(), fd);
if (h == 0) return false;
return mmap_file(current_process(), h, args.b, (void*)args.c, args.d, args.e);
}
static uint32_t mchmap_sc(sc_args_t args) {
return mchmap(current_process(), (void*)args.a, args.b);
}
static uint32_t munmap_sc(sc_args_t args) {
return munmap(current_process(), (void*)args.a);
}
static uint32_t create_sc(sc_args_t args) {
bool ret = false;
char* fn = sc_copy_string(args.a, args.b);
if (fn == 0) goto end_create;
char* sep = strchr(fn, ':');
if (sep == 0) goto end_create;
*sep = 0;
char* file = sep + 1;
fs_t *fs = proc_find_fs(current_process(), fn);
if (fs == 0) goto end_create;
ret = fs_create(fs, file, args.c);
end_create:
if (fn) free(fn);
return ret;
}
static uint32_t delete_sc(sc_args_t args) {
bool ret = false;
char* fn = sc_copy_string(args.a, args.b);
if (fn == 0) goto end_del;
char* sep = strchr(fn, ':');
if (sep == 0) goto end_del;
*sep = 0;
char* file = sep + 1;
fs_t *fs = proc_find_fs(current_process(), fn);
if (fs == 0) goto end_del;
ret = fs_delete(fs, file);
end_del:
if (fn) free(fn);
return ret;
}
static uint32_t move_sc(sc_args_t args) {
bool ret = false;
char *fn_a = sc_copy_string(args.a, args.b),
*fn_b = sc_copy_string(args.c, args.d);
if (fn_a == 0 || fn_b == 0) goto end_move;
char* sep_a = strchr(fn_a, ':');
if (sep_a == 0) goto end_move;
*sep_a = 0;
char* sep_b = strchr(fn_b, ':');
if (sep_b == 0) goto end_move;
*sep_b = 0;
if (strcmp(fn_a, fn_b) != 0) goto end_move; // can only move within same FS
char *file_a = sep_a + 1, *file_b = sep_b + 1;
fs_t *fs = proc_find_fs(current_process(), fn_a);
if (fs == 0) goto end_move;
ret = fs_move(fs, file_a, file_b);
end_move:
if (fn_a) free(fn_a);
if (fn_b) free(fn_b);
return ret;
}
static uint32_t stat_sc(sc_args_t args) {
bool ret = false;
char* fn = sc_copy_string(args.a, args.b);
if (fn == 0) goto end_stat;
char* sep = strchr(fn, ':');
if (sep == 0) goto end_stat;
*sep = 0;
char* file = sep + 1;
fs_t *fs = proc_find_fs(current_process(), fn);
if (fs == 0) goto end_stat;
probe_for_write((stat_t*)args.c, sizeof(stat_t));
ret = fs_stat(fs, file, (stat_t*)args.c);
end_stat:
if (fn) free(fn);
return ret;
}
static uint32_t open_sc(sc_args_t args) {
int ret = 0;
char* fn = sc_copy_string(args.a, args.b);
if (fn == 0) goto end_open;
char* sep = strchr(fn, ':');
if (sep == 0) goto end_open;
*sep = 0;
char* file = sep + 1;
fs_t *fs = proc_find_fs(current_process(), fn);
if (fs == 0) goto end_open;
fs_handle_t *h = fs_open(fs, file, args.c);
if (h == 0) goto end_open;
ret = proc_add_fd(current_process(), h);
if (ret == 0) unref_file(h);
end_open:
if (fn) free(fn);
return ret;
}
static uint32_t close_sc(sc_args_t args) {
proc_close_fd(current_process(), args.a);
return 0;
}
static uint32_t read_sc(sc_args_t args) {
fs_handle_t *h = proc_read_fd(current_process(), args.a);
if (h == 0) return 0;
char* data = (char*)args.d;
size_t len = args.c;
probe_for_write(data, len);
return file_read(h, args.b, len, data);
}
static uint32_t write_sc(sc_args_t args) {
fs_handle_t *h = proc_read_fd(current_process(), args.a);
if (h == 0) return 0;
char* data = (char*)args.d;
size_t len = args.c;
probe_for_read(data, len);
return file_write(h, args.b, len, data);
}
static uint32_t readdir_sc(sc_args_t args) {
fs_handle_t *h = proc_read_fd(current_process(), args.a);
if (h == 0) return false;
dirent_t *o = (dirent_t*)args.b;
probe_for_write(o, sizeof(dirent_t));
return file_readdir(h, o);
}
static uint32_t stat_open_sc(sc_args_t args) {
fs_handle_t *h = proc_read_fd(current_process(), args.a);
if (h == 0) return false;
stat_t *o = (stat_t*)args.b;
probe_for_write(o, sizeof(stat_t));
return file_stat(h, o);
}
static uint32_t ioctl_sc(sc_args_t args) {
fs_handle_t *h = proc_read_fd(current_process(), args.a);
if (h == 0) return -1;
void* data = (void*)args.c;
if (data >= (void*)K_HIGHHALF_ADDR) return -1;
return file_ioctl(h, args.b, data);
}
static uint32_t get_mode_sc(sc_args_t args) {
fs_handle_t *h = proc_read_fd(current_process(), args.a);
if (h == 0) return 0;
return file_get_mode(h);
}
// ====================== //
// SYSCALLS SETUP ROUTINE //
// ====================== //
void setup_syscall_table() {
sc_handlers[SC_EXIT] = exit_sc;
sc_handlers[SC_YIELD] = yield_sc;
sc_handlers[SC_DBG_PRINT] = dbg_print_sc;
sc_handlers[SC_USLEEP] = usleep_sc;
sc_handlers[SC_MMAP] = mmap_sc;
sc_handlers[SC_MMAP_FILE] = mmap_file_sc;
sc_handlers[SC_MCHMAP] = mchmap_sc;
sc_handlers[SC_MUNMAP] = munmap_sc;
sc_handlers[SC_CREATE] = create_sc;
sc_handlers[SC_DELETE] = delete_sc;
sc_handlers[SC_MOVE] = move_sc;
sc_handlers[SC_STAT] = stat_sc;
sc_handlers[SC_OPEN] = open_sc;
sc_handlers[SC_CLOSE] = close_sc;
sc_handlers[SC_READ] = read_sc;
sc_handlers[SC_WRITE] = write_sc;
sc_handlers[SC_READDIR] = readdir_sc;
sc_handlers[SC_STAT_OPEN] = stat_open_sc;
sc_handlers[SC_IOCTL] = ioctl_sc;
sc_handlers[SC_GET_MODE] = get_mode_sc;
}
void syscall_handler(registers_t *regs) {
ASSERT(regs->int_no == 64);
if (regs->eax < SC_MAX) {
syscall_handler_t h = sc_handlers[regs->eax];
if (h != 0) {
sc_args_t args = {
.a = regs->ebx,
.b = regs->ecx,
.c = regs->edx,
.d = regs->esi,
.e = regs->edi};
regs->eax = h(args);
} else {
regs->eax = -1;
}
}
}
/* vim: set ts=4 sw=4 tw=0 noet :*/
|