2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "linux/types.h"
|
|
|
|
#include "linux/utime.h"
|
|
|
|
#include "linux/sys.h"
|
|
|
|
#include "linux/ptrace.h"
|
|
|
|
#include "asm/unistd.h"
|
|
|
|
#include "asm/ptrace.h"
|
|
|
|
#include "asm/uaccess.h"
|
|
|
|
#include "asm/stat.h"
|
|
|
|
#include "sysdep/syscalls.h"
|
2005-09-03 18:57:42 -04:00
|
|
|
#include "sysdep/sigcontext.h"
|
2005-04-16 18:20:36 -04:00
|
|
|
#include "kern_util.h"
|
2005-09-03 18:57:42 -04:00
|
|
|
#include "syscall.h"
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-03 18:57:42 -04:00
|
|
|
void syscall_handler_tt(int sig, struct pt_regs *regs)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-09-03 18:57:42 -04:00
|
|
|
void *sc;
|
|
|
|
long result;
|
2005-04-16 18:20:36 -04:00
|
|
|
int syscall;
|
2006-07-10 07:45:13 -04:00
|
|
|
|
2005-09-03 18:57:42 -04:00
|
|
|
sc = UPT_SC(®s->regs);
|
|
|
|
SC_START_SYSCALL(sc);
|
|
|
|
|
2006-02-01 06:06:27 -05:00
|
|
|
syscall = UPT_SYSCALL_NR(®s->regs);
|
2005-09-03 18:57:42 -04:00
|
|
|
syscall_trace(®s->regs, 0);
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
current->thread.nsyscalls++;
|
|
|
|
nsyscalls++;
|
|
|
|
|
|
|
|
if((syscall >= NR_syscalls) || (syscall < 0))
|
2005-09-03 18:57:42 -04:00
|
|
|
result = -ENOSYS;
|
|
|
|
else result = EXECUTE_SYSCALL(syscall, regs);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-03 18:57:42 -04:00
|
|
|
/* regs->sc may have changed while the system call ran (there may
|
|
|
|
* have been an interrupt or segfault), so it needs to be refreshed.
|
|
|
|
*/
|
|
|
|
UPT_SC(®s->regs) = sc;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-03 18:57:42 -04:00
|
|
|
SC_SET_SYSCALL_RETURN(sc, result);
|
|
|
|
|
|
|
|
syscall_trace(®s->regs, 1);
|
|
|
|
}
|