up vote 2 down vote favorite
share [g+] share [fb]

Is there any way to catch all syscalls on Linux? The only solution I know of is using LD_PRELOAD à la fakeroot, but that only works for dynamically linked applications. Furthermore, this approach requires enumerating all syscalls which is something I'd like to avoid.

link|improve this question

77% accept rate
feedback

2 Answers

up vote 3 down vote accepted

I think you are looking for ptrace(2).

link|improve this answer
feedback

You can trace a program. Think about how strace works. Hint: it doesn't use LD_PRELOAD tricks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.