]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/ptrace.c
cpu/SMT: State SMT is disabled even with nosmt and without "=force"
[mirror_ubuntu-bionic-kernel.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>
9984de1a 11#include <linux/export.h>
1da177e4 12#include <linux/sched.h>
6e84f315 13#include <linux/sched/mm.h>
f7ccbae4 14#include <linux/sched/coredump.h>
29930025 15#include <linux/sched/task.h>
1da177e4
LT
16#include <linux/errno.h>
17#include <linux/mm.h>
18#include <linux/highmem.h>
19#include <linux/pagemap.h>
1da177e4
LT
20#include <linux/ptrace.h>
21#include <linux/security.h>
7ed20e1a 22#include <linux/signal.h>
a27bb332 23#include <linux/uio.h>
a5cb013d 24#include <linux/audit.h>
b488893a 25#include <linux/pid_namespace.h>
f17d30a8 26#include <linux/syscalls.h>
3a709703 27#include <linux/uaccess.h>
2225a122 28#include <linux/regset.h>
bf26c018 29#include <linux/hw_breakpoint.h>
f701e5b7 30#include <linux/cn_proc.h>
84c751bd 31#include <linux/compat.h>
b40eae61 32#include <linux/sched/signal.h>
1da177e4 33
84d77d3f
EB
34/*
35 * Access another process' address space via ptrace.
36 * Source/target buffer must be kernel space,
37 * Do not walk the page table directly, use get_user_pages
38 */
39int ptrace_access_vm(struct task_struct *tsk, unsigned long addr,
40 void *buf, int len, unsigned int gup_flags)
41{
42 struct mm_struct *mm;
43 int ret;
44
45 mm = get_task_mm(tsk);
46 if (!mm)
47 return 0;
48
49 if (!tsk->ptrace ||
50 (current != tsk->parent) ||
51 ((get_dumpable(mm) != SUID_DUMP_USER) &&
52 !ptracer_capable(tsk, mm->user_ns))) {
53 mmput(mm);
54 return 0;
55 }
56
57 ret = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags);
58 mmput(mm);
59
60 return ret;
61}
62
bf53de90 63
c70d9d80
EB
64void __ptrace_link(struct task_struct *child, struct task_struct *new_parent,
65 const struct cred *ptracer_cred)
66{
67 BUG_ON(!list_empty(&child->ptrace_entry));
68 list_add(&child->ptrace_entry, &new_parent->ptraced);
69 child->parent = new_parent;
70 child->ptracer_cred = get_cred(ptracer_cred);
71}
72
1da177e4
LT
73/*
74 * ptrace a task: make the debugger its new parent and
75 * move it to the ptrace list.
76 *
77 * Must be called with the tasklist lock write-held.
78 */
c70d9d80 79static void ptrace_link(struct task_struct *child, struct task_struct *new_parent)
1da177e4 80{
7788507d 81 __ptrace_link(child, new_parent, current_cred());
1da177e4 82}
3a709703 83
e3bd058f
TH
84/**
85 * __ptrace_unlink - unlink ptracee and restore its execution state
86 * @child: ptracee to be unlinked
1da177e4 87 *
0e9f0a4a
TH
88 * Remove @child from the ptrace list, move it back to the original parent,
89 * and restore the execution state so that it conforms to the group stop
90 * state.
91 *
92 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
93 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
94 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
95 * If the ptracer is exiting, the ptracee can be in any state.
96 *
97 * After detach, the ptracee should be in a state which conforms to the
98 * group stop. If the group is stopped or in the process of stopping, the
99 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
100 * up from TASK_TRACED.
101 *
102 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
103 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
104 * to but in the opposite direction of what happens while attaching to a
105 * stopped task. However, in this direction, the intermediate RUNNING
106 * state is not hidden even from the current ptracer and if it immediately
107 * re-attaches and performs a WNOHANG wait(2), it may fail.
e3bd058f
TH
108 *
109 * CONTEXT:
110 * write_lock_irq(tasklist_lock)
1da177e4 111 */
36c8b586 112void __ptrace_unlink(struct task_struct *child)
1da177e4 113{
64b875f7 114 const struct cred *old_cred;
5ecfbae0
ON
115 BUG_ON(!child->ptrace);
116
0a5bf409
AN
117 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
118
f470021a
RM
119 child->parent = child->real_parent;
120 list_del_init(&child->ptrace_entry);
64b875f7
EB
121 old_cred = child->ptracer_cred;
122 child->ptracer_cred = NULL;
123 put_cred(old_cred);
1da177e4 124
1da177e4 125 spin_lock(&child->sighand->siglock);
1333ab03 126 child->ptrace = 0;
73ddff2b
TH
127 /*
128 * Clear all pending traps and TRAPPING. TRAPPING should be
129 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
130 */
131 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
132 task_clear_jobctl_trapping(child);
133
0e9f0a4a 134 /*
a8f072c1 135 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
0e9f0a4a
TH
136 * @child isn't dead.
137 */
138 if (!(child->flags & PF_EXITING) &&
139 (child->signal->flags & SIGNAL_STOP_STOPPED ||
8a88951b 140 child->signal->group_stop_count)) {
a8f072c1 141 child->jobctl |= JOBCTL_STOP_PENDING;
0e9f0a4a 142
8a88951b
ON
143 /*
144 * This is only possible if this thread was cloned by the
145 * traced task running in the stopped group, set the signal
146 * for the future reports.
147 * FIXME: we should change ptrace_init_task() to handle this
148 * case.
149 */
150 if (!(child->jobctl & JOBCTL_STOP_SIGMASK))
151 child->jobctl |= SIGSTOP;
152 }
153
0e9f0a4a
TH
154 /*
155 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
156 * @child in the butt. Note that @resume should be used iff @child
157 * is in TASK_TRACED; otherwise, we might unduly disrupt
158 * TASK_KILLABLE sleeps.
159 */
a8f072c1 160 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
910ffdb1 161 ptrace_signal_wake_up(child, true);
0e9f0a4a 162
1da177e4 163 spin_unlock(&child->sighand->siglock);
1da177e4
LT
164}
165
9899d11f
ON
166/* Ensure that nothing can wake it up, even SIGKILL */
167static bool ptrace_freeze_traced(struct task_struct *task)
168{
169 bool ret = false;
170
171 /* Lockless, nobody but us can set this flag */
172 if (task->jobctl & JOBCTL_LISTENING)
173 return ret;
174
175 spin_lock_irq(&task->sighand->siglock);
176 if (task_is_traced(task) && !__fatal_signal_pending(task)) {
177 task->state = __TASK_TRACED;
178 ret = true;
179 }
180 spin_unlock_irq(&task->sighand->siglock);
181
182 return ret;
183}
184
185static void ptrace_unfreeze_traced(struct task_struct *task)
186{
187 if (task->state != __TASK_TRACED)
188 return;
189
190 WARN_ON(!task->ptrace || task->parent != current);
191
5402e97a 192 /*
193 * PTRACE_LISTEN can allow ptrace_trap_notify to wake us up remotely.
194 * Recheck state under the lock to close this race.
195 */
9899d11f 196 spin_lock_irq(&task->sighand->siglock);
5402e97a 197 if (task->state == __TASK_TRACED) {
198 if (__fatal_signal_pending(task))
199 wake_up_state(task, __TASK_TRACED);
200 else
201 task->state = TASK_TRACED;
202 }
9899d11f
ON
203 spin_unlock_irq(&task->sighand->siglock);
204}
205
755e276b
TH
206/**
207 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
208 * @child: ptracee to check for
209 * @ignore_state: don't check whether @child is currently %TASK_TRACED
210 *
211 * Check whether @child is being ptraced by %current and ready for further
212 * ptrace operations. If @ignore_state is %false, @child also should be in
213 * %TASK_TRACED state and on return the child is guaranteed to be traced
214 * and not executing. If @ignore_state is %true, @child can be in any
215 * state.
216 *
217 * CONTEXT:
218 * Grabs and releases tasklist_lock and @child->sighand->siglock.
219 *
220 * RETURNS:
221 * 0 on success, -ESRCH if %child is not ready.
1da177e4 222 */
edea0d03 223static int ptrace_check_attach(struct task_struct *child, bool ignore_state)
1da177e4
LT
224{
225 int ret = -ESRCH;
226
227 /*
228 * We take the read lock around doing both checks to close a
229 * possible race where someone else was tracing our child and
230 * detached between these two checks. After this locked check,
231 * we are sure that this is our traced child and that can only
232 * be changed by us so it's not changing right after this.
233 */
234 read_lock(&tasklist_lock);
9899d11f
ON
235 if (child->ptrace && child->parent == current) {
236 WARN_ON(child->state == __TASK_TRACED);
c0c0b649
ON
237 /*
238 * child->sighand can't be NULL, release_task()
239 * does ptrace_unlink() before __exit_signal().
240 */
9899d11f 241 if (ignore_state || ptrace_freeze_traced(child))
321fb561 242 ret = 0;
1da177e4
LT
243 }
244 read_unlock(&tasklist_lock);
245
9899d11f
ON
246 if (!ret && !ignore_state) {
247 if (!wait_task_inactive(child, __TASK_TRACED)) {
248 /*
249 * This can only happen if may_ptrace_stop() fails and
250 * ptrace_stop() changes ->state back to TASK_RUNNING,
251 * so we should not worry about leaking __TASK_TRACED.
252 */
253 WARN_ON(child->state == __TASK_TRACED);
254 ret = -ESRCH;
255 }
256 }
1da177e4 257
1da177e4
LT
258 return ret;
259}
260
69f594a3
EP
261static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode)
262{
263 if (mode & PTRACE_MODE_NOAUDIT)
264 return has_ns_capability_noaudit(current, ns, CAP_SYS_PTRACE);
265 else
266 return has_ns_capability(current, ns, CAP_SYS_PTRACE);
267}
268
9f99798f
TH
269/* Returns 0 on success, -errno on denial. */
270static int __ptrace_may_access(struct task_struct *task, unsigned int mode)
ab8d11be 271{
c69e8d9c 272 const struct cred *cred = current_cred(), *tcred;
bfedb589 273 struct mm_struct *mm;
caaee623
JH
274 kuid_t caller_uid;
275 kgid_t caller_gid;
276
277 if (!(mode & PTRACE_MODE_FSCREDS) == !(mode & PTRACE_MODE_REALCREDS)) {
278 WARN(1, "denying ptrace access check without PTRACE_MODE_*CREDS\n");
279 return -EPERM;
280 }
b6dff3ec 281
df26c40e
EB
282 /* May we inspect the given task?
283 * This check is used both for attaching with ptrace
284 * and for allowing access to sensitive information in /proc.
285 *
286 * ptrace_attach denies several cases that /proc allows
287 * because setting up the necessary parent/child relationship
288 * or halting the specified task is impossible.
289 */
caaee623 290
df26c40e 291 /* Don't let security modules deny introspection */
73af963f 292 if (same_thread_group(task, current))
df26c40e 293 return 0;
c69e8d9c 294 rcu_read_lock();
caaee623
JH
295 if (mode & PTRACE_MODE_FSCREDS) {
296 caller_uid = cred->fsuid;
297 caller_gid = cred->fsgid;
298 } else {
299 /*
300 * Using the euid would make more sense here, but something
301 * in userland might rely on the old behavior, and this
302 * shouldn't be a security problem since
303 * PTRACE_MODE_REALCREDS implies that the caller explicitly
304 * used a syscall that requests access to another process
305 * (and not a filesystem syscall to procfs).
306 */
307 caller_uid = cred->uid;
308 caller_gid = cred->gid;
309 }
c69e8d9c 310 tcred = __task_cred(task);
caaee623
JH
311 if (uid_eq(caller_uid, tcred->euid) &&
312 uid_eq(caller_uid, tcred->suid) &&
313 uid_eq(caller_uid, tcred->uid) &&
314 gid_eq(caller_gid, tcred->egid) &&
315 gid_eq(caller_gid, tcred->sgid) &&
316 gid_eq(caller_gid, tcred->gid))
8409cca7 317 goto ok;
c4a4d603 318 if (ptrace_has_cap(tcred->user_ns, mode))
8409cca7
SH
319 goto ok;
320 rcu_read_unlock();
321 return -EPERM;
322ok:
c69e8d9c 323 rcu_read_unlock();
c3acb19a
JH
324 /*
325 * If a task drops privileges and becomes nondumpable (through a syscall
326 * like setresuid()) while we are trying to access it, we must ensure
327 * that the dumpability is read after the credentials; otherwise,
328 * we may be able to attach to a task that we shouldn't be able to
329 * attach to (as if the task had dropped privileges without becoming
330 * nondumpable).
331 * Pairs with a write barrier in commit_creds().
332 */
333 smp_rmb();
bfedb589
EB
334 mm = task->mm;
335 if (mm &&
336 ((get_dumpable(mm) != SUID_DUMP_USER) &&
337 !ptrace_has_cap(mm->user_ns, mode)))
338 return -EPERM;
ab8d11be 339
9e48858f 340 return security_ptrace_access_check(task, mode);
ab8d11be
MS
341}
342
006ebb40 343bool ptrace_may_access(struct task_struct *task, unsigned int mode)
ab8d11be
MS
344{
345 int err;
346 task_lock(task);
006ebb40 347 err = __ptrace_may_access(task, mode);
ab8d11be 348 task_unlock(task);
3a709703 349 return !err;
ab8d11be
MS
350}
351
3544d72a 352static int ptrace_attach(struct task_struct *task, long request,
aa9147c9 353 unsigned long addr,
3544d72a 354 unsigned long flags)
1da177e4 355{
3544d72a 356 bool seize = (request == PTRACE_SEIZE);
1da177e4 357 int retval;
f5b40e36 358
3544d72a 359 retval = -EIO;
aa9147c9
DV
360 if (seize) {
361 if (addr != 0)
362 goto out;
aa9147c9
DV
363 if (flags & ~(unsigned long)PTRACE_O_MASK)
364 goto out;
365 flags = PT_PTRACED | PT_SEIZED | (flags << PT_OPT_FLAG_SHIFT);
366 } else {
367 flags = PT_PTRACED;
368 }
3544d72a 369
a5cb013d
AV
370 audit_ptrace(task);
371
1da177e4 372 retval = -EPERM;
b79b7ba9
ON
373 if (unlikely(task->flags & PF_KTHREAD))
374 goto out;
bac0abd6 375 if (same_thread_group(task, current))
f5b40e36
LT
376 goto out;
377
f2f0b00a
ON
378 /*
379 * Protect exec's credential calculations against our interference;
86b6c1f3 380 * SUID, SGID and LSM creds get determined differently
5e751e99 381 * under ptrace.
d84f4f99 382 */
793285fc 383 retval = -ERESTARTNOINTR;
9b1bf12d 384 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
d84f4f99 385 goto out;
f5b40e36 386
4b105cbb 387 task_lock(task);
caaee623 388 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS);
4b105cbb 389 task_unlock(task);
1da177e4 390 if (retval)
4b105cbb 391 goto unlock_creds;
1da177e4 392
4b105cbb 393 write_lock_irq(&tasklist_lock);
b79b7ba9
ON
394 retval = -EPERM;
395 if (unlikely(task->exit_state))
4b105cbb 396 goto unlock_tasklist;
f2f0b00a 397 if (task->ptrace)
4b105cbb 398 goto unlock_tasklist;
b79b7ba9 399
3544d72a 400 if (seize)
aa9147c9 401 flags |= PT_SEIZED;
aa9147c9 402 task->ptrace = flags;
1da177e4 403
c70d9d80 404 ptrace_link(task, current);
3544d72a
TH
405
406 /* SEIZE doesn't trap tracee on attach */
407 if (!seize)
408 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
b79b7ba9 409
d79fdd6d
TH
410 spin_lock(&task->sighand->siglock);
411
412 /*
73ddff2b 413 * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
d79fdd6d
TH
414 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
415 * will be cleared if the child completes the transition or any
416 * event which clears the group stop states happens. We'll wait
417 * for the transition to complete before returning from this
418 * function.
419 *
420 * This hides STOPPED -> RUNNING -> TRACED transition from the
421 * attaching thread but a different thread in the same group can
422 * still observe the transient RUNNING state. IOW, if another
423 * thread's WNOHANG wait(2) on the stopped tracee races against
424 * ATTACH, the wait(2) may fail due to the transient RUNNING.
425 *
426 * The following task_is_stopped() test is safe as both transitions
427 * in and out of STOPPED are protected by siglock.
428 */
7dd3db54 429 if (task_is_stopped(task) &&
73ddff2b 430 task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
910ffdb1 431 signal_wake_up_state(task, __TASK_STOPPED);
d79fdd6d
TH
432
433 spin_unlock(&task->sighand->siglock);
434
b79b7ba9 435 retval = 0;
4b105cbb
ON
436unlock_tasklist:
437 write_unlock_irq(&tasklist_lock);
438unlock_creds:
9b1bf12d 439 mutex_unlock(&task->signal->cred_guard_mutex);
f5b40e36 440out:
f701e5b7 441 if (!retval) {
7c3b00e0
ON
442 /*
443 * We do not bother to change retval or clear JOBCTL_TRAPPING
444 * if wait_on_bit() was interrupted by SIGKILL. The tracer will
445 * not return to user-mode, it will exit and clear this bit in
446 * __ptrace_unlink() if it wasn't already cleared by the tracee;
447 * and until then nobody can ptrace this task.
448 */
449 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT, TASK_KILLABLE);
f701e5b7
VZ
450 proc_ptrace_connector(task, PTRACE_ATTACH);
451 }
452
1da177e4
LT
453 return retval;
454}
455
f2f0b00a
ON
456/**
457 * ptrace_traceme -- helper for PTRACE_TRACEME
458 *
459 * Performs checks and sets PT_PTRACED.
460 * Should be used by all ptrace implementations for PTRACE_TRACEME.
461 */
e3e89cc5 462static int ptrace_traceme(void)
f2f0b00a
ON
463{
464 int ret = -EPERM;
465
4b105cbb
ON
466 write_lock_irq(&tasklist_lock);
467 /* Are we already being traced? */
f2f0b00a 468 if (!current->ptrace) {
f2f0b00a 469 ret = security_ptrace_traceme(current->parent);
f2f0b00a
ON
470 /*
471 * Check PF_EXITING to ensure ->real_parent has not passed
472 * exit_ptrace(). Otherwise we don't report the error but
473 * pretend ->real_parent untraces us right after return.
474 */
475 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
476 current->ptrace = PT_PTRACED;
c70d9d80 477 ptrace_link(current, current->real_parent);
f2f0b00a 478 }
f2f0b00a 479 }
4b105cbb
ON
480 write_unlock_irq(&tasklist_lock);
481
f2f0b00a
ON
482 return ret;
483}
484
39c626ae
ON
485/*
486 * Called with irqs disabled, returns true if childs should reap themselves.
487 */
488static int ignoring_children(struct sighand_struct *sigh)
489{
490 int ret;
491 spin_lock(&sigh->siglock);
492 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
493 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
494 spin_unlock(&sigh->siglock);
495 return ret;
496}
497
498/*
499 * Called with tasklist_lock held for writing.
500 * Unlink a traced task, and clean it up if it was a traced zombie.
501 * Return true if it needs to be reaped with release_task().
502 * (We can't call release_task() here because we already hold tasklist_lock.)
503 *
504 * If it's a zombie, our attachedness prevented normal parent notification
505 * or self-reaping. Do notification now if it would have happened earlier.
506 * If it should reap itself, return true.
507 *
a7f0765e
ON
508 * If it's our own child, there is no notification to do. But if our normal
509 * children self-reap, then this child was prevented by ptrace and we must
510 * reap it now, in that case we must also wake up sub-threads sleeping in
511 * do_wait().
39c626ae
ON
512 */
513static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
514{
9843a1e9
ON
515 bool dead;
516
39c626ae
ON
517 __ptrace_unlink(p);
518
9843a1e9
ON
519 if (p->exit_state != EXIT_ZOMBIE)
520 return false;
521
522 dead = !thread_group_leader(p);
523
524 if (!dead && thread_group_empty(p)) {
525 if (!same_thread_group(p->real_parent, tracer))
526 dead = do_notify_parent(p, p->exit_signal);
527 else if (ignoring_children(tracer->sighand)) {
528 __wake_up_parent(p, tracer);
9843a1e9 529 dead = true;
39c626ae
ON
530 }
531 }
9843a1e9
ON
532 /* Mark it as in the process of being reaped. */
533 if (dead)
534 p->exit_state = EXIT_DEAD;
535 return dead;
39c626ae
ON
536}
537
e3e89cc5 538static int ptrace_detach(struct task_struct *child, unsigned int data)
1da177e4 539{
7ed20e1a 540 if (!valid_signal(data))
5ecfbae0 541 return -EIO;
1da177e4
LT
542
543 /* Architecture-specific hardware disable .. */
544 ptrace_disable(child);
545
95c3eb76 546 write_lock_irq(&tasklist_lock);
39c626ae 547 /*
64a4096c
ON
548 * We rely on ptrace_freeze_traced(). It can't be killed and
549 * untraced by another thread, it can't be a zombie.
39c626ae 550 */
64a4096c
ON
551 WARN_ON(!child->ptrace || child->exit_state);
552 /*
553 * tasklist_lock avoids the race with wait_task_stopped(), see
554 * the comment in ptrace_resume().
555 */
556 child->exit_code = data;
557 __ptrace_detach(current, child);
1da177e4
LT
558 write_unlock_irq(&tasklist_lock);
559
f701e5b7 560 proc_ptrace_connector(child, PTRACE_DETACH);
4576145c 561
1da177e4
LT
562 return 0;
563}
564
39c626ae 565/*
c7e49c14 566 * Detach all tasks we were using ptrace on. Called with tasklist held
7c8bd232 567 * for writing.
39c626ae 568 */
7c8bd232 569void exit_ptrace(struct task_struct *tracer, struct list_head *dead)
39c626ae
ON
570{
571 struct task_struct *p, *n;
c7e49c14 572
39c626ae 573 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
992fb6e1
ON
574 if (unlikely(p->ptrace & PT_EXITKILL))
575 send_sig_info(SIGKILL, SEND_SIG_FORCED, p);
576
39c626ae 577 if (__ptrace_detach(tracer, p))
7c8bd232 578 list_add(&p->ptrace_entry, dead);
39c626ae
ON
579 }
580}
581
1da177e4
LT
582int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
583{
584 int copied = 0;
585
586 while (len > 0) {
587 char buf[128];
588 int this_len, retval;
589
590 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
84d77d3f
EB
591 retval = ptrace_access_vm(tsk, src, buf, this_len, FOLL_FORCE);
592
1da177e4
LT
593 if (!retval) {
594 if (copied)
595 break;
596 return -EIO;
597 }
598 if (copy_to_user(dst, buf, retval))
599 return -EFAULT;
600 copied += retval;
601 src += retval;
602 dst += retval;
3a709703 603 len -= retval;
1da177e4
LT
604 }
605 return copied;
606}
607
608int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
609{
610 int copied = 0;
611
612 while (len > 0) {
613 char buf[128];
614 int this_len, retval;
615
616 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
617 if (copy_from_user(buf, src, this_len))
618 return -EFAULT;
84d77d3f 619 retval = ptrace_access_vm(tsk, dst, buf, this_len,
f307ab6d 620 FOLL_FORCE | FOLL_WRITE);
1da177e4
LT
621 if (!retval) {
622 if (copied)
623 break;
624 return -EIO;
625 }
626 copied += retval;
627 src += retval;
628 dst += retval;
3a709703 629 len -= retval;
1da177e4
LT
630 }
631 return copied;
632}
633
4abf9869 634static int ptrace_setoptions(struct task_struct *child, unsigned long data)
1da177e4 635{
86b6c1f3
DV
636 unsigned flags;
637
8c5cf9e5
DV
638 if (data & ~(unsigned long)PTRACE_O_MASK)
639 return -EINVAL;
640
13c4a901 641 if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) {
97f2645f
MY
642 if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) ||
643 !IS_ENABLED(CONFIG_SECCOMP))
13c4a901
TA
644 return -EINVAL;
645
646 if (!capable(CAP_SYS_ADMIN))
647 return -EPERM;
648
649 if (seccomp_mode(&current->seccomp) != SECCOMP_MODE_DISABLED ||
650 current->ptrace & PT_SUSPEND_SECCOMP)
651 return -EPERM;
652 }
653
86b6c1f3
DV
654 /* Avoid intermediate state when all opts are cleared */
655 flags = child->ptrace;
656 flags &= ~(PTRACE_O_MASK << PT_OPT_FLAG_SHIFT);
657 flags |= (data << PT_OPT_FLAG_SHIFT);
658 child->ptrace = flags;
1da177e4 659
8c5cf9e5 660 return 0;
1da177e4
LT
661}
662
e16b2781 663static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
1da177e4 664{
e4961254 665 unsigned long flags;
1da177e4
LT
666 int error = -ESRCH;
667
e4961254 668 if (lock_task_sighand(child, &flags)) {
1da177e4 669 error = -EINVAL;
1da177e4 670 if (likely(child->last_siginfo != NULL)) {
e16b2781 671 *info = *child->last_siginfo;
1da177e4
LT
672 error = 0;
673 }
e4961254 674 unlock_task_sighand(child, &flags);
1da177e4 675 }
1da177e4
LT
676 return error;
677}
678
e16b2781 679static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
1da177e4 680{
e4961254 681 unsigned long flags;
1da177e4
LT
682 int error = -ESRCH;
683
e4961254 684 if (lock_task_sighand(child, &flags)) {
1da177e4 685 error = -EINVAL;
1da177e4 686 if (likely(child->last_siginfo != NULL)) {
e16b2781 687 *child->last_siginfo = *info;
1da177e4
LT
688 error = 0;
689 }
e4961254 690 unlock_task_sighand(child, &flags);
1da177e4 691 }
1da177e4
LT
692 return error;
693}
694
84c751bd
AV
695static int ptrace_peek_siginfo(struct task_struct *child,
696 unsigned long addr,
697 unsigned long data)
698{
699 struct ptrace_peeksiginfo_args arg;
700 struct sigpending *pending;
701 struct sigqueue *q;
702 int ret, i;
703
704 ret = copy_from_user(&arg, (void __user *) addr,
705 sizeof(struct ptrace_peeksiginfo_args));
706 if (ret)
707 return -EFAULT;
708
709 if (arg.flags & ~PTRACE_PEEKSIGINFO_SHARED)
710 return -EINVAL; /* unknown flags */
711
712 if (arg.nr < 0)
713 return -EINVAL;
714
f535763b
EB
715 /* Ensure arg.off fits in an unsigned long */
716 if (arg.off > ULONG_MAX)
717 return 0;
718
84c751bd
AV
719 if (arg.flags & PTRACE_PEEKSIGINFO_SHARED)
720 pending = &child->signal->shared_pending;
721 else
722 pending = &child->pending;
723
724 for (i = 0; i < arg.nr; ) {
725 siginfo_t info;
f535763b
EB
726 unsigned long off = arg.off + i;
727 bool found = false;
84c751bd
AV
728
729 spin_lock_irq(&child->sighand->siglock);
730 list_for_each_entry(q, &pending->list, list) {
731 if (!off--) {
f535763b 732 found = true;
84c751bd
AV
733 copy_siginfo(&info, &q->info);
734 break;
735 }
736 }
737 spin_unlock_irq(&child->sighand->siglock);
738
f535763b 739 if (!found) /* beyond the end of the list */
84c751bd
AV
740 break;
741
742#ifdef CONFIG_COMPAT
5c465217 743 if (unlikely(in_compat_syscall())) {
84c751bd
AV
744 compat_siginfo_t __user *uinfo = compat_ptr(data);
745
cc731525 746 if (copy_siginfo_to_user32(uinfo, &info)) {
706b23bd
MD
747 ret = -EFAULT;
748 break;
749 }
750
84c751bd
AV
751 } else
752#endif
753 {
754 siginfo_t __user *uinfo = (siginfo_t __user *) data;
755
cc731525 756 if (copy_siginfo_to_user(uinfo, &info)) {
706b23bd
MD
757 ret = -EFAULT;
758 break;
759 }
84c751bd
AV
760 }
761
762 data += sizeof(siginfo_t);
763 i++;
764
765 if (signal_pending(current))
766 break;
767
768 cond_resched();
769 }
770
771 if (i > 0)
772 return i;
773
774 return ret;
775}
36df29d7
RM
776
777#ifdef PTRACE_SINGLESTEP
778#define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
779#else
780#define is_singlestep(request) 0
781#endif
782
5b88abbf
RM
783#ifdef PTRACE_SINGLEBLOCK
784#define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
785#else
786#define is_singleblock(request) 0
787#endif
788
36df29d7
RM
789#ifdef PTRACE_SYSEMU
790#define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
791#else
792#define is_sysemu_singlestep(request) 0
793#endif
794
4abf9869
NK
795static int ptrace_resume(struct task_struct *child, long request,
796 unsigned long data)
36df29d7 797{
b72c1869
ON
798 bool need_siglock;
799
36df29d7
RM
800 if (!valid_signal(data))
801 return -EIO;
802
803 if (request == PTRACE_SYSCALL)
804 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
805 else
806 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
807
808#ifdef TIF_SYSCALL_EMU
809 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
810 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
811 else
812 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
813#endif
814
5b88abbf
RM
815 if (is_singleblock(request)) {
816 if (unlikely(!arch_has_block_step()))
817 return -EIO;
818 user_enable_block_step(child);
819 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
36df29d7
RM
820 if (unlikely(!arch_has_single_step()))
821 return -EIO;
822 user_enable_single_step(child);
3a709703 823 } else {
36df29d7 824 user_disable_single_step(child);
3a709703 825 }
36df29d7 826
b72c1869
ON
827 /*
828 * Change ->exit_code and ->state under siglock to avoid the race
829 * with wait_task_stopped() in between; a non-zero ->exit_code will
830 * wrongly look like another report from tracee.
831 *
832 * Note that we need siglock even if ->exit_code == data and/or this
833 * status was not reported yet, the new status must not be cleared by
834 * wait_task_stopped() after resume.
835 *
836 * If data == 0 we do not care if wait_task_stopped() reports the old
837 * status and clears the code too; this can't race with the tracee, it
838 * takes siglock after resume.
839 */
840 need_siglock = data && !thread_group_empty(current);
841 if (need_siglock)
842 spin_lock_irq(&child->sighand->siglock);
36df29d7 843 child->exit_code = data;
0666fb51 844 wake_up_state(child, __TASK_TRACED);
b72c1869
ON
845 if (need_siglock)
846 spin_unlock_irq(&child->sighand->siglock);
36df29d7
RM
847
848 return 0;
849}
850
2225a122
SS
851#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
852
853static const struct user_regset *
854find_regset(const struct user_regset_view *view, unsigned int type)
855{
856 const struct user_regset *regset;
857 int n;
858
859 for (n = 0; n < view->n; ++n) {
860 regset = view->regsets + n;
861 if (regset->core_note_type == type)
862 return regset;
863 }
864
865 return NULL;
866}
867
868static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
869 struct iovec *kiov)
870{
871 const struct user_regset_view *view = task_user_regset_view(task);
872 const struct user_regset *regset = find_regset(view, type);
873 int regset_no;
874
875 if (!regset || (kiov->iov_len % regset->size) != 0)
c6a0dd7e 876 return -EINVAL;
2225a122
SS
877
878 regset_no = regset - view->regsets;
879 kiov->iov_len = min(kiov->iov_len,
880 (__kernel_size_t) (regset->n * regset->size));
881
882 if (req == PTRACE_GETREGSET)
883 return copy_regset_to_user(task, view, regset_no, 0,
884 kiov->iov_len, kiov->iov_base);
885 else
886 return copy_regset_from_user(task, view, regset_no, 0,
887 kiov->iov_len, kiov->iov_base);
888}
889
e8440c14
JS
890/*
891 * This is declared in linux/regset.h and defined in machine-dependent
892 * code. We put the export here, near the primary machine-neutral use,
893 * to ensure no machine forgets it.
894 */
895EXPORT_SYMBOL_GPL(task_user_regset_view);
2225a122
SS
896#endif
897
1da177e4 898int ptrace_request(struct task_struct *child, long request,
4abf9869 899 unsigned long addr, unsigned long data)
1da177e4 900{
fca26f26 901 bool seized = child->ptrace & PT_SEIZED;
1da177e4 902 int ret = -EIO;
544b2c91 903 siginfo_t siginfo, *si;
9fed81dc
NK
904 void __user *datavp = (void __user *) data;
905 unsigned long __user *datalp = datavp;
fca26f26 906 unsigned long flags;
1da177e4
LT
907
908 switch (request) {
16c3e389
RM
909 case PTRACE_PEEKTEXT:
910 case PTRACE_PEEKDATA:
911 return generic_ptrace_peekdata(child, addr, data);
912 case PTRACE_POKETEXT:
913 case PTRACE_POKEDATA:
914 return generic_ptrace_pokedata(child, addr, data);
915
1da177e4
LT
916#ifdef PTRACE_OLDSETOPTIONS
917 case PTRACE_OLDSETOPTIONS:
918#endif
919 case PTRACE_SETOPTIONS:
920 ret = ptrace_setoptions(child, data);
921 break;
922 case PTRACE_GETEVENTMSG:
9fed81dc 923 ret = put_user(child->ptrace_message, datalp);
1da177e4 924 break;
e16b2781 925
84c751bd
AV
926 case PTRACE_PEEKSIGINFO:
927 ret = ptrace_peek_siginfo(child, addr, data);
928 break;
929
1da177e4 930 case PTRACE_GETSIGINFO:
e16b2781
RM
931 ret = ptrace_getsiginfo(child, &siginfo);
932 if (!ret)
9fed81dc 933 ret = copy_siginfo_to_user(datavp, &siginfo);
1da177e4 934 break;
e16b2781 935
1da177e4 936 case PTRACE_SETSIGINFO:
9fed81dc 937 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
e16b2781
RM
938 ret = -EFAULT;
939 else
940 ret = ptrace_setsiginfo(child, &siginfo);
1da177e4 941 break;
e16b2781 942
b40eae61
AV
943 case PTRACE_GETSIGMASK: {
944 sigset_t *mask;
945
29000cae
AV
946 if (addr != sizeof(sigset_t)) {
947 ret = -EINVAL;
948 break;
949 }
950
b40eae61
AV
951 if (test_tsk_restore_sigmask(child))
952 mask = &child->saved_sigmask;
953 else
954 mask = &child->blocked;
955
956 if (copy_to_user(datavp, mask, sizeof(sigset_t)))
29000cae
AV
957 ret = -EFAULT;
958 else
959 ret = 0;
960
961 break;
b40eae61 962 }
29000cae
AV
963
964 case PTRACE_SETSIGMASK: {
965 sigset_t new_set;
966
967 if (addr != sizeof(sigset_t)) {
968 ret = -EINVAL;
969 break;
970 }
971
972 if (copy_from_user(&new_set, datavp, sizeof(sigset_t))) {
973 ret = -EFAULT;
974 break;
975 }
976
977 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
978
979 /*
980 * Every thread does recalc_sigpending() after resume, so
981 * retarget_shared_pending() and recalc_sigpending() are not
982 * called here.
983 */
984 spin_lock_irq(&child->sighand->siglock);
985 child->blocked = new_set;
986 spin_unlock_irq(&child->sighand->siglock);
987
b40eae61
AV
988 clear_tsk_restore_sigmask(child);
989
29000cae
AV
990 ret = 0;
991 break;
992 }
993
fca26f26
TH
994 case PTRACE_INTERRUPT:
995 /*
996 * Stop tracee without any side-effect on signal or job
997 * control. At least one trap is guaranteed to happen
998 * after this request. If @child is already trapped, the
999 * current trap is not disturbed and another trap will
1000 * happen after the current trap is ended with PTRACE_CONT.
1001 *
1002 * The actual trap might not be PTRACE_EVENT_STOP trap but
1003 * the pending condition is cleared regardless.
1004 */
1005 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1006 break;
1007
544b2c91
TH
1008 /*
1009 * INTERRUPT doesn't disturb existing trap sans one
1010 * exception. If ptracer issued LISTEN for the current
1011 * STOP, this INTERRUPT should clear LISTEN and re-trap
1012 * tracee into STOP.
1013 */
fca26f26 1014 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
910ffdb1 1015 ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
544b2c91
TH
1016
1017 unlock_task_sighand(child, &flags);
1018 ret = 0;
1019 break;
1020
1021 case PTRACE_LISTEN:
1022 /*
1023 * Listen for events. Tracee must be in STOP. It's not
1024 * resumed per-se but is not considered to be in TRACED by
1025 * wait(2) or ptrace(2). If an async event (e.g. group
1026 * stop state change) happens, tracee will enter STOP trap
1027 * again. Alternatively, ptracer can issue INTERRUPT to
1028 * finish listening and re-trap tracee into STOP.
1029 */
1030 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1031 break;
1032
1033 si = child->last_siginfo;
f9d81f61
ON
1034 if (likely(si && (si->si_code >> 8) == PTRACE_EVENT_STOP)) {
1035 child->jobctl |= JOBCTL_LISTENING;
1036 /*
1037 * If NOTIFY is set, it means event happened between
1038 * start of this trap and now. Trigger re-trap.
1039 */
1040 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
910ffdb1 1041 ptrace_signal_wake_up(child, true);
f9d81f61
ON
1042 ret = 0;
1043 }
fca26f26 1044 unlock_task_sighand(child, &flags);
fca26f26
TH
1045 break;
1046
1bcf5482
AD
1047 case PTRACE_DETACH: /* detach a process that was attached. */
1048 ret = ptrace_detach(child, data);
1049 break;
36df29d7 1050
9c1a1259
MF
1051#ifdef CONFIG_BINFMT_ELF_FDPIC
1052 case PTRACE_GETFDPIC: {
e0129ef9 1053 struct mm_struct *mm = get_task_mm(child);
9c1a1259
MF
1054 unsigned long tmp = 0;
1055
e0129ef9
ON
1056 ret = -ESRCH;
1057 if (!mm)
1058 break;
1059
9c1a1259
MF
1060 switch (addr) {
1061 case PTRACE_GETFDPIC_EXEC:
e0129ef9 1062 tmp = mm->context.exec_fdpic_loadmap;
9c1a1259
MF
1063 break;
1064 case PTRACE_GETFDPIC_INTERP:
e0129ef9 1065 tmp = mm->context.interp_fdpic_loadmap;
9c1a1259
MF
1066 break;
1067 default:
1068 break;
1069 }
e0129ef9 1070 mmput(mm);
9c1a1259 1071
9fed81dc 1072 ret = put_user(tmp, datalp);
9c1a1259
MF
1073 break;
1074 }
1075#endif
1076
36df29d7
RM
1077#ifdef PTRACE_SINGLESTEP
1078 case PTRACE_SINGLESTEP:
1079#endif
5b88abbf
RM
1080#ifdef PTRACE_SINGLEBLOCK
1081 case PTRACE_SINGLEBLOCK:
1082#endif
36df29d7
RM
1083#ifdef PTRACE_SYSEMU
1084 case PTRACE_SYSEMU:
1085 case PTRACE_SYSEMU_SINGLESTEP:
1086#endif
1087 case PTRACE_SYSCALL:
1088 case PTRACE_CONT:
1089 return ptrace_resume(child, request, data);
1090
1091 case PTRACE_KILL:
1092 if (child->exit_state) /* already dead */
1093 return 0;
1094 return ptrace_resume(child, request, SIGKILL);
1095
2225a122
SS
1096#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1097 case PTRACE_GETREGSET:
29000cae 1098 case PTRACE_SETREGSET: {
2225a122 1099 struct iovec kiov;
9fed81dc 1100 struct iovec __user *uiov = datavp;
2225a122
SS
1101
1102 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1103 return -EFAULT;
1104
1105 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
1106 __get_user(kiov.iov_len, &uiov->iov_len))
1107 return -EFAULT;
1108
1109 ret = ptrace_regset(child, request, addr, &kiov);
1110 if (!ret)
1111 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1112 break;
1113 }
1114#endif
f8e529ed
TA
1115
1116 case PTRACE_SECCOMP_GET_FILTER:
1117 ret = seccomp_get_filter(child, addr, datavp);
1118 break;
1119
1da177e4
LT
1120 default:
1121 break;
1122 }
1123
1124 return ret;
1125}
481bed45 1126
8053bdd5 1127static struct task_struct *ptrace_get_task_struct(pid_t pid)
6b9c7ed8
CH
1128{
1129 struct task_struct *child;
481bed45 1130
8053bdd5 1131 rcu_read_lock();
228ebcbe 1132 child = find_task_by_vpid(pid);
481bed45
CH
1133 if (child)
1134 get_task_struct(child);
8053bdd5 1135 rcu_read_unlock();
f400e198 1136
481bed45 1137 if (!child)
6b9c7ed8
CH
1138 return ERR_PTR(-ESRCH);
1139 return child;
481bed45
CH
1140}
1141
0ac15559
CH
1142#ifndef arch_ptrace_attach
1143#define arch_ptrace_attach(child) do { } while (0)
1144#endif
1145
4abf9869
NK
1146SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
1147 unsigned long, data)
481bed45
CH
1148{
1149 struct task_struct *child;
1150 long ret;
1151
6b9c7ed8
CH
1152 if (request == PTRACE_TRACEME) {
1153 ret = ptrace_traceme();
6ea6dd93
HS
1154 if (!ret)
1155 arch_ptrace_attach(current);
481bed45 1156 goto out;
6b9c7ed8
CH
1157 }
1158
1159 child = ptrace_get_task_struct(pid);
1160 if (IS_ERR(child)) {
1161 ret = PTR_ERR(child);
1162 goto out;
1163 }
481bed45 1164
3544d72a 1165 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
aa9147c9 1166 ret = ptrace_attach(child, request, addr, data);
0ac15559
CH
1167 /*
1168 * Some architectures need to do book-keeping after
1169 * a ptrace attach.
1170 */
1171 if (!ret)
1172 arch_ptrace_attach(child);
005f18df 1173 goto out_put_task_struct;
481bed45
CH
1174 }
1175
fca26f26
TH
1176 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1177 request == PTRACE_INTERRUPT);
481bed45
CH
1178 if (ret < 0)
1179 goto out_put_task_struct;
1180
1181 ret = arch_ptrace(child, request, addr, data);
9899d11f
ON
1182 if (ret || request != PTRACE_DETACH)
1183 ptrace_unfreeze_traced(child);
481bed45
CH
1184
1185 out_put_task_struct:
1186 put_task_struct(child);
1187 out:
481bed45
CH
1188 return ret;
1189}
76647323 1190
4abf9869
NK
1191int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
1192 unsigned long data)
76647323
AD
1193{
1194 unsigned long tmp;
1195 int copied;
1196
84d77d3f 1197 copied = ptrace_access_vm(tsk, addr, &tmp, sizeof(tmp), FOLL_FORCE);
76647323
AD
1198 if (copied != sizeof(tmp))
1199 return -EIO;
1200 return put_user(tmp, (unsigned long __user *)data);
1201}
f284ce72 1202
4abf9869
NK
1203int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
1204 unsigned long data)
f284ce72
AD
1205{
1206 int copied;
1207
84d77d3f 1208 copied = ptrace_access_vm(tsk, addr, &data, sizeof(data),
f307ab6d 1209 FOLL_FORCE | FOLL_WRITE);
f284ce72
AD
1210 return (copied == sizeof(data)) ? 0 : -EIO;
1211}
032d82d9 1212
96b8936a 1213#if defined CONFIG_COMPAT
032d82d9
RM
1214
1215int compat_ptrace_request(struct task_struct *child, compat_long_t request,
1216 compat_ulong_t addr, compat_ulong_t data)
1217{
1218 compat_ulong_t __user *datap = compat_ptr(data);
1219 compat_ulong_t word;
e16b2781 1220 siginfo_t siginfo;
032d82d9
RM
1221 int ret;
1222
1223 switch (request) {
1224 case PTRACE_PEEKTEXT:
1225 case PTRACE_PEEKDATA:
84d77d3f 1226 ret = ptrace_access_vm(child, addr, &word, sizeof(word),
f307ab6d 1227 FOLL_FORCE);
032d82d9
RM
1228 if (ret != sizeof(word))
1229 ret = -EIO;
1230 else
1231 ret = put_user(word, datap);
1232 break;
1233
1234 case PTRACE_POKETEXT:
1235 case PTRACE_POKEDATA:
84d77d3f 1236 ret = ptrace_access_vm(child, addr, &data, sizeof(data),
f307ab6d 1237 FOLL_FORCE | FOLL_WRITE);
032d82d9
RM
1238 ret = (ret != sizeof(data) ? -EIO : 0);
1239 break;
1240
1241 case PTRACE_GETEVENTMSG:
1242 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
1243 break;
1244
e16b2781
RM
1245 case PTRACE_GETSIGINFO:
1246 ret = ptrace_getsiginfo(child, &siginfo);
1247 if (!ret)
1248 ret = copy_siginfo_to_user32(
1249 (struct compat_siginfo __user *) datap,
1250 &siginfo);
1251 break;
1252
1253 case PTRACE_SETSIGINFO:
1254 memset(&siginfo, 0, sizeof siginfo);
1255 if (copy_siginfo_from_user32(
1256 &siginfo, (struct compat_siginfo __user *) datap))
1257 ret = -EFAULT;
1258 else
1259 ret = ptrace_setsiginfo(child, &siginfo);
1260 break;
2225a122
SS
1261#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1262 case PTRACE_GETREGSET:
1263 case PTRACE_SETREGSET:
1264 {
1265 struct iovec kiov;
1266 struct compat_iovec __user *uiov =
1267 (struct compat_iovec __user *) datap;
1268 compat_uptr_t ptr;
1269 compat_size_t len;
1270
1271 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1272 return -EFAULT;
1273
1274 if (__get_user(ptr, &uiov->iov_base) ||
1275 __get_user(len, &uiov->iov_len))
1276 return -EFAULT;
1277
1278 kiov.iov_base = compat_ptr(ptr);
1279 kiov.iov_len = len;
1280
1281 ret = ptrace_regset(child, request, addr, &kiov);
1282 if (!ret)
1283 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1284 break;
1285 }
1286#endif
e16b2781 1287
032d82d9
RM
1288 default:
1289 ret = ptrace_request(child, request, addr, data);
1290 }
1291
1292 return ret;
1293}
c269f196 1294
62a6fa97
HC
1295COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
1296 compat_long_t, addr, compat_long_t, data)
c269f196
RM
1297{
1298 struct task_struct *child;
1299 long ret;
1300
c269f196
RM
1301 if (request == PTRACE_TRACEME) {
1302 ret = ptrace_traceme();
1303 goto out;
1304 }
1305
1306 child = ptrace_get_task_struct(pid);
1307 if (IS_ERR(child)) {
1308 ret = PTR_ERR(child);
1309 goto out;
1310 }
1311
3544d72a 1312 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
aa9147c9 1313 ret = ptrace_attach(child, request, addr, data);
c269f196
RM
1314 /*
1315 * Some architectures need to do book-keeping after
1316 * a ptrace attach.
1317 */
1318 if (!ret)
1319 arch_ptrace_attach(child);
1320 goto out_put_task_struct;
1321 }
1322
fca26f26
TH
1323 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1324 request == PTRACE_INTERRUPT);
9899d11f 1325 if (!ret) {
c269f196 1326 ret = compat_arch_ptrace(child, request, addr, data);
9899d11f
ON
1327 if (ret || request != PTRACE_DETACH)
1328 ptrace_unfreeze_traced(child);
1329 }
c269f196
RM
1330
1331 out_put_task_struct:
1332 put_task_struct(child);
1333 out:
c269f196
RM
1334 return ret;
1335}
96b8936a 1336#endif /* CONFIG_COMPAT */