blob: 8392a9da64504054bf804e5809f902bc296f676f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/ptrace.c
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 *
6 * Common interfaces for "ptrace()" which we do not want
7 * to continually duplicate across every architecture.
8 */
9
Randy.Dunlapc59ede72006-01-11 12:17:46 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/sched.h>
13#include <linux/errno.h>
14#include <linux/mm.h>
15#include <linux/highmem.h>
16#include <linux/pagemap.h>
17#include <linux/smp_lock.h>
18#include <linux/ptrace.h>
19#include <linux/security.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070020#include <linux/signal.h>
Al Viroa5cb0132007-03-20 13:58:35 -040021#include <linux/audit.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070022#include <linux/pid_namespace.h>
Adrian Bunkf17d30a2008-02-06 01:36:44 -080023#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/pgtable.h>
26#include <asm/uaccess.h>
27
28/*
29 * ptrace a task: make the debugger its new parent and
30 * move it to the ptrace list.
31 *
32 * Must be called with the tasklist lock write-held.
33 */
Ingo Molnar36c8b582006-07-03 00:25:41 -070034void __ptrace_link(struct task_struct *child, struct task_struct *new_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Roland McGrathf4700212008-03-24 18:36:23 -070036 BUG_ON(!list_empty(&child->ptrace_entry));
37 list_add(&child->ptrace_entry, &new_parent->ptraced);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 child->parent = new_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41/*
42 * Turn a tracing stop into a normal stop now, since with no tracer there
43 * would be no way to wake it up with SIGCONT or SIGKILL. If there was a
44 * signal sent that would resume the child, but didn't because it was in
45 * TASK_TRACED, resume it now.
46 * Requires that irqs be disabled.
47 */
Ingo Molnar36c8b582006-07-03 00:25:41 -070048void ptrace_untrace(struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 spin_lock(&child->sighand->siglock);
Matthew Wilcox6618a3e2007-12-06 11:06:16 -050051 if (task_is_traced(child)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (child->signal->flags & SIGNAL_STOP_STOPPED) {
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -080053 __set_task_state(child, TASK_STOPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 } else {
55 signal_wake_up(child, 1);
56 }
57 }
58 spin_unlock(&child->sighand->siglock);
59}
60
61/*
62 * unptrace a task: move it back to its original parent and
63 * remove it from the ptrace list.
64 *
65 * Must be called with the tasklist lock write-held.
66 */
Ingo Molnar36c8b582006-07-03 00:25:41 -070067void __ptrace_unlink(struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +030069 BUG_ON(!child->ptrace);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 child->ptrace = 0;
Roland McGrathf4700212008-03-24 18:36:23 -070072 child->parent = child->real_parent;
73 list_del_init(&child->ptrace_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Matthew Wilcox6618a3e2007-12-06 11:06:16 -050075 if (task_is_traced(child))
Roland McGrathe57a5052006-04-12 16:30:20 -070076 ptrace_untrace(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
80 * Check that we have indeed attached to the thing..
81 */
82int ptrace_check_attach(struct task_struct *child, int kill)
83{
84 int ret = -ESRCH;
85
86 /*
87 * We take the read lock around doing both checks to close a
88 * possible race where someone else was tracing our child and
89 * detached between these two checks. After this locked check,
90 * we are sure that this is our traced child and that can only
91 * be changed by us so it's not changing right after this.
92 */
93 read_lock(&tasklist_lock);
Oleg Nesterovc0c0b642008-02-08 04:19:00 -080094 if ((child->ptrace & PT_PTRACED) && child->parent == current) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 ret = 0;
Oleg Nesterovc0c0b642008-02-08 04:19:00 -080096 /*
97 * child->sighand can't be NULL, release_task()
98 * does ptrace_unlink() before __exit_signal().
99 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 spin_lock_irq(&child->sighand->siglock);
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -0800101 if (task_is_stopped(child))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 child->state = TASK_TRACED;
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -0800103 else if (!task_is_traced(child) && !kill)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 ret = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 spin_unlock_irq(&child->sighand->siglock);
106 }
107 read_unlock(&tasklist_lock);
108
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -0800109 if (!ret && !kill)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 wait_task_inactive(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 /* All systems go.. */
113 return ret;
114}
115
Stephen Smalley006ebb42008-05-19 08:32:49 -0400116int __ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700117{
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700118 /* May we inspect the given task?
119 * This check is used both for attaching with ptrace
120 * and for allowing access to sensitive information in /proc.
121 *
122 * ptrace_attach denies several cases that /proc allows
123 * because setting up the necessary parent/child relationship
124 * or halting the specified task is impossible.
125 */
126 int dumpable = 0;
127 /* Don't let security modules deny introspection */
128 if (task == current)
129 return 0;
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700130 if (((current->uid != task->euid) ||
131 (current->uid != task->suid) ||
132 (current->uid != task->uid) ||
133 (current->gid != task->egid) ||
134 (current->gid != task->sgid) ||
135 (current->gid != task->gid)) && !capable(CAP_SYS_PTRACE))
136 return -EPERM;
137 smp_rmb();
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700138 if (task->mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -0700139 dumpable = get_dumpable(task->mm);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700140 if (!dumpable && !capable(CAP_SYS_PTRACE))
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700141 return -EPERM;
142
Stephen Smalley006ebb42008-05-19 08:32:49 -0400143 return security_ptrace(current, task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700144}
145
Stephen Smalley006ebb42008-05-19 08:32:49 -0400146bool ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700147{
148 int err;
149 task_lock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400150 err = __ptrace_may_access(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700151 task_unlock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400152 return (!err ? true : false);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155int ptrace_attach(struct task_struct *task)
156{
157 int retval;
Sripathi Kodi6175ecf2007-07-15 23:39:26 -0700158 unsigned long flags;
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700159
Al Viroa5cb0132007-03-20 13:58:35 -0400160 audit_ptrace(task);
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 retval = -EPERM;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700163 if (same_thread_group(task, current))
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700164 goto out;
165
Linus Torvaldsf3581662006-05-11 11:08:49 -0700166repeat:
167 /*
168 * Nasty, nasty.
169 *
170 * We want to hold both the task-lock and the
171 * tasklist_lock for writing at the same time.
172 * But that's against the rules (tasklist_lock
173 * is taken for reading by interrupts on other
174 * cpu's that may have task_lock).
175 */
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700176 task_lock(task);
Sripathi Kodi6175ecf2007-07-15 23:39:26 -0700177 if (!write_trylock_irqsave(&tasklist_lock, flags)) {
Linus Torvaldsf3581662006-05-11 11:08:49 -0700178 task_unlock(task);
179 do {
180 cpu_relax();
181 } while (!write_can_lock(&tasklist_lock));
182 goto repeat;
183 }
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700184
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700185 if (!task->mm)
186 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* the same process cannot be attached many times */
188 if (task->ptrace & PT_PTRACED)
189 goto bad;
Stephen Smalley006ebb42008-05-19 08:32:49 -0400190 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (retval)
192 goto bad;
193
194 /* Go */
Oleg Nesterov6b39c7b2008-02-08 04:18:58 -0800195 task->ptrace |= PT_PTRACED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (capable(CAP_SYS_PTRACE))
197 task->ptrace |= PT_PTRACE_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 __ptrace_link(task, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Oleg Nesterov33e9fc72008-04-30 00:53:14 -0700201 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202bad:
Sripathi Kodi6175ecf2007-07-15 23:39:26 -0700203 write_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 task_unlock(task);
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700205out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return retval;
207}
208
Oleg Nesterovd5f70c02006-06-26 00:26:07 -0700209static inline void __ptrace_detach(struct task_struct *child, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 child->exit_code = data;
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300212 /* .. re-parent .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 __ptrace_unlink(child);
214 /* .. and wake it up. */
215 if (child->exit_state != EXIT_ZOMBIE)
216 wake_up_process(child);
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300217}
218
219int ptrace_detach(struct task_struct *child, unsigned int data)
220{
221 if (!valid_signal(data))
222 return -EIO;
223
224 /* Architecture-specific hardware disable .. */
225 ptrace_disable(child);
Roland McGrath7d941432007-09-05 03:05:56 -0700226 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300227
228 write_lock_irq(&tasklist_lock);
Oleg Nesterovd5f70c02006-06-26 00:26:07 -0700229 /* protect against de_thread()->release_task() */
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300230 if (child->ptrace)
231 __ptrace_detach(child, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 write_unlock_irq(&tasklist_lock);
233
234 return 0;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
238{
239 int copied = 0;
240
241 while (len > 0) {
242 char buf[128];
243 int this_len, retval;
244
245 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
246 retval = access_process_vm(tsk, src, buf, this_len, 0);
247 if (!retval) {
248 if (copied)
249 break;
250 return -EIO;
251 }
252 if (copy_to_user(dst, buf, retval))
253 return -EFAULT;
254 copied += retval;
255 src += retval;
256 dst += retval;
257 len -= retval;
258 }
259 return copied;
260}
261
262int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
263{
264 int copied = 0;
265
266 while (len > 0) {
267 char buf[128];
268 int this_len, retval;
269
270 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
271 if (copy_from_user(buf, src, this_len))
272 return -EFAULT;
273 retval = access_process_vm(tsk, dst, buf, this_len, 1);
274 if (!retval) {
275 if (copied)
276 break;
277 return -EIO;
278 }
279 copied += retval;
280 src += retval;
281 dst += retval;
282 len -= retval;
283 }
284 return copied;
285}
286
287static int ptrace_setoptions(struct task_struct *child, long data)
288{
289 child->ptrace &= ~PT_TRACE_MASK;
290
291 if (data & PTRACE_O_TRACESYSGOOD)
292 child->ptrace |= PT_TRACESYSGOOD;
293
294 if (data & PTRACE_O_TRACEFORK)
295 child->ptrace |= PT_TRACE_FORK;
296
297 if (data & PTRACE_O_TRACEVFORK)
298 child->ptrace |= PT_TRACE_VFORK;
299
300 if (data & PTRACE_O_TRACECLONE)
301 child->ptrace |= PT_TRACE_CLONE;
302
303 if (data & PTRACE_O_TRACEEXEC)
304 child->ptrace |= PT_TRACE_EXEC;
305
306 if (data & PTRACE_O_TRACEVFORKDONE)
307 child->ptrace |= PT_TRACE_VFORK_DONE;
308
309 if (data & PTRACE_O_TRACEEXIT)
310 child->ptrace |= PT_TRACE_EXIT;
311
312 return (data & ~PTRACE_O_MASK) ? -EINVAL : 0;
313}
314
Roland McGrathe16b2782008-04-20 13:10:12 -0700315static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int error = -ESRCH;
318
319 read_lock(&tasklist_lock);
320 if (likely(child->sighand != NULL)) {
321 error = -EINVAL;
322 spin_lock_irq(&child->sighand->siglock);
323 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700324 *info = *child->last_siginfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 error = 0;
326 }
327 spin_unlock_irq(&child->sighand->siglock);
328 }
329 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return error;
331}
332
Roland McGrathe16b2782008-04-20 13:10:12 -0700333static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 int error = -ESRCH;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 read_lock(&tasklist_lock);
338 if (likely(child->sighand != NULL)) {
339 error = -EINVAL;
340 spin_lock_irq(&child->sighand->siglock);
341 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700342 *child->last_siginfo = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 error = 0;
344 }
345 spin_unlock_irq(&child->sighand->siglock);
346 }
347 read_unlock(&tasklist_lock);
348 return error;
349}
350
Roland McGrath36df29d2008-01-30 13:30:51 +0100351
352#ifdef PTRACE_SINGLESTEP
353#define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
354#else
355#define is_singlestep(request) 0
356#endif
357
Roland McGrath5b88abb2008-01-30 13:30:53 +0100358#ifdef PTRACE_SINGLEBLOCK
359#define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
360#else
361#define is_singleblock(request) 0
362#endif
363
Roland McGrath36df29d2008-01-30 13:30:51 +0100364#ifdef PTRACE_SYSEMU
365#define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
366#else
367#define is_sysemu_singlestep(request) 0
368#endif
369
370static int ptrace_resume(struct task_struct *child, long request, long data)
371{
372 if (!valid_signal(data))
373 return -EIO;
374
375 if (request == PTRACE_SYSCALL)
376 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
377 else
378 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
379
380#ifdef TIF_SYSCALL_EMU
381 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
382 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
383 else
384 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
385#endif
386
Roland McGrath5b88abb2008-01-30 13:30:53 +0100387 if (is_singleblock(request)) {
388 if (unlikely(!arch_has_block_step()))
389 return -EIO;
390 user_enable_block_step(child);
391 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
Roland McGrath36df29d2008-01-30 13:30:51 +0100392 if (unlikely(!arch_has_single_step()))
393 return -EIO;
394 user_enable_single_step(child);
395 }
396 else
397 user_disable_single_step(child);
398
399 child->exit_code = data;
400 wake_up_process(child);
401
402 return 0;
403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405int ptrace_request(struct task_struct *child, long request,
406 long addr, long data)
407{
408 int ret = -EIO;
Roland McGrathe16b2782008-04-20 13:10:12 -0700409 siginfo_t siginfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 switch (request) {
Roland McGrath16c3e382008-01-30 13:31:47 +0100412 case PTRACE_PEEKTEXT:
413 case PTRACE_PEEKDATA:
414 return generic_ptrace_peekdata(child, addr, data);
415 case PTRACE_POKETEXT:
416 case PTRACE_POKEDATA:
417 return generic_ptrace_pokedata(child, addr, data);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#ifdef PTRACE_OLDSETOPTIONS
420 case PTRACE_OLDSETOPTIONS:
421#endif
422 case PTRACE_SETOPTIONS:
423 ret = ptrace_setoptions(child, data);
424 break;
425 case PTRACE_GETEVENTMSG:
426 ret = put_user(child->ptrace_message, (unsigned long __user *) data);
427 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 case PTRACE_GETSIGINFO:
Roland McGrathe16b2782008-04-20 13:10:12 -0700430 ret = ptrace_getsiginfo(child, &siginfo);
431 if (!ret)
432 ret = copy_siginfo_to_user((siginfo_t __user *) data,
433 &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 case PTRACE_SETSIGINFO:
Roland McGrathe16b2782008-04-20 13:10:12 -0700437 if (copy_from_user(&siginfo, (siginfo_t __user *) data,
438 sizeof siginfo))
439 ret = -EFAULT;
440 else
441 ret = ptrace_setsiginfo(child, &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700443
Alexey Dobriyan1bcf5482007-10-16 01:23:45 -0700444 case PTRACE_DETACH: /* detach a process that was attached. */
445 ret = ptrace_detach(child, data);
446 break;
Roland McGrath36df29d2008-01-30 13:30:51 +0100447
448#ifdef PTRACE_SINGLESTEP
449 case PTRACE_SINGLESTEP:
450#endif
Roland McGrath5b88abb2008-01-30 13:30:53 +0100451#ifdef PTRACE_SINGLEBLOCK
452 case PTRACE_SINGLEBLOCK:
453#endif
Roland McGrath36df29d2008-01-30 13:30:51 +0100454#ifdef PTRACE_SYSEMU
455 case PTRACE_SYSEMU:
456 case PTRACE_SYSEMU_SINGLESTEP:
457#endif
458 case PTRACE_SYSCALL:
459 case PTRACE_CONT:
460 return ptrace_resume(child, request, data);
461
462 case PTRACE_KILL:
463 if (child->exit_state) /* already dead */
464 return 0;
465 return ptrace_resume(child, request, SIGKILL);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 default:
468 break;
469 }
470
471 return ret;
472}
Christoph Hellwig481bed42005-11-07 00:59:47 -0800473
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800474/**
475 * ptrace_traceme -- helper for PTRACE_TRACEME
476 *
477 * Performs checks and sets PT_PTRACED.
478 * Should be used by all ptrace implementations for PTRACE_TRACEME.
479 */
480int ptrace_traceme(void)
Christoph Hellwig481bed42005-11-07 00:59:47 -0800481{
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700482 int ret = -EPERM;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800483
484 /*
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800485 * Are we already being traced?
Christoph Hellwig481bed42005-11-07 00:59:47 -0800486 */
Roland McGrathf4700212008-03-24 18:36:23 -0700487repeat:
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700488 task_lock(current);
489 if (!(current->ptrace & PT_PTRACED)) {
Roland McGrathf4700212008-03-24 18:36:23 -0700490 /*
491 * See ptrace_attach() comments about the locking here.
492 */
493 unsigned long flags;
494 if (!write_trylock_irqsave(&tasklist_lock, flags)) {
495 task_unlock(current);
496 do {
497 cpu_relax();
498 } while (!write_can_lock(&tasklist_lock));
499 goto repeat;
500 }
501
Stephen Smalley006ebb42008-05-19 08:32:49 -0400502 ret = security_ptrace(current->parent, current,
503 PTRACE_MODE_ATTACH);
Roland McGrathf4700212008-03-24 18:36:23 -0700504
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700505 /*
506 * Set the ptrace bit in the process ptrace flags.
Roland McGrathf4700212008-03-24 18:36:23 -0700507 * Then link us on our parent's ptraced list.
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700508 */
Roland McGrathf4700212008-03-24 18:36:23 -0700509 if (!ret) {
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700510 current->ptrace |= PT_PTRACED;
Roland McGrathf4700212008-03-24 18:36:23 -0700511 __ptrace_link(current, current->real_parent);
512 }
513
514 write_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700515 }
516 task_unlock(current);
517 return ret;
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800518}
Christoph Hellwig481bed42005-11-07 00:59:47 -0800519
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800520/**
521 * ptrace_get_task_struct -- grab a task struct reference for ptrace
522 * @pid: process id to grab a task_struct reference of
523 *
524 * This function is a helper for ptrace implementations. It checks
525 * permissions and then grabs a task struct for use of the actual
526 * ptrace implementation.
527 *
528 * Returns the task_struct for @pid or an ERR_PTR() on failure.
529 */
530struct task_struct *ptrace_get_task_struct(pid_t pid)
531{
532 struct task_struct *child;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800533
Christoph Hellwig481bed42005-11-07 00:59:47 -0800534 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700535 child = find_task_by_vpid(pid);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800536 if (child)
537 get_task_struct(child);
Sukadev Bhattiproluf400e192006-09-29 02:00:07 -0700538
Christoph Hellwig481bed42005-11-07 00:59:47 -0800539 read_unlock(&tasklist_lock);
540 if (!child)
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800541 return ERR_PTR(-ESRCH);
542 return child;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800543}
544
Christoph Hellwig0ac15552007-10-16 01:26:37 -0700545#ifndef arch_ptrace_attach
546#define arch_ptrace_attach(child) do { } while (0)
547#endif
548
Christoph Hellwig481bed42005-11-07 00:59:47 -0800549asmlinkage long sys_ptrace(long request, long pid, long addr, long data)
550{
551 struct task_struct *child;
552 long ret;
553
554 /*
555 * This lock_kernel fixes a subtle race with suid exec
556 */
557 lock_kernel();
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800558 if (request == PTRACE_TRACEME) {
559 ret = ptrace_traceme();
Haavard Skinnemoen6ea6dd92007-11-27 13:02:40 +0100560 if (!ret)
561 arch_ptrace_attach(current);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800562 goto out;
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800563 }
564
565 child = ptrace_get_task_struct(pid);
566 if (IS_ERR(child)) {
567 ret = PTR_ERR(child);
568 goto out;
569 }
Christoph Hellwig481bed42005-11-07 00:59:47 -0800570
571 if (request == PTRACE_ATTACH) {
572 ret = ptrace_attach(child);
Christoph Hellwig0ac15552007-10-16 01:26:37 -0700573 /*
574 * Some architectures need to do book-keeping after
575 * a ptrace attach.
576 */
577 if (!ret)
578 arch_ptrace_attach(child);
Christoph Hellwig005f18d2005-11-13 16:06:33 -0800579 goto out_put_task_struct;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800580 }
581
582 ret = ptrace_check_attach(child, request == PTRACE_KILL);
583 if (ret < 0)
584 goto out_put_task_struct;
585
586 ret = arch_ptrace(child, request, addr, data);
587 if (ret < 0)
588 goto out_put_task_struct;
589
590 out_put_task_struct:
591 put_task_struct(child);
592 out:
593 unlock_kernel();
594 return ret;
595}
Alexey Dobriyan76647322007-07-17 04:03:43 -0700596
597int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data)
598{
599 unsigned long tmp;
600 int copied;
601
602 copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
603 if (copied != sizeof(tmp))
604 return -EIO;
605 return put_user(tmp, (unsigned long __user *)data);
606}
Alexey Dobriyanf284ce72007-07-17 04:03:44 -0700607
608int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data)
609{
610 int copied;
611
612 copied = access_process_vm(tsk, addr, &data, sizeof(data), 1);
613 return (copied == sizeof(data)) ? 0 : -EIO;
614}
Roland McGrath032d82d2008-01-30 13:31:47 +0100615
Roland McGrath9d04d922008-04-28 13:57:19 -0700616#if defined CONFIG_COMPAT && defined __ARCH_WANT_COMPAT_SYS_PTRACE
Roland McGrath032d82d2008-01-30 13:31:47 +0100617#include <linux/compat.h>
618
619int compat_ptrace_request(struct task_struct *child, compat_long_t request,
620 compat_ulong_t addr, compat_ulong_t data)
621{
622 compat_ulong_t __user *datap = compat_ptr(data);
623 compat_ulong_t word;
Roland McGrathe16b2782008-04-20 13:10:12 -0700624 siginfo_t siginfo;
Roland McGrath032d82d2008-01-30 13:31:47 +0100625 int ret;
626
627 switch (request) {
628 case PTRACE_PEEKTEXT:
629 case PTRACE_PEEKDATA:
630 ret = access_process_vm(child, addr, &word, sizeof(word), 0);
631 if (ret != sizeof(word))
632 ret = -EIO;
633 else
634 ret = put_user(word, datap);
635 break;
636
637 case PTRACE_POKETEXT:
638 case PTRACE_POKEDATA:
639 ret = access_process_vm(child, addr, &data, sizeof(data), 1);
640 ret = (ret != sizeof(data) ? -EIO : 0);
641 break;
642
643 case PTRACE_GETEVENTMSG:
644 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
645 break;
646
Roland McGrathe16b2782008-04-20 13:10:12 -0700647 case PTRACE_GETSIGINFO:
648 ret = ptrace_getsiginfo(child, &siginfo);
649 if (!ret)
650 ret = copy_siginfo_to_user32(
651 (struct compat_siginfo __user *) datap,
652 &siginfo);
653 break;
654
655 case PTRACE_SETSIGINFO:
656 memset(&siginfo, 0, sizeof siginfo);
657 if (copy_siginfo_from_user32(
658 &siginfo, (struct compat_siginfo __user *) datap))
659 ret = -EFAULT;
660 else
661 ret = ptrace_setsiginfo(child, &siginfo);
662 break;
663
Roland McGrath032d82d2008-01-30 13:31:47 +0100664 default:
665 ret = ptrace_request(child, request, addr, data);
666 }
667
668 return ret;
669}
Roland McGrathc269f192008-01-30 13:31:48 +0100670
Roland McGrathc269f192008-01-30 13:31:48 +0100671asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
672 compat_long_t addr, compat_long_t data)
673{
674 struct task_struct *child;
675 long ret;
676
677 /*
678 * This lock_kernel fixes a subtle race with suid exec
679 */
680 lock_kernel();
681 if (request == PTRACE_TRACEME) {
682 ret = ptrace_traceme();
683 goto out;
684 }
685
686 child = ptrace_get_task_struct(pid);
687 if (IS_ERR(child)) {
688 ret = PTR_ERR(child);
689 goto out;
690 }
691
692 if (request == PTRACE_ATTACH) {
693 ret = ptrace_attach(child);
694 /*
695 * Some architectures need to do book-keeping after
696 * a ptrace attach.
697 */
698 if (!ret)
699 arch_ptrace_attach(child);
700 goto out_put_task_struct;
701 }
702
703 ret = ptrace_check_attach(child, request == PTRACE_KILL);
704 if (!ret)
705 ret = compat_arch_ptrace(child, request, addr, data);
706
707 out_put_task_struct:
708 put_task_struct(child);
709 out:
710 unlock_kernel();
711 return ret;
712}
Roland McGrath9d04d922008-04-28 13:57:19 -0700713#endif /* CONFIG_COMPAT && __ARCH_WANT_COMPAT_SYS_PTRACE */