ptrace: dont send SIGSTOP on auto-attach if PT_SEIZED
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / ptrace.c
CommitLineData
1da177e4
LT
1/*
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
c59ede7b 10#include <linux/capability.h>
1da177e4
LT
11#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>
1da177e4
LT
17#include <linux/ptrace.h>
18#include <linux/security.h>
7ed20e1a 19#include <linux/signal.h>
a5cb013d 20#include <linux/audit.h>
b488893a 21#include <linux/pid_namespace.h>
f17d30a8 22#include <linux/syscalls.h>
3a709703 23#include <linux/uaccess.h>
2225a122 24#include <linux/regset.h>
bf26c018 25#include <linux/hw_breakpoint.h>
1da177e4 26
bf53de90 27
62c124ff
TH
28static int ptrace_trapping_sleep_fn(void *flags)
29{
30 schedule();
31 return 0;
32}
33
1da177e4
LT
34/*
35 * ptrace a task: make the debugger its new parent and
36 * move it to the ptrace list.
37 *
38 * Must be called with the tasklist lock write-held.
39 */
36c8b586 40void __ptrace_link(struct task_struct *child, struct task_struct *new_parent)
1da177e4 41{
f470021a
RM
42 BUG_ON(!list_empty(&child->ptrace_entry));
43 list_add(&child->ptrace_entry, &new_parent->ptraced);
1da177e4 44 child->parent = new_parent;
1da177e4 45}
3a709703 46
e3bd058f
TH
47/**
48 * __ptrace_unlink - unlink ptracee and restore its execution state
49 * @child: ptracee to be unlinked
1da177e4 50 *
0e9f0a4a
TH
51 * Remove @child from the ptrace list, move it back to the original parent,
52 * and restore the execution state so that it conforms to the group stop
53 * state.
54 *
55 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
56 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
57 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
58 * If the ptracer is exiting, the ptracee can be in any state.
59 *
60 * After detach, the ptracee should be in a state which conforms to the
61 * group stop. If the group is stopped or in the process of stopping, the
62 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
63 * up from TASK_TRACED.
64 *
65 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
66 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
67 * to but in the opposite direction of what happens while attaching to a
68 * stopped task. However, in this direction, the intermediate RUNNING
69 * state is not hidden even from the current ptracer and if it immediately
70 * re-attaches and performs a WNOHANG wait(2), it may fail.
e3bd058f
TH
71 *
72 * CONTEXT:
73 * write_lock_irq(tasklist_lock)
1da177e4 74 */
36c8b586 75void __ptrace_unlink(struct task_struct *child)
1da177e4 76{
5ecfbae0
ON
77 BUG_ON(!child->ptrace);
78
1da177e4 79 child->ptrace = 0;
f470021a
RM
80 child->parent = child->real_parent;
81 list_del_init(&child->ptrace_entry);
1da177e4 82
1da177e4 83 spin_lock(&child->sighand->siglock);
0e9f0a4a 84
73ddff2b
TH
85 /*
86 * Clear all pending traps and TRAPPING. TRAPPING should be
87 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
88 */
89 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
90 task_clear_jobctl_trapping(child);
91
0e9f0a4a 92 /*
a8f072c1 93 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
0e9f0a4a
TH
94 * @child isn't dead.
95 */
96 if (!(child->flags & PF_EXITING) &&
97 (child->signal->flags & SIGNAL_STOP_STOPPED ||
98 child->signal->group_stop_count))
a8f072c1 99 child->jobctl |= JOBCTL_STOP_PENDING;
0e9f0a4a
TH
100
101 /*
102 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
103 * @child in the butt. Note that @resume should be used iff @child
104 * is in TASK_TRACED; otherwise, we might unduly disrupt
105 * TASK_KILLABLE sleeps.
106 */
a8f072c1 107 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
0e9f0a4a
TH
108 signal_wake_up(child, task_is_traced(child));
109
1da177e4 110 spin_unlock(&child->sighand->siglock);
1da177e4
LT
111}
112
755e276b
TH
113/**
114 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
115 * @child: ptracee to check for
116 * @ignore_state: don't check whether @child is currently %TASK_TRACED
117 *
118 * Check whether @child is being ptraced by %current and ready for further
119 * ptrace operations. If @ignore_state is %false, @child also should be in
120 * %TASK_TRACED state and on return the child is guaranteed to be traced
121 * and not executing. If @ignore_state is %true, @child can be in any
122 * state.
123 *
124 * CONTEXT:
125 * Grabs and releases tasklist_lock and @child->sighand->siglock.
126 *
127 * RETURNS:
128 * 0 on success, -ESRCH if %child is not ready.
1da177e4 129 */
755e276b 130int ptrace_check_attach(struct task_struct *child, bool ignore_state)
1da177e4
LT
131{
132 int ret = -ESRCH;
133
134 /*
135 * We take the read lock around doing both checks to close a
136 * possible race where someone else was tracing our child and
137 * detached between these two checks. After this locked check,
138 * we are sure that this is our traced child and that can only
139 * be changed by us so it's not changing right after this.
140 */
141 read_lock(&tasklist_lock);
c0c0b649 142 if ((child->ptrace & PT_PTRACED) && child->parent == current) {
c0c0b649
ON
143 /*
144 * child->sighand can't be NULL, release_task()
145 * does ptrace_unlink() before __exit_signal().
146 */
1da177e4 147 spin_lock_irq(&child->sighand->siglock);
321fb561 148 WARN_ON_ONCE(task_is_stopped(child));
544b2c91
TH
149 if (ignore_state || (task_is_traced(child) &&
150 !(child->jobctl & JOBCTL_LISTENING)))
321fb561 151 ret = 0;
1da177e4
LT
152 spin_unlock_irq(&child->sighand->siglock);
153 }
154 read_unlock(&tasklist_lock);
155
755e276b 156 if (!ret && !ignore_state)
85ba2d86 157 ret = wait_task_inactive(child, TASK_TRACED) ? 0 : -ESRCH;
1da177e4
LT
158
159 /* All systems go.. */
160 return ret;
161}
162
006ebb40 163int __ptrace_may_access(struct task_struct *task, unsigned int mode)
ab8d11be 164{
c69e8d9c 165 const struct cred *cred = current_cred(), *tcred;
b6dff3ec 166
df26c40e
EB
167 /* May we inspect the given task?
168 * This check is used both for attaching with ptrace
169 * and for allowing access to sensitive information in /proc.
170 *
171 * ptrace_attach denies several cases that /proc allows
172 * because setting up the necessary parent/child relationship
173 * or halting the specified task is impossible.
174 */
175 int dumpable = 0;
176 /* Don't let security modules deny introspection */
177 if (task == current)
178 return 0;
c69e8d9c
DH
179 rcu_read_lock();
180 tcred = __task_cred(task);
8409cca7
SH
181 if (cred->user->user_ns == tcred->user->user_ns &&
182 (cred->uid == tcred->euid &&
183 cred->uid == tcred->suid &&
184 cred->uid == tcred->uid &&
185 cred->gid == tcred->egid &&
186 cred->gid == tcred->sgid &&
187 cred->gid == tcred->gid))
188 goto ok;
189 if (ns_capable(tcred->user->user_ns, CAP_SYS_PTRACE))
190 goto ok;
191 rcu_read_unlock();
192 return -EPERM;
193ok:
c69e8d9c 194 rcu_read_unlock();
ab8d11be 195 smp_rmb();
df26c40e 196 if (task->mm)
6c5d5238 197 dumpable = get_dumpable(task->mm);
8409cca7 198 if (!dumpable && !task_ns_capable(task, CAP_SYS_PTRACE))
ab8d11be
MS
199 return -EPERM;
200
9e48858f 201 return security_ptrace_access_check(task, mode);
ab8d11be
MS
202}
203
006ebb40 204bool ptrace_may_access(struct task_struct *task, unsigned int mode)
ab8d11be
MS
205{
206 int err;
207 task_lock(task);
006ebb40 208 err = __ptrace_may_access(task, mode);
ab8d11be 209 task_unlock(task);
3a709703 210 return !err;
ab8d11be
MS
211}
212
3544d72a
TH
213static int ptrace_attach(struct task_struct *task, long request,
214 unsigned long flags)
1da177e4 215{
3544d72a 216 bool seize = (request == PTRACE_SEIZE);
1da177e4 217 int retval;
f5b40e36 218
3544d72a
TH
219 /*
220 * SEIZE will enable new ptrace behaviors which will be implemented
221 * gradually. SEIZE_DEVEL is used to prevent applications
222 * expecting full SEIZE behaviors trapping on kernel commits which
223 * are still in the process of implementing them.
224 *
225 * Only test programs for new ptrace behaviors being implemented
226 * should set SEIZE_DEVEL. If unset, SEIZE will fail with -EIO.
227 *
228 * Once SEIZE behaviors are completely implemented, this flag and
229 * the following test will be removed.
230 */
231 retval = -EIO;
232 if (seize && !(flags & PTRACE_SEIZE_DEVEL))
233 goto out;
234
a5cb013d
AV
235 audit_ptrace(task);
236
1da177e4 237 retval = -EPERM;
b79b7ba9
ON
238 if (unlikely(task->flags & PF_KTHREAD))
239 goto out;
bac0abd6 240 if (same_thread_group(task, current))
f5b40e36
LT
241 goto out;
242
f2f0b00a
ON
243 /*
244 * Protect exec's credential calculations against our interference;
5e751e99
DH
245 * interference; SUID, SGID and LSM creds get determined differently
246 * under ptrace.
d84f4f99 247 */
793285fc 248 retval = -ERESTARTNOINTR;
9b1bf12d 249 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
d84f4f99 250 goto out;
f5b40e36 251
4b105cbb 252 task_lock(task);
006ebb40 253 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH);
4b105cbb 254 task_unlock(task);
1da177e4 255 if (retval)
4b105cbb 256 goto unlock_creds;
1da177e4 257
4b105cbb 258 write_lock_irq(&tasklist_lock);
b79b7ba9
ON
259 retval = -EPERM;
260 if (unlikely(task->exit_state))
4b105cbb 261 goto unlock_tasklist;
f2f0b00a 262 if (task->ptrace)
4b105cbb 263 goto unlock_tasklist;
b79b7ba9 264
f2f0b00a 265 task->ptrace = PT_PTRACED;
3544d72a
TH
266 if (seize)
267 task->ptrace |= PT_SEIZED;
8409cca7 268 if (task_ns_capable(task, CAP_SYS_PTRACE))
1da177e4 269 task->ptrace |= PT_PTRACE_CAP;
1da177e4 270
1da177e4 271 __ptrace_link(task, current);
3544d72a
TH
272
273 /* SEIZE doesn't trap tracee on attach */
274 if (!seize)
275 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
b79b7ba9 276
d79fdd6d
TH
277 spin_lock(&task->sighand->siglock);
278
279 /*
73ddff2b 280 * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
d79fdd6d
TH
281 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
282 * will be cleared if the child completes the transition or any
283 * event which clears the group stop states happens. We'll wait
284 * for the transition to complete before returning from this
285 * function.
286 *
287 * This hides STOPPED -> RUNNING -> TRACED transition from the
288 * attaching thread but a different thread in the same group can
289 * still observe the transient RUNNING state. IOW, if another
290 * thread's WNOHANG wait(2) on the stopped tracee races against
291 * ATTACH, the wait(2) may fail due to the transient RUNNING.
292 *
293 * The following task_is_stopped() test is safe as both transitions
294 * in and out of STOPPED are protected by siglock.
295 */
7dd3db54 296 if (task_is_stopped(task) &&
73ddff2b 297 task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
d79fdd6d 298 signal_wake_up(task, 1);
d79fdd6d
TH
299
300 spin_unlock(&task->sighand->siglock);
301
b79b7ba9 302 retval = 0;
4b105cbb
ON
303unlock_tasklist:
304 write_unlock_irq(&tasklist_lock);
305unlock_creds:
9b1bf12d 306 mutex_unlock(&task->signal->cred_guard_mutex);
f5b40e36 307out:
0b1007c3 308 if (!retval)
62c124ff
TH
309 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT,
310 ptrace_trapping_sleep_fn, TASK_UNINTERRUPTIBLE);
1da177e4
LT
311 return retval;
312}
313
f2f0b00a
ON
314/**
315 * ptrace_traceme -- helper for PTRACE_TRACEME
316 *
317 * Performs checks and sets PT_PTRACED.
318 * Should be used by all ptrace implementations for PTRACE_TRACEME.
319 */
e3e89cc5 320static int ptrace_traceme(void)
f2f0b00a
ON
321{
322 int ret = -EPERM;
323
4b105cbb
ON
324 write_lock_irq(&tasklist_lock);
325 /* Are we already being traced? */
f2f0b00a 326 if (!current->ptrace) {
f2f0b00a 327 ret = security_ptrace_traceme(current->parent);
f2f0b00a
ON
328 /*
329 * Check PF_EXITING to ensure ->real_parent has not passed
330 * exit_ptrace(). Otherwise we don't report the error but
331 * pretend ->real_parent untraces us right after return.
332 */
333 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
334 current->ptrace = PT_PTRACED;
335 __ptrace_link(current, current->real_parent);
336 }
f2f0b00a 337 }
4b105cbb
ON
338 write_unlock_irq(&tasklist_lock);
339
f2f0b00a
ON
340 return ret;
341}
342
39c626ae
ON
343/*
344 * Called with irqs disabled, returns true if childs should reap themselves.
345 */
346static int ignoring_children(struct sighand_struct *sigh)
347{
348 int ret;
349 spin_lock(&sigh->siglock);
350 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
351 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
352 spin_unlock(&sigh->siglock);
353 return ret;
354}
355
356/*
357 * Called with tasklist_lock held for writing.
358 * Unlink a traced task, and clean it up if it was a traced zombie.
359 * Return true if it needs to be reaped with release_task().
360 * (We can't call release_task() here because we already hold tasklist_lock.)
361 *
362 * If it's a zombie, our attachedness prevented normal parent notification
363 * or self-reaping. Do notification now if it would have happened earlier.
364 * If it should reap itself, return true.
365 *
a7f0765e
ON
366 * If it's our own child, there is no notification to do. But if our normal
367 * children self-reap, then this child was prevented by ptrace and we must
368 * reap it now, in that case we must also wake up sub-threads sleeping in
369 * do_wait().
39c626ae
ON
370 */
371static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
372{
9843a1e9
ON
373 bool dead;
374
39c626ae
ON
375 __ptrace_unlink(p);
376
9843a1e9
ON
377 if (p->exit_state != EXIT_ZOMBIE)
378 return false;
379
380 dead = !thread_group_leader(p);
381
382 if (!dead && thread_group_empty(p)) {
383 if (!same_thread_group(p->real_parent, tracer))
384 dead = do_notify_parent(p, p->exit_signal);
385 else if (ignoring_children(tracer->sighand)) {
386 __wake_up_parent(p, tracer);
9843a1e9 387 dead = true;
39c626ae
ON
388 }
389 }
9843a1e9
ON
390 /* Mark it as in the process of being reaped. */
391 if (dead)
392 p->exit_state = EXIT_DEAD;
393 return dead;
39c626ae
ON
394}
395
e3e89cc5 396static int ptrace_detach(struct task_struct *child, unsigned int data)
1da177e4 397{
39c626ae 398 bool dead = false;
4576145c 399
7ed20e1a 400 if (!valid_signal(data))
5ecfbae0 401 return -EIO;
1da177e4
LT
402
403 /* Architecture-specific hardware disable .. */
404 ptrace_disable(child);
7d941432 405 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
1da177e4 406
95c3eb76 407 write_lock_irq(&tasklist_lock);
39c626ae
ON
408 /*
409 * This child can be already killed. Make sure de_thread() or
410 * our sub-thread doing do_wait() didn't do release_task() yet.
411 */
95c3eb76
ON
412 if (child->ptrace) {
413 child->exit_code = data;
4576145c 414 dead = __ptrace_detach(current, child);
95c3eb76 415 }
1da177e4
LT
416 write_unlock_irq(&tasklist_lock);
417
4576145c
ON
418 if (unlikely(dead))
419 release_task(child);
420
1da177e4
LT
421 return 0;
422}
423
39c626ae 424/*
c7e49c14
ON
425 * Detach all tasks we were using ptrace on. Called with tasklist held
426 * for writing, and returns with it held too. But note it can release
427 * and reacquire the lock.
39c626ae
ON
428 */
429void exit_ptrace(struct task_struct *tracer)
c4b5ed25
NK
430 __releases(&tasklist_lock)
431 __acquires(&tasklist_lock)
39c626ae
ON
432{
433 struct task_struct *p, *n;
434 LIST_HEAD(ptrace_dead);
435
c7e49c14
ON
436 if (likely(list_empty(&tracer->ptraced)))
437 return;
438
39c626ae
ON
439 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
440 if (__ptrace_detach(tracer, p))
441 list_add(&p->ptrace_entry, &ptrace_dead);
442 }
39c626ae 443
c7e49c14 444 write_unlock_irq(&tasklist_lock);
39c626ae
ON
445 BUG_ON(!list_empty(&tracer->ptraced));
446
447 list_for_each_entry_safe(p, n, &ptrace_dead, ptrace_entry) {
448 list_del_init(&p->ptrace_entry);
449 release_task(p);
450 }
c7e49c14
ON
451
452 write_lock_irq(&tasklist_lock);
39c626ae
ON
453}
454
1da177e4
LT
455int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
456{
457 int copied = 0;
458
459 while (len > 0) {
460 char buf[128];
461 int this_len, retval;
462
463 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
464 retval = access_process_vm(tsk, src, buf, this_len, 0);
465 if (!retval) {
466 if (copied)
467 break;
468 return -EIO;
469 }
470 if (copy_to_user(dst, buf, retval))
471 return -EFAULT;
472 copied += retval;
473 src += retval;
474 dst += retval;
3a709703 475 len -= retval;
1da177e4
LT
476 }
477 return copied;
478}
479
480int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
481{
482 int copied = 0;
483
484 while (len > 0) {
485 char buf[128];
486 int this_len, retval;
487
488 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
489 if (copy_from_user(buf, src, this_len))
490 return -EFAULT;
491 retval = access_process_vm(tsk, dst, buf, this_len, 1);
492 if (!retval) {
493 if (copied)
494 break;
495 return -EIO;
496 }
497 copied += retval;
498 src += retval;
499 dst += retval;
3a709703 500 len -= retval;
1da177e4
LT
501 }
502 return copied;
503}
504
4abf9869 505static int ptrace_setoptions(struct task_struct *child, unsigned long data)
1da177e4
LT
506{
507 child->ptrace &= ~PT_TRACE_MASK;
508
509 if (data & PTRACE_O_TRACESYSGOOD)
510 child->ptrace |= PT_TRACESYSGOOD;
511
512 if (data & PTRACE_O_TRACEFORK)
513 child->ptrace |= PT_TRACE_FORK;
514
515 if (data & PTRACE_O_TRACEVFORK)
516 child->ptrace |= PT_TRACE_VFORK;
517
518 if (data & PTRACE_O_TRACECLONE)
519 child->ptrace |= PT_TRACE_CLONE;
520
521 if (data & PTRACE_O_TRACEEXEC)
522 child->ptrace |= PT_TRACE_EXEC;
523
524 if (data & PTRACE_O_TRACEVFORKDONE)
525 child->ptrace |= PT_TRACE_VFORK_DONE;
526
527 if (data & PTRACE_O_TRACEEXIT)
528 child->ptrace |= PT_TRACE_EXIT;
529
530 return (data & ~PTRACE_O_MASK) ? -EINVAL : 0;
531}
532
e16b2781 533static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
1da177e4 534{
e4961254 535 unsigned long flags;
1da177e4
LT
536 int error = -ESRCH;
537
e4961254 538 if (lock_task_sighand(child, &flags)) {
1da177e4 539 error = -EINVAL;
1da177e4 540 if (likely(child->last_siginfo != NULL)) {
e16b2781 541 *info = *child->last_siginfo;
1da177e4
LT
542 error = 0;
543 }
e4961254 544 unlock_task_sighand(child, &flags);
1da177e4 545 }
1da177e4
LT
546 return error;
547}
548
e16b2781 549static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
1da177e4 550{
e4961254 551 unsigned long flags;
1da177e4
LT
552 int error = -ESRCH;
553
e4961254 554 if (lock_task_sighand(child, &flags)) {
1da177e4 555 error = -EINVAL;
1da177e4 556 if (likely(child->last_siginfo != NULL)) {
e16b2781 557 *child->last_siginfo = *info;
1da177e4
LT
558 error = 0;
559 }
e4961254 560 unlock_task_sighand(child, &flags);
1da177e4 561 }
1da177e4
LT
562 return error;
563}
564
36df29d7
RM
565
566#ifdef PTRACE_SINGLESTEP
567#define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
568#else
569#define is_singlestep(request) 0
570#endif
571
5b88abbf
RM
572#ifdef PTRACE_SINGLEBLOCK
573#define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
574#else
575#define is_singleblock(request) 0
576#endif
577
36df29d7
RM
578#ifdef PTRACE_SYSEMU
579#define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
580#else
581#define is_sysemu_singlestep(request) 0
582#endif
583
4abf9869
NK
584static int ptrace_resume(struct task_struct *child, long request,
585 unsigned long data)
36df29d7
RM
586{
587 if (!valid_signal(data))
588 return -EIO;
589
590 if (request == PTRACE_SYSCALL)
591 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
592 else
593 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
594
595#ifdef TIF_SYSCALL_EMU
596 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
597 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
598 else
599 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
600#endif
601
5b88abbf
RM
602 if (is_singleblock(request)) {
603 if (unlikely(!arch_has_block_step()))
604 return -EIO;
605 user_enable_block_step(child);
606 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
36df29d7
RM
607 if (unlikely(!arch_has_single_step()))
608 return -EIO;
609 user_enable_single_step(child);
3a709703 610 } else {
36df29d7 611 user_disable_single_step(child);
3a709703 612 }
36df29d7
RM
613
614 child->exit_code = data;
0666fb51 615 wake_up_state(child, __TASK_TRACED);
36df29d7
RM
616
617 return 0;
618}
619
2225a122
SS
620#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
621
622static const struct user_regset *
623find_regset(const struct user_regset_view *view, unsigned int type)
624{
625 const struct user_regset *regset;
626 int n;
627
628 for (n = 0; n < view->n; ++n) {
629 regset = view->regsets + n;
630 if (regset->core_note_type == type)
631 return regset;
632 }
633
634 return NULL;
635}
636
637static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
638 struct iovec *kiov)
639{
640 const struct user_regset_view *view = task_user_regset_view(task);
641 const struct user_regset *regset = find_regset(view, type);
642 int regset_no;
643
644 if (!regset || (kiov->iov_len % regset->size) != 0)
c6a0dd7e 645 return -EINVAL;
2225a122
SS
646
647 regset_no = regset - view->regsets;
648 kiov->iov_len = min(kiov->iov_len,
649 (__kernel_size_t) (regset->n * regset->size));
650
651 if (req == PTRACE_GETREGSET)
652 return copy_regset_to_user(task, view, regset_no, 0,
653 kiov->iov_len, kiov->iov_base);
654 else
655 return copy_regset_from_user(task, view, regset_no, 0,
656 kiov->iov_len, kiov->iov_base);
657}
658
659#endif
660
1da177e4 661int ptrace_request(struct task_struct *child, long request,
4abf9869 662 unsigned long addr, unsigned long data)
1da177e4 663{
fca26f26 664 bool seized = child->ptrace & PT_SEIZED;
1da177e4 665 int ret = -EIO;
544b2c91 666 siginfo_t siginfo, *si;
9fed81dc
NK
667 void __user *datavp = (void __user *) data;
668 unsigned long __user *datalp = datavp;
fca26f26 669 unsigned long flags;
1da177e4
LT
670
671 switch (request) {
16c3e389
RM
672 case PTRACE_PEEKTEXT:
673 case PTRACE_PEEKDATA:
674 return generic_ptrace_peekdata(child, addr, data);
675 case PTRACE_POKETEXT:
676 case PTRACE_POKEDATA:
677 return generic_ptrace_pokedata(child, addr, data);
678
1da177e4
LT
679#ifdef PTRACE_OLDSETOPTIONS
680 case PTRACE_OLDSETOPTIONS:
681#endif
682 case PTRACE_SETOPTIONS:
683 ret = ptrace_setoptions(child, data);
684 break;
685 case PTRACE_GETEVENTMSG:
9fed81dc 686 ret = put_user(child->ptrace_message, datalp);
1da177e4 687 break;
e16b2781 688
1da177e4 689 case PTRACE_GETSIGINFO:
e16b2781
RM
690 ret = ptrace_getsiginfo(child, &siginfo);
691 if (!ret)
9fed81dc 692 ret = copy_siginfo_to_user(datavp, &siginfo);
1da177e4 693 break;
e16b2781 694
1da177e4 695 case PTRACE_SETSIGINFO:
9fed81dc 696 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
e16b2781
RM
697 ret = -EFAULT;
698 else
699 ret = ptrace_setsiginfo(child, &siginfo);
1da177e4 700 break;
e16b2781 701
fca26f26
TH
702 case PTRACE_INTERRUPT:
703 /*
704 * Stop tracee without any side-effect on signal or job
705 * control. At least one trap is guaranteed to happen
706 * after this request. If @child is already trapped, the
707 * current trap is not disturbed and another trap will
708 * happen after the current trap is ended with PTRACE_CONT.
709 *
710 * The actual trap might not be PTRACE_EVENT_STOP trap but
711 * the pending condition is cleared regardless.
712 */
713 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
714 break;
715
544b2c91
TH
716 /*
717 * INTERRUPT doesn't disturb existing trap sans one
718 * exception. If ptracer issued LISTEN for the current
719 * STOP, this INTERRUPT should clear LISTEN and re-trap
720 * tracee into STOP.
721 */
fca26f26 722 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
544b2c91
TH
723 signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
724
725 unlock_task_sighand(child, &flags);
726 ret = 0;
727 break;
728
729 case PTRACE_LISTEN:
730 /*
731 * Listen for events. Tracee must be in STOP. It's not
732 * resumed per-se but is not considered to be in TRACED by
733 * wait(2) or ptrace(2). If an async event (e.g. group
734 * stop state change) happens, tracee will enter STOP trap
735 * again. Alternatively, ptracer can issue INTERRUPT to
736 * finish listening and re-trap tracee into STOP.
737 */
738 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
739 break;
740
741 si = child->last_siginfo;
742 if (unlikely(!si || si->si_code >> 8 != PTRACE_EVENT_STOP))
743 break;
744
745 child->jobctl |= JOBCTL_LISTENING;
746
747 /*
748 * If NOTIFY is set, it means event happened between start
749 * of this trap and now. Trigger re-trap immediately.
750 */
751 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
752 signal_wake_up(child, true);
fca26f26
TH
753
754 unlock_task_sighand(child, &flags);
755 ret = 0;
756 break;
757
1bcf5482
AD
758 case PTRACE_DETACH: /* detach a process that was attached. */
759 ret = ptrace_detach(child, data);
760 break;
36df29d7 761
9c1a1259
MF
762#ifdef CONFIG_BINFMT_ELF_FDPIC
763 case PTRACE_GETFDPIC: {
e0129ef9 764 struct mm_struct *mm = get_task_mm(child);
9c1a1259
MF
765 unsigned long tmp = 0;
766
e0129ef9
ON
767 ret = -ESRCH;
768 if (!mm)
769 break;
770
9c1a1259
MF
771 switch (addr) {
772 case PTRACE_GETFDPIC_EXEC:
e0129ef9 773 tmp = mm->context.exec_fdpic_loadmap;
9c1a1259
MF
774 break;
775 case PTRACE_GETFDPIC_INTERP:
e0129ef9 776 tmp = mm->context.interp_fdpic_loadmap;
9c1a1259
MF
777 break;
778 default:
779 break;
780 }
e0129ef9 781 mmput(mm);
9c1a1259 782
9fed81dc 783 ret = put_user(tmp, datalp);
9c1a1259
MF
784 break;
785 }
786#endif
787
36df29d7
RM
788#ifdef PTRACE_SINGLESTEP
789 case PTRACE_SINGLESTEP:
790#endif
5b88abbf
RM
791#ifdef PTRACE_SINGLEBLOCK
792 case PTRACE_SINGLEBLOCK:
793#endif
36df29d7
RM
794#ifdef PTRACE_SYSEMU
795 case PTRACE_SYSEMU:
796 case PTRACE_SYSEMU_SINGLESTEP:
797#endif
798 case PTRACE_SYSCALL:
799 case PTRACE_CONT:
800 return ptrace_resume(child, request, data);
801
802 case PTRACE_KILL:
803 if (child->exit_state) /* already dead */
804 return 0;
805 return ptrace_resume(child, request, SIGKILL);
806
2225a122
SS
807#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
808 case PTRACE_GETREGSET:
809 case PTRACE_SETREGSET:
810 {
811 struct iovec kiov;
9fed81dc 812 struct iovec __user *uiov = datavp;
2225a122
SS
813
814 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
815 return -EFAULT;
816
817 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
818 __get_user(kiov.iov_len, &uiov->iov_len))
819 return -EFAULT;
820
821 ret = ptrace_regset(child, request, addr, &kiov);
822 if (!ret)
823 ret = __put_user(kiov.iov_len, &uiov->iov_len);
824 break;
825 }
826#endif
1da177e4
LT
827 default:
828 break;
829 }
830
831 return ret;
832}
481bed45 833
8053bdd5 834static struct task_struct *ptrace_get_task_struct(pid_t pid)
6b9c7ed8
CH
835{
836 struct task_struct *child;
481bed45 837
8053bdd5 838 rcu_read_lock();
228ebcbe 839 child = find_task_by_vpid(pid);
481bed45
CH
840 if (child)
841 get_task_struct(child);
8053bdd5 842 rcu_read_unlock();
f400e198 843
481bed45 844 if (!child)
6b9c7ed8
CH
845 return ERR_PTR(-ESRCH);
846 return child;
481bed45
CH
847}
848
0ac15559
CH
849#ifndef arch_ptrace_attach
850#define arch_ptrace_attach(child) do { } while (0)
851#endif
852
4abf9869
NK
853SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
854 unsigned long, data)
481bed45
CH
855{
856 struct task_struct *child;
857 long ret;
858
6b9c7ed8
CH
859 if (request == PTRACE_TRACEME) {
860 ret = ptrace_traceme();
6ea6dd93
HS
861 if (!ret)
862 arch_ptrace_attach(current);
481bed45 863 goto out;
6b9c7ed8
CH
864 }
865
866 child = ptrace_get_task_struct(pid);
867 if (IS_ERR(child)) {
868 ret = PTR_ERR(child);
869 goto out;
870 }
481bed45 871
3544d72a
TH
872 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
873 ret = ptrace_attach(child, request, data);
0ac15559
CH
874 /*
875 * Some architectures need to do book-keeping after
876 * a ptrace attach.
877 */
878 if (!ret)
879 arch_ptrace_attach(child);
005f18df 880 goto out_put_task_struct;
481bed45
CH
881 }
882
fca26f26
TH
883 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
884 request == PTRACE_INTERRUPT);
481bed45
CH
885 if (ret < 0)
886 goto out_put_task_struct;
887
888 ret = arch_ptrace(child, request, addr, data);
481bed45
CH
889
890 out_put_task_struct:
891 put_task_struct(child);
892 out:
481bed45
CH
893 return ret;
894}
76647323 895
4abf9869
NK
896int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
897 unsigned long data)
76647323
AD
898{
899 unsigned long tmp;
900 int copied;
901
902 copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
903 if (copied != sizeof(tmp))
904 return -EIO;
905 return put_user(tmp, (unsigned long __user *)data);
906}
f284ce72 907
4abf9869
NK
908int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
909 unsigned long data)
f284ce72
AD
910{
911 int copied;
912
913 copied = access_process_vm(tsk, addr, &data, sizeof(data), 1);
914 return (copied == sizeof(data)) ? 0 : -EIO;
915}
032d82d9 916
96b8936a 917#if defined CONFIG_COMPAT
032d82d9
RM
918#include <linux/compat.h>
919
920int compat_ptrace_request(struct task_struct *child, compat_long_t request,
921 compat_ulong_t addr, compat_ulong_t data)
922{
923 compat_ulong_t __user *datap = compat_ptr(data);
924 compat_ulong_t word;
e16b2781 925 siginfo_t siginfo;
032d82d9
RM
926 int ret;
927
928 switch (request) {
929 case PTRACE_PEEKTEXT:
930 case PTRACE_PEEKDATA:
931 ret = access_process_vm(child, addr, &word, sizeof(word), 0);
932 if (ret != sizeof(word))
933 ret = -EIO;
934 else
935 ret = put_user(word, datap);
936 break;
937
938 case PTRACE_POKETEXT:
939 case PTRACE_POKEDATA:
940 ret = access_process_vm(child, addr, &data, sizeof(data), 1);
941 ret = (ret != sizeof(data) ? -EIO : 0);
942 break;
943
944 case PTRACE_GETEVENTMSG:
945 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
946 break;
947
e16b2781
RM
948 case PTRACE_GETSIGINFO:
949 ret = ptrace_getsiginfo(child, &siginfo);
950 if (!ret)
951 ret = copy_siginfo_to_user32(
952 (struct compat_siginfo __user *) datap,
953 &siginfo);
954 break;
955
956 case PTRACE_SETSIGINFO:
957 memset(&siginfo, 0, sizeof siginfo);
958 if (copy_siginfo_from_user32(
959 &siginfo, (struct compat_siginfo __user *) datap))
960 ret = -EFAULT;
961 else
962 ret = ptrace_setsiginfo(child, &siginfo);
963 break;
2225a122
SS
964#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
965 case PTRACE_GETREGSET:
966 case PTRACE_SETREGSET:
967 {
968 struct iovec kiov;
969 struct compat_iovec __user *uiov =
970 (struct compat_iovec __user *) datap;
971 compat_uptr_t ptr;
972 compat_size_t len;
973
974 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
975 return -EFAULT;
976
977 if (__get_user(ptr, &uiov->iov_base) ||
978 __get_user(len, &uiov->iov_len))
979 return -EFAULT;
980
981 kiov.iov_base = compat_ptr(ptr);
982 kiov.iov_len = len;
983
984 ret = ptrace_regset(child, request, addr, &kiov);
985 if (!ret)
986 ret = __put_user(kiov.iov_len, &uiov->iov_len);
987 break;
988 }
989#endif
e16b2781 990
032d82d9
RM
991 default:
992 ret = ptrace_request(child, request, addr, data);
993 }
994
995 return ret;
996}
c269f196 997
c269f196
RM
998asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
999 compat_long_t addr, compat_long_t data)
1000{
1001 struct task_struct *child;
1002 long ret;
1003
c269f196
RM
1004 if (request == PTRACE_TRACEME) {
1005 ret = ptrace_traceme();
1006 goto out;
1007 }
1008
1009 child = ptrace_get_task_struct(pid);
1010 if (IS_ERR(child)) {
1011 ret = PTR_ERR(child);
1012 goto out;
1013 }
1014
3544d72a
TH
1015 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
1016 ret = ptrace_attach(child, request, data);
c269f196
RM
1017 /*
1018 * Some architectures need to do book-keeping after
1019 * a ptrace attach.
1020 */
1021 if (!ret)
1022 arch_ptrace_attach(child);
1023 goto out_put_task_struct;
1024 }
1025
fca26f26
TH
1026 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1027 request == PTRACE_INTERRUPT);
c269f196
RM
1028 if (!ret)
1029 ret = compat_arch_ptrace(child, request, addr, data);
1030
1031 out_put_task_struct:
1032 put_task_struct(child);
1033 out:
c269f196
RM
1034 return ret;
1035}
96b8936a 1036#endif /* CONFIG_COMPAT */
bf26c018
FW
1037
1038#ifdef CONFIG_HAVE_HW_BREAKPOINT
1039int ptrace_get_breakpoints(struct task_struct *tsk)
1040{
1041 if (atomic_inc_not_zero(&tsk->ptrace_bp_refcnt))
1042 return 0;
1043
1044 return -1;
1045}
1046
1047void ptrace_put_breakpoints(struct task_struct *tsk)
1048{
1049 if (atomic_dec_and_test(&tsk->ptrace_bp_refcnt))
1050 flush_ptrace_hw_breakpoint(tsk);
1051}
1052#endif /* CONFIG_HAVE_HW_BREAKPOINT */