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