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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/errno.h> |
| 14 | #include <linux/mm.h> |
| 15 | #include <linux/highmem.h> |
| 16 | #include <linux/pagemap.h> |
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> |
Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 20 | #include <linux/audit.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 21 | #include <linux/pid_namespace.h> |
Adrian Bunk | f17d30a | 2008-02-06 01:36:44 -0800 | [diff] [blame] | 22 | #include <linux/syscalls.h> |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 24 | #include <linux/regset.h> |
Frederic Weisbecker | bf26c01 | 2011-04-07 16:53:20 +0200 | [diff] [blame] | 25 | #include <linux/hw_breakpoint.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Markus Metzger | bf53de9 | 2008-12-19 15:10:24 +0100 | [diff] [blame] | 27 | |
| 28 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * ptrace a task: make the debugger its new parent and |
| 30 | * move it to the ptrace list. |
| 31 | * |
| 32 | * Must be called with the tasklist lock write-held. |
| 33 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 34 | void __ptrace_link(struct task_struct *child, struct task_struct *new_parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 36 | BUG_ON(!list_empty(&child->ptrace_entry)); |
| 37 | list_add(&child->ptrace_entry, &new_parent->ptraced); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | child->parent = new_parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | } |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 40 | |
Tejun Heo | e3bd058 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 41 | /** |
| 42 | * __ptrace_unlink - unlink ptracee and restore its execution state |
| 43 | * @child: ptracee to be unlinked |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 45 | * Remove @child from the ptrace list, move it back to the original parent, |
| 46 | * and restore the execution state so that it conforms to the group stop |
| 47 | * state. |
| 48 | * |
| 49 | * Unlinking can happen via two paths - explicit PTRACE_DETACH or ptracer |
| 50 | * exiting. For PTRACE_DETACH, unless the ptracee has been killed between |
| 51 | * ptrace_check_attach() and here, it's guaranteed to be in TASK_TRACED. |
| 52 | * If the ptracer is exiting, the ptracee can be in any state. |
| 53 | * |
| 54 | * After detach, the ptracee should be in a state which conforms to the |
| 55 | * group stop. If the group is stopped or in the process of stopping, the |
| 56 | * ptracee should be put into TASK_STOPPED; otherwise, it should be woken |
| 57 | * up from TASK_TRACED. |
| 58 | * |
| 59 | * If the ptracee is in TASK_TRACED and needs to be moved to TASK_STOPPED, |
| 60 | * it goes through TRACED -> RUNNING -> STOPPED transition which is similar |
| 61 | * to but in the opposite direction of what happens while attaching to a |
| 62 | * stopped task. However, in this direction, the intermediate RUNNING |
| 63 | * state is not hidden even from the current ptracer and if it immediately |
| 64 | * re-attaches and performs a WNOHANG wait(2), it may fail. |
Tejun Heo | e3bd058 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 65 | * |
| 66 | * CONTEXT: |
| 67 | * write_lock_irq(tasklist_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 69 | void __ptrace_unlink(struct task_struct *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 71 | BUG_ON(!child->ptrace); |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | child->ptrace = 0; |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 74 | child->parent = child->real_parent; |
| 75 | list_del_init(&child->ptrace_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | spin_lock(&child->sighand->siglock); |
Tejun Heo | 0e9f0a4 | 2011-03-23 10:37:01 +0100 | [diff] [blame] | 78 | |
| 79 | /* |
| 80 | * Reinstate GROUP_STOP_PENDING if group stop is in effect and |
| 81 | * @child isn't dead. |
| 82 | */ |
| 83 | if (!(child->flags & PF_EXITING) && |
| 84 | (child->signal->flags & SIGNAL_STOP_STOPPED || |
| 85 | child->signal->group_stop_count)) |
| 86 | child->group_stop |= GROUP_STOP_PENDING; |
| 87 | |
| 88 | /* |
| 89 | * If transition to TASK_STOPPED is pending or in TASK_TRACED, kick |
| 90 | * @child in the butt. Note that @resume should be used iff @child |
| 91 | * is in TASK_TRACED; otherwise, we might unduly disrupt |
| 92 | * TASK_KILLABLE sleeps. |
| 93 | */ |
| 94 | if (child->group_stop & GROUP_STOP_PENDING || task_is_traced(child)) |
| 95 | signal_wake_up(child, task_is_traced(child)); |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | spin_unlock(&child->sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
| 101 | * Check that we have indeed attached to the thing.. |
| 102 | */ |
| 103 | int ptrace_check_attach(struct task_struct *child, int kill) |
| 104 | { |
| 105 | int ret = -ESRCH; |
| 106 | |
| 107 | /* |
| 108 | * We take the read lock around doing both checks to close a |
| 109 | * possible race where someone else was tracing our child and |
| 110 | * detached between these two checks. After this locked check, |
| 111 | * we are sure that this is our traced child and that can only |
| 112 | * be changed by us so it's not changing right after this. |
| 113 | */ |
| 114 | read_lock(&tasklist_lock); |
Oleg Nesterov | c0c0b64 | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 115 | if ((child->ptrace & PT_PTRACED) && child->parent == current) { |
Oleg Nesterov | c0c0b64 | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 116 | /* |
| 117 | * child->sighand can't be NULL, release_task() |
| 118 | * does ptrace_unlink() before __exit_signal(). |
| 119 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | spin_lock_irq(&child->sighand->siglock); |
Oleg Nesterov | 321fb56 | 2011-04-01 20:13:01 +0200 | [diff] [blame] | 121 | WARN_ON_ONCE(task_is_stopped(child)); |
| 122 | if (task_is_traced(child) || kill) |
| 123 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | spin_unlock_irq(&child->sighand->siglock); |
| 125 | } |
| 126 | read_unlock(&tasklist_lock); |
| 127 | |
Oleg Nesterov | d9ae90a | 2008-02-06 01:36:13 -0800 | [diff] [blame] | 128 | if (!ret && !kill) |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 129 | ret = wait_task_inactive(child, TASK_TRACED) ? 0 : -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | /* All systems go.. */ |
| 132 | return ret; |
| 133 | } |
| 134 | |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 135 | int __ptrace_may_access(struct task_struct *task, unsigned int mode) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 136 | { |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 137 | const struct cred *cred = current_cred(), *tcred; |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 138 | |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 139 | /* May we inspect the given task? |
| 140 | * This check is used both for attaching with ptrace |
| 141 | * and for allowing access to sensitive information in /proc. |
| 142 | * |
| 143 | * ptrace_attach denies several cases that /proc allows |
| 144 | * because setting up the necessary parent/child relationship |
| 145 | * or halting the specified task is impossible. |
| 146 | */ |
| 147 | int dumpable = 0; |
| 148 | /* Don't let security modules deny introspection */ |
| 149 | if (task == current) |
| 150 | return 0; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 151 | rcu_read_lock(); |
| 152 | tcred = __task_cred(task); |
Serge E. Hallyn | 8409cca | 2011-03-23 16:43:20 -0700 | [diff] [blame] | 153 | if (cred->user->user_ns == tcred->user->user_ns && |
| 154 | (cred->uid == tcred->euid && |
| 155 | cred->uid == tcred->suid && |
| 156 | cred->uid == tcred->uid && |
| 157 | cred->gid == tcred->egid && |
| 158 | cred->gid == tcred->sgid && |
| 159 | cred->gid == tcred->gid)) |
| 160 | goto ok; |
| 161 | if (ns_capable(tcred->user->user_ns, CAP_SYS_PTRACE)) |
| 162 | goto ok; |
| 163 | rcu_read_unlock(); |
| 164 | return -EPERM; |
| 165 | ok: |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 166 | rcu_read_unlock(); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 167 | smp_rmb(); |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 168 | if (task->mm) |
Kawai, Hidehiro | 6c5d523 | 2007-07-19 01:48:27 -0700 | [diff] [blame] | 169 | dumpable = get_dumpable(task->mm); |
Serge E. Hallyn | 8409cca | 2011-03-23 16:43:20 -0700 | [diff] [blame] | 170 | if (!dumpable && !task_ns_capable(task, CAP_SYS_PTRACE)) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 171 | return -EPERM; |
| 172 | |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 173 | return security_ptrace_access_check(task, mode); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 176 | bool ptrace_may_access(struct task_struct *task, unsigned int mode) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 177 | { |
| 178 | int err; |
| 179 | task_lock(task); |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 180 | err = __ptrace_may_access(task, mode); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 181 | task_unlock(task); |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 182 | return !err; |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Linus Torvalds | e3e89cc | 2011-03-04 09:23:30 -0800 | [diff] [blame] | 185 | static int ptrace_attach(struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
Tejun Heo | d79fdd6 | 2011-03-23 10:37:00 +0100 | [diff] [blame] | 187 | bool wait_trap = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | int retval; |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 189 | |
Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 190 | audit_ptrace(task); |
| 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | retval = -EPERM; |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 193 | if (unlikely(task->flags & PF_KTHREAD)) |
| 194 | goto out; |
Pavel Emelyanov | bac0abd | 2007-10-18 23:40:18 -0700 | [diff] [blame] | 195 | if (same_thread_group(task, current)) |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 196 | goto out; |
| 197 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 198 | /* |
| 199 | * Protect exec's credential calculations against our interference; |
David Howells | 5e751e9 | 2009-05-08 13:55:22 +0100 | [diff] [blame] | 200 | * interference; SUID, SGID and LSM creds get determined differently |
| 201 | * under ptrace. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 202 | */ |
Oleg Nesterov | 793285f | 2009-07-05 12:08:26 -0700 | [diff] [blame] | 203 | retval = -ERESTARTNOINTR; |
KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 204 | if (mutex_lock_interruptible(&task->signal->cred_guard_mutex)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 205 | goto out; |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 206 | |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 207 | task_lock(task); |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 208 | retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH); |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 209 | task_unlock(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | if (retval) |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 211 | goto unlock_creds; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 213 | write_lock_irq(&tasklist_lock); |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 214 | retval = -EPERM; |
| 215 | if (unlikely(task->exit_state)) |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 216 | goto unlock_tasklist; |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 217 | if (task->ptrace) |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 218 | goto unlock_tasklist; |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 219 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 220 | task->ptrace = PT_PTRACED; |
Serge E. Hallyn | 8409cca | 2011-03-23 16:43:20 -0700 | [diff] [blame] | 221 | if (task_ns_capable(task, CAP_SYS_PTRACE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | task->ptrace |= PT_PTRACE_CAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | __ptrace_link(task, current); |
Oleg Nesterov | 33e9fc7 | 2008-04-30 00:53:14 -0700 | [diff] [blame] | 225 | send_sig_info(SIGSTOP, SEND_SIG_FORCED, task); |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 226 | |
Tejun Heo | d79fdd6 | 2011-03-23 10:37:00 +0100 | [diff] [blame] | 227 | spin_lock(&task->sighand->siglock); |
| 228 | |
| 229 | /* |
| 230 | * If the task is already STOPPED, set GROUP_STOP_PENDING and |
| 231 | * TRAPPING, and kick it so that it transits to TRACED. TRAPPING |
| 232 | * will be cleared if the child completes the transition or any |
| 233 | * event which clears the group stop states happens. We'll wait |
| 234 | * for the transition to complete before returning from this |
| 235 | * function. |
| 236 | * |
| 237 | * This hides STOPPED -> RUNNING -> TRACED transition from the |
| 238 | * attaching thread but a different thread in the same group can |
| 239 | * still observe the transient RUNNING state. IOW, if another |
| 240 | * thread's WNOHANG wait(2) on the stopped tracee races against |
| 241 | * ATTACH, the wait(2) may fail due to the transient RUNNING. |
| 242 | * |
| 243 | * The following task_is_stopped() test is safe as both transitions |
| 244 | * in and out of STOPPED are protected by siglock. |
| 245 | */ |
| 246 | if (task_is_stopped(task)) { |
| 247 | task->group_stop |= GROUP_STOP_PENDING | GROUP_STOP_TRAPPING; |
| 248 | signal_wake_up(task, 1); |
| 249 | wait_trap = true; |
| 250 | } |
| 251 | |
| 252 | spin_unlock(&task->sighand->siglock); |
| 253 | |
Oleg Nesterov | b79b7ba | 2009-06-17 16:27:31 -0700 | [diff] [blame] | 254 | retval = 0; |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 255 | unlock_tasklist: |
| 256 | write_unlock_irq(&tasklist_lock); |
| 257 | unlock_creds: |
KOSAKI Motohiro | 9b1bf12 | 2010-10-27 15:34:08 -0700 | [diff] [blame] | 258 | mutex_unlock(&task->signal->cred_guard_mutex); |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 259 | out: |
Tejun Heo | d79fdd6 | 2011-03-23 10:37:00 +0100 | [diff] [blame] | 260 | if (wait_trap) |
| 261 | wait_event(current->signal->wait_chldexit, |
| 262 | !(task->group_stop & GROUP_STOP_TRAPPING)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | return retval; |
| 264 | } |
| 265 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 266 | /** |
| 267 | * ptrace_traceme -- helper for PTRACE_TRACEME |
| 268 | * |
| 269 | * Performs checks and sets PT_PTRACED. |
| 270 | * Should be used by all ptrace implementations for PTRACE_TRACEME. |
| 271 | */ |
Linus Torvalds | e3e89cc | 2011-03-04 09:23:30 -0800 | [diff] [blame] | 272 | static int ptrace_traceme(void) |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 273 | { |
| 274 | int ret = -EPERM; |
| 275 | |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 276 | write_lock_irq(&tasklist_lock); |
| 277 | /* Are we already being traced? */ |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 278 | if (!current->ptrace) { |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 279 | ret = security_ptrace_traceme(current->parent); |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 280 | /* |
| 281 | * Check PF_EXITING to ensure ->real_parent has not passed |
| 282 | * exit_ptrace(). Otherwise we don't report the error but |
| 283 | * pretend ->real_parent untraces us right after return. |
| 284 | */ |
| 285 | if (!ret && !(current->real_parent->flags & PF_EXITING)) { |
| 286 | current->ptrace = PT_PTRACED; |
| 287 | __ptrace_link(current, current->real_parent); |
| 288 | } |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 289 | } |
Oleg Nesterov | 4b105cb | 2009-06-17 16:27:33 -0700 | [diff] [blame] | 290 | write_unlock_irq(&tasklist_lock); |
| 291 | |
Oleg Nesterov | f2f0b00 | 2009-06-17 16:27:32 -0700 | [diff] [blame] | 292 | return ret; |
| 293 | } |
| 294 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 295 | /* |
| 296 | * Called with irqs disabled, returns true if childs should reap themselves. |
| 297 | */ |
| 298 | static int ignoring_children(struct sighand_struct *sigh) |
| 299 | { |
| 300 | int ret; |
| 301 | spin_lock(&sigh->siglock); |
| 302 | ret = (sigh->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) || |
| 303 | (sigh->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT); |
| 304 | spin_unlock(&sigh->siglock); |
| 305 | return ret; |
| 306 | } |
| 307 | |
| 308 | /* |
| 309 | * Called with tasklist_lock held for writing. |
| 310 | * Unlink a traced task, and clean it up if it was a traced zombie. |
| 311 | * Return true if it needs to be reaped with release_task(). |
| 312 | * (We can't call release_task() here because we already hold tasklist_lock.) |
| 313 | * |
| 314 | * If it's a zombie, our attachedness prevented normal parent notification |
| 315 | * or self-reaping. Do notification now if it would have happened earlier. |
| 316 | * If it should reap itself, return true. |
| 317 | * |
Oleg Nesterov | a7f0765 | 2009-09-23 15:56:44 -0700 | [diff] [blame] | 318 | * If it's our own child, there is no notification to do. But if our normal |
| 319 | * children self-reap, then this child was prevented by ptrace and we must |
| 320 | * reap it now, in that case we must also wake up sub-threads sleeping in |
| 321 | * do_wait(). |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 322 | */ |
| 323 | static bool __ptrace_detach(struct task_struct *tracer, struct task_struct *p) |
| 324 | { |
| 325 | __ptrace_unlink(p); |
| 326 | |
| 327 | if (p->exit_state == EXIT_ZOMBIE) { |
| 328 | if (!task_detached(p) && thread_group_empty(p)) { |
| 329 | if (!same_thread_group(p->real_parent, tracer)) |
| 330 | do_notify_parent(p, p->exit_signal); |
Oleg Nesterov | a7f0765 | 2009-09-23 15:56:44 -0700 | [diff] [blame] | 331 | else if (ignoring_children(tracer->sighand)) { |
| 332 | __wake_up_parent(p, tracer); |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 333 | p->exit_signal = -1; |
Oleg Nesterov | a7f0765 | 2009-09-23 15:56:44 -0700 | [diff] [blame] | 334 | } |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 335 | } |
| 336 | if (task_detached(p)) { |
| 337 | /* Mark it as in the process of being reaped. */ |
| 338 | p->exit_state = EXIT_DEAD; |
| 339 | return true; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | return false; |
| 344 | } |
| 345 | |
Linus Torvalds | e3e89cc | 2011-03-04 09:23:30 -0800 | [diff] [blame] | 346 | static int ptrace_detach(struct task_struct *child, unsigned int data) |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 347 | { |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 348 | bool dead = false; |
Oleg Nesterov | 4576145 | 2009-04-02 16:58:14 -0700 | [diff] [blame] | 349 | |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 350 | if (!valid_signal(data)) |
| 351 | return -EIO; |
| 352 | |
| 353 | /* Architecture-specific hardware disable .. */ |
| 354 | ptrace_disable(child); |
Roland McGrath | 7d94143 | 2007-09-05 03:05:56 -0700 | [diff] [blame] | 355 | clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 356 | |
Oleg Nesterov | 95c3eb7 | 2009-04-02 16:58:11 -0700 | [diff] [blame] | 357 | write_lock_irq(&tasklist_lock); |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 358 | /* |
| 359 | * This child can be already killed. Make sure de_thread() or |
| 360 | * our sub-thread doing do_wait() didn't do release_task() yet. |
| 361 | */ |
Oleg Nesterov | 95c3eb7 | 2009-04-02 16:58:11 -0700 | [diff] [blame] | 362 | if (child->ptrace) { |
| 363 | child->exit_code = data; |
Oleg Nesterov | 4576145 | 2009-04-02 16:58:14 -0700 | [diff] [blame] | 364 | dead = __ptrace_detach(current, child); |
Oleg Nesterov | 95c3eb7 | 2009-04-02 16:58:11 -0700 | [diff] [blame] | 365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | write_unlock_irq(&tasklist_lock); |
| 367 | |
Oleg Nesterov | 4576145 | 2009-04-02 16:58:14 -0700 | [diff] [blame] | 368 | if (unlikely(dead)) |
| 369 | release_task(child); |
| 370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | return 0; |
| 372 | } |
| 373 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 374 | /* |
Oleg Nesterov | c7e49c1 | 2010-08-10 18:03:07 -0700 | [diff] [blame] | 375 | * Detach all tasks we were using ptrace on. Called with tasklist held |
| 376 | * for writing, and returns with it held too. But note it can release |
| 377 | * and reacquire the lock. |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 378 | */ |
| 379 | void exit_ptrace(struct task_struct *tracer) |
Namhyung Kim | c4b5ed2 | 2010-10-27 15:33:44 -0700 | [diff] [blame] | 380 | __releases(&tasklist_lock) |
| 381 | __acquires(&tasklist_lock) |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 382 | { |
| 383 | struct task_struct *p, *n; |
| 384 | LIST_HEAD(ptrace_dead); |
| 385 | |
Oleg Nesterov | c7e49c1 | 2010-08-10 18:03:07 -0700 | [diff] [blame] | 386 | if (likely(list_empty(&tracer->ptraced))) |
| 387 | return; |
| 388 | |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 389 | list_for_each_entry_safe(p, n, &tracer->ptraced, ptrace_entry) { |
| 390 | if (__ptrace_detach(tracer, p)) |
| 391 | list_add(&p->ptrace_entry, &ptrace_dead); |
| 392 | } |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 393 | |
Oleg Nesterov | c7e49c1 | 2010-08-10 18:03:07 -0700 | [diff] [blame] | 394 | write_unlock_irq(&tasklist_lock); |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 395 | BUG_ON(!list_empty(&tracer->ptraced)); |
| 396 | |
| 397 | list_for_each_entry_safe(p, n, &ptrace_dead, ptrace_entry) { |
| 398 | list_del_init(&p->ptrace_entry); |
| 399 | release_task(p); |
| 400 | } |
Oleg Nesterov | c7e49c1 | 2010-08-10 18:03:07 -0700 | [diff] [blame] | 401 | |
| 402 | write_lock_irq(&tasklist_lock); |
Oleg Nesterov | 39c626a | 2009-04-02 16:58:18 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len) |
| 406 | { |
| 407 | int copied = 0; |
| 408 | |
| 409 | while (len > 0) { |
| 410 | char buf[128]; |
| 411 | int this_len, retval; |
| 412 | |
| 413 | this_len = (len > sizeof(buf)) ? sizeof(buf) : len; |
| 414 | retval = access_process_vm(tsk, src, buf, this_len, 0); |
| 415 | if (!retval) { |
| 416 | if (copied) |
| 417 | break; |
| 418 | return -EIO; |
| 419 | } |
| 420 | if (copy_to_user(dst, buf, retval)) |
| 421 | return -EFAULT; |
| 422 | copied += retval; |
| 423 | src += retval; |
| 424 | dst += retval; |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 425 | len -= retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | return copied; |
| 428 | } |
| 429 | |
| 430 | int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len) |
| 431 | { |
| 432 | int copied = 0; |
| 433 | |
| 434 | while (len > 0) { |
| 435 | char buf[128]; |
| 436 | int this_len, retval; |
| 437 | |
| 438 | this_len = (len > sizeof(buf)) ? sizeof(buf) : len; |
| 439 | if (copy_from_user(buf, src, this_len)) |
| 440 | return -EFAULT; |
| 441 | retval = access_process_vm(tsk, dst, buf, this_len, 1); |
| 442 | if (!retval) { |
| 443 | if (copied) |
| 444 | break; |
| 445 | return -EIO; |
| 446 | } |
| 447 | copied += retval; |
| 448 | src += retval; |
| 449 | dst += retval; |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 450 | len -= retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
| 452 | return copied; |
| 453 | } |
| 454 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 455 | static int ptrace_setoptions(struct task_struct *child, unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { |
| 457 | child->ptrace &= ~PT_TRACE_MASK; |
| 458 | |
| 459 | if (data & PTRACE_O_TRACESYSGOOD) |
| 460 | child->ptrace |= PT_TRACESYSGOOD; |
| 461 | |
| 462 | if (data & PTRACE_O_TRACEFORK) |
| 463 | child->ptrace |= PT_TRACE_FORK; |
| 464 | |
| 465 | if (data & PTRACE_O_TRACEVFORK) |
| 466 | child->ptrace |= PT_TRACE_VFORK; |
| 467 | |
| 468 | if (data & PTRACE_O_TRACECLONE) |
| 469 | child->ptrace |= PT_TRACE_CLONE; |
| 470 | |
| 471 | if (data & PTRACE_O_TRACEEXEC) |
| 472 | child->ptrace |= PT_TRACE_EXEC; |
| 473 | |
| 474 | if (data & PTRACE_O_TRACEVFORKDONE) |
| 475 | child->ptrace |= PT_TRACE_VFORK_DONE; |
| 476 | |
| 477 | if (data & PTRACE_O_TRACEEXIT) |
| 478 | child->ptrace |= PT_TRACE_EXIT; |
| 479 | |
| 480 | return (data & ~PTRACE_O_MASK) ? -EINVAL : 0; |
| 481 | } |
| 482 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 483 | static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | { |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 485 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | int error = -ESRCH; |
| 487 | |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 488 | if (lock_task_sighand(child, &flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | if (likely(child->last_siginfo != NULL)) { |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 491 | *info = *child->last_siginfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | error = 0; |
| 493 | } |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 494 | unlock_task_sighand(child, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | return error; |
| 497 | } |
| 498 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 499 | static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 501 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | int error = -ESRCH; |
| 503 | |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 504 | if (lock_task_sighand(child, &flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (likely(child->last_siginfo != NULL)) { |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 507 | *child->last_siginfo = *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | error = 0; |
| 509 | } |
Oleg Nesterov | e496125 | 2009-06-17 16:27:36 -0700 | [diff] [blame] | 510 | unlock_task_sighand(child, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | return error; |
| 513 | } |
| 514 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 515 | |
| 516 | #ifdef PTRACE_SINGLESTEP |
| 517 | #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP) |
| 518 | #else |
| 519 | #define is_singlestep(request) 0 |
| 520 | #endif |
| 521 | |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 522 | #ifdef PTRACE_SINGLEBLOCK |
| 523 | #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK) |
| 524 | #else |
| 525 | #define is_singleblock(request) 0 |
| 526 | #endif |
| 527 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 528 | #ifdef PTRACE_SYSEMU |
| 529 | #define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP) |
| 530 | #else |
| 531 | #define is_sysemu_singlestep(request) 0 |
| 532 | #endif |
| 533 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 534 | static int ptrace_resume(struct task_struct *child, long request, |
| 535 | unsigned long data) |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 536 | { |
| 537 | if (!valid_signal(data)) |
| 538 | return -EIO; |
| 539 | |
| 540 | if (request == PTRACE_SYSCALL) |
| 541 | set_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
| 542 | else |
| 543 | clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
| 544 | |
| 545 | #ifdef TIF_SYSCALL_EMU |
| 546 | if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP) |
| 547 | set_tsk_thread_flag(child, TIF_SYSCALL_EMU); |
| 548 | else |
| 549 | clear_tsk_thread_flag(child, TIF_SYSCALL_EMU); |
| 550 | #endif |
| 551 | |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 552 | if (is_singleblock(request)) { |
| 553 | if (unlikely(!arch_has_block_step())) |
| 554 | return -EIO; |
| 555 | user_enable_block_step(child); |
| 556 | } else if (is_singlestep(request) || is_sysemu_singlestep(request)) { |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 557 | if (unlikely(!arch_has_single_step())) |
| 558 | return -EIO; |
| 559 | user_enable_single_step(child); |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 560 | } else { |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 561 | user_disable_single_step(child); |
Roland McGrath | 3a70970 | 2009-04-07 23:21:06 -0700 | [diff] [blame] | 562 | } |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 563 | |
| 564 | child->exit_code = data; |
Oleg Nesterov | 0666fb5 | 2011-05-25 19:20:21 +0200 | [diff] [blame] | 565 | wake_up_state(child, __TASK_TRACED); |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 566 | |
| 567 | return 0; |
| 568 | } |
| 569 | |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 570 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
| 571 | |
| 572 | static const struct user_regset * |
| 573 | find_regset(const struct user_regset_view *view, unsigned int type) |
| 574 | { |
| 575 | const struct user_regset *regset; |
| 576 | int n; |
| 577 | |
| 578 | for (n = 0; n < view->n; ++n) { |
| 579 | regset = view->regsets + n; |
| 580 | if (regset->core_note_type == type) |
| 581 | return regset; |
| 582 | } |
| 583 | |
| 584 | return NULL; |
| 585 | } |
| 586 | |
| 587 | static int ptrace_regset(struct task_struct *task, int req, unsigned int type, |
| 588 | struct iovec *kiov) |
| 589 | { |
| 590 | const struct user_regset_view *view = task_user_regset_view(task); |
| 591 | const struct user_regset *regset = find_regset(view, type); |
| 592 | int regset_no; |
| 593 | |
| 594 | if (!regset || (kiov->iov_len % regset->size) != 0) |
Suresh Siddha | c6a0dd7 | 2010-02-22 14:51:32 -0800 | [diff] [blame] | 595 | return -EINVAL; |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 596 | |
| 597 | regset_no = regset - view->regsets; |
| 598 | kiov->iov_len = min(kiov->iov_len, |
| 599 | (__kernel_size_t) (regset->n * regset->size)); |
| 600 | |
| 601 | if (req == PTRACE_GETREGSET) |
| 602 | return copy_regset_to_user(task, view, regset_no, 0, |
| 603 | kiov->iov_len, kiov->iov_base); |
| 604 | else |
| 605 | return copy_regset_from_user(task, view, regset_no, 0, |
| 606 | kiov->iov_len, kiov->iov_base); |
| 607 | } |
| 608 | |
| 609 | #endif |
| 610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | int ptrace_request(struct task_struct *child, long request, |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 612 | unsigned long addr, unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
| 614 | int ret = -EIO; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 615 | siginfo_t siginfo; |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 616 | void __user *datavp = (void __user *) data; |
| 617 | unsigned long __user *datalp = datavp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
| 619 | switch (request) { |
Roland McGrath | 16c3e38 | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 620 | case PTRACE_PEEKTEXT: |
| 621 | case PTRACE_PEEKDATA: |
| 622 | return generic_ptrace_peekdata(child, addr, data); |
| 623 | case PTRACE_POKETEXT: |
| 624 | case PTRACE_POKEDATA: |
| 625 | return generic_ptrace_pokedata(child, addr, data); |
| 626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | #ifdef PTRACE_OLDSETOPTIONS |
| 628 | case PTRACE_OLDSETOPTIONS: |
| 629 | #endif |
| 630 | case PTRACE_SETOPTIONS: |
| 631 | ret = ptrace_setoptions(child, data); |
| 632 | break; |
| 633 | case PTRACE_GETEVENTMSG: |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 634 | ret = put_user(child->ptrace_message, datalp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | case PTRACE_GETSIGINFO: |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 638 | ret = ptrace_getsiginfo(child, &siginfo); |
| 639 | if (!ret) |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 640 | ret = copy_siginfo_to_user(datavp, &siginfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | case PTRACE_SETSIGINFO: |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 644 | if (copy_from_user(&siginfo, datavp, sizeof siginfo)) |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 645 | ret = -EFAULT; |
| 646 | else |
| 647 | ret = ptrace_setsiginfo(child, &siginfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 649 | |
Alexey Dobriyan | 1bcf548 | 2007-10-16 01:23:45 -0700 | [diff] [blame] | 650 | case PTRACE_DETACH: /* detach a process that was attached. */ |
| 651 | ret = ptrace_detach(child, data); |
| 652 | break; |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 653 | |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 654 | #ifdef CONFIG_BINFMT_ELF_FDPIC |
| 655 | case PTRACE_GETFDPIC: { |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 656 | struct mm_struct *mm = get_task_mm(child); |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 657 | unsigned long tmp = 0; |
| 658 | |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 659 | ret = -ESRCH; |
| 660 | if (!mm) |
| 661 | break; |
| 662 | |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 663 | switch (addr) { |
| 664 | case PTRACE_GETFDPIC_EXEC: |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 665 | tmp = mm->context.exec_fdpic_loadmap; |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 666 | break; |
| 667 | case PTRACE_GETFDPIC_INTERP: |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 668 | tmp = mm->context.interp_fdpic_loadmap; |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 669 | break; |
| 670 | default: |
| 671 | break; |
| 672 | } |
Oleg Nesterov | e0129ef | 2010-05-26 14:42:53 -0700 | [diff] [blame] | 673 | mmput(mm); |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 674 | |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 675 | ret = put_user(tmp, datalp); |
Mike Frysinger | 9c1a125 | 2010-05-26 14:42:52 -0700 | [diff] [blame] | 676 | break; |
| 677 | } |
| 678 | #endif |
| 679 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 680 | #ifdef PTRACE_SINGLESTEP |
| 681 | case PTRACE_SINGLESTEP: |
| 682 | #endif |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 683 | #ifdef PTRACE_SINGLEBLOCK |
| 684 | case PTRACE_SINGLEBLOCK: |
| 685 | #endif |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 686 | #ifdef PTRACE_SYSEMU |
| 687 | case PTRACE_SYSEMU: |
| 688 | case PTRACE_SYSEMU_SINGLESTEP: |
| 689 | #endif |
| 690 | case PTRACE_SYSCALL: |
| 691 | case PTRACE_CONT: |
| 692 | return ptrace_resume(child, request, data); |
| 693 | |
| 694 | case PTRACE_KILL: |
| 695 | if (child->exit_state) /* already dead */ |
| 696 | return 0; |
| 697 | return ptrace_resume(child, request, SIGKILL); |
| 698 | |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 699 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
| 700 | case PTRACE_GETREGSET: |
| 701 | case PTRACE_SETREGSET: |
| 702 | { |
| 703 | struct iovec kiov; |
Namhyung Kim | 9fed81d | 2010-10-27 15:33:46 -0700 | [diff] [blame] | 704 | struct iovec __user *uiov = datavp; |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 705 | |
| 706 | if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov))) |
| 707 | return -EFAULT; |
| 708 | |
| 709 | if (__get_user(kiov.iov_base, &uiov->iov_base) || |
| 710 | __get_user(kiov.iov_len, &uiov->iov_len)) |
| 711 | return -EFAULT; |
| 712 | |
| 713 | ret = ptrace_regset(child, request, addr, &kiov); |
| 714 | if (!ret) |
| 715 | ret = __put_user(kiov.iov_len, &uiov->iov_len); |
| 716 | break; |
| 717 | } |
| 718 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | default: |
| 720 | break; |
| 721 | } |
| 722 | |
| 723 | return ret; |
| 724 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 725 | |
Oleg Nesterov | 8053bdd | 2009-06-17 16:27:34 -0700 | [diff] [blame] | 726 | static struct task_struct *ptrace_get_task_struct(pid_t pid) |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 727 | { |
| 728 | struct task_struct *child; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 729 | |
Oleg Nesterov | 8053bdd | 2009-06-17 16:27:34 -0700 | [diff] [blame] | 730 | rcu_read_lock(); |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 731 | child = find_task_by_vpid(pid); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 732 | if (child) |
| 733 | get_task_struct(child); |
Oleg Nesterov | 8053bdd | 2009-06-17 16:27:34 -0700 | [diff] [blame] | 734 | rcu_read_unlock(); |
Sukadev Bhattiprolu | f400e19 | 2006-09-29 02:00:07 -0700 | [diff] [blame] | 735 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 736 | if (!child) |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 737 | return ERR_PTR(-ESRCH); |
| 738 | return child; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 739 | } |
| 740 | |
Christoph Hellwig | 0ac1555 | 2007-10-16 01:26:37 -0700 | [diff] [blame] | 741 | #ifndef arch_ptrace_attach |
| 742 | #define arch_ptrace_attach(child) do { } while (0) |
| 743 | #endif |
| 744 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 745 | SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr, |
| 746 | unsigned long, data) |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 747 | { |
| 748 | struct task_struct *child; |
| 749 | long ret; |
| 750 | |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 751 | if (request == PTRACE_TRACEME) { |
| 752 | ret = ptrace_traceme(); |
Haavard Skinnemoen | 6ea6dd9 | 2007-11-27 13:02:40 +0100 | [diff] [blame] | 753 | if (!ret) |
| 754 | arch_ptrace_attach(current); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 755 | goto out; |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | child = ptrace_get_task_struct(pid); |
| 759 | if (IS_ERR(child)) { |
| 760 | ret = PTR_ERR(child); |
| 761 | goto out; |
| 762 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 763 | |
| 764 | if (request == PTRACE_ATTACH) { |
| 765 | ret = ptrace_attach(child); |
Christoph Hellwig | 0ac1555 | 2007-10-16 01:26:37 -0700 | [diff] [blame] | 766 | /* |
| 767 | * Some architectures need to do book-keeping after |
| 768 | * a ptrace attach. |
| 769 | */ |
| 770 | if (!ret) |
| 771 | arch_ptrace_attach(child); |
Christoph Hellwig | 005f18d | 2005-11-13 16:06:33 -0800 | [diff] [blame] | 772 | goto out_put_task_struct; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | ret = ptrace_check_attach(child, request == PTRACE_KILL); |
| 776 | if (ret < 0) |
| 777 | goto out_put_task_struct; |
| 778 | |
| 779 | ret = arch_ptrace(child, request, addr, data); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 780 | |
| 781 | out_put_task_struct: |
| 782 | put_task_struct(child); |
| 783 | out: |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 784 | return ret; |
| 785 | } |
Alexey Dobriyan | 7664732 | 2007-07-17 04:03:43 -0700 | [diff] [blame] | 786 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 787 | int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr, |
| 788 | unsigned long data) |
Alexey Dobriyan | 7664732 | 2007-07-17 04:03:43 -0700 | [diff] [blame] | 789 | { |
| 790 | unsigned long tmp; |
| 791 | int copied; |
| 792 | |
| 793 | copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0); |
| 794 | if (copied != sizeof(tmp)) |
| 795 | return -EIO; |
| 796 | return put_user(tmp, (unsigned long __user *)data); |
| 797 | } |
Alexey Dobriyan | f284ce7 | 2007-07-17 04:03:44 -0700 | [diff] [blame] | 798 | |
Namhyung Kim | 4abf986 | 2010-10-27 15:33:45 -0700 | [diff] [blame] | 799 | int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr, |
| 800 | unsigned long data) |
Alexey Dobriyan | f284ce7 | 2007-07-17 04:03:44 -0700 | [diff] [blame] | 801 | { |
| 802 | int copied; |
| 803 | |
| 804 | copied = access_process_vm(tsk, addr, &data, sizeof(data), 1); |
| 805 | return (copied == sizeof(data)) ? 0 : -EIO; |
| 806 | } |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 807 | |
Christoph Hellwig | 96b8936 | 2008-11-25 08:10:03 +0100 | [diff] [blame] | 808 | #if defined CONFIG_COMPAT |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 809 | #include <linux/compat.h> |
| 810 | |
| 811 | int compat_ptrace_request(struct task_struct *child, compat_long_t request, |
| 812 | compat_ulong_t addr, compat_ulong_t data) |
| 813 | { |
| 814 | compat_ulong_t __user *datap = compat_ptr(data); |
| 815 | compat_ulong_t word; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 816 | siginfo_t siginfo; |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 817 | int ret; |
| 818 | |
| 819 | switch (request) { |
| 820 | case PTRACE_PEEKTEXT: |
| 821 | case PTRACE_PEEKDATA: |
| 822 | ret = access_process_vm(child, addr, &word, sizeof(word), 0); |
| 823 | if (ret != sizeof(word)) |
| 824 | ret = -EIO; |
| 825 | else |
| 826 | ret = put_user(word, datap); |
| 827 | break; |
| 828 | |
| 829 | case PTRACE_POKETEXT: |
| 830 | case PTRACE_POKEDATA: |
| 831 | ret = access_process_vm(child, addr, &data, sizeof(data), 1); |
| 832 | ret = (ret != sizeof(data) ? -EIO : 0); |
| 833 | break; |
| 834 | |
| 835 | case PTRACE_GETEVENTMSG: |
| 836 | ret = put_user((compat_ulong_t) child->ptrace_message, datap); |
| 837 | break; |
| 838 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 839 | case PTRACE_GETSIGINFO: |
| 840 | ret = ptrace_getsiginfo(child, &siginfo); |
| 841 | if (!ret) |
| 842 | ret = copy_siginfo_to_user32( |
| 843 | (struct compat_siginfo __user *) datap, |
| 844 | &siginfo); |
| 845 | break; |
| 846 | |
| 847 | case PTRACE_SETSIGINFO: |
| 848 | memset(&siginfo, 0, sizeof siginfo); |
| 849 | if (copy_siginfo_from_user32( |
| 850 | &siginfo, (struct compat_siginfo __user *) datap)) |
| 851 | ret = -EFAULT; |
| 852 | else |
| 853 | ret = ptrace_setsiginfo(child, &siginfo); |
| 854 | break; |
Suresh Siddha | 2225a12 | 2010-02-11 11:51:00 -0800 | [diff] [blame] | 855 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
| 856 | case PTRACE_GETREGSET: |
| 857 | case PTRACE_SETREGSET: |
| 858 | { |
| 859 | struct iovec kiov; |
| 860 | struct compat_iovec __user *uiov = |
| 861 | (struct compat_iovec __user *) datap; |
| 862 | compat_uptr_t ptr; |
| 863 | compat_size_t len; |
| 864 | |
| 865 | if (!access_ok(VERIFY_WRITE, uiov, sizeof(*uiov))) |
| 866 | return -EFAULT; |
| 867 | |
| 868 | if (__get_user(ptr, &uiov->iov_base) || |
| 869 | __get_user(len, &uiov->iov_len)) |
| 870 | return -EFAULT; |
| 871 | |
| 872 | kiov.iov_base = compat_ptr(ptr); |
| 873 | kiov.iov_len = len; |
| 874 | |
| 875 | ret = ptrace_regset(child, request, addr, &kiov); |
| 876 | if (!ret) |
| 877 | ret = __put_user(kiov.iov_len, &uiov->iov_len); |
| 878 | break; |
| 879 | } |
| 880 | #endif |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 881 | |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 882 | default: |
| 883 | ret = ptrace_request(child, request, addr, data); |
| 884 | } |
| 885 | |
| 886 | return ret; |
| 887 | } |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 888 | |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 889 | asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid, |
| 890 | compat_long_t addr, compat_long_t data) |
| 891 | { |
| 892 | struct task_struct *child; |
| 893 | long ret; |
| 894 | |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 895 | if (request == PTRACE_TRACEME) { |
| 896 | ret = ptrace_traceme(); |
| 897 | goto out; |
| 898 | } |
| 899 | |
| 900 | child = ptrace_get_task_struct(pid); |
| 901 | if (IS_ERR(child)) { |
| 902 | ret = PTR_ERR(child); |
| 903 | goto out; |
| 904 | } |
| 905 | |
| 906 | if (request == PTRACE_ATTACH) { |
| 907 | ret = ptrace_attach(child); |
| 908 | /* |
| 909 | * Some architectures need to do book-keeping after |
| 910 | * a ptrace attach. |
| 911 | */ |
| 912 | if (!ret) |
| 913 | arch_ptrace_attach(child); |
| 914 | goto out_put_task_struct; |
| 915 | } |
| 916 | |
| 917 | ret = ptrace_check_attach(child, request == PTRACE_KILL); |
| 918 | if (!ret) |
| 919 | ret = compat_arch_ptrace(child, request, addr, data); |
| 920 | |
| 921 | out_put_task_struct: |
| 922 | put_task_struct(child); |
| 923 | out: |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 924 | return ret; |
| 925 | } |
Christoph Hellwig | 96b8936 | 2008-11-25 08:10:03 +0100 | [diff] [blame] | 926 | #endif /* CONFIG_COMPAT */ |
Frederic Weisbecker | bf26c01 | 2011-04-07 16:53:20 +0200 | [diff] [blame] | 927 | |
| 928 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
| 929 | int ptrace_get_breakpoints(struct task_struct *tsk) |
| 930 | { |
| 931 | if (atomic_inc_not_zero(&tsk->ptrace_bp_refcnt)) |
| 932 | return 0; |
| 933 | |
| 934 | return -1; |
| 935 | } |
| 936 | |
| 937 | void ptrace_put_breakpoints(struct task_struct *tsk) |
| 938 | { |
| 939 | if (atomic_dec_and_test(&tsk->ptrace_bp_refcnt)) |
| 940 | flush_ptrace_hw_breakpoint(tsk); |
| 941 | } |
| 942 | #endif /* CONFIG_HAVE_HW_BREAKPOINT */ |