blob: 2df115790cd9e1ab6a1128603697ce5b6ed255d9 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/ptrace.h>
18#include <linux/security.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070019#include <linux/signal.h>
Al Viroa5cb0132007-03-20 13:58:35 -040020#include <linux/audit.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070021#include <linux/pid_namespace.h>
Adrian Bunkf17d30a2008-02-06 01:36:44 -080022#include <linux/syscalls.h>
Roland McGrath3a709702009-04-07 23:21:06 -070023#include <linux/uaccess.h>
Suresh Siddha2225a122010-02-11 11:51:00 -080024#include <linux/regset.h>
Frederic Weisbeckerbf26c012011-04-07 16:53:20 +020025#include <linux/hw_breakpoint.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Markus Metzgerbf53de92008-12-19 15:10:24 +010027
28/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * 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}
Roland McGrath3a709702009-04-07 23:21:06 -070040
Tejun Heoe3bd0582011-03-23 10:37:01 +010041/**
42 * __ptrace_unlink - unlink ptracee and restore its execution state
43 * @child: ptracee to be unlinked
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 *
Tejun Heo0e9f0a42011-03-23 10:37:01 +010045 * Remove @child from the ptrace list, move it back to the original parent,
46 * and restore the execution state so that it conforms to the group stop
47 * state.
48 *
49 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
50 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
51 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
52 * If the ptracer is exiting, the ptracee can be in any state.
53 *
54 * After detach, the ptracee should be in a state which conforms to the
55 * group stop. If the group is stopped or in the process of stopping, the
56 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
57 * up from TASK_TRACED.
58 *
59 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
60 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
61 * to but in the opposite direction of what happens while attaching to a
62 * stopped task. However, in this direction, the intermediate RUNNING
63 * state is not hidden even from the current ptracer and if it immediately
64 * re-attaches and performs a WNOHANG wait(2), it may fail.
Tejun Heoe3bd0582011-03-23 10:37:01 +010065 *
66 * CONTEXT:
67 * write_lock_irq(tasklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
Ingo Molnar36c8b582006-07-03 00:25:41 -070069void __ptrace_unlink(struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +030071 BUG_ON(!child->ptrace);
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 child->ptrace = 0;
Roland McGrathf4700212008-03-24 18:36:23 -070074 child->parent = child->real_parent;
75 list_del_init(&child->ptrace_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 spin_lock(&child->sighand->siglock);
Tejun Heo0e9f0a42011-03-23 10:37:01 +010078
79 /*
80 * Reinstate GROUP_STOP_PENDING if group stop is in effect and
81 * @child isn't dead.
82 */
83 if (!(child->flags & PF_EXITING) &&
84 (child->signal->flags & SIGNAL_STOP_STOPPED ||
85 child->signal->group_stop_count))
86 child->group_stop |= GROUP_STOP_PENDING;
87
88 /*
89 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
90 * @child in the butt. Note that @resume should be used iff @child
91 * is in TASK_TRACED; otherwise, we might unduly disrupt
92 * TASK_KILLABLE sleeps.
93 */
94 if (child->group_stop & GROUP_STOP_PENDING || task_is_traced(child))
95 signal_wake_up(child, task_is_traced(child));
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spin_unlock(&child->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100/*
101 * Check that we have indeed attached to the thing..
102 */
103int ptrace_check_attach(struct task_struct *child, int kill)
104{
105 int ret = -ESRCH;
106
107 /*
108 * We take the read lock around doing both checks to close a
109 * possible race where someone else was tracing our child and
110 * detached between these two checks. After this locked check,
111 * we are sure that this is our traced child and that can only
112 * be changed by us so it's not changing right after this.
113 */
114 read_lock(&tasklist_lock);
Oleg Nesterovc0c0b642008-02-08 04:19:00 -0800115 if ((child->ptrace & PT_PTRACED) && child->parent == current) {
Oleg Nesterovc0c0b642008-02-08 04:19:00 -0800116 /*
117 * child->sighand can't be NULL, release_task()
118 * does ptrace_unlink() before __exit_signal().
119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 spin_lock_irq(&child->sighand->siglock);
Oleg Nesterov321fb562011-04-01 20:13:01 +0200121 WARN_ON_ONCE(task_is_stopped(child));
122 if (task_is_traced(child) || kill)
123 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 spin_unlock_irq(&child->sighand->siglock);
125 }
126 read_unlock(&tasklist_lock);
127
Oleg Nesterovd9ae90a2008-02-06 01:36:13 -0800128 if (!ret && !kill)
Roland McGrath85ba2d82008-07-25 19:45:58 -0700129 ret = wait_task_inactive(child, TASK_TRACED) ? 0 : -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /* All systems go.. */
132 return ret;
133}
134
Stephen Smalley006ebb42008-05-19 08:32:49 -0400135int __ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700136{
David Howellsc69e8d92008-11-14 10:39:19 +1100137 const struct cred *cred = current_cred(), *tcred;
David Howellsb6dff3e2008-11-14 10:39:16 +1100138
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700139 /* May we inspect the given task?
140 * This check is used both for attaching with ptrace
141 * and for allowing access to sensitive information in /proc.
142 *
143 * ptrace_attach denies several cases that /proc allows
144 * because setting up the necessary parent/child relationship
145 * or halting the specified task is impossible.
146 */
147 int dumpable = 0;
148 /* Don't let security modules deny introspection */
149 if (task == current)
150 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100151 rcu_read_lock();
152 tcred = __task_cred(task);
Serge E. Hallyn8409cca2011-03-23 16:43:20 -0700153 if (cred->user->user_ns == tcred->user->user_ns &&
154 (cred->uid == tcred->euid &&
155 cred->uid == tcred->suid &&
156 cred->uid == tcred->uid &&
157 cred->gid == tcred->egid &&
158 cred->gid == tcred->sgid &&
159 cred->gid == tcred->gid))
160 goto ok;
161 if (ns_capable(tcred->user->user_ns, CAP_SYS_PTRACE))
162 goto ok;
163 rcu_read_unlock();
164 return -EPERM;
165ok:
David Howellsc69e8d92008-11-14 10:39:19 +1100166 rcu_read_unlock();
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700167 smp_rmb();
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700168 if (task->mm)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -0700169 dumpable = get_dumpable(task->mm);
Serge E. Hallyn8409cca2011-03-23 16:43:20 -0700170 if (!dumpable && !task_ns_capable(task, CAP_SYS_PTRACE))
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700171 return -EPERM;
172
Ingo Molnar9e488582009-05-07 19:26:19 +1000173 return security_ptrace_access_check(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700174}
175
Stephen Smalley006ebb42008-05-19 08:32:49 -0400176bool ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700177{
178 int err;
179 task_lock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400180 err = __ptrace_may_access(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700181 task_unlock(task);
Roland McGrath3a709702009-04-07 23:21:06 -0700182 return !err;
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700183}
184
Linus Torvaldse3e89cc2011-03-04 09:23:30 -0800185static int ptrace_attach(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Tejun Heod79fdd62011-03-23 10:37:00 +0100187 bool wait_trap = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 int retval;
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700189
Al Viroa5cb0132007-03-20 13:58:35 -0400190 audit_ptrace(task);
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 retval = -EPERM;
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700193 if (unlikely(task->flags & PF_KTHREAD))
194 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700195 if (same_thread_group(task, current))
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700196 goto out;
197
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700198 /*
199 * Protect exec's credential calculations against our interference;
David Howells5e751e92009-05-08 13:55:22 +0100200 * interference; SUID, SGID and LSM creds get determined differently
201 * under ptrace.
David Howellsd84f4f92008-11-14 10:39:23 +1100202 */
Oleg Nesterov793285f2009-07-05 12:08:26 -0700203 retval = -ERESTARTNOINTR;
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700204 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
David Howellsd84f4f92008-11-14 10:39:23 +1100205 goto out;
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700206
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700207 task_lock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400208 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH);
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700209 task_unlock(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (retval)
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700211 goto unlock_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700213 write_lock_irq(&tasklist_lock);
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700214 retval = -EPERM;
215 if (unlikely(task->exit_state))
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700216 goto unlock_tasklist;
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700217 if (task->ptrace)
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700218 goto unlock_tasklist;
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700219
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700220 task->ptrace = PT_PTRACED;
Serge E. Hallyn8409cca2011-03-23 16:43:20 -0700221 if (task_ns_capable(task, CAP_SYS_PTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 task->ptrace |= PT_PTRACE_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 __ptrace_link(task, current);
Oleg Nesterov33e9fc72008-04-30 00:53:14 -0700225 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700226
Tejun Heod79fdd62011-03-23 10:37:00 +0100227 spin_lock(&task->sighand->siglock);
228
229 /*
230 * If the task is already STOPPED, set GROUP_STOP_PENDING and
231 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
232 * will be cleared if the child completes the transition or any
233 * event which clears the group stop states happens. We'll wait
234 * for the transition to complete before returning from this
235 * function.
236 *
237 * This hides STOPPED -> RUNNING -> TRACED transition from the
238 * attaching thread but a different thread in the same group can
239 * still observe the transient RUNNING state. IOW, if another
240 * thread's WNOHANG wait(2) on the stopped tracee races against
241 * ATTACH, the wait(2) may fail due to the transient RUNNING.
242 *
243 * The following task_is_stopped() test is safe as both transitions
244 * in and out of STOPPED are protected by siglock.
245 */
246 if (task_is_stopped(task)) {
247 task->group_stop |= GROUP_STOP_PENDING | GROUP_STOP_TRAPPING;
248 signal_wake_up(task, 1);
249 wait_trap = true;
250 }
251
252 spin_unlock(&task->sighand->siglock);
253
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700254 retval = 0;
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700255unlock_tasklist:
256 write_unlock_irq(&tasklist_lock);
257unlock_creds:
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700258 mutex_unlock(&task->signal->cred_guard_mutex);
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700259out:
Tejun Heod79fdd62011-03-23 10:37:00 +0100260 if (wait_trap)
261 wait_event(current->signal->wait_chldexit,
262 !(task->group_stop & GROUP_STOP_TRAPPING));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return retval;
264}
265
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700266/**
267 * ptrace_traceme -- helper for PTRACE_TRACEME
268 *
269 * Performs checks and sets PT_PTRACED.
270 * Should be used by all ptrace implementations for PTRACE_TRACEME.
271 */
Linus Torvaldse3e89cc2011-03-04 09:23:30 -0800272static int ptrace_traceme(void)
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700273{
274 int ret = -EPERM;
275
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700276 write_lock_irq(&tasklist_lock);
277 /* Are we already being traced? */
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700278 if (!current->ptrace) {
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700279 ret = security_ptrace_traceme(current->parent);
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700280 /*
281 * Check PF_EXITING to ensure ->real_parent has not passed
282 * exit_ptrace(). Otherwise we don't report the error but
283 * pretend ->real_parent untraces us right after return.
284 */
285 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
286 current->ptrace = PT_PTRACED;
287 __ptrace_link(current, current->real_parent);
288 }
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700289 }
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700290 write_unlock_irq(&tasklist_lock);
291
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700292 return ret;
293}
294
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700295/*
296 * Called with irqs disabled, returns true if childs should reap themselves.
297 */
298static int ignoring_children(struct sighand_struct *sigh)
299{
300 int ret;
301 spin_lock(&sigh->siglock);
302 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
303 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
304 spin_unlock(&sigh->siglock);
305 return ret;
306}
307
308/*
309 * Called with tasklist_lock held for writing.
310 * Unlink a traced task, and clean it up if it was a traced zombie.
311 * Return true if it needs to be reaped with release_task().
312 * (We can't call release_task() here because we already hold tasklist_lock.)
313 *
314 * If it's a zombie, our attachedness prevented normal parent notification
315 * or self-reaping. Do notification now if it would have happened earlier.
316 * If it should reap itself, return true.
317 *
Oleg Nesterova7f07652009-09-23 15:56:44 -0700318 * If it's our own child, there is no notification to do. But if our normal
319 * children self-reap, then this child was prevented by ptrace and we must
320 * reap it now, in that case we must also wake up sub-threads sleeping in
321 * do_wait().
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700322 */
323static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
324{
325 __ptrace_unlink(p);
326
327 if (p->exit_state == EXIT_ZOMBIE) {
328 if (!task_detached(p) && thread_group_empty(p)) {
329 if (!same_thread_group(p->real_parent, tracer))
330 do_notify_parent(p, p->exit_signal);
Oleg Nesterova7f07652009-09-23 15:56:44 -0700331 else if (ignoring_children(tracer->sighand)) {
332 __wake_up_parent(p, tracer);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700333 p->exit_signal = -1;
Oleg Nesterova7f07652009-09-23 15:56:44 -0700334 }
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700335 }
336 if (task_detached(p)) {
337 /* Mark it as in the process of being reaped. */
338 p->exit_state = EXIT_DEAD;
339 return true;
340 }
341 }
342
343 return false;
344}
345
Linus Torvaldse3e89cc2011-03-04 09:23:30 -0800346static int ptrace_detach(struct task_struct *child, unsigned int data)
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300347{
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700348 bool dead = false;
Oleg Nesterov45761452009-04-02 16:58:14 -0700349
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300350 if (!valid_signal(data))
351 return -EIO;
352
353 /* Architecture-specific hardware disable .. */
354 ptrace_disable(child);
Roland McGrath7d941432007-09-05 03:05:56 -0700355 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300356
Oleg Nesterov95c3eb72009-04-02 16:58:11 -0700357 write_lock_irq(&tasklist_lock);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700358 /*
359 * This child can be already killed. Make sure de_thread() or
360 * our sub-thread doing do_wait() didn't do release_task() yet.
361 */
Oleg Nesterov95c3eb72009-04-02 16:58:11 -0700362 if (child->ptrace) {
363 child->exit_code = data;
Oleg Nesterov45761452009-04-02 16:58:14 -0700364 dead = __ptrace_detach(current, child);
Oleg Nesterov95c3eb72009-04-02 16:58:11 -0700365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 write_unlock_irq(&tasklist_lock);
367
Oleg Nesterov45761452009-04-02 16:58:14 -0700368 if (unlikely(dead))
369 release_task(child);
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
372}
373
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700374/*
Oleg Nesterovc7e49c12010-08-10 18:03:07 -0700375 * Detach all tasks we were using ptrace on. Called with tasklist held
376 * for writing, and returns with it held too. But note it can release
377 * and reacquire the lock.
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700378 */
379void exit_ptrace(struct task_struct *tracer)
Namhyung Kimc4b5ed22010-10-27 15:33:44 -0700380 __releases(&tasklist_lock)
381 __acquires(&tasklist_lock)
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700382{
383 struct task_struct *p, *n;
384 LIST_HEAD(ptrace_dead);
385
Oleg Nesterovc7e49c12010-08-10 18:03:07 -0700386 if (likely(list_empty(&tracer->ptraced)))
387 return;
388
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700389 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
390 if (__ptrace_detach(tracer, p))
391 list_add(&p->ptrace_entry, &ptrace_dead);
392 }
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700393
Oleg Nesterovc7e49c12010-08-10 18:03:07 -0700394 write_unlock_irq(&tasklist_lock);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700395 BUG_ON(!list_empty(&tracer->ptraced));
396
397 list_for_each_entry_safe(p, n, &ptrace_dead, ptrace_entry) {
398 list_del_init(&p->ptrace_entry);
399 release_task(p);
400 }
Oleg Nesterovc7e49c12010-08-10 18:03:07 -0700401
402 write_lock_irq(&tasklist_lock);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
406{
407 int copied = 0;
408
409 while (len > 0) {
410 char buf[128];
411 int this_len, retval;
412
413 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
414 retval = access_process_vm(tsk, src, buf, this_len, 0);
415 if (!retval) {
416 if (copied)
417 break;
418 return -EIO;
419 }
420 if (copy_to_user(dst, buf, retval))
421 return -EFAULT;
422 copied += retval;
423 src += retval;
424 dst += retval;
Roland McGrath3a709702009-04-07 23:21:06 -0700425 len -= retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 return copied;
428}
429
430int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
431{
432 int copied = 0;
433
434 while (len > 0) {
435 char buf[128];
436 int this_len, retval;
437
438 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
439 if (copy_from_user(buf, src, this_len))
440 return -EFAULT;
441 retval = access_process_vm(tsk, dst, buf, this_len, 1);
442 if (!retval) {
443 if (copied)
444 break;
445 return -EIO;
446 }
447 copied += retval;
448 src += retval;
449 dst += retval;
Roland McGrath3a709702009-04-07 23:21:06 -0700450 len -= retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 return copied;
453}
454
Namhyung Kim4abf9862010-10-27 15:33:45 -0700455static int ptrace_setoptions(struct task_struct *child, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 child->ptrace &= ~PT_TRACE_MASK;
458
459 if (data & PTRACE_O_TRACESYSGOOD)
460 child->ptrace |= PT_TRACESYSGOOD;
461
462 if (data & PTRACE_O_TRACEFORK)
463 child->ptrace |= PT_TRACE_FORK;
464
465 if (data & PTRACE_O_TRACEVFORK)
466 child->ptrace |= PT_TRACE_VFORK;
467
468 if (data & PTRACE_O_TRACECLONE)
469 child->ptrace |= PT_TRACE_CLONE;
470
471 if (data & PTRACE_O_TRACEEXEC)
472 child->ptrace |= PT_TRACE_EXEC;
473
474 if (data & PTRACE_O_TRACEVFORKDONE)
475 child->ptrace |= PT_TRACE_VFORK_DONE;
476
477 if (data & PTRACE_O_TRACEEXIT)
478 child->ptrace |= PT_TRACE_EXIT;
479
480 return (data & ~PTRACE_O_MASK) ? -EINVAL : 0;
481}
482
Roland McGrathe16b2782008-04-20 13:10:12 -0700483static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Oleg Nesterove4961252009-06-17 16:27:36 -0700485 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 int error = -ESRCH;
487
Oleg Nesterove4961252009-06-17 16:27:36 -0700488 if (lock_task_sighand(child, &flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700491 *info = *child->last_siginfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 error = 0;
493 }
Oleg Nesterove4961252009-06-17 16:27:36 -0700494 unlock_task_sighand(child, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return error;
497}
498
Roland McGrathe16b2782008-04-20 13:10:12 -0700499static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Oleg Nesterove4961252009-06-17 16:27:36 -0700501 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 int error = -ESRCH;
503
Oleg Nesterove4961252009-06-17 16:27:36 -0700504 if (lock_task_sighand(child, &flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700507 *child->last_siginfo = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 error = 0;
509 }
Oleg Nesterove4961252009-06-17 16:27:36 -0700510 unlock_task_sighand(child, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return error;
513}
514
Roland McGrath36df29d2008-01-30 13:30:51 +0100515
516#ifdef PTRACE_SINGLESTEP
517#define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
518#else
519#define is_singlestep(request) 0
520#endif
521
Roland McGrath5b88abb2008-01-30 13:30:53 +0100522#ifdef PTRACE_SINGLEBLOCK
523#define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
524#else
525#define is_singleblock(request) 0
526#endif
527
Roland McGrath36df29d2008-01-30 13:30:51 +0100528#ifdef PTRACE_SYSEMU
529#define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
530#else
531#define is_sysemu_singlestep(request) 0
532#endif
533
Namhyung Kim4abf9862010-10-27 15:33:45 -0700534static int ptrace_resume(struct task_struct *child, long request,
535 unsigned long data)
Roland McGrath36df29d2008-01-30 13:30:51 +0100536{
537 if (!valid_signal(data))
538 return -EIO;
539
540 if (request == PTRACE_SYSCALL)
541 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
542 else
543 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
544
545#ifdef TIF_SYSCALL_EMU
546 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
547 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
548 else
549 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
550#endif
551
Roland McGrath5b88abb2008-01-30 13:30:53 +0100552 if (is_singleblock(request)) {
553 if (unlikely(!arch_has_block_step()))
554 return -EIO;
555 user_enable_block_step(child);
556 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
Roland McGrath36df29d2008-01-30 13:30:51 +0100557 if (unlikely(!arch_has_single_step()))
558 return -EIO;
559 user_enable_single_step(child);
Roland McGrath3a709702009-04-07 23:21:06 -0700560 } else {
Roland McGrath36df29d2008-01-30 13:30:51 +0100561 user_disable_single_step(child);
Roland McGrath3a709702009-04-07 23:21:06 -0700562 }
Roland McGrath36df29d2008-01-30 13:30:51 +0100563
564 child->exit_code = data;
Oleg Nesterov0666fb52011-05-25 19:20:21 +0200565 wake_up_state(child, __TASK_TRACED);
Roland McGrath36df29d2008-01-30 13:30:51 +0100566
567 return 0;
568}
569
Suresh Siddha2225a122010-02-11 11:51:00 -0800570#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
571
572static const struct user_regset *
573find_regset(const struct user_regset_view *view, unsigned int type)
574{
575 const struct user_regset *regset;
576 int n;
577
578 for (n = 0; n < view->n; ++n) {
579 regset = view->regsets + n;
580 if (regset->core_note_type == type)
581 return regset;
582 }
583
584 return NULL;
585}
586
587static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
588 struct iovec *kiov)
589{
590 const struct user_regset_view *view = task_user_regset_view(task);
591 const struct user_regset *regset = find_regset(view, type);
592 int regset_no;
593
594 if (!regset || (kiov->iov_len % regset->size) != 0)
Suresh Siddhac6a0dd72010-02-22 14:51:32 -0800595 return -EINVAL;
Suresh Siddha2225a122010-02-11 11:51:00 -0800596
597 regset_no = regset - view->regsets;
598 kiov->iov_len = min(kiov->iov_len,
599 (__kernel_size_t) (regset->n * regset->size));
600
601 if (req == PTRACE_GETREGSET)
602 return copy_regset_to_user(task, view, regset_no, 0,
603 kiov->iov_len, kiov->iov_base);
604 else
605 return copy_regset_from_user(task, view, regset_no, 0,
606 kiov->iov_len, kiov->iov_base);
607}
608
609#endif
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611int ptrace_request(struct task_struct *child, long request,
Namhyung Kim4abf9862010-10-27 15:33:45 -0700612 unsigned long addr, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 int ret = -EIO;
Roland McGrathe16b2782008-04-20 13:10:12 -0700615 siginfo_t siginfo;
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700616 void __user *datavp = (void __user *) data;
617 unsigned long __user *datalp = datavp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 switch (request) {
Roland McGrath16c3e382008-01-30 13:31:47 +0100620 case PTRACE_PEEKTEXT:
621 case PTRACE_PEEKDATA:
622 return generic_ptrace_peekdata(child, addr, data);
623 case PTRACE_POKETEXT:
624 case PTRACE_POKEDATA:
625 return generic_ptrace_pokedata(child, addr, data);
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627#ifdef PTRACE_OLDSETOPTIONS
628 case PTRACE_OLDSETOPTIONS:
629#endif
630 case PTRACE_SETOPTIONS:
631 ret = ptrace_setoptions(child, data);
632 break;
633 case PTRACE_GETEVENTMSG:
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700634 ret = put_user(child->ptrace_message, datalp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 case PTRACE_GETSIGINFO:
Roland McGrathe16b2782008-04-20 13:10:12 -0700638 ret = ptrace_getsiginfo(child, &siginfo);
639 if (!ret)
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700640 ret = copy_siginfo_to_user(datavp, &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 case PTRACE_SETSIGINFO:
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700644 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
Roland McGrathe16b2782008-04-20 13:10:12 -0700645 ret = -EFAULT;
646 else
647 ret = ptrace_setsiginfo(child, &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700649
Alexey Dobriyan1bcf5482007-10-16 01:23:45 -0700650 case PTRACE_DETACH: /* detach a process that was attached. */
651 ret = ptrace_detach(child, data);
652 break;
Roland McGrath36df29d2008-01-30 13:30:51 +0100653
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700654#ifdef CONFIG_BINFMT_ELF_FDPIC
655 case PTRACE_GETFDPIC: {
Oleg Nesterove0129ef2010-05-26 14:42:53 -0700656 struct mm_struct *mm = get_task_mm(child);
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700657 unsigned long tmp = 0;
658
Oleg Nesterove0129ef2010-05-26 14:42:53 -0700659 ret = -ESRCH;
660 if (!mm)
661 break;
662
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700663 switch (addr) {
664 case PTRACE_GETFDPIC_EXEC:
Oleg Nesterove0129ef2010-05-26 14:42:53 -0700665 tmp = mm->context.exec_fdpic_loadmap;
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700666 break;
667 case PTRACE_GETFDPIC_INTERP:
Oleg Nesterove0129ef2010-05-26 14:42:53 -0700668 tmp = mm->context.interp_fdpic_loadmap;
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700669 break;
670 default:
671 break;
672 }
Oleg Nesterove0129ef2010-05-26 14:42:53 -0700673 mmput(mm);
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700674
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700675 ret = put_user(tmp, datalp);
Mike Frysinger9c1a1252010-05-26 14:42:52 -0700676 break;
677 }
678#endif
679
Roland McGrath36df29d2008-01-30 13:30:51 +0100680#ifdef PTRACE_SINGLESTEP
681 case PTRACE_SINGLESTEP:
682#endif
Roland McGrath5b88abb2008-01-30 13:30:53 +0100683#ifdef PTRACE_SINGLEBLOCK
684 case PTRACE_SINGLEBLOCK:
685#endif
Roland McGrath36df29d2008-01-30 13:30:51 +0100686#ifdef PTRACE_SYSEMU
687 case PTRACE_SYSEMU:
688 case PTRACE_SYSEMU_SINGLESTEP:
689#endif
690 case PTRACE_SYSCALL:
691 case PTRACE_CONT:
692 return ptrace_resume(child, request, data);
693
694 case PTRACE_KILL:
695 if (child->exit_state) /* already dead */
696 return 0;
697 return ptrace_resume(child, request, SIGKILL);
698
Suresh Siddha2225a122010-02-11 11:51:00 -0800699#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
700 case PTRACE_GETREGSET:
701 case PTRACE_SETREGSET:
702 {
703 struct iovec kiov;
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700704 struct iovec __user *uiov = datavp;
Suresh Siddha2225a122010-02-11 11:51:00 -0800705
706 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
707 return -EFAULT;
708
709 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
710 __get_user(kiov.iov_len, &uiov->iov_len))
711 return -EFAULT;
712
713 ret = ptrace_regset(child, request, addr, &kiov);
714 if (!ret)
715 ret = __put_user(kiov.iov_len, &uiov->iov_len);
716 break;
717 }
718#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 default:
720 break;
721 }
722
723 return ret;
724}
Christoph Hellwig481bed42005-11-07 00:59:47 -0800725
Oleg Nesterov8053bdd2009-06-17 16:27:34 -0700726static struct task_struct *ptrace_get_task_struct(pid_t pid)
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800727{
728 struct task_struct *child;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800729
Oleg Nesterov8053bdd2009-06-17 16:27:34 -0700730 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700731 child = find_task_by_vpid(pid);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800732 if (child)
733 get_task_struct(child);
Oleg Nesterov8053bdd2009-06-17 16:27:34 -0700734 rcu_read_unlock();
Sukadev Bhattiproluf400e192006-09-29 02:00:07 -0700735
Christoph Hellwig481bed42005-11-07 00:59:47 -0800736 if (!child)
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800737 return ERR_PTR(-ESRCH);
738 return child;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800739}
740
Christoph Hellwig0ac15552007-10-16 01:26:37 -0700741#ifndef arch_ptrace_attach
742#define arch_ptrace_attach(child) do { } while (0)
743#endif
744
Namhyung Kim4abf9862010-10-27 15:33:45 -0700745SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
746 unsigned long, data)
Christoph Hellwig481bed42005-11-07 00:59:47 -0800747{
748 struct task_struct *child;
749 long ret;
750
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800751 if (request == PTRACE_TRACEME) {
752 ret = ptrace_traceme();
Haavard Skinnemoen6ea6dd92007-11-27 13:02:40 +0100753 if (!ret)
754 arch_ptrace_attach(current);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800755 goto out;
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -0800756 }
757
758 child = ptrace_get_task_struct(pid);
759 if (IS_ERR(child)) {
760 ret = PTR_ERR(child);
761 goto out;
762 }
Christoph Hellwig481bed42005-11-07 00:59:47 -0800763
764 if (request == PTRACE_ATTACH) {
765 ret = ptrace_attach(child);
Christoph Hellwig0ac15552007-10-16 01:26:37 -0700766 /*
767 * Some architectures need to do book-keeping after
768 * a ptrace attach.
769 */
770 if (!ret)
771 arch_ptrace_attach(child);
Christoph Hellwig005f18d2005-11-13 16:06:33 -0800772 goto out_put_task_struct;
Christoph Hellwig481bed42005-11-07 00:59:47 -0800773 }
774
775 ret = ptrace_check_attach(child, request == PTRACE_KILL);
776 if (ret < 0)
777 goto out_put_task_struct;
778
779 ret = arch_ptrace(child, request, addr, data);
Christoph Hellwig481bed42005-11-07 00:59:47 -0800780
781 out_put_task_struct:
782 put_task_struct(child);
783 out:
Christoph Hellwig481bed42005-11-07 00:59:47 -0800784 return ret;
785}
Alexey Dobriyan76647322007-07-17 04:03:43 -0700786
Namhyung Kim4abf9862010-10-27 15:33:45 -0700787int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
788 unsigned long data)
Alexey Dobriyan76647322007-07-17 04:03:43 -0700789{
790 unsigned long tmp;
791 int copied;
792
793 copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
794 if (copied != sizeof(tmp))
795 return -EIO;
796 return put_user(tmp, (unsigned long __user *)data);
797}
Alexey Dobriyanf284ce72007-07-17 04:03:44 -0700798
Namhyung Kim4abf9862010-10-27 15:33:45 -0700799int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
800 unsigned long data)
Alexey Dobriyanf284ce72007-07-17 04:03:44 -0700801{
802 int copied;
803
804 copied = access_process_vm(tsk, addr, &data, sizeof(data), 1);
805 return (copied == sizeof(data)) ? 0 : -EIO;
806}
Roland McGrath032d82d2008-01-30 13:31:47 +0100807
Christoph Hellwig96b89362008-11-25 08:10:03 +0100808#if defined CONFIG_COMPAT
Roland McGrath032d82d2008-01-30 13:31:47 +0100809#include <linux/compat.h>
810
811int compat_ptrace_request(struct task_struct *child, compat_long_t request,
812 compat_ulong_t addr, compat_ulong_t data)
813{
814 compat_ulong_t __user *datap = compat_ptr(data);
815 compat_ulong_t word;
Roland McGrathe16b2782008-04-20 13:10:12 -0700816 siginfo_t siginfo;
Roland McGrath032d82d2008-01-30 13:31:47 +0100817 int ret;
818
819 switch (request) {
820 case PTRACE_PEEKTEXT:
821 case PTRACE_PEEKDATA:
822 ret = access_process_vm(child, addr, &word, sizeof(word), 0);
823 if (ret != sizeof(word))
824 ret = -EIO;
825 else
826 ret = put_user(word, datap);
827 break;
828
829 case PTRACE_POKETEXT:
830 case PTRACE_POKEDATA:
831 ret = access_process_vm(child, addr, &data, sizeof(data), 1);
832 ret = (ret != sizeof(data) ? -EIO : 0);
833 break;
834
835 case PTRACE_GETEVENTMSG:
836 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
837 break;
838
Roland McGrathe16b2782008-04-20 13:10:12 -0700839 case PTRACE_GETSIGINFO:
840 ret = ptrace_getsiginfo(child, &siginfo);
841 if (!ret)
842 ret = copy_siginfo_to_user32(
843 (struct compat_siginfo __user *) datap,
844 &siginfo);
845 break;
846
847 case PTRACE_SETSIGINFO:
848 memset(&siginfo, 0, sizeof siginfo);
849 if (copy_siginfo_from_user32(
850 &siginfo, (struct compat_siginfo __user *) datap))
851 ret = -EFAULT;
852 else
853 ret = ptrace_setsiginfo(child, &siginfo);
854 break;
Suresh Siddha2225a122010-02-11 11:51:00 -0800855#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
856 case PTRACE_GETREGSET:
857 case PTRACE_SETREGSET:
858 {
859 struct iovec kiov;
860 struct compat_iovec __user *uiov =
861 (struct compat_iovec __user *) datap;
862 compat_uptr_t ptr;
863 compat_size_t len;
864
865 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
866 return -EFAULT;
867
868 if (__get_user(ptr, &uiov->iov_base) ||
869 __get_user(len, &uiov->iov_len))
870 return -EFAULT;
871
872 kiov.iov_base = compat_ptr(ptr);
873 kiov.iov_len = len;
874
875 ret = ptrace_regset(child, request, addr, &kiov);
876 if (!ret)
877 ret = __put_user(kiov.iov_len, &uiov->iov_len);
878 break;
879 }
880#endif
Roland McGrathe16b2782008-04-20 13:10:12 -0700881
Roland McGrath032d82d2008-01-30 13:31:47 +0100882 default:
883 ret = ptrace_request(child, request, addr, data);
884 }
885
886 return ret;
887}
Roland McGrathc269f192008-01-30 13:31:48 +0100888
Roland McGrathc269f192008-01-30 13:31:48 +0100889asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
890 compat_long_t addr, compat_long_t data)
891{
892 struct task_struct *child;
893 long ret;
894
Roland McGrathc269f192008-01-30 13:31:48 +0100895 if (request == PTRACE_TRACEME) {
896 ret = ptrace_traceme();
897 goto out;
898 }
899
900 child = ptrace_get_task_struct(pid);
901 if (IS_ERR(child)) {
902 ret = PTR_ERR(child);
903 goto out;
904 }
905
906 if (request == PTRACE_ATTACH) {
907 ret = ptrace_attach(child);
908 /*
909 * Some architectures need to do book-keeping after
910 * a ptrace attach.
911 */
912 if (!ret)
913 arch_ptrace_attach(child);
914 goto out_put_task_struct;
915 }
916
917 ret = ptrace_check_attach(child, request == PTRACE_KILL);
918 if (!ret)
919 ret = compat_arch_ptrace(child, request, addr, data);
920
921 out_put_task_struct:
922 put_task_struct(child);
923 out:
Roland McGrathc269f192008-01-30 13:31:48 +0100924 return ret;
925}
Christoph Hellwig96b89362008-11-25 08:10:03 +0100926#endif /* CONFIG_COMPAT */
Frederic Weisbeckerbf26c012011-04-07 16:53:20 +0200927
928#ifdef CONFIG_HAVE_HW_BREAKPOINT
929int ptrace_get_breakpoints(struct task_struct *tsk)
930{
931 if (atomic_inc_not_zero(&tsk->ptrace_bp_refcnt))
932 return 0;
933
934 return -1;
935}
936
937void ptrace_put_breakpoints(struct task_struct *tsk)
938{
939 if (atomic_dec_and_test(&tsk->ptrace_bp_refcnt))
940 flush_ptrace_hw_breakpoint(tsk);
941}
942#endif /* CONFIG_HAVE_HW_BREAKPOINT */