* cap_ptrace_access_check undefined
@ 2012-03-19 10:06 Joxean Koret
0 siblings, 0 replies; only message in thread
From: Joxean Koret @ 2012-03-19 10:06 UTC (permalink / raw)
To: kernelnewbies
Hi all!
I'm writing a kernel module that needs to check if the current process
is attached (via ptrace) to some other process. So I do something like
this:
...
// verify pid
p = find_vpid(child_pid);
if ( p == NULL )
...
// get the task
task = pid_task(p, PIDTYPE_PID);
if ( task == NULL )
..
// check ptrace privs
int ret = cap_ptrace_access_check(task, PTRACE_MODE_READ);
When compiling it generates an error:
WARNING: "cap_ptrace_access_check" [$PATH/$MOD.ko] undefined!
I tried with ptrace_access_check, ptrace_may_check,
security_ptrace_access_check, ptrace_may_access, etc... but none of them
works for me. I'm building the module against a 2.6.35 kernel.
Any idea about what am I doing wrong?
Thanks in advance!
Joxean Koret
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: This is a digitally signed message part
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20120319/1fa075db/attachment.bin
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-03-19 10:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-19 10:06 cap_ptrace_access_check undefined Joxean Koret
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.