2 * linux/kernel/ptrace.c
4 * (C) Copyright 1999 Linus Torvalds
6 * Common interfaces for "ptrace()" which we do not want
7 * to continually duplicate across every architecture.
10 #include <linux/module.h>
11 #include <linux/sched.h>
12 #include <linux/errno.h>
14 #include <linux/highmem.h>
15 #include <linux/pagemap.h>
16 #include <linux/smp_lock.h>
17 #include <linux/ptrace.h>
18 #include <linux/security.h>
19 #include <linux/signal.h>
21 #include <asm/pgtable.h>
22 #include <asm/uaccess.h>
25 * ptrace a task: make the debugger its new parent and
26 * move it to the ptrace list.
28 * Must be called with the tasklist lock write-held.
30 void __ptrace_link(task_t
*child
, task_t
*new_parent
)
32 if (!list_empty(&child
->ptrace_list
))
34 if (child
->parent
== new_parent
)
36 list_add(&child
->ptrace_list
, &child
->parent
->ptrace_children
);
38 child
->parent
= new_parent
;
43 * Turn a tracing stop into a normal stop now, since with no tracer there
44 * would be no way to wake it up with SIGCONT or SIGKILL. If there was a
45 * signal sent that would resume the child, but didn't because it was in
46 * TASK_TRACED, resume it now.
47 * Requires that irqs be disabled.
49 void ptrace_untrace(task_t
*child
)
51 spin_lock(&child
->sighand
->siglock
);
52 if (child
->state
== TASK_TRACED
) {
53 if (child
->signal
->flags
& SIGNAL_STOP_STOPPED
) {
54 child
->state
= TASK_STOPPED
;
56 signal_wake_up(child
, 1);
59 spin_unlock(&child
->sighand
->siglock
);
63 * unptrace a task: move it back to its original parent and
64 * remove it from the ptrace list.
66 * Must be called with the tasklist lock write-held.
68 void __ptrace_unlink(task_t
*child
)
73 if (!list_empty(&child
->ptrace_list
)) {
74 list_del_init(&child
->ptrace_list
);
76 child
->parent
= child
->real_parent
;
80 if (child
->state
== TASK_TRACED
)
81 ptrace_untrace(child
);
85 * Check that we have indeed attached to the thing..
87 int ptrace_check_attach(struct task_struct
*child
, int kill
)
92 * We take the read lock around doing both checks to close a
93 * possible race where someone else was tracing our child and
94 * detached between these two checks. After this locked check,
95 * we are sure that this is our traced child and that can only
96 * be changed by us so it's not changing right after this.
98 read_lock(&tasklist_lock
);
99 if ((child
->ptrace
& PT_PTRACED
) && child
->parent
== current
&&
100 (!(child
->ptrace
& PT_ATTACHED
) || child
->real_parent
!= current
)
101 && child
->signal
!= NULL
) {
103 spin_lock_irq(&child
->sighand
->siglock
);
104 if (child
->state
== TASK_STOPPED
) {
105 child
->state
= TASK_TRACED
;
106 } else if (child
->state
!= TASK_TRACED
&& !kill
) {
109 spin_unlock_irq(&child
->sighand
->siglock
);
111 read_unlock(&tasklist_lock
);
114 wait_task_inactive(child
);
117 /* All systems go.. */
121 int ptrace_attach(struct task_struct
*task
)
132 if(((current
->uid
!= task
->euid
) ||
133 (current
->uid
!= task
->suid
) ||
134 (current
->uid
!= task
->uid
) ||
135 (current
->gid
!= task
->egid
) ||
136 (current
->gid
!= task
->sgid
) ||
137 (current
->gid
!= task
->gid
)) && !capable(CAP_SYS_PTRACE
))
140 if (!task
->mm
->dumpable
&& !capable(CAP_SYS_PTRACE
))
142 /* the same process cannot be attached many times */
143 if (task
->ptrace
& PT_PTRACED
)
145 retval
= security_ptrace(current
, task
);
150 task
->ptrace
|= PT_PTRACED
| ((task
->real_parent
!= current
)
152 if (capable(CAP_SYS_PTRACE
))
153 task
->ptrace
|= PT_PTRACE_CAP
;
156 write_lock_irq(&tasklist_lock
);
157 __ptrace_link(task
, current
);
158 write_unlock_irq(&tasklist_lock
);
160 force_sig_specific(SIGSTOP
, task
);
168 int ptrace_detach(struct task_struct
*child
, unsigned int data
)
170 if (!valid_signal(data
))
173 /* Architecture-specific hardware disable .. */
174 ptrace_disable(child
);
176 /* .. re-parent .. */
177 child
->exit_code
= data
;
179 write_lock_irq(&tasklist_lock
);
180 __ptrace_unlink(child
);
181 /* .. and wake it up. */
182 if (child
->exit_state
!= EXIT_ZOMBIE
)
183 wake_up_process(child
);
184 write_unlock_irq(&tasklist_lock
);
190 * Access another process' address space.
191 * Source/target buffer must be kernel space,
192 * Do not walk the page table directly, use get_user_pages
195 int access_process_vm(struct task_struct
*tsk
, unsigned long addr
, void *buf
, int len
, int write
)
197 struct mm_struct
*mm
;
198 struct vm_area_struct
*vma
;
202 mm
= get_task_mm(tsk
);
206 down_read(&mm
->mmap_sem
);
207 /* ignore errors, just check how much was sucessfully transfered */
209 int bytes
, ret
, offset
;
212 ret
= get_user_pages(tsk
, mm
, addr
, 1,
213 write
, 1, &page
, &vma
);
218 offset
= addr
& (PAGE_SIZE
-1);
219 if (bytes
> PAGE_SIZE
-offset
)
220 bytes
= PAGE_SIZE
-offset
;
224 copy_to_user_page(vma
, page
, addr
,
225 maddr
+ offset
, buf
, bytes
);
226 set_page_dirty_lock(page
);
228 copy_from_user_page(vma
, page
, addr
,
229 buf
, maddr
+ offset
, bytes
);
232 page_cache_release(page
);
237 up_read(&mm
->mmap_sem
);
240 return buf
- old_buf
;
243 int ptrace_readdata(struct task_struct
*tsk
, unsigned long src
, char __user
*dst
, int len
)
249 int this_len
, retval
;
251 this_len
= (len
> sizeof(buf
)) ? sizeof(buf
) : len
;
252 retval
= access_process_vm(tsk
, src
, buf
, this_len
, 0);
258 if (copy_to_user(dst
, buf
, retval
))
268 int ptrace_writedata(struct task_struct
*tsk
, char __user
*src
, unsigned long dst
, int len
)
274 int this_len
, retval
;
276 this_len
= (len
> sizeof(buf
)) ? sizeof(buf
) : len
;
277 if (copy_from_user(buf
, src
, this_len
))
279 retval
= access_process_vm(tsk
, dst
, buf
, this_len
, 1);
293 static int ptrace_setoptions(struct task_struct
*child
, long data
)
295 child
->ptrace
&= ~PT_TRACE_MASK
;
297 if (data
& PTRACE_O_TRACESYSGOOD
)
298 child
->ptrace
|= PT_TRACESYSGOOD
;
300 if (data
& PTRACE_O_TRACEFORK
)
301 child
->ptrace
|= PT_TRACE_FORK
;
303 if (data
& PTRACE_O_TRACEVFORK
)
304 child
->ptrace
|= PT_TRACE_VFORK
;
306 if (data
& PTRACE_O_TRACECLONE
)
307 child
->ptrace
|= PT_TRACE_CLONE
;
309 if (data
& PTRACE_O_TRACEEXEC
)
310 child
->ptrace
|= PT_TRACE_EXEC
;
312 if (data
& PTRACE_O_TRACEVFORKDONE
)
313 child
->ptrace
|= PT_TRACE_VFORK_DONE
;
315 if (data
& PTRACE_O_TRACEEXIT
)
316 child
->ptrace
|= PT_TRACE_EXIT
;
318 return (data
& ~PTRACE_O_MASK
) ? -EINVAL
: 0;
321 static int ptrace_getsiginfo(struct task_struct
*child
, siginfo_t __user
* data
)
326 read_lock(&tasklist_lock
);
327 if (likely(child
->sighand
!= NULL
)) {
329 spin_lock_irq(&child
->sighand
->siglock
);
330 if (likely(child
->last_siginfo
!= NULL
)) {
331 lastinfo
= *child
->last_siginfo
;
334 spin_unlock_irq(&child
->sighand
->siglock
);
336 read_unlock(&tasklist_lock
);
338 return copy_siginfo_to_user(data
, &lastinfo
);
342 static int ptrace_setsiginfo(struct task_struct
*child
, siginfo_t __user
* data
)
347 if (copy_from_user(&newinfo
, data
, sizeof (siginfo_t
)))
350 read_lock(&tasklist_lock
);
351 if (likely(child
->sighand
!= NULL
)) {
353 spin_lock_irq(&child
->sighand
->siglock
);
354 if (likely(child
->last_siginfo
!= NULL
)) {
355 *child
->last_siginfo
= newinfo
;
358 spin_unlock_irq(&child
->sighand
->siglock
);
360 read_unlock(&tasklist_lock
);
364 int ptrace_request(struct task_struct
*child
, long request
,
365 long addr
, long data
)
370 #ifdef PTRACE_OLDSETOPTIONS
371 case PTRACE_OLDSETOPTIONS
:
373 case PTRACE_SETOPTIONS
:
374 ret
= ptrace_setoptions(child
, data
);
376 case PTRACE_GETEVENTMSG
:
377 ret
= put_user(child
->ptrace_message
, (unsigned long __user
*) data
);
379 case PTRACE_GETSIGINFO
:
380 ret
= ptrace_getsiginfo(child
, (siginfo_t __user
*) data
);
382 case PTRACE_SETSIGINFO
:
383 ret
= ptrace_setsiginfo(child
, (siginfo_t __user
*) data
);