2021-02-28 02:18:39 +01:00
|
|
|
/* See the end of this file for copyright, license, and warranty information. */
|
2021-01-04 15:40:16 +01:00
|
|
|
|
|
|
|
#include <arch/hardware.h>
|
|
|
|
|
|
|
|
#include <ardix/types.h>
|
2021-08-05 16:14:18 +02:00
|
|
|
#include <ardix/sched.h>
|
|
|
|
#include <ardix/syscall.h>
|
2021-01-04 15:40:16 +01:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2021-08-01 23:28:25 +02:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_CHECK_SYSCALL_SOURCE
|
|
|
|
/* syscall.S */
|
2021-08-02 00:37:01 +02:00
|
|
|
extern uint16_t __syscall_return_point;
|
2021-08-01 23:28:25 +02:00
|
|
|
#endif
|
|
|
|
|
2021-08-08 20:48:55 +02:00
|
|
|
void arch_enter(struct exc_context *context)
|
2021-01-04 15:40:16 +01:00
|
|
|
{
|
2021-08-08 20:48:55 +02:00
|
|
|
enum syscall number = sc_num(context);
|
|
|
|
long (*handler)(sysarg_t arg1, sysarg_t arg2, sysarg_t arg3,
|
|
|
|
sysarg_t arg4, sysarg_t arg5, sysarg_t arg6);
|
|
|
|
long sc_ret;
|
2021-01-04 15:40:16 +01:00
|
|
|
|
2021-08-01 23:28:25 +02:00
|
|
|
# ifdef CONFIG_CHECK_SYSCALL_SOURCE
|
|
|
|
/*
|
|
|
|
* We need to ignore the program counter's LSB because the CPU uses
|
2021-08-02 00:37:01 +02:00
|
|
|
* that as a flag for whether it's operating in ARM or Thumb mode;
|
|
|
|
* the instructions are always 2-byte aligned. Additionally, the PC
|
|
|
|
* points to the instruction *after* the SVC, not SVC itself.
|
2021-08-01 23:28:25 +02:00
|
|
|
*/
|
2021-08-08 20:48:55 +02:00
|
|
|
if (((uintptr_t)regs->sp->pc & 0xfffffffe) != (uintptr_t)&__syscall_return_point) {
|
|
|
|
sc_set_rval(regs, -EACCES);
|
2021-08-01 23:28:25 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2021-08-08 20:48:55 +02:00
|
|
|
if (number > NSYSCALLS) {
|
|
|
|
sc_set_rval(context, -ENOSYS);
|
|
|
|
return;
|
2021-01-04 15:40:16 +01:00
|
|
|
}
|
|
|
|
|
2021-08-08 20:48:55 +02:00
|
|
|
handler = sys_table[number];
|
2021-01-04 15:40:16 +01:00
|
|
|
if (handler == NULL) {
|
2021-08-08 20:48:55 +02:00
|
|
|
sc_set_rval(context, -ENOSYS);
|
|
|
|
return;
|
2021-01-04 15:40:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: not every syscall uses the max amount of parameters (duh) */
|
2021-08-08 20:48:55 +02:00
|
|
|
sc_ret = handler(sc_arg1(context), sc_arg2(context), sc_arg3(context),
|
|
|
|
sc_arg4(context), sc_arg5(context), sc_arg6(context));
|
2021-01-04 15:40:16 +01:00
|
|
|
|
2021-08-08 20:48:55 +02:00
|
|
|
sc_set_rval(context, sc_ret);
|
2021-01-04 15:40:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2021-02-28 02:18:39 +01:00
|
|
|
* This file is part of Ardix.
|
|
|
|
* Copyright (c) 2020, 2021 Felix Kopp <owo@fef.moe>.
|
2021-01-04 15:40:16 +01:00
|
|
|
*
|
2021-05-10 16:19:38 +02:00
|
|
|
* Ardix is non-violent software: you may only use, redistribute,
|
|
|
|
* and/or modify it under the terms of the CNPLv6+ as found in
|
|
|
|
* the LICENSE file in the source code root directory or at
|
|
|
|
* <https://git.pixie.town/thufie/CNPL>.
|
2021-01-04 15:40:16 +01:00
|
|
|
*
|
2021-05-10 16:19:38 +02:00
|
|
|
* Ardix comes with ABSOLUTELY NO WARRANTY, to the extent
|
|
|
|
* permitted by applicable law. See the CNPLv6+ for details.
|
2021-01-04 15:40:16 +01:00
|
|
|
*/
|