Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 10 | #include <linux/capability.h> |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 11 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/sched.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/mm.h> |
| 15 | #include <linux/highmem.h> |
| 16 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/ptrace.h> |
| 18 | #include <linux/security.h> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 19 | #include <linux/signal.h> |
Kent Overstreet | a27bb33 | 2013-05-07 16:19:08 -0700 | [diff] [blame] | 20 | #include <linux/uio.h> |
Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 21 | #include <linux/audit.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 22 | #include <linux/pid_namespace.h> |
Adrian Bunk | f17d30a | 2008-02-06 01:36:44 -0800 | [diff] [blame] | 23 | #include <linux/syscalls.h> |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 24 | #include <linux/uaccess.h> |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 25 | #include <linux/regset.h> |
Frederic Weisbecker | bf26c01 | 2011-04-07 16:53:20 +0200 | [diff] [blame] | 26 | #include <linux/hw_breakpoint.h> |
Vladimir Zapolskiy | f701e5b | 2011-07-15 20:45:18 +0300 | [diff] [blame] | 27 | #include <linux/cn_proc.h> |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 28 | #include <linux/compat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Eric W. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 30 | /* |
| 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 | */ |
| 35 | int 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 Metzger | bf53de9 | 2008-12-19 15:10:24 +0100 | [diff] [blame] | 59 | |
Eric W. Biederman | 7c24a70 | 2017-05-22 15:40:12 -0500 | [diff] [blame] | 60 | void __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 Metzger | bf53de9 | 2008-12-19 15:10:24 +0100 | [diff] [blame] | 69 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | * 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. Biederman | 7c24a70 | 2017-05-22 15:40:12 -0500 | [diff] [blame] | 75 | static void ptrace_link(struct task_struct *child, struct task_struct *new_parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
Jann Horn | d8b9930 | 2019-07-04 17:32:23 +0200 | [diff] [blame] | 77 | __ptrace_link(child, new_parent, current_cred()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 79 | |
Tejun Heo | e3bd058 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 80 | /** |
| 81 | * __ptrace_unlink - unlink ptracee and restore its execution state |
| 82 | * @child: ptracee to be unlinked |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | * |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 84 | * 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 Heo | e3bd058 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 104 | * |
| 105 | * CONTEXT: |
| 106 | * write_lock_irq(tasklist_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 108 | void __ptrace_unlink(struct task_struct *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
Eric W. Biederman | e747b4a | 2016-11-14 18:48:07 -0600 | [diff] [blame] | 110 | const struct cred *old_cred; |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 111 | BUG_ON(!child->ptrace); |
| 112 | |
Ales Novak | 0a5bf40 | 2016-10-11 13:53:46 -0700 | [diff] [blame] | 113 | clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
| 114 | |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 115 | child->parent = child->real_parent; |
| 116 | list_del_init(&child->ptrace_entry); |
Eric W. Biederman | e747b4a | 2016-11-14 18:48:07 -0600 | [diff] [blame] | 117 | old_cred = child->ptracer_cred; |
| 118 | child->ptracer_cred = NULL; |
| 119 | put_cred(old_cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | spin_lock(&child->sighand->siglock); |
Oleg Nesterov | 1333ab0 | 2016-03-22 14:25:33 -0700 | [diff] [blame] | 122 | child->ptrace = 0; |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 123 | /* |
Tejun Heo | 73ddff2 | 2011-06-14 11:20:14 +0200 | [diff] [blame] | 124 | * 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 Heo | a8f072c | 2011-06-02 11:13:59 +0200 | [diff] [blame] | 131 | * Reinstate JOBCTL_STOP_PENDING if group stop is in effect and |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 132 | * @child isn't dead. |
| 133 | */ |
| 134 | if (!(child->flags & PF_EXITING) && |
| 135 | (child->signal->flags & SIGNAL_STOP_STOPPED || |
Oleg Nesterov | 8a88951 | 2012-01-04 17:29:20 +0100 | [diff] [blame] | 136 | child->signal->group_stop_count)) { |
Tejun Heo | a8f072c | 2011-06-02 11:13:59 +0200 | [diff] [blame] | 137 | child->jobctl |= JOBCTL_STOP_PENDING; |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 138 | |
Oleg Nesterov | 8a88951 | 2012-01-04 17:29:20 +0100 | [diff] [blame] | 139 | /* |
| 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 Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 150 | /* |
| 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 Heo | a8f072c | 2011-06-02 11:13:59 +0200 | [diff] [blame] | 156 | if (child->jobctl & JOBCTL_STOP_PENDING || task_is_traced(child)) |
Oleg Nesterov | 910ffdb | 2013-01-21 20:47:41 +0100 | [diff] [blame] | 157 | ptrace_signal_wake_up(child, true); |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | spin_unlock(&child->sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Oleg Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 162 | /* Ensure that nothing can wake it up, even SIGKILL */ |
| 163 | static 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 | |
| 181 | static 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.com | d9fa435 | 2017-04-07 16:04:51 -0700 | [diff] [blame] | 188 | /* |
| 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 Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 192 | spin_lock_irq(&task->sighand->siglock); |
bsegall@google.com | d9fa435 | 2017-04-07 16:04:51 -0700 | [diff] [blame] | 193 | 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 Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 199 | spin_unlock_irq(&task->sighand->siglock); |
| 200 | } |
| 201 | |
Tejun Heo | 755e276 | 2011-06-02 11:13:59 +0200 | [diff] [blame] | 202 | /** |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | */ |
Oleg Nesterov | edea0d0 | 2013-01-20 20:25:47 +0100 | [diff] [blame] | 219 | static int ptrace_check_attach(struct task_struct *child, bool ignore_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
| 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 Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 231 | if (child->ptrace && child->parent == current) { |
| 232 | WARN_ON(child->state == __TASK_TRACED); |
Oleg Nesterov | c0c0b64 | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 233 | /* |
| 234 | * child->sighand can't be NULL, release_task() |
| 235 | * does ptrace_unlink() before __exit_signal(). |
| 236 | */ |
Oleg Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 237 | if (ignore_state || ptrace_freeze_traced(child)) |
Oleg Nesterov | 321fb56 | 2011-04-01 20:13:01 +0200 | [diff] [blame] | 238 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | read_unlock(&tasklist_lock); |
| 241 | |
Oleg Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 242 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | return ret; |
| 255 | } |
| 256 | |
Eric Paris | 69f594a | 2012-01-03 12:25:15 -0500 | [diff] [blame] | 257 | static int ptrace_has_cap(struct user_namespace *ns, unsigned int mode) |
| 258 | { |
Jiri Kosina | 822e5d5 | 2018-09-25 14:38:18 +0200 | [diff] [blame] | 259 | if (mode & PTRACE_MODE_SCHED) |
| 260 | return false; |
| 261 | |
Eric Paris | 69f594a | 2012-01-03 12:25:15 -0500 | [diff] [blame] | 262 | 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 Handa | 9f99798 | 2012-07-31 20:37:00 +0900 | [diff] [blame] | 268 | /* Returns 0 on success, -errno on denial. */ |
| 269 | static int __ptrace_may_access(struct task_struct *task, unsigned int mode) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 270 | { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 271 | const struct cred *cred = current_cred(), *tcred; |
Eric W. Biederman | 694a95f | 2016-10-13 21:23:16 -0500 | [diff] [blame] | 272 | struct mm_struct *mm; |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 273 | 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 Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 280 | |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 281 | /* 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 Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 289 | |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 290 | /* Don't let security modules deny introspection */ |
Mark Grondona | 73af963 | 2013-09-11 14:24:31 -0700 | [diff] [blame] | 291 | if (same_thread_group(task, current)) |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 292 | return 0; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 293 | rcu_read_lock(); |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 294 | 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 Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 309 | tcred = __task_cred(task); |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 310 | 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. Hallyn | 8409cca | 2011-03-23 16:43:20 -0700 | [diff] [blame] | 316 | goto ok; |
Eric W. Biederman | c4a4d60 | 2011-11-16 23:15:31 -0800 | [diff] [blame] | 317 | if (ptrace_has_cap(tcred->user_ns, mode)) |
Serge E. Hallyn | 8409cca | 2011-03-23 16:43:20 -0700 | [diff] [blame] | 318 | goto ok; |
| 319 | rcu_read_unlock(); |
| 320 | return -EPERM; |
| 321 | ok: |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 322 | rcu_read_unlock(); |
Jann Horn | 122be5a | 2019-05-29 13:31:57 +0200 | [diff] [blame] | 323 | /* |
| 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. Biederman | 694a95f | 2016-10-13 21:23:16 -0500 | [diff] [blame] | 333 | 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 Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 338 | |
Jiri Kosina | 822e5d5 | 2018-09-25 14:38:18 +0200 | [diff] [blame] | 339 | if (mode & PTRACE_MODE_SCHED) |
| 340 | return 0; |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 341 | return security_ptrace_access_check(task, mode); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Jiri Kosina | 822e5d5 | 2018-09-25 14:38:18 +0200 | [diff] [blame] | 344 | bool 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 Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 349 | bool ptrace_may_access(struct task_struct *task, unsigned int mode) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 350 | { |
| 351 | int err; |
| 352 | task_lock(task); |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 353 | err = __ptrace_may_access(task, mode); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 354 | task_unlock(task); |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 355 | return !err; |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 358 | static int ptrace_attach(struct task_struct *task, long request, |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 359 | unsigned long addr, |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 360 | unsigned long flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 362 | bool seize = (request == PTRACE_SEIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | int retval; |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 364 | |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 365 | retval = -EIO; |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 366 | if (seize) { |
| 367 | if (addr != 0) |
| 368 | goto out; |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 369 | 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 Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 375 | |
Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 376 | audit_ptrace(task); |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | retval = -EPERM; |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 379 | if (unlikely(task->flags & PF_KTHREAD)) |
| 380 | goto out; |
Pavel Emelyanov | bac0abd | 2007-10-18 23:40:18 -0700 | [diff] [blame] | 381 | if (same_thread_group(task, current)) |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 382 | goto out; |
| 383 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 384 | /* |
| 385 | * Protect exec's credential calculations against our interference; |
Denys Vlasenko | 86b6c1f | 2012-03-23 15:02:41 -0700 | [diff] [blame] | 386 | * SUID, SGID and LSM creds get determined differently |
David Howells | 5e751e9 | 2009-05-08 13:55:22 +0100 | [diff] [blame] | 387 | * under ptrace. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 388 | */ |
Oleg Nesterov | 793285f | 2009-07-05 12:08:26 -0700 | [diff] [blame] | 389 | retval = -ERESTARTNOINTR; |
KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 390 | if (mutex_lock_interruptible(&task->signal->cred_guard_mutex)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 391 | goto out; |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 392 | |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 393 | task_lock(task); |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 394 | retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS); |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 395 | task_unlock(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | if (retval) |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 397 | goto unlock_creds; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 399 | write_lock_irq(&tasklist_lock); |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 400 | retval = -EPERM; |
| 401 | if (unlikely(task->exit_state)) |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 402 | goto unlock_tasklist; |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 403 | if (task->ptrace) |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 404 | goto unlock_tasklist; |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 405 | |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 406 | if (seize) |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 407 | flags |= PT_SEIZED; |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 408 | task->ptrace = flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Eric W. Biederman | 7c24a70 | 2017-05-22 15:40:12 -0500 | [diff] [blame] | 410 | ptrace_link(task, current); |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 411 | |
| 412 | /* SEIZE doesn't trap tracee on attach */ |
| 413 | if (!seize) |
| 414 | send_sig_info(SIGSTOP, SEND_SIG_FORCED, task); |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 415 | |
Tejun Heo | d79fdd6 | 2011-03-23 10:37:00 +0100 | [diff] [blame] | 416 | spin_lock(&task->sighand->siglock); |
| 417 | |
| 418 | /* |
Tejun Heo | 73ddff2 | 2011-06-14 11:20:14 +0200 | [diff] [blame] | 419 | * If the task is already STOPPED, set JOBCTL_TRAP_STOP and |
Tejun Heo | d79fdd6 | 2011-03-23 10:37:00 +0100 | [diff] [blame] | 420 | * 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 Heo | 7dd3db5 | 2011-06-02 11:14:00 +0200 | [diff] [blame] | 435 | if (task_is_stopped(task) && |
Tejun Heo | 73ddff2 | 2011-06-14 11:20:14 +0200 | [diff] [blame] | 436 | task_set_jobctl_pending(task, JOBCTL_TRAP_STOP | JOBCTL_TRAPPING)) |
Oleg Nesterov | 910ffdb | 2013-01-21 20:47:41 +0100 | [diff] [blame] | 437 | signal_wake_up_state(task, __TASK_STOPPED); |
Tejun Heo | d79fdd6 | 2011-03-23 10:37:00 +0100 | [diff] [blame] | 438 | |
| 439 | spin_unlock(&task->sighand->siglock); |
| 440 | |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 441 | retval = 0; |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 442 | unlock_tasklist: |
| 443 | write_unlock_irq(&tasklist_lock); |
| 444 | unlock_creds: |
KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 445 | mutex_unlock(&task->signal->cred_guard_mutex); |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 446 | out: |
Vladimir Zapolskiy | f701e5b | 2011-07-15 20:45:18 +0300 | [diff] [blame] | 447 | if (!retval) { |
Oleg Nesterov | 7c3b00e | 2016-01-20 14:59:55 -0800 | [diff] [blame] | 448 | /* |
| 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 Zapolskiy | f701e5b | 2011-07-15 20:45:18 +0300 | [diff] [blame] | 456 | proc_ptrace_connector(task, PTRACE_ATTACH); |
| 457 | } |
| 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return retval; |
| 460 | } |
| 461 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 462 | /** |
| 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 Torvalds | e3e89cc | 2011-03-04 09:23:30 -0800 | [diff] [blame] | 468 | static int ptrace_traceme(void) |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 469 | { |
| 470 | int ret = -EPERM; |
| 471 | |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 472 | write_lock_irq(&tasklist_lock); |
| 473 | /* Are we already being traced? */ |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 474 | if (!current->ptrace) { |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 475 | ret = security_ptrace_traceme(current->parent); |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 476 | /* |
| 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. Biederman | 7c24a70 | 2017-05-22 15:40:12 -0500 | [diff] [blame] | 483 | ptrace_link(current, current->real_parent); |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 484 | } |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 485 | } |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 486 | write_unlock_irq(&tasklist_lock); |
| 487 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 488 | return ret; |
| 489 | } |
| 490 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 491 | /* |
| 492 | * Called with irqs disabled, returns true if childs should reap themselves. |
| 493 | */ |
| 494 | static 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 Nesterov | a7f0765 | 2009-09-23 15:56:44 -0700 | [diff] [blame] | 514 | * 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 Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 518 | */ |
| 519 | static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p) |
| 520 | { |
Oleg Nesterov | 9843a1e | 2011-06-22 23:08:53 +0200 | [diff] [blame] | 521 | bool dead; |
| 522 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 523 | __ptrace_unlink(p); |
| 524 | |
Oleg Nesterov | 9843a1e | 2011-06-22 23:08:53 +0200 | [diff] [blame] | 525 | 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 Nesterov | 9843a1e | 2011-06-22 23:08:53 +0200 | [diff] [blame] | 535 | dead = true; |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 536 | } |
| 537 | } |
Oleg Nesterov | 9843a1e | 2011-06-22 23:08:53 +0200 | [diff] [blame] | 538 | /* Mark it as in the process of being reaped. */ |
| 539 | if (dead) |
| 540 | p->exit_state = EXIT_DEAD; |
| 541 | return dead; |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 542 | } |
| 543 | |
Linus Torvalds | e3e89cc | 2011-03-04 09:23:30 -0800 | [diff] [blame] | 544 | static int ptrace_detach(struct task_struct *child, unsigned int data) |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 545 | { |
| 546 | if (!valid_signal(data)) |
| 547 | return -EIO; |
| 548 | |
| 549 | /* Architecture-specific hardware disable .. */ |
| 550 | ptrace_disable(child); |
| 551 | |
Oleg Nesterov | 95c3eb7 | 2009-04-02 16:58:11 -0700 | [diff] [blame] | 552 | write_lock_irq(&tasklist_lock); |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 553 | /* |
Oleg Nesterov | 64a4096 | 2015-04-16 12:47:32 -0700 | [diff] [blame] | 554 | * We rely on ptrace_freeze_traced(). It can't be killed and |
| 555 | * untraced by another thread, it can't be a zombie. |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 556 | */ |
Oleg Nesterov | 64a4096 | 2015-04-16 12:47:32 -0700 | [diff] [blame] | 557 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | write_unlock_irq(&tasklist_lock); |
| 565 | |
Vladimir Zapolskiy | f701e5b | 2011-07-15 20:45:18 +0300 | [diff] [blame] | 566 | proc_ptrace_connector(child, PTRACE_DETACH); |
Oleg Nesterov | 4576145 | 2009-04-02 16:58:14 -0700 | [diff] [blame] | 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | return 0; |
| 569 | } |
| 570 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 571 | /* |
Oleg Nesterov | c7e49c1 | 2010-08-10 18:03:07 -0700 | [diff] [blame] | 572 | * Detach all tasks we were using ptrace on. Called with tasklist held |
Oleg Nesterov | 7c8bd23 | 2014-12-10 15:45:33 -0800 | [diff] [blame] | 573 | * for writing. |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 574 | */ |
Oleg Nesterov | 7c8bd23 | 2014-12-10 15:45:33 -0800 | [diff] [blame] | 575 | void exit_ptrace(struct task_struct *tracer, struct list_head *dead) |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 576 | { |
| 577 | struct task_struct *p, *n; |
Oleg Nesterov | c7e49c1 | 2010-08-10 18:03:07 -0700 | [diff] [blame] | 578 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 579 | list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) { |
Oleg Nesterov | 992fb6e | 2012-12-17 16:03:07 -0800 | [diff] [blame] | 580 | if (unlikely(p->ptrace & PT_EXITKILL)) |
| 581 | send_sig_info(SIGKILL, SEND_SIG_FORCED, p); |
| 582 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 583 | if (__ptrace_detach(tracer, p)) |
Oleg Nesterov | 7c8bd23 | 2014-12-10 15:45:33 -0800 | [diff] [blame] | 584 | list_add(&p->ptrace_entry, dead); |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 585 | } |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | int 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. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 597 | retval = ptrace_access_vm(tsk, src, buf, this_len, FOLL_FORCE); |
| 598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | 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 McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 609 | len -= retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } |
| 611 | return copied; |
| 612 | } |
| 613 | |
| 614 | int 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. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 625 | retval = ptrace_access_vm(tsk, dst, buf, this_len, |
Lorenzo Stoakes | f307ab6 | 2016-10-13 01:20:20 +0100 | [diff] [blame] | 626 | FOLL_FORCE | FOLL_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | if (!retval) { |
| 628 | if (copied) |
| 629 | break; |
| 630 | return -EIO; |
| 631 | } |
| 632 | copied += retval; |
| 633 | src += retval; |
| 634 | dst += retval; |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 635 | len -= retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | return copied; |
| 638 | } |
| 639 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 640 | static int ptrace_setoptions(struct task_struct *child, unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | { |
Denys Vlasenko | 86b6c1f | 2012-03-23 15:02:41 -0700 | [diff] [blame] | 642 | unsigned flags; |
| 643 | |
Denys Vlasenko | 8c5cf9e | 2012-03-23 15:02:40 -0700 | [diff] [blame] | 644 | if (data & ~(unsigned long)PTRACE_O_MASK) |
| 645 | return -EINVAL; |
| 646 | |
Tycho Andersen | 13c4a90 | 2015-06-13 09:02:48 -0600 | [diff] [blame] | 647 | if (unlikely(data & PTRACE_O_SUSPEND_SECCOMP)) { |
Masahiro Yamada | 97f2645 | 2016-08-03 13:45:50 -0700 | [diff] [blame] | 648 | if (!IS_ENABLED(CONFIG_CHECKPOINT_RESTORE) || |
| 649 | !IS_ENABLED(CONFIG_SECCOMP)) |
Tycho Andersen | 13c4a90 | 2015-06-13 09:02:48 -0600 | [diff] [blame] | 650 | return -EINVAL; |
| 651 | |
| 652 | if (!capable(CAP_SYS_ADMIN)) |
| 653 | return -EPERM; |
| 654 | |
| 655 | if (seccomp_mode(¤t->seccomp) != SECCOMP_MODE_DISABLED || |
| 656 | current->ptrace & PT_SUSPEND_SECCOMP) |
| 657 | return -EPERM; |
| 658 | } |
| 659 | |
Denys Vlasenko | 86b6c1f | 2012-03-23 15:02:41 -0700 | [diff] [blame] | 660 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
Denys Vlasenko | 8c5cf9e | 2012-03-23 15:02:40 -0700 | [diff] [blame] | 666 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 669 | static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 671 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | int error = -ESRCH; |
| 673 | |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 674 | if (lock_task_sighand(child, &flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | if (likely(child->last_siginfo != NULL)) { |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 677 | *info = *child->last_siginfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | error = 0; |
| 679 | } |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 680 | unlock_task_sighand(child, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | return error; |
| 683 | } |
| 684 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 685 | static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | { |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 687 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | int error = -ESRCH; |
| 689 | |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 690 | if (lock_task_sighand(child, &flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | if (likely(child->last_siginfo != NULL)) { |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 693 | *child->last_siginfo = *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | error = 0; |
| 695 | } |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 696 | unlock_task_sighand(child, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | return error; |
| 699 | } |
| 700 | |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 701 | static 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. Biederman | 2fc1de4 | 2019-05-28 18:46:37 -0500 | [diff] [blame] | 721 | /* Ensure arg.off fits in an unsigned long */ |
| 722 | if (arg.off > ULONG_MAX) |
| 723 | return 0; |
| 724 | |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 725 | 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. Biederman | 2fc1de4 | 2019-05-28 18:46:37 -0500 | [diff] [blame] | 732 | unsigned long off = arg.off + i; |
| 733 | bool found = false; |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 734 | |
| 735 | spin_lock_irq(&child->sighand->siglock); |
| 736 | list_for_each_entry(q, &pending->list, list) { |
| 737 | if (!off--) { |
Eric W. Biederman | 2fc1de4 | 2019-05-28 18:46:37 -0500 | [diff] [blame] | 738 | found = true; |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 739 | copy_siginfo(&info, &q->info); |
| 740 | break; |
| 741 | } |
| 742 | } |
| 743 | spin_unlock_irq(&child->sighand->siglock); |
| 744 | |
Eric W. Biederman | 2fc1de4 | 2019-05-28 18:46:37 -0500 | [diff] [blame] | 745 | if (!found) /* beyond the end of the list */ |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 746 | break; |
| 747 | |
| 748 | #ifdef CONFIG_COMPAT |
Andy Lutomirski | 5c46521 | 2016-03-22 14:24:55 -0700 | [diff] [blame] | 749 | if (unlikely(in_compat_syscall())) { |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 750 | compat_siginfo_t __user *uinfo = compat_ptr(data); |
| 751 | |
Mathieu Desnoyers | 706b23b | 2013-06-28 09:49:46 -0400 | [diff] [blame] | 752 | if (copy_siginfo_to_user32(uinfo, &info) || |
| 753 | __put_user(info.si_code, &uinfo->si_code)) { |
| 754 | ret = -EFAULT; |
| 755 | break; |
| 756 | } |
| 757 | |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 758 | } else |
| 759 | #endif |
| 760 | { |
| 761 | siginfo_t __user *uinfo = (siginfo_t __user *) data; |
| 762 | |
Mathieu Desnoyers | 706b23b | 2013-06-28 09:49:46 -0400 | [diff] [blame] | 763 | if (copy_siginfo_to_user(uinfo, &info) || |
| 764 | __put_user(info.si_code, &uinfo->si_code)) { |
| 765 | ret = -EFAULT; |
| 766 | break; |
| 767 | } |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 768 | } |
| 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 McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 784 | |
| 785 | #ifdef PTRACE_SINGLESTEP |
| 786 | #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP) |
| 787 | #else |
| 788 | #define is_singlestep(request) 0 |
| 789 | #endif |
| 790 | |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 791 | #ifdef PTRACE_SINGLEBLOCK |
| 792 | #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK) |
| 793 | #else |
| 794 | #define is_singleblock(request) 0 |
| 795 | #endif |
| 796 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 797 | #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 Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 803 | static int ptrace_resume(struct task_struct *child, long request, |
| 804 | unsigned long data) |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 805 | { |
Oleg Nesterov | b72c186 | 2015-04-16 12:47:29 -0700 | [diff] [blame] | 806 | bool need_siglock; |
| 807 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 808 | 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 McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 823 | 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 McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 828 | if (unlikely(!arch_has_single_step())) |
| 829 | return -EIO; |
| 830 | user_enable_single_step(child); |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 831 | } else { |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 832 | user_disable_single_step(child); |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 833 | } |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 834 | |
Oleg Nesterov | b72c186 | 2015-04-16 12:47:29 -0700 | [diff] [blame] | 835 | /* |
| 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 McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 851 | child->exit_code = data; |
Oleg Nesterov | 0666fb5 | 2011-05-25 19:20:21 +0200 | [diff] [blame] | 852 | wake_up_state(child, __TASK_TRACED); |
Oleg Nesterov | b72c186 | 2015-04-16 12:47:29 -0700 | [diff] [blame] | 853 | if (need_siglock) |
| 854 | spin_unlock_irq(&child->sighand->siglock); |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 855 | |
| 856 | return 0; |
| 857 | } |
| 858 | |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 859 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
| 860 | |
| 861 | static const struct user_regset * |
| 862 | find_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 | |
| 876 | static 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 Siddha | c6a0dd7 | 2010-02-22 14:51:32 -0800 | [diff] [blame] | 884 | return -EINVAL; |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 885 | |
| 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 Stone | e8440c1 | 2013-01-13 19:03:34 +0100 | [diff] [blame] | 898 | /* |
| 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 | */ |
| 903 | EXPORT_SYMBOL_GPL(task_user_regset_view); |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 904 | #endif |
| 905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | int ptrace_request(struct task_struct *child, long request, |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 907 | unsigned long addr, unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
Tejun Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 909 | bool seized = child->ptrace & PT_SEIZED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | int ret = -EIO; |
Tejun Heo | 544b2c9 | 2011-06-14 11:20:18 +0200 | [diff] [blame] | 911 | siginfo_t siginfo, *si; |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 912 | void __user *datavp = (void __user *) data; |
| 913 | unsigned long __user *datalp = datavp; |
Tejun Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 914 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | |
| 916 | switch (request) { |
Roland McGrath | 16c3e38 | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 917 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | #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 Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 931 | ret = put_user(child->ptrace_message, datalp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 933 | |
Andrey Vagin | 84c751b | 2013-04-30 15:27:59 -0700 | [diff] [blame] | 934 | case PTRACE_PEEKSIGINFO: |
| 935 | ret = ptrace_peek_siginfo(child, addr, data); |
| 936 | break; |
| 937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | case PTRACE_GETSIGINFO: |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 939 | ret = ptrace_getsiginfo(child, &siginfo); |
| 940 | if (!ret) |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 941 | ret = copy_siginfo_to_user(datavp, &siginfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | case PTRACE_SETSIGINFO: |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 945 | if (copy_from_user(&siginfo, datavp, sizeof siginfo)) |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 946 | ret = -EFAULT; |
| 947 | else |
| 948 | ret = ptrace_setsiginfo(child, &siginfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 950 | |
Andrey Vagin | 29000ca | 2013-07-03 15:08:12 -0700 | [diff] [blame] | 951 | 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 Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 992 | 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 Heo | 544b2c9 | 2011-06-14 11:20:18 +0200 | [diff] [blame] | 1006 | /* |
| 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 Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 1012 | if (likely(task_set_jobctl_pending(child, JOBCTL_TRAP_STOP))) |
Oleg Nesterov | 910ffdb | 2013-01-21 20:47:41 +0100 | [diff] [blame] | 1013 | ptrace_signal_wake_up(child, child->jobctl & JOBCTL_LISTENING); |
Tejun Heo | 544b2c9 | 2011-06-14 11:20:18 +0200 | [diff] [blame] | 1014 | |
| 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 Nesterov | f9d81f6 | 2011-09-25 19:46:22 +0200 | [diff] [blame] | 1032 | 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 Nesterov | 910ffdb | 2013-01-21 20:47:41 +0100 | [diff] [blame] | 1039 | ptrace_signal_wake_up(child, true); |
Oleg Nesterov | f9d81f6 | 2011-09-25 19:46:22 +0200 | [diff] [blame] | 1040 | ret = 0; |
| 1041 | } |
Tejun Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 1042 | unlock_task_sighand(child, &flags); |
Tejun Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 1043 | break; |
| 1044 | |
Alexey Dobriyan | 1bcf548 | 2007-10-16 01:23:45 -0700 | [diff] [blame] | 1045 | case PTRACE_DETACH: /* detach a process that was attached. */ |
| 1046 | ret = ptrace_detach(child, data); |
| 1047 | break; |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 1048 | |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1049 | #ifdef CONFIG_BINFMT_ELF_FDPIC |
| 1050 | case PTRACE_GETFDPIC: { |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 1051 | struct mm_struct *mm = get_task_mm(child); |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1052 | unsigned long tmp = 0; |
| 1053 | |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 1054 | ret = -ESRCH; |
| 1055 | if (!mm) |
| 1056 | break; |
| 1057 | |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1058 | switch (addr) { |
| 1059 | case PTRACE_GETFDPIC_EXEC: |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 1060 | tmp = mm->context.exec_fdpic_loadmap; |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1061 | break; |
| 1062 | case PTRACE_GETFDPIC_INTERP: |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 1063 | tmp = mm->context.interp_fdpic_loadmap; |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1064 | break; |
| 1065 | default: |
| 1066 | break; |
| 1067 | } |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 1068 | mmput(mm); |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1069 | |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 1070 | ret = put_user(tmp, datalp); |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 1071 | break; |
| 1072 | } |
| 1073 | #endif |
| 1074 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 1075 | #ifdef PTRACE_SINGLESTEP |
| 1076 | case PTRACE_SINGLESTEP: |
| 1077 | #endif |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 1078 | #ifdef PTRACE_SINGLEBLOCK |
| 1079 | case PTRACE_SINGLEBLOCK: |
| 1080 | #endif |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 1081 | #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 Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 1094 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
| 1095 | case PTRACE_GETREGSET: |
Andrey Vagin | 29000ca | 2013-07-03 15:08:12 -0700 | [diff] [blame] | 1096 | case PTRACE_SETREGSET: { |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 1097 | struct iovec kiov; |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 1098 | struct iovec __user *uiov = datavp; |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 1099 | |
| 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 Andersen | f8e529e | 2015-10-27 09:23:59 +0900 | [diff] [blame] | 1113 | |
| 1114 | case PTRACE_SECCOMP_GET_FILTER: |
| 1115 | ret = seccomp_get_filter(child, addr, datavp); |
| 1116 | break; |
| 1117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | default: |
| 1119 | break; |
| 1120 | } |
| 1121 | |
| 1122 | return ret; |
| 1123 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1124 | |
Oleg Nesterov | 8053bdd | 2009-06-17 16:27:34 -0700 | [diff] [blame] | 1125 | static struct task_struct *ptrace_get_task_struct(pid_t pid) |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 1126 | { |
| 1127 | struct task_struct *child; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1128 | |
Oleg Nesterov | 8053bdd | 2009-06-17 16:27:34 -0700 | [diff] [blame] | 1129 | rcu_read_lock(); |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 1130 | child = find_task_by_vpid(pid); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1131 | if (child) |
| 1132 | get_task_struct(child); |
Oleg Nesterov | 8053bdd | 2009-06-17 16:27:34 -0700 | [diff] [blame] | 1133 | rcu_read_unlock(); |
Sukadev Bhattiprolu | f400e19 | 2006-09-29 02:00:07 -0700 | [diff] [blame] | 1134 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1135 | if (!child) |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 1136 | return ERR_PTR(-ESRCH); |
| 1137 | return child; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1138 | } |
| 1139 | |
Christoph Hellwig | 0ac1555 | 2007-10-16 01:26:37 -0700 | [diff] [blame] | 1140 | #ifndef arch_ptrace_attach |
| 1141 | #define arch_ptrace_attach(child) do { } while (0) |
| 1142 | #endif |
| 1143 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 1144 | SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr, |
| 1145 | unsigned long, data) |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1146 | { |
| 1147 | struct task_struct *child; |
| 1148 | long ret; |
| 1149 | |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 1150 | if (request == PTRACE_TRACEME) { |
| 1151 | ret = ptrace_traceme(); |
Haavard Skinnemoen | 6ea6dd9 | 2007-11-27 13:02:40 +0100 | [diff] [blame] | 1152 | if (!ret) |
| 1153 | arch_ptrace_attach(current); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1154 | goto out; |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | child = ptrace_get_task_struct(pid); |
| 1158 | if (IS_ERR(child)) { |
| 1159 | ret = PTR_ERR(child); |
| 1160 | goto out; |
| 1161 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1162 | |
Tejun Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 1163 | if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) { |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 1164 | ret = ptrace_attach(child, request, addr, data); |
Christoph Hellwig | 0ac1555 | 2007-10-16 01:26:37 -0700 | [diff] [blame] | 1165 | /* |
| 1166 | * Some architectures need to do book-keeping after |
| 1167 | * a ptrace attach. |
| 1168 | */ |
| 1169 | if (!ret) |
| 1170 | arch_ptrace_attach(child); |
Christoph Hellwig | 005f18d | 2005-11-13 16:06:33 -0800 | [diff] [blame] | 1171 | goto out_put_task_struct; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1172 | } |
| 1173 | |
Tejun Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 1174 | ret = ptrace_check_attach(child, request == PTRACE_KILL || |
| 1175 | request == PTRACE_INTERRUPT); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1176 | if (ret < 0) |
| 1177 | goto out_put_task_struct; |
| 1178 | |
| 1179 | ret = arch_ptrace(child, request, addr, data); |
Oleg Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 1180 | if (ret || request != PTRACE_DETACH) |
| 1181 | ptrace_unfreeze_traced(child); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1182 | |
| 1183 | out_put_task_struct: |
| 1184 | put_task_struct(child); |
| 1185 | out: |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 1186 | return ret; |
| 1187 | } |
Alexey Dobriyan | 7664732 | 2007-07-17 04:03:43 -0700 | [diff] [blame] | 1188 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 1189 | int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr, |
| 1190 | unsigned long data) |
Alexey Dobriyan | 7664732 | 2007-07-17 04:03:43 -0700 | [diff] [blame] | 1191 | { |
| 1192 | unsigned long tmp; |
| 1193 | int copied; |
| 1194 | |
Eric W. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 1195 | copied = ptrace_access_vm(tsk, addr, &tmp, sizeof(tmp), FOLL_FORCE); |
Alexey Dobriyan | 7664732 | 2007-07-17 04:03:43 -0700 | [diff] [blame] | 1196 | if (copied != sizeof(tmp)) |
| 1197 | return -EIO; |
| 1198 | return put_user(tmp, (unsigned long __user *)data); |
| 1199 | } |
Alexey Dobriyan | f284ce7 | 2007-07-17 04:03:44 -0700 | [diff] [blame] | 1200 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 1201 | int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr, |
| 1202 | unsigned long data) |
Alexey Dobriyan | f284ce7 | 2007-07-17 04:03:44 -0700 | [diff] [blame] | 1203 | { |
| 1204 | int copied; |
| 1205 | |
Eric W. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 1206 | copied = ptrace_access_vm(tsk, addr, &data, sizeof(data), |
Lorenzo Stoakes | f307ab6 | 2016-10-13 01:20:20 +0100 | [diff] [blame] | 1207 | FOLL_FORCE | FOLL_WRITE); |
Alexey Dobriyan | f284ce7 | 2007-07-17 04:03:44 -0700 | [diff] [blame] | 1208 | return (copied == sizeof(data)) ? 0 : -EIO; |
| 1209 | } |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 1210 | |
Christoph Hellwig | 96b8936 | 2008-11-25 08:10:03 +0100 | [diff] [blame] | 1211 | #if defined CONFIG_COMPAT |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 1212 | |
| 1213 | int 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 McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 1218 | siginfo_t siginfo; |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 1219 | int ret; |
| 1220 | |
| 1221 | switch (request) { |
| 1222 | case PTRACE_PEEKTEXT: |
| 1223 | case PTRACE_PEEKDATA: |
Eric W. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 1224 | ret = ptrace_access_vm(child, addr, &word, sizeof(word), |
Lorenzo Stoakes | f307ab6 | 2016-10-13 01:20:20 +0100 | [diff] [blame] | 1225 | FOLL_FORCE); |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 1226 | 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. Biederman | e71b4e0 | 2016-11-22 12:06:50 -0600 | [diff] [blame] | 1234 | ret = ptrace_access_vm(child, addr, &data, sizeof(data), |
Lorenzo Stoakes | f307ab6 | 2016-10-13 01:20:20 +0100 | [diff] [blame] | 1235 | FOLL_FORCE | FOLL_WRITE); |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 1236 | 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 McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 1243 | 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 Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 1259 | #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 McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 1285 | |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 1286 | default: |
| 1287 | ret = ptrace_request(child, request, addr, data); |
| 1288 | } |
| 1289 | |
| 1290 | return ret; |
| 1291 | } |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1292 | |
Heiko Carstens | 62a6fa9 | 2014-03-03 16:11:13 +0100 | [diff] [blame] | 1293 | COMPAT_SYSCALL_DEFINE4(ptrace, compat_long_t, request, compat_long_t, pid, |
| 1294 | compat_long_t, addr, compat_long_t, data) |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1295 | { |
| 1296 | struct task_struct *child; |
| 1297 | long ret; |
| 1298 | |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1299 | 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 Heo | 3544d72 | 2011-06-14 11:20:15 +0200 | [diff] [blame] | 1310 | if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) { |
Denys Vlasenko | aa9147c | 2012-03-23 15:02:42 -0700 | [diff] [blame] | 1311 | ret = ptrace_attach(child, request, addr, data); |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1312 | /* |
| 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 Heo | fca26f2 | 2011-06-14 11:20:16 +0200 | [diff] [blame] | 1321 | ret = ptrace_check_attach(child, request == PTRACE_KILL || |
| 1322 | request == PTRACE_INTERRUPT); |
Oleg Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 1323 | if (!ret) { |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1324 | ret = compat_arch_ptrace(child, request, addr, data); |
Oleg Nesterov | 9899d11 | 2013-01-21 20:48:00 +0100 | [diff] [blame] | 1325 | if (ret || request != PTRACE_DETACH) |
| 1326 | ptrace_unfreeze_traced(child); |
| 1327 | } |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1328 | |
| 1329 | out_put_task_struct: |
| 1330 | put_task_struct(child); |
| 1331 | out: |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 1332 | return ret; |
| 1333 | } |
Christoph Hellwig | 96b8936 | 2008-11-25 08:10:03 +0100 | [diff] [blame] | 1334 | #endif /* CONFIG_COMPAT */ |