A dynamic instrumentation system that allows one to gather additional information about kernel operation without recompiling or rebooting a kernel.
0
votes
1answer
28 views
XenServer with DDK doesn't support Kprobes?
I installed XenServer 6.0.0 and DDK, and I want to develop a kernel module, so I code a basic kprobes program. It is running OK on normal linux like redhat and output "Before sys_ioctl", but on ...
1
vote
0answers
36 views
instert kprobes at each system call
how a kernel probe can be inserted at each system call point? I need to track all syscalls made by a program.I managed to instrument some routines, but not the actual syscall.
thaks
0
votes
0answers
101 views
How Can I Count malloc in linux kernel with kprobe
I want to count the malloc system call with Kprobe in fedora.
I know that malloc is not a system call and is implemented in user space, but I want to count malloc with kprobe if its possible.
What is ...
2
votes
1answer
71 views
Getting args from kprobe not finding regs->rdi x86_64
I'm writing a kernel module under Scientific Linux 6.3 x86_64 and I'm looking to use kprobes. In this module, I need access to the first argument of a function on return, so jprobes are out.
I found ...
2
votes
0answers
52 views
Why `my_do_fork` and `post_handler` are executed but `pre_handler` isn't?
I have used jprobe in a kernel module and everything works just fine. except the fact that the pre_handler is not executed.
static struct jprobe my_jprobe = {
.entry = ...

