我有一个愚蠢的问题,我想在 system tap 的帮助下理解源代码流,为此我试图使用 kernel.statement 探测函数访问局部变量,它显示除指针之外的所有其他变量。
probe module("Module_Path/proc_rw.ko").statement("my_write@Module Src Path/proc_rw.c+9")
{
printf("local = %s\n", $$locals)
}
Module Code :
static ssize_t my_write(struct file *f, const char __user *buf, size_t len, loff_t *off)
{
pid_t pid;
int ret;
struct task_struct *task_local;
int *i;
ret=copy_from_user(c, buf, len);
i=&ret;
pid=simple_strtol(buf, NULL, 10);
task_local=pid_task(find_vpid(pid), PIDTYPE_PID);
return len;
}
当我执行上面的 stap 代码时,它返回,
本地=pid=0xf98 ret=0x0 task_local=? 我=?
任何有助于理解为什么不打印 task_local 和 i 值的帮助都会有所帮助。
问候,亚什。