I'm writing a sandbox utility that will be used to execute and monitor a child process in a controlled environment. It should terminate the child process immediately if the child process attempts to perform certain syscalls that might break the security. It seems that it's possible to use ptrace to have the child stopped at every syscall entry and examine its user area to determine the syscall arguments, but all the examples I've seen assume an x86 architecture and examine the registers eax, ebx, and so on. Is there an architecture-independent means of recovering the syscall arguments?
|
feedback
|