blob: ea3370e205fb955c86b295ef1592d0d25cfb99e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/ptrace.c
3 *
4 * (C) Copyright 1999 Linus Torvalds
5 *
6 * Common interfaces for "ptrace()" which we do not want
7 * to continually duplicate across every architecture.
8 */
9
Randy.Dunlapc59ede72006-01-11 12:17:46 -080010#include <linux/capability.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040011#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/sched.h>
13#include <linux/errno.h>
14#include <linux/mm.h>
15#include <linux/highmem.h>
16#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/ptrace.h>
18#include <linux/security.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070019#include <linux/signal.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070020#include <linux/uio.h>
Al Viroa5cb0132007-03-20 13:58:35 -040021#include <linux/audit.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070022#include <linux/pid_namespace.h>
Adrian Bunkf17d30a2008-02-06 01:36:44 -080023#include <linux/syscalls.h>
Roland McGrath3a709702009-04-07 23:21:06 -070024#include <linux/uaccess.h>
Suresh Siddha2225a122010-02-11 11:51:00 -080025#include <linux/regset.h>
Frederic Weisbeckerbf26c012011-04-07 16:53:20 +020026#include <linux/hw_breakpoint.h>
Vladimir Zapolskiyf701e5b2011-07-15 20:45:18 +030027#include <linux/cn_proc.h>
Andrey Vagin84c751b2013-04-30 15:27:59 -070028#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Eric W. Biedermane71b4e02016-11-22 12:06:50 -060030/*
31 * Access another process' address space via ptrace.
32 * Source/target buffer must be kernel space,
33 * Do not walk the page table directly, use get_user_pages
34 */
35int ptrace_access_vm(struct task_struct *tsk, unsigned long addr,
36 void *buf, int len, unsigned int gup_flags)
37{
38 struct mm_struct *mm;
39 int ret;
40
41 mm = get_task_mm(tsk);
42 if (!mm)
43 return 0;
44
45 if (!tsk->ptrace ||
46 (current != tsk->parent) ||
47 ((get_dumpable(mm) != SUID_DUMP_USER) &&
48 !ptracer_capable(tsk, mm->user_ns))) {
49 mmput(mm);
50 return 0;
51 }
52
53 ret = __access_remote_vm(tsk, mm, addr, buf, len, gup_flags);
54 mmput(mm);
55
56 return ret;
57}
58
Markus Metzgerbf53de92008-12-19 15:10:24 +010059
Eric W. Biederman7c24a702017-05-22 15:40:12 -050060void __ptrace_link(struct task_struct *child, struct task_struct *new_parent,
61 const struct cred *ptracer_cred)
62{
63 BUG_ON(!list_empty(&child->ptrace_entry));
64 list_add(&child->ptrace_entry, &new_parent->ptraced);
65 child->parent = new_parent;
66 child->ptracer_cred = get_cred(ptracer_cred);
67}
68
Markus Metzgerbf53de92008-12-19 15:10:24 +010069/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * ptrace a task: make the debugger its new parent and
71 * move it to the ptrace list.
72 *
73 * Must be called with the tasklist lock write-held.
74 */
Eric W. Biederman7c24a702017-05-22 15:40:12 -050075static void ptrace_link(struct task_struct *child, struct task_struct *new_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Jann Hornd8b99302019-07-04 17:32:23 +020077 __ptrace_link(child, new_parent, current_cred());
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
Roland McGrath3a709702009-04-07 23:21:06 -070079
Tejun Heoe3bd0582011-03-23 10:37:01 +010080/**
81 * __ptrace_unlink - unlink ptracee and restore its execution state
82 * @child: ptracee to be unlinked
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 *
Tejun Heo0e9f0a42011-03-23 10:37:01 +010084 * Remove @child from the ptrace list, move it back to the original parent,
85 * and restore the execution state so that it conforms to the group stop
86 * state.
87 *
88 * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer
89 * exiting. For PTRACE_DETACH, unless the ptracee has been killed between
90 * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED.
91 * If the ptracer is exiting, the ptracee can be in any state.
92 *
93 * After detach, the ptracee should be in a state which conforms to the
94 * group stop. If the group is stopped or in the process of stopping, the
95 * ptracee should be put into TASK_STOPPED; otherwise, it should be woken
96 * up from TASK_TRACED.
97 *
98 * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED,
99 * it goes through TRACED -> RUNNING -> STOPPED transition which is similar
100 * to but in the opposite direction of what happens while attaching to a
101 * stopped task. However, in this direction, the intermediate RUNNING
102 * state is not hidden even from the current ptracer and if it immediately
103 * re-attaches and performs a WNOHANG wait(2), it may fail.
Tejun Heoe3bd0582011-03-23 10:37:01 +0100104 *
105 * CONTEXT:
106 * write_lock_irq(tasklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700108void __ptrace_unlink(struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Eric W. Biedermane747b4a2016-11-14 18:48:07 -0600110 const struct cred *old_cred;
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300111 BUG_ON(!child->ptrace);
112
Ales Novak0a5bf402016-10-11 13:53:46 -0700113 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
114
Roland McGrathf4700212008-03-24 18:36:23 -0700115 child->parent = child->real_parent;
116 list_del_init(&child->ptrace_entry);
Eric W. Biedermane747b4a2016-11-14 18:48:07 -0600117 old_cred = child->ptracer_cred;
118 child->ptracer_cred = NULL;
119 put_cred(old_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 spin_lock(&child->sighand->siglock);
Oleg Nesterov1333ab02016-03-22 14:25:33 -0700122 child->ptrace = 0;
Tejun Heo0e9f0a42011-03-23 10:37:01 +0100123 /*
Tejun Heo73ddff22011-06-14 11:20:14 +0200124 * Clear all pending traps and TRAPPING. TRAPPING should be
125 * cleared regardless of JOBCTL_STOP_PENDING. Do it explicitly.
126 */
127 task_clear_jobctl_pending(child, JOBCTL_TRAP_MASK);
128 task_clear_jobctl_trapping(child);
129
130 /*
Tejun Heoa8f072c2011-06-02 11:13:59 +0200131 * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and
Tejun Heo0e9f0a42011-03-23 10:37:01 +0100132 * @child isn't dead.
133 */
134 if (!(child->flags & PF_EXITING) &&
135 (child->signal->flags & SIGNAL_STOP_STOPPED ||
Oleg Nesterov8a889512012-01-04 17:29:20 +0100136 child->signal->group_stop_count)) {
Tejun Heoa8f072c2011-06-02 11:13:59 +0200137 child->jobctl |= JOBCTL_STOP_PENDING;
Tejun Heo0e9f0a42011-03-23 10:37:01 +0100138
Oleg Nesterov8a889512012-01-04 17:29:20 +0100139 /*
140 * This is only possible if this thread was cloned by the
141 * traced task running in the stopped group, set the signal
142 * for the future reports.
143 * FIXME: we should change ptrace_init_task() to handle this
144 * case.
145 */
146 if (!(child->jobctl & JOBCTL_STOP_SIGMASK))
147 child->jobctl |= SIGSTOP;
148 }
149
Tejun Heo0e9f0a42011-03-23 10:37:01 +0100150 /*
151 * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick
152 * @child in the butt. Note that @resume should be used iff @child
153 * is in TASK_TRACED; otherwise, we might unduly disrupt
154 * TASK_KILLABLE sleeps.
155 */
Tejun Heoa8f072c2011-06-02 11:13:59 +0200156 if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child))
Oleg Nesterov910ffdb2013-01-21 20:47:41 +0100157 ptrace_signal_wake_up(child, true);
Tejun Heo0e9f0a42011-03-23 10:37:01 +0100158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 spin_unlock(&child->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Oleg Nesterov9899d112013-01-21 20:48:00 +0100162/* Ensure that nothing can wake it up, even SIGKILL */
163static bool ptrace_freeze_traced(struct task_struct *task)
164{
165 bool ret = false;
166
167 /* Lockless, nobody but us can set this flag */
168 if (task->jobctl & JOBCTL_LISTENING)
169 return ret;
170
171 spin_lock_irq(&task->sighand->siglock);
172 if (task_is_traced(task) && !__fatal_signal_pending(task)) {
173 task->state = __TASK_TRACED;
174 ret = true;
175 }
176 spin_unlock_irq(&task->sighand->siglock);
177
178 return ret;
179}
180
181static void ptrace_unfreeze_traced(struct task_struct *task)
182{
183 if (task->state != __TASK_TRACED)
184 return;
185
186 WARN_ON(!task->ptrace || task->parent != current);
187
bsegall@google.comd9fa4352017-04-07 16:04:51 -0700188 /*
189 * PTRACE_LISTEN can allow ptrace_trap_notify to wake us up remotely.
190 * Recheck state under the lock to close this race.
191 */
Oleg Nesterov9899d112013-01-21 20:48:00 +0100192 spin_lock_irq(&task->sighand->siglock);
bsegall@google.comd9fa4352017-04-07 16:04:51 -0700193 if (task->state == __TASK_TRACED) {
194 if (__fatal_signal_pending(task))
195 wake_up_state(task, __TASK_TRACED);
196 else
197 task->state = TASK_TRACED;
198 }
Oleg Nesterov9899d112013-01-21 20:48:00 +0100199 spin_unlock_irq(&task->sighand->siglock);
200}
201
Tejun Heo755e2762011-06-02 11:13:59 +0200202/**
203 * ptrace_check_attach - check whether ptracee is ready for ptrace operation
204 * @child: ptracee to check for
205 * @ignore_state: don't check whether @child is currently %TASK_TRACED
206 *
207 * Check whether @child is being ptraced by %current and ready for further
208 * ptrace operations. If @ignore_state is %false, @child also should be in
209 * %TASK_TRACED state and on return the child is guaranteed to be traced
210 * and not executing. If @ignore_state is %true, @child can be in any
211 * state.
212 *
213 * CONTEXT:
214 * Grabs and releases tasklist_lock and @child->sighand->siglock.
215 *
216 * RETURNS:
217 * 0 on success, -ESRCH if %child is not ready.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Oleg Nesterovedea0d02013-01-20 20:25:47 +0100219static int ptrace_check_attach(struct task_struct *child, bool ignore_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int ret = -ESRCH;
222
223 /*
224 * We take the read lock around doing both checks to close a
225 * possible race where someone else was tracing our child and
226 * detached between these two checks. After this locked check,
227 * we are sure that this is our traced child and that can only
228 * be changed by us so it's not changing right after this.
229 */
230 read_lock(&tasklist_lock);
Oleg Nesterov9899d112013-01-21 20:48:00 +0100231 if (child->ptrace && child->parent == current) {
232 WARN_ON(child->state == __TASK_TRACED);
Oleg Nesterovc0c0b642008-02-08 04:19:00 -0800233 /*
234 * child->sighand can't be NULL, release_task()
235 * does ptrace_unlink() before __exit_signal().
236 */
Oleg Nesterov9899d112013-01-21 20:48:00 +0100237 if (ignore_state || ptrace_freeze_traced(child))
Oleg Nesterov321fb562011-04-01 20:13:01 +0200238 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 read_unlock(&tasklist_lock);
241
Oleg Nesterov9899d112013-01-21 20:48:00 +0100242 if (!ret && !ignore_state) {
243 if (!wait_task_inactive(child, __TASK_TRACED)) {
244 /*
245 * This can only happen if may_ptrace_stop() fails and
246 * ptrace_stop() changes ->state back to TASK_RUNNING,
247 * so we should not worry about leaking __TASK_TRACED.
248 */
249 WARN_ON(child->state == __TASK_TRACED);
250 ret = -ESRCH;
251 }
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return ret;
255}
256
Eric Paris69f594a2012-01-03 12:25:15 -0500257static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode)
258{
Jiri Kosina822e5d52018-09-25 14:38:18 +0200259 if (mode & PTRACE_MODE_SCHED)
260 return false;
261
Eric Paris69f594a2012-01-03 12:25:15 -0500262 if (mode & PTRACE_MODE_NOAUDIT)
263 return has_ns_capability_noaudit(current, ns, CAP_SYS_PTRACE);
264 else
265 return has_ns_capability(current, ns, CAP_SYS_PTRACE);
266}
267
Tetsuo Handa9f997982012-07-31 20:37:00 +0900268/* Returns 0 on success, -errno on denial. */
269static int __ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700270{
David Howellsc69e8d92008-11-14 10:39:19 +1100271 const struct cred *cred = current_cred(), *tcred;
Eric W. Biederman694a95f2016-10-13 21:23:16 -0500272 struct mm_struct *mm;
Jann Horncaaee622016-01-20 15:00:04 -0800273 kuid_t caller_uid;
274 kgid_t caller_gid;
275
276 if (!(mode & PTRACE_MODE_FSCREDS) == !(mode & PTRACE_MODE_REALCREDS)) {
277 WARN(1, "denying ptrace access check without PTRACE_MODE_*CREDS\n");
278 return -EPERM;
279 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100280
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700281 /* May we inspect the given task?
282 * This check is used both for attaching with ptrace
283 * and for allowing access to sensitive information in /proc.
284 *
285 * ptrace_attach denies several cases that /proc allows
286 * because setting up the necessary parent/child relationship
287 * or halting the specified task is impossible.
288 */
Jann Horncaaee622016-01-20 15:00:04 -0800289
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700290 /* Don't let security modules deny introspection */
Mark Grondona73af9632013-09-11 14:24:31 -0700291 if (same_thread_group(task, current))
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700292 return 0;
David Howellsc69e8d92008-11-14 10:39:19 +1100293 rcu_read_lock();
Jann Horncaaee622016-01-20 15:00:04 -0800294 if (mode & PTRACE_MODE_FSCREDS) {
295 caller_uid = cred->fsuid;
296 caller_gid = cred->fsgid;
297 } else {
298 /*
299 * Using the euid would make more sense here, but something
300 * in userland might rely on the old behavior, and this
301 * shouldn't be a security problem since
302 * PTRACE_MODE_REALCREDS implies that the caller explicitly
303 * used a syscall that requests access to another process
304 * (and not a filesystem syscall to procfs).
305 */
306 caller_uid = cred->uid;
307 caller_gid = cred->gid;
308 }
David Howellsc69e8d92008-11-14 10:39:19 +1100309 tcred = __task_cred(task);
Jann Horncaaee622016-01-20 15:00:04 -0800310 if (uid_eq(caller_uid, tcred->euid) &&
311 uid_eq(caller_uid, tcred->suid) &&
312 uid_eq(caller_uid, tcred->uid) &&
313 gid_eq(caller_gid, tcred->egid) &&
314 gid_eq(caller_gid, tcred->sgid) &&
315 gid_eq(caller_gid, tcred->gid))
Serge E. Hallyn8409cca2011-03-23 16:43:20 -0700316 goto ok;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800317 if (ptrace_has_cap(tcred->user_ns, mode))
Serge E. Hallyn8409cca2011-03-23 16:43:20 -0700318 goto ok;
319 rcu_read_unlock();
320 return -EPERM;
321ok:
David Howellsc69e8d92008-11-14 10:39:19 +1100322 rcu_read_unlock();
Jann Horn122be5a2019-05-29 13:31:57 +0200323 /*
324 * If a task drops privileges and becomes nondumpable (through a syscall
325 * like setresuid()) while we are trying to access it, we must ensure
326 * that the dumpability is read after the credentials; otherwise,
327 * we may be able to attach to a task that we shouldn't be able to
328 * attach to (as if the task had dropped privileges without becoming
329 * nondumpable).
330 * Pairs with a write barrier in commit_creds().
331 */
332 smp_rmb();
Eric W. Biederman694a95f2016-10-13 21:23:16 -0500333 mm = task->mm;
334 if (mm &&
335 ((get_dumpable(mm) != SUID_DUMP_USER) &&
336 !ptrace_has_cap(mm->user_ns, mode)))
337 return -EPERM;
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700338
Jiri Kosina822e5d52018-09-25 14:38:18 +0200339 if (mode & PTRACE_MODE_SCHED)
340 return 0;
Ingo Molnar9e488582009-05-07 19:26:19 +1000341 return security_ptrace_access_check(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700342}
343
Jiri Kosina822e5d52018-09-25 14:38:18 +0200344bool ptrace_may_access_sched(struct task_struct *task, unsigned int mode)
345{
346 return __ptrace_may_access(task, mode | PTRACE_MODE_SCHED);
347}
348
Stephen Smalley006ebb42008-05-19 08:32:49 -0400349bool ptrace_may_access(struct task_struct *task, unsigned int mode)
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700350{
351 int err;
352 task_lock(task);
Stephen Smalley006ebb42008-05-19 08:32:49 -0400353 err = __ptrace_may_access(task, mode);
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700354 task_unlock(task);
Roland McGrath3a709702009-04-07 23:21:06 -0700355 return !err;
Miklos Szerediab8d11b2005-09-06 15:18:24 -0700356}
357
Tejun Heo3544d722011-06-14 11:20:15 +0200358static int ptrace_attach(struct task_struct *task, long request,
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -0700359 unsigned long addr,
Tejun Heo3544d722011-06-14 11:20:15 +0200360 unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Tejun Heo3544d722011-06-14 11:20:15 +0200362 bool seize = (request == PTRACE_SEIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int retval;
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700364
Tejun Heo3544d722011-06-14 11:20:15 +0200365 retval = -EIO;
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -0700366 if (seize) {
367 if (addr != 0)
368 goto out;
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -0700369 if (flags & ~(unsigned long)PTRACE_O_MASK)
370 goto out;
371 flags = PT_PTRACED | PT_SEIZED | (flags << PT_OPT_FLAG_SHIFT);
372 } else {
373 flags = PT_PTRACED;
374 }
Tejun Heo3544d722011-06-14 11:20:15 +0200375
Al Viroa5cb0132007-03-20 13:58:35 -0400376 audit_ptrace(task);
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 retval = -EPERM;
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700379 if (unlikely(task->flags & PF_KTHREAD))
380 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700381 if (same_thread_group(task, current))
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700382 goto out;
383
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700384 /*
385 * Protect exec's credential calculations against our interference;
Denys Vlasenko86b6c1f2012-03-23 15:02:41 -0700386 * SUID, SGID and LSM creds get determined differently
David Howells5e751e92009-05-08 13:55:22 +0100387 * under ptrace.
David Howellsd84f4f92008-11-14 10:39:23 +1100388 */
Oleg Nesterov793285f2009-07-05 12:08:26 -0700389 retval = -ERESTARTNOINTR;
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700390 if (mutex_lock_interruptible(&task->signal->cred_guard_mutex))
David Howellsd84f4f92008-11-14 10:39:23 +1100391 goto out;
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700392
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700393 task_lock(task);
Jann Horncaaee622016-01-20 15:00:04 -0800394 retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS);
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700395 task_unlock(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (retval)
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700397 goto unlock_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700399 write_lock_irq(&tasklist_lock);
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700400 retval = -EPERM;
401 if (unlikely(task->exit_state))
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700402 goto unlock_tasklist;
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700403 if (task->ptrace)
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700404 goto unlock_tasklist;
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700405
Tejun Heo3544d722011-06-14 11:20:15 +0200406 if (seize)
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -0700407 flags |= PT_SEIZED;
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -0700408 task->ptrace = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Eric W. Biederman7c24a702017-05-22 15:40:12 -0500410 ptrace_link(task, current);
Tejun Heo3544d722011-06-14 11:20:15 +0200411
412 /* SEIZE doesn't trap tracee on attach */
413 if (!seize)
414 send_sig_info(SIGSTOP, SEND_SIG_FORCED, task);
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700415
Tejun Heod79fdd62011-03-23 10:37:00 +0100416 spin_lock(&task->sighand->siglock);
417
418 /*
Tejun Heo73ddff22011-06-14 11:20:14 +0200419 * If the task is already STOPPED, set JOBCTL_TRAP_STOP and
Tejun Heod79fdd62011-03-23 10:37:00 +0100420 * TRAPPING, and kick it so that it transits to TRACED. TRAPPING
421 * will be cleared if the child completes the transition or any
422 * event which clears the group stop states happens. We'll wait
423 * for the transition to complete before returning from this
424 * function.
425 *
426 * This hides STOPPED -> RUNNING -> TRACED transition from the
427 * attaching thread but a different thread in the same group can
428 * still observe the transient RUNNING state. IOW, if another
429 * thread's WNOHANG wait(2) on the stopped tracee races against
430 * ATTACH, the wait(2) may fail due to the transient RUNNING.
431 *
432 * The following task_is_stopped() test is safe as both transitions
433 * in and out of STOPPED are protected by siglock.
434 */
Tejun Heo7dd3db52011-06-02 11:14:00 +0200435 if (task_is_stopped(task) &&
Tejun Heo73ddff22011-06-14 11:20:14 +0200436 task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING))
Oleg Nesterov910ffdb2013-01-21 20:47:41 +0100437 signal_wake_up_state(task, __TASK_STOPPED);
Tejun Heod79fdd62011-03-23 10:37:00 +0100438
439 spin_unlock(&task->sighand->siglock);
440
Oleg Nesterovb79b7ba2009-06-17 16:27:31 -0700441 retval = 0;
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700442unlock_tasklist:
443 write_unlock_irq(&tasklist_lock);
444unlock_creds:
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -0700445 mutex_unlock(&task->signal->cred_guard_mutex);
Linus Torvaldsf5b40e32006-05-07 10:49:33 -0700446out:
Vladimir Zapolskiyf701e5b2011-07-15 20:45:18 +0300447 if (!retval) {
Oleg Nesterov7c3b00e2016-01-20 14:59:55 -0800448 /*
449 * We do not bother to change retval or clear JOBCTL_TRAPPING
450 * if wait_on_bit() was interrupted by SIGKILL. The tracer will
451 * not return to user-mode, it will exit and clear this bit in
452 * __ptrace_unlink() if it wasn't already cleared by the tracee;
453 * and until then nobody can ptrace this task.
454 */
455 wait_on_bit(&task->jobctl, JOBCTL_TRAPPING_BIT, TASK_KILLABLE);
Vladimir Zapolskiyf701e5b2011-07-15 20:45:18 +0300456 proc_ptrace_connector(task, PTRACE_ATTACH);
457 }
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return retval;
460}
461
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700462/**
463 * ptrace_traceme -- helper for PTRACE_TRACEME
464 *
465 * Performs checks and sets PT_PTRACED.
466 * Should be used by all ptrace implementations for PTRACE_TRACEME.
467 */
Linus Torvaldse3e89cc2011-03-04 09:23:30 -0800468static int ptrace_traceme(void)
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700469{
470 int ret = -EPERM;
471
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700472 write_lock_irq(&tasklist_lock);
473 /* Are we already being traced? */
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700474 if (!current->ptrace) {
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700475 ret = security_ptrace_traceme(current->parent);
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700476 /*
477 * Check PF_EXITING to ensure ->real_parent has not passed
478 * exit_ptrace(). Otherwise we don't report the error but
479 * pretend ->real_parent untraces us right after return.
480 */
481 if (!ret && !(current->real_parent->flags & PF_EXITING)) {
482 current->ptrace = PT_PTRACED;
Eric W. Biederman7c24a702017-05-22 15:40:12 -0500483 ptrace_link(current, current->real_parent);
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700484 }
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700485 }
Oleg Nesterov4b105cb2009-06-17 16:27:33 -0700486 write_unlock_irq(&tasklist_lock);
487
Oleg Nesterovf2f0b002009-06-17 16:27:32 -0700488 return ret;
489}
490
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700491/*
492 * Called with irqs disabled, returns true if childs should reap themselves.
493 */
494static int ignoring_children(struct sighand_struct *sigh)
495{
496 int ret;
497 spin_lock(&sigh->siglock);
498 ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) ||
499 (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT);
500 spin_unlock(&sigh->siglock);
501 return ret;
502}
503
504/*
505 * Called with tasklist_lock held for writing.
506 * Unlink a traced task, and clean it up if it was a traced zombie.
507 * Return true if it needs to be reaped with release_task().
508 * (We can't call release_task() here because we already hold tasklist_lock.)
509 *
510 * If it's a zombie, our attachedness prevented normal parent notification
511 * or self-reaping. Do notification now if it would have happened earlier.
512 * If it should reap itself, return true.
513 *
Oleg Nesterova7f07652009-09-23 15:56:44 -0700514 * If it's our own child, there is no notification to do. But if our normal
515 * children self-reap, then this child was prevented by ptrace and we must
516 * reap it now, in that case we must also wake up sub-threads sleeping in
517 * do_wait().
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700518 */
519static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p)
520{
Oleg Nesterov9843a1e2011-06-22 23:08:53 +0200521 bool dead;
522
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700523 __ptrace_unlink(p);
524
Oleg Nesterov9843a1e2011-06-22 23:08:53 +0200525 if (p->exit_state != EXIT_ZOMBIE)
526 return false;
527
528 dead = !thread_group_leader(p);
529
530 if (!dead && thread_group_empty(p)) {
531 if (!same_thread_group(p->real_parent, tracer))
532 dead = do_notify_parent(p, p->exit_signal);
533 else if (ignoring_children(tracer->sighand)) {
534 __wake_up_parent(p, tracer);
Oleg Nesterov9843a1e2011-06-22 23:08:53 +0200535 dead = true;
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700536 }
537 }
Oleg Nesterov9843a1e2011-06-22 23:08:53 +0200538 /* Mark it as in the process of being reaped. */
539 if (dead)
540 p->exit_state = EXIT_DEAD;
541 return dead;
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700542}
543
Linus Torvaldse3e89cc2011-03-04 09:23:30 -0800544static int ptrace_detach(struct task_struct *child, unsigned int data)
Oleg Nesterov5ecfbae2006-02-15 22:50:10 +0300545{
546 if (!valid_signal(data))
547 return -EIO;
548
549 /* Architecture-specific hardware disable .. */
550 ptrace_disable(child);
551
Oleg Nesterov95c3eb72009-04-02 16:58:11 -0700552 write_lock_irq(&tasklist_lock);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700553 /*
Oleg Nesterov64a40962015-04-16 12:47:32 -0700554 * We rely on ptrace_freeze_traced(). It can't be killed and
555 * untraced by another thread, it can't be a zombie.
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700556 */
Oleg Nesterov64a40962015-04-16 12:47:32 -0700557 WARN_ON(!child->ptrace || child->exit_state);
558 /*
559 * tasklist_lock avoids the race with wait_task_stopped(), see
560 * the comment in ptrace_resume().
561 */
562 child->exit_code = data;
563 __ptrace_detach(current, child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 write_unlock_irq(&tasklist_lock);
565
Vladimir Zapolskiyf701e5b2011-07-15 20:45:18 +0300566 proc_ptrace_connector(child, PTRACE_DETACH);
Oleg Nesterov45761452009-04-02 16:58:14 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
569}
570
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700571/*
Oleg Nesterovc7e49c12010-08-10 18:03:07 -0700572 * Detach all tasks we were using ptrace on. Called with tasklist held
Oleg Nesterov7c8bd232014-12-10 15:45:33 -0800573 * for writing.
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700574 */
Oleg Nesterov7c8bd232014-12-10 15:45:33 -0800575void exit_ptrace(struct task_struct *tracer, struct list_head *dead)
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700576{
577 struct task_struct *p, *n;
Oleg Nesterovc7e49c12010-08-10 18:03:07 -0700578
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700579 list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) {
Oleg Nesterov992fb6e2012-12-17 16:03:07 -0800580 if (unlikely(p->ptrace & PT_EXITKILL))
581 send_sig_info(SIGKILL, SEND_SIG_FORCED, p);
582
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700583 if (__ptrace_detach(tracer, p))
Oleg Nesterov7c8bd232014-12-10 15:45:33 -0800584 list_add(&p->ptrace_entry, dead);
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700585 }
Oleg Nesterov39c626a2009-04-02 16:58:18 -0700586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len)
589{
590 int copied = 0;
591
592 while (len > 0) {
593 char buf[128];
594 int this_len, retval;
595
596 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
Eric W. Biedermane71b4e02016-11-22 12:06:50 -0600597 retval = ptrace_access_vm(tsk, src, buf, this_len, FOLL_FORCE);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (!retval) {
600 if (copied)
601 break;
602 return -EIO;
603 }
604 if (copy_to_user(dst, buf, retval))
605 return -EFAULT;
606 copied += retval;
607 src += retval;
608 dst += retval;
Roland McGrath3a709702009-04-07 23:21:06 -0700609 len -= retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611 return copied;
612}
613
614int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len)
615{
616 int copied = 0;
617
618 while (len > 0) {
619 char buf[128];
620 int this_len, retval;
621
622 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
623 if (copy_from_user(buf, src, this_len))
624 return -EFAULT;
Eric W. Biedermane71b4e02016-11-22 12:06:50 -0600625 retval = ptrace_access_vm(tsk, dst, buf, this_len,
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +0100626 FOLL_FORCE | FOLL_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (!retval) {
628 if (copied)
629 break;
630 return -EIO;
631 }
632 copied += retval;
633 src += retval;
634 dst += retval;
Roland McGrath3a709702009-04-07 23:21:06 -0700635 len -= retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 return copied;
638}
639
Namhyung Kim4abf9862010-10-27 15:33:45 -0700640static int ptrace_setoptions(struct task_struct *child, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Denys Vlasenko86b6c1f2012-03-23 15:02:41 -0700642 unsigned flags;
643
Denys Vlasenko8c5cf9e2012-03-23 15:02:40 -0700644 if (data & ~(unsigned long)PTRACE_O_MASK)
645 return -EINVAL;
646
Tycho Andersen13c4a902015-06-13 09:02:48 -0600647 if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) {
Masahiro Yamada97f26452016-08-03 13:45:50 -0700648 if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) ||
649 !IS_ENABLED(CONFIG_SECCOMP))
Tycho Andersen13c4a902015-06-13 09:02:48 -0600650 return -EINVAL;
651
652 if (!capable(CAP_SYS_ADMIN))
653 return -EPERM;
654
655 if (seccomp_mode(&current->seccomp) != SECCOMP_MODE_DISABLED ||
656 current->ptrace & PT_SUSPEND_SECCOMP)
657 return -EPERM;
658 }
659
Denys Vlasenko86b6c1f2012-03-23 15:02:41 -0700660 /* Avoid intermediate state when all opts are cleared */
661 flags = child->ptrace;
662 flags &= ~(PTRACE_O_MASK << PT_OPT_FLAG_SHIFT);
663 flags |= (data << PT_OPT_FLAG_SHIFT);
664 child->ptrace = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Denys Vlasenko8c5cf9e2012-03-23 15:02:40 -0700666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Roland McGrathe16b2782008-04-20 13:10:12 -0700669static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Oleg Nesterove4961252009-06-17 16:27:36 -0700671 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int error = -ESRCH;
673
Oleg Nesterove4961252009-06-17 16:27:36 -0700674 if (lock_task_sighand(child, &flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700677 *info = *child->last_siginfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 error = 0;
679 }
Oleg Nesterove4961252009-06-17 16:27:36 -0700680 unlock_task_sighand(child, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return error;
683}
684
Roland McGrathe16b2782008-04-20 13:10:12 -0700685static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Oleg Nesterove4961252009-06-17 16:27:36 -0700687 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int error = -ESRCH;
689
Oleg Nesterove4961252009-06-17 16:27:36 -0700690 if (lock_task_sighand(child, &flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (likely(child->last_siginfo != NULL)) {
Roland McGrathe16b2782008-04-20 13:10:12 -0700693 *child->last_siginfo = *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 error = 0;
695 }
Oleg Nesterove4961252009-06-17 16:27:36 -0700696 unlock_task_sighand(child, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return error;
699}
700
Andrey Vagin84c751b2013-04-30 15:27:59 -0700701static int ptrace_peek_siginfo(struct task_struct *child,
702 unsigned long addr,
703 unsigned long data)
704{
705 struct ptrace_peeksiginfo_args arg;
706 struct sigpending *pending;
707 struct sigqueue *q;
708 int ret, i;
709
710 ret = copy_from_user(&arg, (void __user *) addr,
711 sizeof(struct ptrace_peeksiginfo_args));
712 if (ret)
713 return -EFAULT;
714
715 if (arg.flags & ~PTRACE_PEEKSIGINFO_SHARED)
716 return -EINVAL; /* unknown flags */
717
718 if (arg.nr < 0)
719 return -EINVAL;
720
Eric W. Biederman2fc1de42019-05-28 18:46:37 -0500721 /* Ensure arg.off fits in an unsigned long */
722 if (arg.off > ULONG_MAX)
723 return 0;
724
Andrey Vagin84c751b2013-04-30 15:27:59 -0700725 if (arg.flags & PTRACE_PEEKSIGINFO_SHARED)
726 pending = &child->signal->shared_pending;
727 else
728 pending = &child->pending;
729
730 for (i = 0; i < arg.nr; ) {
731 siginfo_t info;
Eric W. Biederman2fc1de42019-05-28 18:46:37 -0500732 unsigned long off = arg.off + i;
733 bool found = false;
Andrey Vagin84c751b2013-04-30 15:27:59 -0700734
735 spin_lock_irq(&child->sighand->siglock);
736 list_for_each_entry(q, &pending->list, list) {
737 if (!off--) {
Eric W. Biederman2fc1de42019-05-28 18:46:37 -0500738 found = true;
Andrey Vagin84c751b2013-04-30 15:27:59 -0700739 copy_siginfo(&info, &q->info);
740 break;
741 }
742 }
743 spin_unlock_irq(&child->sighand->siglock);
744
Eric W. Biederman2fc1de42019-05-28 18:46:37 -0500745 if (!found) /* beyond the end of the list */
Andrey Vagin84c751b2013-04-30 15:27:59 -0700746 break;
747
748#ifdef CONFIG_COMPAT
Andy Lutomirski5c465212016-03-22 14:24:55 -0700749 if (unlikely(in_compat_syscall())) {
Andrey Vagin84c751b2013-04-30 15:27:59 -0700750 compat_siginfo_t __user *uinfo = compat_ptr(data);
751
Mathieu Desnoyers706b23b2013-06-28 09:49:46 -0400752 if (copy_siginfo_to_user32(uinfo, &info) ||
753 __put_user(info.si_code, &uinfo->si_code)) {
754 ret = -EFAULT;
755 break;
756 }
757
Andrey Vagin84c751b2013-04-30 15:27:59 -0700758 } else
759#endif
760 {
761 siginfo_t __user *uinfo = (siginfo_t __user *) data;
762
Mathieu Desnoyers706b23b2013-06-28 09:49:46 -0400763 if (copy_siginfo_to_user(uinfo, &info) ||
764 __put_user(info.si_code, &uinfo->si_code)) {
765 ret = -EFAULT;
766 break;
767 }
Andrey Vagin84c751b2013-04-30 15:27:59 -0700768 }
769
770 data += sizeof(siginfo_t);
771 i++;
772
773 if (signal_pending(current))
774 break;
775
776 cond_resched();
777 }
778
779 if (i > 0)
780 return i;
781
782 return ret;
783}
Roland McGrath36df29d2008-01-30 13:30:51 +0100784
785#ifdef PTRACE_SINGLESTEP
786#define is_singlestep(request) ((request) == PTRACE_SINGLESTEP)
787#else
788#define is_singlestep(request) 0
789#endif
790
Roland McGrath5b88abb2008-01-30 13:30:53 +0100791#ifdef PTRACE_SINGLEBLOCK
792#define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK)
793#else
794#define is_singleblock(request) 0
795#endif
796
Roland McGrath36df29d2008-01-30 13:30:51 +0100797#ifdef PTRACE_SYSEMU
798#define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP)
799#else
800#define is_sysemu_singlestep(request) 0
801#endif
802
Namhyung Kim4abf9862010-10-27 15:33:45 -0700803static int ptrace_resume(struct task_struct *child, long request,
804 unsigned long data)
Roland McGrath36df29d2008-01-30 13:30:51 +0100805{
Oleg Nesterovb72c1862015-04-16 12:47:29 -0700806 bool need_siglock;
807
Roland McGrath36df29d2008-01-30 13:30:51 +0100808 if (!valid_signal(data))
809 return -EIO;
810
811 if (request == PTRACE_SYSCALL)
812 set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
813 else
814 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
815
816#ifdef TIF_SYSCALL_EMU
817 if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP)
818 set_tsk_thread_flag(child, TIF_SYSCALL_EMU);
819 else
820 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
821#endif
822
Roland McGrath5b88abb2008-01-30 13:30:53 +0100823 if (is_singleblock(request)) {
824 if (unlikely(!arch_has_block_step()))
825 return -EIO;
826 user_enable_block_step(child);
827 } else if (is_singlestep(request) || is_sysemu_singlestep(request)) {
Roland McGrath36df29d2008-01-30 13:30:51 +0100828 if (unlikely(!arch_has_single_step()))
829 return -EIO;
830 user_enable_single_step(child);
Roland McGrath3a709702009-04-07 23:21:06 -0700831 } else {
Roland McGrath36df29d2008-01-30 13:30:51 +0100832 user_disable_single_step(child);
Roland McGrath3a709702009-04-07 23:21:06 -0700833 }
Roland McGrath36df29d2008-01-30 13:30:51 +0100834
Oleg Nesterovb72c1862015-04-16 12:47:29 -0700835 /*
836 * Change ->exit_code and ->state under siglock to avoid the race
837 * with wait_task_stopped() in between; a non-zero ->exit_code will
838 * wrongly look like another report from tracee.
839 *
840 * Note that we need siglock even if ->exit_code == data and/or this
841 * status was not reported yet, the new status must not be cleared by
842 * wait_task_stopped() after resume.
843 *
844 * If data == 0 we do not care if wait_task_stopped() reports the old
845 * status and clears the code too; this can't race with the tracee, it
846 * takes siglock after resume.
847 */
848 need_siglock = data && !thread_group_empty(current);
849 if (need_siglock)
850 spin_lock_irq(&child->sighand->siglock);
Roland McGrath36df29d2008-01-30 13:30:51 +0100851 child->exit_code = data;
Oleg Nesterov0666fb52011-05-25 19:20:21 +0200852 wake_up_state(child, __TASK_TRACED);
Oleg Nesterovb72c1862015-04-16 12:47:29 -0700853 if (need_siglock)
854 spin_unlock_irq(&child->sighand->siglock);
Roland McGrath36df29d2008-01-30 13:30:51 +0100855
856 return 0;
857}
858
Suresh Siddha2225a122010-02-11 11:51:00 -0800859#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
860
861static const struct user_regset *
862find_regset(const struct user_regset_view *view, unsigned int type)
863{
864 const struct user_regset *regset;
865 int n;
866
867 for (n = 0; n < view->n; ++n) {
868 regset = view->regsets + n;
869 if (regset->core_note_type == type)
870 return regset;
871 }
872
873 return NULL;
874}
875
876static int ptrace_regset(struct task_struct *task, int req, unsigned int type,
877 struct iovec *kiov)
878{
879 const struct user_regset_view *view = task_user_regset_view(task);
880 const struct user_regset *regset = find_regset(view, type);
881 int regset_no;
882
883 if (!regset || (kiov->iov_len % regset->size) != 0)
Suresh Siddhac6a0dd72010-02-22 14:51:32 -0800884 return -EINVAL;
Suresh Siddha2225a122010-02-11 11:51:00 -0800885
886 regset_no = regset - view->regsets;
887 kiov->iov_len = min(kiov->iov_len,
888 (__kernel_size_t) (regset->n * regset->size));
889
890 if (req == PTRACE_GETREGSET)
891 return copy_regset_to_user(task, view, regset_no, 0,
892 kiov->iov_len, kiov->iov_base);
893 else
894 return copy_regset_from_user(task, view, regset_no, 0,
895 kiov->iov_len, kiov->iov_base);
896}
897
Josh Stonee8440c12013-01-13 19:03:34 +0100898/*
899 * This is declared in linux/regset.h and defined in machine-dependent
900 * code. We put the export here, near the primary machine-neutral use,
901 * to ensure no machine forgets it.
902 */
903EXPORT_SYMBOL_GPL(task_user_regset_view);
Suresh Siddha2225a122010-02-11 11:51:00 -0800904#endif
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906int ptrace_request(struct task_struct *child, long request,
Namhyung Kim4abf9862010-10-27 15:33:45 -0700907 unsigned long addr, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Tejun Heofca26f22011-06-14 11:20:16 +0200909 bool seized = child->ptrace & PT_SEIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 int ret = -EIO;
Tejun Heo544b2c92011-06-14 11:20:18 +0200911 siginfo_t siginfo, *si;
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700912 void __user *datavp = (void __user *) data;
913 unsigned long __user *datalp = datavp;
Tejun Heofca26f22011-06-14 11:20:16 +0200914 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 switch (request) {
Roland McGrath16c3e382008-01-30 13:31:47 +0100917 case PTRACE_PEEKTEXT:
918 case PTRACE_PEEKDATA:
919 return generic_ptrace_peekdata(child, addr, data);
920 case PTRACE_POKETEXT:
921 case PTRACE_POKEDATA:
922 return generic_ptrace_pokedata(child, addr, data);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924#ifdef PTRACE_OLDSETOPTIONS
925 case PTRACE_OLDSETOPTIONS:
926#endif
927 case PTRACE_SETOPTIONS:
928 ret = ptrace_setoptions(child, data);
929 break;
930 case PTRACE_GETEVENTMSG:
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700931 ret = put_user(child->ptrace_message, datalp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700933
Andrey Vagin84c751b2013-04-30 15:27:59 -0700934 case PTRACE_PEEKSIGINFO:
935 ret = ptrace_peek_siginfo(child, addr, data);
936 break;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 case PTRACE_GETSIGINFO:
Roland McGrathe16b2782008-04-20 13:10:12 -0700939 ret = ptrace_getsiginfo(child, &siginfo);
940 if (!ret)
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700941 ret = copy_siginfo_to_user(datavp, &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 case PTRACE_SETSIGINFO:
Namhyung Kim9fed81d2010-10-27 15:33:46 -0700945 if (copy_from_user(&siginfo, datavp, sizeof siginfo))
Roland McGrathe16b2782008-04-20 13:10:12 -0700946 ret = -EFAULT;
947 else
948 ret = ptrace_setsiginfo(child, &siginfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 break;
Roland McGrathe16b2782008-04-20 13:10:12 -0700950
Andrey Vagin29000ca2013-07-03 15:08:12 -0700951 case PTRACE_GETSIGMASK:
952 if (addr != sizeof(sigset_t)) {
953 ret = -EINVAL;
954 break;
955 }
956
957 if (copy_to_user(datavp, &child->blocked, sizeof(sigset_t)))
958 ret = -EFAULT;
959 else
960 ret = 0;
961
962 break;
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
988 ret = 0;
989 break;
990 }
991
Tejun Heofca26f22011-06-14 11:20:16 +0200992 case PTRACE_INTERRUPT:
993 /*
994 * Stop tracee without any side-effect on signal or job
995 * control. At least one trap is guaranteed to happen
996 * after this request. If @child is already trapped, the
997 * current trap is not disturbed and another trap will
998 * happen after the current trap is ended with PTRACE_CONT.
999 *
1000 * The actual trap might not be PTRACE_EVENT_STOP trap but
1001 * the pending condition is cleared regardless.
1002 */
1003 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1004 break;
1005
Tejun Heo544b2c92011-06-14 11:20:18 +02001006 /*
1007 * INTERRUPT doesn't disturb existing trap sans one
1008 * exception. If ptracer issued LISTEN for the current
1009 * STOP, this INTERRUPT should clear LISTEN and re-trap
1010 * tracee into STOP.
1011 */
Tejun Heofca26f22011-06-14 11:20:16 +02001012 if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP)))
Oleg Nesterov910ffdb2013-01-21 20:47:41 +01001013 ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING);
Tejun Heo544b2c92011-06-14 11:20:18 +02001014
1015 unlock_task_sighand(child, &flags);
1016 ret = 0;
1017 break;
1018
1019 case PTRACE_LISTEN:
1020 /*
1021 * Listen for events. Tracee must be in STOP. It's not
1022 * resumed per-se but is not considered to be in TRACED by
1023 * wait(2) or ptrace(2). If an async event (e.g. group
1024 * stop state change) happens, tracee will enter STOP trap
1025 * again. Alternatively, ptracer can issue INTERRUPT to
1026 * finish listening and re-trap tracee into STOP.
1027 */
1028 if (unlikely(!seized || !lock_task_sighand(child, &flags)))
1029 break;
1030
1031 si = child->last_siginfo;
Oleg Nesterovf9d81f62011-09-25 19:46:22 +02001032 if (likely(si && (si->si_code >> 8) == PTRACE_EVENT_STOP)) {
1033 child->jobctl |= JOBCTL_LISTENING;
1034 /*
1035 * If NOTIFY is set, it means event happened between
1036 * start of this trap and now. Trigger re-trap.
1037 */
1038 if (child->jobctl & JOBCTL_TRAP_NOTIFY)
Oleg Nesterov910ffdb2013-01-21 20:47:41 +01001039 ptrace_signal_wake_up(child, true);
Oleg Nesterovf9d81f62011-09-25 19:46:22 +02001040 ret = 0;
1041 }
Tejun Heofca26f22011-06-14 11:20:16 +02001042 unlock_task_sighand(child, &flags);
Tejun Heofca26f22011-06-14 11:20:16 +02001043 break;
1044
Alexey Dobriyan1bcf5482007-10-16 01:23:45 -07001045 case PTRACE_DETACH: /* detach a process that was attached. */
1046 ret = ptrace_detach(child, data);
1047 break;
Roland McGrath36df29d2008-01-30 13:30:51 +01001048
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001049#ifdef CONFIG_BINFMT_ELF_FDPIC
1050 case PTRACE_GETFDPIC: {
Oleg Nesterove0129ef2010-05-26 14:42:53 -07001051 struct mm_struct *mm = get_task_mm(child);
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001052 unsigned long tmp = 0;
1053
Oleg Nesterove0129ef2010-05-26 14:42:53 -07001054 ret = -ESRCH;
1055 if (!mm)
1056 break;
1057
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001058 switch (addr) {
1059 case PTRACE_GETFDPIC_EXEC:
Oleg Nesterove0129ef2010-05-26 14:42:53 -07001060 tmp = mm->context.exec_fdpic_loadmap;
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001061 break;
1062 case PTRACE_GETFDPIC_INTERP:
Oleg Nesterove0129ef2010-05-26 14:42:53 -07001063 tmp = mm->context.interp_fdpic_loadmap;
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001064 break;
1065 default:
1066 break;
1067 }
Oleg Nesterove0129ef2010-05-26 14:42:53 -07001068 mmput(mm);
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001069
Namhyung Kim9fed81d2010-10-27 15:33:46 -07001070 ret = put_user(tmp, datalp);
Mike Frysinger9c1a1252010-05-26 14:42:52 -07001071 break;
1072 }
1073#endif
1074
Roland McGrath36df29d2008-01-30 13:30:51 +01001075#ifdef PTRACE_SINGLESTEP
1076 case PTRACE_SINGLESTEP:
1077#endif
Roland McGrath5b88abb2008-01-30 13:30:53 +01001078#ifdef PTRACE_SINGLEBLOCK
1079 case PTRACE_SINGLEBLOCK:
1080#endif
Roland McGrath36df29d2008-01-30 13:30:51 +01001081#ifdef PTRACE_SYSEMU
1082 case PTRACE_SYSEMU:
1083 case PTRACE_SYSEMU_SINGLESTEP:
1084#endif
1085 case PTRACE_SYSCALL:
1086 case PTRACE_CONT:
1087 return ptrace_resume(child, request, data);
1088
1089 case PTRACE_KILL:
1090 if (child->exit_state) /* already dead */
1091 return 0;
1092 return ptrace_resume(child, request, SIGKILL);
1093
Suresh Siddha2225a122010-02-11 11:51:00 -08001094#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1095 case PTRACE_GETREGSET:
Andrey Vagin29000ca2013-07-03 15:08:12 -07001096 case PTRACE_SETREGSET: {
Suresh Siddha2225a122010-02-11 11:51:00 -08001097 struct iovec kiov;
Namhyung Kim9fed81d2010-10-27 15:33:46 -07001098 struct iovec __user *uiov = datavp;
Suresh Siddha2225a122010-02-11 11:51:00 -08001099
1100 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1101 return -EFAULT;
1102
1103 if (__get_user(kiov.iov_base, &uiov->iov_base) ||
1104 __get_user(kiov.iov_len, &uiov->iov_len))
1105 return -EFAULT;
1106
1107 ret = ptrace_regset(child, request, addr, &kiov);
1108 if (!ret)
1109 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1110 break;
1111 }
1112#endif
Tycho Andersenf8e529e2015-10-27 09:23:59 +09001113
1114 case PTRACE_SECCOMP_GET_FILTER:
1115 ret = seccomp_get_filter(child, addr, datavp);
1116 break;
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 default:
1119 break;
1120 }
1121
1122 return ret;
1123}
Christoph Hellwig481bed42005-11-07 00:59:47 -08001124
Oleg Nesterov8053bdd2009-06-17 16:27:34 -07001125static struct task_struct *ptrace_get_task_struct(pid_t pid)
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -08001126{
1127 struct task_struct *child;
Christoph Hellwig481bed42005-11-07 00:59:47 -08001128
Oleg Nesterov8053bdd2009-06-17 16:27:34 -07001129 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001130 child = find_task_by_vpid(pid);
Christoph Hellwig481bed42005-11-07 00:59:47 -08001131 if (child)
1132 get_task_struct(child);
Oleg Nesterov8053bdd2009-06-17 16:27:34 -07001133 rcu_read_unlock();
Sukadev Bhattiproluf400e192006-09-29 02:00:07 -07001134
Christoph Hellwig481bed42005-11-07 00:59:47 -08001135 if (!child)
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -08001136 return ERR_PTR(-ESRCH);
1137 return child;
Christoph Hellwig481bed42005-11-07 00:59:47 -08001138}
1139
Christoph Hellwig0ac15552007-10-16 01:26:37 -07001140#ifndef arch_ptrace_attach
1141#define arch_ptrace_attach(child) do { } while (0)
1142#endif
1143
Namhyung Kim4abf9862010-10-27 15:33:45 -07001144SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
1145 unsigned long, data)
Christoph Hellwig481bed42005-11-07 00:59:47 -08001146{
1147 struct task_struct *child;
1148 long ret;
1149
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -08001150 if (request == PTRACE_TRACEME) {
1151 ret = ptrace_traceme();
Haavard Skinnemoen6ea6dd92007-11-27 13:02:40 +01001152 if (!ret)
1153 arch_ptrace_attach(current);
Christoph Hellwig481bed42005-11-07 00:59:47 -08001154 goto out;
Christoph Hellwig6b9c7ed2006-01-08 01:02:33 -08001155 }
1156
1157 child = ptrace_get_task_struct(pid);
1158 if (IS_ERR(child)) {
1159 ret = PTR_ERR(child);
1160 goto out;
1161 }
Christoph Hellwig481bed42005-11-07 00:59:47 -08001162
Tejun Heo3544d722011-06-14 11:20:15 +02001163 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -07001164 ret = ptrace_attach(child, request, addr, data);
Christoph Hellwig0ac15552007-10-16 01:26:37 -07001165 /*
1166 * Some architectures need to do book-keeping after
1167 * a ptrace attach.
1168 */
1169 if (!ret)
1170 arch_ptrace_attach(child);
Christoph Hellwig005f18d2005-11-13 16:06:33 -08001171 goto out_put_task_struct;
Christoph Hellwig481bed42005-11-07 00:59:47 -08001172 }
1173
Tejun Heofca26f22011-06-14 11:20:16 +02001174 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1175 request == PTRACE_INTERRUPT);
Christoph Hellwig481bed42005-11-07 00:59:47 -08001176 if (ret < 0)
1177 goto out_put_task_struct;
1178
1179 ret = arch_ptrace(child, request, addr, data);
Oleg Nesterov9899d112013-01-21 20:48:00 +01001180 if (ret || request != PTRACE_DETACH)
1181 ptrace_unfreeze_traced(child);
Christoph Hellwig481bed42005-11-07 00:59:47 -08001182
1183 out_put_task_struct:
1184 put_task_struct(child);
1185 out:
Christoph Hellwig481bed42005-11-07 00:59:47 -08001186 return ret;
1187}
Alexey Dobriyan76647322007-07-17 04:03:43 -07001188
Namhyung Kim4abf9862010-10-27 15:33:45 -07001189int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
1190 unsigned long data)
Alexey Dobriyan76647322007-07-17 04:03:43 -07001191{
1192 unsigned long tmp;
1193 int copied;
1194
Eric W. Biedermane71b4e02016-11-22 12:06:50 -06001195 copied = ptrace_access_vm(tsk, addr, &tmp, sizeof(tmp), FOLL_FORCE);
Alexey Dobriyan76647322007-07-17 04:03:43 -07001196 if (copied != sizeof(tmp))
1197 return -EIO;
1198 return put_user(tmp, (unsigned long __user *)data);
1199}
Alexey Dobriyanf284ce72007-07-17 04:03:44 -07001200
Namhyung Kim4abf9862010-10-27 15:33:45 -07001201int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
1202 unsigned long data)
Alexey Dobriyanf284ce72007-07-17 04:03:44 -07001203{
1204 int copied;
1205
Eric W. Biedermane71b4e02016-11-22 12:06:50 -06001206 copied = ptrace_access_vm(tsk, addr, &data, sizeof(data),
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +01001207 FOLL_FORCE | FOLL_WRITE);
Alexey Dobriyanf284ce72007-07-17 04:03:44 -07001208 return (copied == sizeof(data)) ? 0 : -EIO;
1209}
Roland McGrath032d82d2008-01-30 13:31:47 +01001210
Christoph Hellwig96b89362008-11-25 08:10:03 +01001211#if defined CONFIG_COMPAT
Roland McGrath032d82d2008-01-30 13:31:47 +01001212
1213int compat_ptrace_request(struct task_struct *child, compat_long_t request,
1214 compat_ulong_t addr, compat_ulong_t data)
1215{
1216 compat_ulong_t __user *datap = compat_ptr(data);
1217 compat_ulong_t word;
Roland McGrathe16b2782008-04-20 13:10:12 -07001218 siginfo_t siginfo;
Roland McGrath032d82d2008-01-30 13:31:47 +01001219 int ret;
1220
1221 switch (request) {
1222 case PTRACE_PEEKTEXT:
1223 case PTRACE_PEEKDATA:
Eric W. Biedermane71b4e02016-11-22 12:06:50 -06001224 ret = ptrace_access_vm(child, addr, &word, sizeof(word),
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +01001225 FOLL_FORCE);
Roland McGrath032d82d2008-01-30 13:31:47 +01001226 if (ret != sizeof(word))
1227 ret = -EIO;
1228 else
1229 ret = put_user(word, datap);
1230 break;
1231
1232 case PTRACE_POKETEXT:
1233 case PTRACE_POKEDATA:
Eric W. Biedermane71b4e02016-11-22 12:06:50 -06001234 ret = ptrace_access_vm(child, addr, &data, sizeof(data),
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +01001235 FOLL_FORCE | FOLL_WRITE);
Roland McGrath032d82d2008-01-30 13:31:47 +01001236 ret = (ret != sizeof(data) ? -EIO : 0);
1237 break;
1238
1239 case PTRACE_GETEVENTMSG:
1240 ret = put_user((compat_ulong_t) child->ptrace_message, datap);
1241 break;
1242
Roland McGrathe16b2782008-04-20 13:10:12 -07001243 case PTRACE_GETSIGINFO:
1244 ret = ptrace_getsiginfo(child, &siginfo);
1245 if (!ret)
1246 ret = copy_siginfo_to_user32(
1247 (struct compat_siginfo __user *) datap,
1248 &siginfo);
1249 break;
1250
1251 case PTRACE_SETSIGINFO:
1252 memset(&siginfo, 0, sizeof siginfo);
1253 if (copy_siginfo_from_user32(
1254 &siginfo, (struct compat_siginfo __user *) datap))
1255 ret = -EFAULT;
1256 else
1257 ret = ptrace_setsiginfo(child, &siginfo);
1258 break;
Suresh Siddha2225a122010-02-11 11:51:00 -08001259#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
1260 case PTRACE_GETREGSET:
1261 case PTRACE_SETREGSET:
1262 {
1263 struct iovec kiov;
1264 struct compat_iovec __user *uiov =
1265 (struct compat_iovec __user *) datap;
1266 compat_uptr_t ptr;
1267 compat_size_t len;
1268
1269 if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov)))
1270 return -EFAULT;
1271
1272 if (__get_user(ptr, &uiov->iov_base) ||
1273 __get_user(len, &uiov->iov_len))
1274 return -EFAULT;
1275
1276 kiov.iov_base = compat_ptr(ptr);
1277 kiov.iov_len = len;
1278
1279 ret = ptrace_regset(child, request, addr, &kiov);
1280 if (!ret)
1281 ret = __put_user(kiov.iov_len, &uiov->iov_len);
1282 break;
1283 }
1284#endif
Roland McGrathe16b2782008-04-20 13:10:12 -07001285
Roland McGrath032d82d2008-01-30 13:31:47 +01001286 default:
1287 ret = ptrace_request(child, request, addr, data);
1288 }
1289
1290 return ret;
1291}
Roland McGrathc269f192008-01-30 13:31:48 +01001292
Heiko Carstens62a6fa92014-03-03 16:11:13 +01001293COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid,
1294 compat_long_t, addr, compat_long_t, data)
Roland McGrathc269f192008-01-30 13:31:48 +01001295{
1296 struct task_struct *child;
1297 long ret;
1298
Roland McGrathc269f192008-01-30 13:31:48 +01001299 if (request == PTRACE_TRACEME) {
1300 ret = ptrace_traceme();
1301 goto out;
1302 }
1303
1304 child = ptrace_get_task_struct(pid);
1305 if (IS_ERR(child)) {
1306 ret = PTR_ERR(child);
1307 goto out;
1308 }
1309
Tejun Heo3544d722011-06-14 11:20:15 +02001310 if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
Denys Vlasenkoaa9147c2012-03-23 15:02:42 -07001311 ret = ptrace_attach(child, request, addr, data);
Roland McGrathc269f192008-01-30 13:31:48 +01001312 /*
1313 * Some architectures need to do book-keeping after
1314 * a ptrace attach.
1315 */
1316 if (!ret)
1317 arch_ptrace_attach(child);
1318 goto out_put_task_struct;
1319 }
1320
Tejun Heofca26f22011-06-14 11:20:16 +02001321 ret = ptrace_check_attach(child, request == PTRACE_KILL ||
1322 request == PTRACE_INTERRUPT);
Oleg Nesterov9899d112013-01-21 20:48:00 +01001323 if (!ret) {
Roland McGrathc269f192008-01-30 13:31:48 +01001324 ret = compat_arch_ptrace(child, request, addr, data);
Oleg Nesterov9899d112013-01-21 20:48:00 +01001325 if (ret || request != PTRACE_DETACH)
1326 ptrace_unfreeze_traced(child);
1327 }
Roland McGrathc269f192008-01-30 13:31:48 +01001328
1329 out_put_task_struct:
1330 put_task_struct(child);
1331 out:
Roland McGrathc269f192008-01-30 13:31:48 +01001332 return ret;
1333}
Christoph Hellwig96b89362008-11-25 08:10:03 +01001334#endif /* CONFIG_COMPAT */