I'm working on a piece of software that monitors other processes' system calls using ptrace(2). Unfortunately most modern operating system implement some kind of fast user-mode syscalls that are called vsyscalls in Linux.

Is there any way to disable the use of vsyscalls/vDSO for a single process or, if that is not possible, for the whole operating system?

link|improve this question

Do you imply that ptrace don't catch all vsyscall-ed syscalls? – Basile Starynkevitch Nov 26 '11 at 17:10
feedback

1 Answer

up vote 2 down vote accepted

Try echo 0 > /proc/sys/kernel/vsyscall64

If you're trying to ptrace on gettimeofday calls and they aren't showing up, what time source is the system using (pmtimer, acpi, tsc, hpet, etc). I wonder if you'd humor me by trying to force your timer to something older like pmtimer. It's possible one of the many gtod timer specific optimizations is causing your ptrace calls to be avoided, even with vsyscall set to zero.

link|improve this answer
1  
Tried it, does not seem to work, I still don't see time/gettimeofday syscalls. I also tried the vdso=0 boot option without success. – Michael Nov 26 '11 at 17:02
@Michael have you looked at the source of gettimeofday, seen if it honors the vsyscall flag? I'm going to look into it myself tonight. – Jeremiah Gowdy Nov 27 '11 at 1:23
OK, I can see the gettimeofday syscall with vsyscall64=0, but I still don't see the time syscall. – Michael Nov 27 '11 at 12:57
Must have been some other issue, you were right, I can see all syscalls with vsyscall64=0. – Michael Nov 27 '11 at 13:03
feedback

Your Answer

 
or
required, but never shown

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