blob: f764b88069555856cf265e7354ca1f10a38e95d3 [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 */
Adrian Bunkb747c8c2008-10-18 20:28:21 -070048static void 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)
Roland McGrath85ba2d82008-07-25 19:45:58 -0700110 ret = wait_task_inactive(child, TASK_TRACED) ? 0 : -ESRCH;
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{
David Howellsc69e8d92008-11-14 10:39:19 +1100118 const struct cred *cred = current_cred(), *tcred;
David Howellsb6dff3e2008-11-14 10:39:16 +1100119
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700120 /* May we inspect the given task?
121 * This check is used both for attaching with ptrace
122 * and for allowing access to sensitive information in /proc.
123 *
124 * ptrace_attach denies several cases that /proc allows
125 * because setting up the necessary parent/child relationship
126 * or halting the specified task is impossible.
127 */
128 int dumpable = 0;
129 /* Don't let security modules deny introspection */
130 if (task == current)
131 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100132 rcu_read_lock();
133 tcred = __task_cred(task);
134 if ((cred->uid != tcred->euid ||
135 cred->uid != tcred->suid ||
136 cred->uid != tcred->uid ||
137 cred->gid != tcred->egid ||
138 cred->gid != tcred->sgid ||
139 cred->gid != tcred->gid) &&
140 !capable(CAP_SYS_PTRACE)) {
141 rcu_read_unlock();
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700142 return -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +1100143 }
144 rcu_read_unlock();
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700145 smp_rmb();
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700146 if (task->mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -0700147 dumpable = get_dumpable(task->mm);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700148 if (!dumpable && !capable(CAP_SYS_PTRACE))
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700149 return -EPERM;
150
David Howells5cd9c582008-08-14 11:37:28 +0100151 return security_ptrace_may_access(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700152}
153
Stephen Smalley006ebb42008-05-19 08:32:49 -0400154bool ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700155{
156 int err;
157 task_lock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400158 err = __ptrace_may_access(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700159 task_unlock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400160 return (!err ? true : false);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163int ptrace_attach(struct task_struct *task)
164{
165 int retval;
Sripathi Kodi6175ecf2007-07-15 23:39:26 -0700166 unsigned long flags;
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700167
Al Viroa5cb0132007-03-20 13:58:35 -0400168 audit_ptrace(task);
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 retval = -EPERM;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700171 if (same_thread_group(task, current))
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700172 goto out;
173
David Howellsd84f4f92008-11-14 10:39:23 +1100174 /* Protect exec's credential calculations against our interference;
175 * SUID, SGID and LSM creds get determined differently under ptrace.
176 */
177 retval = mutex_lock_interruptible(&current->cred_exec_mutex);
178 if (retval < 0)
179 goto out;
180
181 retval = -EPERM;
Linus Torvaldsf3581662006-05-11 11:08:49 -0700182repeat:
183 /*
184 * Nasty, nasty.
185 *
186 * We want to hold both the task-lock and the
187 * tasklist_lock for writing at the same time.
188 * But that's against the rules (tasklist_lock
189 * is taken for reading by interrupts on other
190 * cpu's that may have task_lock).
191 */
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700192 task_lock(task);
Sripathi Kodi6175ecf2007-07-15 23:39:26 -0700193 if (!write_trylock_irqsave(&tasklist_lock, flags)) {
Linus Torvaldsf3581662006-05-11 11:08:49 -0700194 task_unlock(task);
195 do {
196 cpu_relax();
197 } while (!write_can_lock(&tasklist_lock));
198 goto repeat;
199 }
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700200
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700201 if (!task->mm)
202 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* the same process cannot be attached many times */
204 if (task->ptrace & PT_PTRACED)
205 goto bad;
Stephen Smalley006ebb42008-05-19 08:32:49 -0400206 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (retval)
208 goto bad;
209
210 /* Go */
Oleg Nesterov6b39c7b2008-02-08 04:18:58 -0800211 task->ptrace |= PT_PTRACED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (capable(CAP_SYS_PTRACE))
213 task->ptrace |= PT_PTRACE_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 __ptrace_link(task, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Oleg Nesterov33e9fc72008-04-30 00:53:14 -0700217 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218bad:
Sripathi Kodi6175ecf2007-07-15 23:39:26 -0700219 write_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 task_unlock(task);
David Howellsd84f4f92008-11-14 10:39:23 +1100221 mutex_unlock(&current->cred_exec_mutex);
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700222out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return retval;
224}
225
Oleg Nesterovd5f70c02006-06-26 00:26:07 -0700226static inline void __ptrace_detach(struct task_struct *child, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 child->exit_code = data;
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300229 /* .. re-parent .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 __ptrace_unlink(child);
231 /* .. and wake it up. */
232 if (child->exit_state != EXIT_ZOMBIE)
233 wake_up_process(child);
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300234}
235
236int ptrace_detach(struct task_struct *child, unsigned int data)
237{
238 if (!valid_signal(data))
239 return -EIO;
240
241 /* Architecture-specific hardware disable .. */
242 ptrace_disable(child);
Roland McGrath7d941432007-09-05 03:05:56 -0700243 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300244
245 write_lock_irq(&tasklist_lock);
Oleg Nesterovd5f70c02006-06-26 00:26:07 -0700246 /* protect against de_thread()->release_task() */
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300247 if (child->ptrace)
248 __ptrace_detach(child, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 write_unlock_irq(&tasklist_lock);
250
251 return 0;
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
255{
256 int copied = 0;
257
258 while (len > 0) {
259 char buf[128];
260 int this_len, retval;
261
262 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
263 retval = access_process_vm(tsk, src, buf, this_len, 0);
264 if (!retval) {
265 if (copied)
266 break;
267 return -EIO;
268 }
269 if (copy_to_user(dst, buf, retval))
270 return -EFAULT;
271 copied += retval;
272 src += retval;
273 dst += retval;
274 len -= retval;
275 }
276 return copied;
277}
278
279int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
280{
281 int copied = 0;
282
283 while (len > 0) {
284 char buf[128];
285 int this_len, retval;
286
287 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
288 if (copy_from_user(buf, src, this_len))
289 return -EFAULT;
290 retval = access_process_vm(tsk, dst, buf, this_len, 1);
291 if (!retval) {
292 if (copied)
293 break;
294 return -EIO;
295 }
296 copied += retval;
297 src += retval;
298 dst += retval;
299 len -= retval;
300 }
301 return copied;
302}
303
304static int ptrace_setoptions(struct task_struct *child, long data)
305{
306 child->ptrace &= ~PT_TRACE_MASK;
307
308 if (data & PTRACE_O_TRACESYSGOOD)
309 child->ptrace |= PT_TRACESYSGOOD;
310
311 if (data & PTRACE_O_TRACEFORK)
312 child->ptrace |= PT_TRACE_FORK;
313
314 if (data & PTRACE_O_TRACEVFORK)
315 child->ptrace |= PT_TRACE_VFORK;
316
317 if (data & PTRACE_O_TRACECLONE)
318 child->ptrace |= PT_TRACE_CLONE;
319
320 if (data & PTRACE_O_TRACEEXEC)
321 child->ptrace |= PT_TRACE_EXEC;
322
323 if (data & PTRACE_O_TRACEVFORKDONE)
324 child->ptrace |= PT_TRACE_VFORK_DONE;
325
326 if (data & PTRACE_O_TRACEEXIT)
327 child->ptrace |= PT_TRACE_EXIT;
328
329 return (data & ~PTRACE_O_MASK) ? -EINVAL : 0;
330}
331
Roland McGrathe16b2782008-04-20 13:10:12 -0700332static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 int error = -ESRCH;
335
336 read_lock(&tasklist_lock);
337 if (likely(child->sighand != NULL)) {
338 error = -EINVAL;
339 spin_lock_irq(&child->sighand->siglock);
340 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700341 *info = *child->last_siginfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 error = 0;
343 }
344 spin_unlock_irq(&child->sighand->siglock);
345 }
346 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return error;
348}
349
Roland McGrathe16b2782008-04-20 13:10:12 -0700350static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int error = -ESRCH;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 read_lock(&tasklist_lock);
355 if (likely(child->sighand != NULL)) {
356 error = -EINVAL;
357 spin_lock_irq(&child->sighand->siglock);
358 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700359 *child->last_siginfo = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 error = 0;
361 }
362 spin_unlock_irq(&child->sighand->siglock);
363 }
364 read_unlock(&tasklist_lock);
365 return error;
366}
367
Roland McGrath36df29d2008-01-30 13:30:51 +0100368
369#ifdef PTRACE_SINGLESTEP
370#define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
371#else
372#define is_singlestep(request) 0
373#endif
374
Roland McGrath5b88abb2008-01-30 13:30:53 +0100375#ifdef PTRACE_SINGLEBLOCK
376#define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
377#else
378#define is_singleblock(request) 0
379#endif
380
Roland McGrath36df29d2008-01-30 13:30:51 +0100381#ifdef PTRACE_SYSEMU
382#define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
383#else
384#define is_sysemu_singlestep(request) 0
385#endif
386
387static int ptrace_resume(struct task_struct *child, long request, long data)
388{
389 if (!valid_signal(data))
390 return -EIO;
391
392 if (request == PTRACE_SYSCALL)
393 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
394 else
395 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
396
397#ifdef TIF_SYSCALL_EMU
398 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
399 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
400 else
401 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
402#endif
403
Roland McGrath5b88abb2008-01-30 13:30:53 +0100404 if (is_singleblock(request)) {
405 if (unlikely(!arch_has_block_step()))
406 return -EIO;
407 user_enable_block_step(child);
408 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
Roland McGrath36df29d2008-01-30 13:30:51 +0100409 if (unlikely(!arch_has_single_step()))
410 return -EIO;
411 user_enable_single_step(child);
412 }
413 else
414 user_disable_single_step(child);
415
416 child->exit_code = data;
417 wake_up_process(child);
418
419 return 0;
420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422int ptrace_request(struct task_struct *child, long request,
423 long addr, long data)
424{
425 int ret = -EIO;
Roland McGrathe16b2782008-04-20 13:10:12 -0700426 siginfo_t siginfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 switch (request) {
Roland McGrath16c3e382008-01-30 13:31:47 +0100429 case PTRACE_PEEKTEXT:
430 case PTRACE_PEEKDATA:
431 return generic_ptrace_peekdata(child, addr, data);
432 case PTRACE_POKETEXT:
433 case PTRACE_POKEDATA:
434 return generic_ptrace_pokedata(child, addr, data);
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#ifdef PTRACE_OLDSETOPTIONS
437 case PTRACE_OLDSETOPTIONS:
438#endif
439 case PTRACE_SETOPTIONS:
440 ret = ptrace_setoptions(child, data);
441 break;
442 case PTRACE_GETEVENTMSG:
443 ret = put_user(child->ptrace_message, (unsigned long __user *) data);
444 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 case PTRACE_GETSIGINFO:
Roland McGrathe16b2782008-04-20 13:10:12 -0700447 ret = ptrace_getsiginfo(child, &siginfo);
448 if (!ret)
449 ret = copy_siginfo_to_user((siginfo_t __user *) data,
450 &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 case PTRACE_SETSIGINFO:
Roland McGrathe16b2782008-04-20 13:10:12 -0700454 if (copy_from_user(&siginfo, (siginfo_t __user *) data,
455 sizeof siginfo))
456 ret = -EFAULT;
457 else
458 ret = ptrace_setsiginfo(child, &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700460
Alexey Dobriyan1bcf5482007-10-16 01:23:45 -0700461 case PTRACE_DETACH: /* detach a process that was attached. */
462 ret = ptrace_detach(child, data);
463 break;
Roland McGrath36df29d2008-01-30 13:30:51 +0100464
465#ifdef PTRACE_SINGLESTEP
466 case PTRACE_SINGLESTEP:
467#endif
Roland McGrath5b88abb2008-01-30 13:30:53 +0100468#ifdef PTRACE_SINGLEBLOCK
469 case PTRACE_SINGLEBLOCK:
470#endif
Roland McGrath36df29d2008-01-30 13:30:51 +0100471#ifdef PTRACE_SYSEMU
472 case PTRACE_SYSEMU:
473 case PTRACE_SYSEMU_SINGLESTEP:
474#endif
475 case PTRACE_SYSCALL:
476 case PTRACE_CONT:
477 return ptrace_resume(child, request, data);
478
479 case PTRACE_KILL:
480 if (child->exit_state) /* already dead */
481 return 0;
482 return ptrace_resume(child, request, SIGKILL);
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 default:
485 break;
486 }
487
488 return ret;
489}
Christoph Hellwig481bed42005-11-07 00:59:47 -0800490
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800491/**
492 * ptrace_traceme -- helper for PTRACE_TRACEME
493 *
494 * Performs checks and sets PT_PTRACED.
495 * Should be used by all ptrace implementations for PTRACE_TRACEME.
496 */
497int ptrace_traceme(void)
Christoph Hellwig481bed42005-11-07 00:59:47 -0800498{
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700499 int ret = -EPERM;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800500
501 /*
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800502 * Are we already being traced?
Christoph Hellwig481bed42005-11-07 00:59:47 -0800503 */
Roland McGrathf4700212008-03-24 18:36:23 -0700504repeat:
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700505 task_lock(current);
506 if (!(current->ptrace & PT_PTRACED)) {
Roland McGrathf4700212008-03-24 18:36:23 -0700507 /*
508 * See ptrace_attach() comments about the locking here.
509 */
510 unsigned long flags;
511 if (!write_trylock_irqsave(&tasklist_lock, flags)) {
512 task_unlock(current);
513 do {
514 cpu_relax();
515 } while (!write_can_lock(&tasklist_lock));
516 goto repeat;
517 }
518
David Howells5cd9c582008-08-14 11:37:28 +0100519 ret = security_ptrace_traceme(current->parent);
Roland McGrathf4700212008-03-24 18:36:23 -0700520
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700521 /*
522 * Set the ptrace bit in the process ptrace flags.
Roland McGrathf4700212008-03-24 18:36:23 -0700523 * Then link us on our parent's ptraced list.
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700524 */
Roland McGrathf4700212008-03-24 18:36:23 -0700525 if (!ret) {
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700526 current->ptrace |= PT_PTRACED;
Roland McGrathf4700212008-03-24 18:36:23 -0700527 __ptrace_link(current, current->real_parent);
528 }
529
530 write_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700531 }
532 task_unlock(current);
533 return ret;
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800534}
Christoph Hellwig481bed42005-11-07 00:59:47 -0800535
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800536/**
537 * ptrace_get_task_struct -- grab a task struct reference for ptrace
538 * @pid: process id to grab a task_struct reference of
539 *
540 * This function is a helper for ptrace implementations. It checks
541 * permissions and then grabs a task struct for use of the actual
542 * ptrace implementation.
543 *
544 * Returns the task_struct for @pid or an ERR_PTR() on failure.
545 */
546struct task_struct *ptrace_get_task_struct(pid_t pid)
547{
548 struct task_struct *child;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800549
Christoph Hellwig481bed42005-11-07 00:59:47 -0800550 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700551 child = find_task_by_vpid(pid);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800552 if (child)
553 get_task_struct(child);
Sukadev Bhattiproluf400e192006-09-29 02:00:07 -0700554
Christoph Hellwig481bed42005-11-07 00:59:47 -0800555 read_unlock(&tasklist_lock);
556 if (!child)
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800557 return ERR_PTR(-ESRCH);
558 return child;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800559}
560
Christoph Hellwig0ac15552007-10-16 01:26:37 -0700561#ifndef arch_ptrace_attach
562#define arch_ptrace_attach(child) do { } while (0)
563#endif
564
Christoph Hellwig481bed42005-11-07 00:59:47 -0800565asmlinkage long sys_ptrace(long request, long pid, long addr, long data)
566{
567 struct task_struct *child;
568 long ret;
569
570 /*
571 * This lock_kernel fixes a subtle race with suid exec
572 */
573 lock_kernel();
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800574 if (request == PTRACE_TRACEME) {
575 ret = ptrace_traceme();
Haavard Skinnemoen6ea6dd92007-11-27 13:02:40 +0100576 if (!ret)
577 arch_ptrace_attach(current);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800578 goto out;
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800579 }
580
581 child = ptrace_get_task_struct(pid);
582 if (IS_ERR(child)) {
583 ret = PTR_ERR(child);
584 goto out;
585 }
Christoph Hellwig481bed42005-11-07 00:59:47 -0800586
587 if (request == PTRACE_ATTACH) {
588 ret = ptrace_attach(child);
Christoph Hellwig0ac15552007-10-16 01:26:37 -0700589 /*
590 * Some architectures need to do book-keeping after
591 * a ptrace attach.
592 */
593 if (!ret)
594 arch_ptrace_attach(child);
Christoph Hellwig005f18d2005-11-13 16:06:33 -0800595 goto out_put_task_struct;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800596 }
597
598 ret = ptrace_check_attach(child, request == PTRACE_KILL);
599 if (ret < 0)
600 goto out_put_task_struct;
601
602 ret = arch_ptrace(child, request, addr, data);
603 if (ret < 0)
604 goto out_put_task_struct;
605
606 out_put_task_struct:
607 put_task_struct(child);
608 out:
609 unlock_kernel();
610 return ret;
611}
Alexey Dobriyan76647322007-07-17 04:03:43 -0700612
613int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data)
614{
615 unsigned long tmp;
616 int copied;
617
618 copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
619 if (copied != sizeof(tmp))
620 return -EIO;
621 return put_user(tmp, (unsigned long __user *)data);
622}
Alexey Dobriyanf284ce72007-07-17 04:03:44 -0700623
624int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data)
625{
626 int copied;
627
628 copied = access_process_vm(tsk, addr, &data, sizeof(data), 1);
629 return (copied == sizeof(data)) ? 0 : -EIO;
630}
Roland McGrath032d82d2008-01-30 13:31:47 +0100631
Roland McGrath9d04d922008-04-28 13:57:19 -0700632#if defined CONFIG_COMPAT && defined __ARCH_WANT_COMPAT_SYS_PTRACE
Roland McGrath032d82d2008-01-30 13:31:47 +0100633#include <linux/compat.h>
634
635int compat_ptrace_request(struct task_struct *child, compat_long_t request,
636 compat_ulong_t addr, compat_ulong_t data)
637{
638 compat_ulong_t __user *datap = compat_ptr(data);
639 compat_ulong_t word;
Roland McGrathe16b2782008-04-20 13:10:12 -0700640 siginfo_t siginfo;
Roland McGrath032d82d2008-01-30 13:31:47 +0100641 int ret;
642
643 switch (request) {
644 case PTRACE_PEEKTEXT:
645 case PTRACE_PEEKDATA:
646 ret = access_process_vm(child, addr, &word, sizeof(word), 0);
647 if (ret != sizeof(word))
648 ret = -EIO;
649 else
650 ret = put_user(word, datap);
651 break;
652
653 case PTRACE_POKETEXT:
654 case PTRACE_POKEDATA:
655 ret = access_process_vm(child, addr, &data, sizeof(data), 1);
656 ret = (ret != sizeof(data) ? -EIO : 0);
657 break;
658
659 case PTRACE_GETEVENTMSG:
660 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
661 break;
662
Roland McGrathe16b2782008-04-20 13:10:12 -0700663 case PTRACE_GETSIGINFO:
664 ret = ptrace_getsiginfo(child, &siginfo);
665 if (!ret)
666 ret = copy_siginfo_to_user32(
667 (struct compat_siginfo __user *) datap,
668 &siginfo);
669 break;
670
671 case PTRACE_SETSIGINFO:
672 memset(&siginfo, 0, sizeof siginfo);
673 if (copy_siginfo_from_user32(
674 &siginfo, (struct compat_siginfo __user *) datap))
675 ret = -EFAULT;
676 else
677 ret = ptrace_setsiginfo(child, &siginfo);
678 break;
679
Roland McGrath032d82d2008-01-30 13:31:47 +0100680 default:
681 ret = ptrace_request(child, request, addr, data);
682 }
683
684 return ret;
685}
Roland McGrathc269f192008-01-30 13:31:48 +0100686
Roland McGrathc269f192008-01-30 13:31:48 +0100687asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
688 compat_long_t addr, compat_long_t data)
689{
690 struct task_struct *child;
691 long ret;
692
693 /*
694 * This lock_kernel fixes a subtle race with suid exec
695 */
696 lock_kernel();
697 if (request == PTRACE_TRACEME) {
698 ret = ptrace_traceme();
699 goto out;
700 }
701
702 child = ptrace_get_task_struct(pid);
703 if (IS_ERR(child)) {
704 ret = PTR_ERR(child);
705 goto out;
706 }
707
708 if (request == PTRACE_ATTACH) {
709 ret = ptrace_attach(child);
710 /*
711 * Some architectures need to do book-keeping after
712 * a ptrace attach.
713 */
714 if (!ret)
715 arch_ptrace_attach(child);
716 goto out_put_task_struct;
717 }
718
719 ret = ptrace_check_attach(child, request == PTRACE_KILL);
720 if (!ret)
721 ret = compat_arch_ptrace(child, request, addr, data);
722
723 out_put_task_struct:
724 put_task_struct(child);
725 out:
726 unlock_kernel();
727 return ret;
728}
Roland McGrath9d04d922008-04-28 13:57:19 -0700729#endif /* CONFIG_COMPAT && __ARCH_WANT_COMPAT_SYS_PTRACE */