|
@@ -7,29 +7,31 @@
|
|
|
#include <linux/ptrace.h>
|
|
|
#include <kern_util.h>
|
|
|
#include <sysdep/ptrace.h>
|
|
|
+#include <sysdep/ptrace_user.h>
|
|
|
#include <sysdep/syscalls.h>
|
|
|
-#include <os.h>
|
|
|
|
|
|
void handle_syscall(struct uml_pt_regs *r)
|
|
|
{
|
|
|
struct pt_regs *regs = container_of(r, struct pt_regs, regs);
|
|
|
- long result;
|
|
|
int syscall;
|
|
|
|
|
|
- if (syscall_trace_enter(regs)) {
|
|
|
- result = -ENOSYS;
|
|
|
+ /* Initialize the syscall number and default return value. */
|
|
|
+ UPT_SYSCALL_NR(r) = PT_SYSCALL_NR(r->gp);
|
|
|
+ PT_REGS_SET_SYSCALL_RETURN(regs, -ENOSYS);
|
|
|
+
|
|
|
+ if (syscall_trace_enter(regs))
|
|
|
goto out;
|
|
|
- }
|
|
|
|
|
|
- syscall = get_syscall(r);
|
|
|
+ /* Update the syscall number after orig_ax has potentially been updated
|
|
|
+ * with ptrace.
|
|
|
+ */
|
|
|
+ UPT_SYSCALL_NR(r) = PT_SYSCALL_NR(r->gp);
|
|
|
+ syscall = UPT_SYSCALL_NR(r);
|
|
|
|
|
|
- if ((syscall > __NR_syscall_max) || syscall < 0)
|
|
|
- result = -ENOSYS;
|
|
|
- else
|
|
|
- result = EXECUTE_SYSCALL(syscall, regs);
|
|
|
+ if (syscall >= 0 && syscall <= __NR_syscall_max)
|
|
|
+ PT_REGS_SET_SYSCALL_RETURN(regs,
|
|
|
+ EXECUTE_SYSCALL(syscall, regs));
|
|
|
|
|
|
out:
|
|
|
- PT_REGS_SET_SYSCALL_RETURN(regs, result);
|
|
|
-
|
|
|
syscall_trace_leave(regs);
|
|
|
}
|