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> |
| 17 | #include <linux/smp_lock.h> |
| 18 | #include <linux/ptrace.h> |
| 19 | #include <linux/security.h> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 20 | #include <linux/signal.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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/pgtable.h> |
| 26 | #include <asm/uaccess.h> |
| 27 | |
| 28 | /* |
| 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 | } |
| 40 | |
| 41 | /* |
| 42 | * Turn a tracing stop into a normal stop now, since with no tracer there |
| 43 | * would be no way to wake it up with SIGCONT or SIGKILL. If there was a |
| 44 | * signal sent that would resume the child, but didn't because it was in |
| 45 | * TASK_TRACED, resume it now. |
| 46 | * Requires that irqs be disabled. |
| 47 | */ |
Adrian Bunk | b747c8c | 2008-10-18 20:28:21 -0700 | [diff] [blame] | 48 | static void ptrace_untrace(struct task_struct *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
| 50 | spin_lock(&child->sighand->siglock); |
Matthew Wilcox | 6618a3e | 2007-12-06 11:06:16 -0500 | [diff] [blame] | 51 | if (task_is_traced(child)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | if (child->signal->flags & SIGNAL_STOP_STOPPED) { |
Oleg Nesterov | d9ae90a | 2008-02-06 01:36:13 -0800 | [diff] [blame] | 53 | __set_task_state(child, TASK_STOPPED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } else { |
| 55 | signal_wake_up(child, 1); |
| 56 | } |
| 57 | } |
| 58 | spin_unlock(&child->sighand->siglock); |
| 59 | } |
| 60 | |
| 61 | /* |
| 62 | * unptrace a task: move it back to its original parent and |
| 63 | * remove it from the ptrace list. |
| 64 | * |
| 65 | * Must be called with the tasklist lock write-held. |
| 66 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 67 | void __ptrace_unlink(struct task_struct *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 69 | BUG_ON(!child->ptrace); |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | child->ptrace = 0; |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 72 | child->parent = child->real_parent; |
| 73 | list_del_init(&child->ptrace_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Matthew Wilcox | 6618a3e | 2007-12-06 11:06:16 -0500 | [diff] [blame] | 75 | if (task_is_traced(child)) |
Roland McGrath | e57a505 | 2006-04-12 16:30:20 -0700 | [diff] [blame] | 76 | ptrace_untrace(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* |
| 80 | * Check that we have indeed attached to the thing.. |
| 81 | */ |
| 82 | int ptrace_check_attach(struct task_struct *child, int kill) |
| 83 | { |
| 84 | int ret = -ESRCH; |
| 85 | |
| 86 | /* |
| 87 | * We take the read lock around doing both checks to close a |
| 88 | * possible race where someone else was tracing our child and |
| 89 | * detached between these two checks. After this locked check, |
| 90 | * we are sure that this is our traced child and that can only |
| 91 | * be changed by us so it's not changing right after this. |
| 92 | */ |
| 93 | read_lock(&tasklist_lock); |
Oleg Nesterov | c0c0b64 | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 94 | if ((child->ptrace & PT_PTRACED) && child->parent == current) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | ret = 0; |
Oleg Nesterov | c0c0b64 | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 96 | /* |
| 97 | * child->sighand can't be NULL, release_task() |
| 98 | * does ptrace_unlink() before __exit_signal(). |
| 99 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | spin_lock_irq(&child->sighand->siglock); |
Oleg Nesterov | d9ae90a | 2008-02-06 01:36:13 -0800 | [diff] [blame] | 101 | if (task_is_stopped(child)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | child->state = TASK_TRACED; |
Oleg Nesterov | d9ae90a | 2008-02-06 01:36:13 -0800 | [diff] [blame] | 103 | else if (!task_is_traced(child) && !kill) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | ret = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | spin_unlock_irq(&child->sighand->siglock); |
| 106 | } |
| 107 | read_unlock(&tasklist_lock); |
| 108 | |
Oleg Nesterov | d9ae90a | 2008-02-06 01:36:13 -0800 | [diff] [blame] | 109 | if (!ret && !kill) |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 110 | ret = wait_task_inactive(child, TASK_TRACED) ? 0 : -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /* All systems go.. */ |
| 113 | return ret; |
| 114 | } |
| 115 | |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 116 | int __ptrace_may_access(struct task_struct *task, unsigned int mode) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 117 | { |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame^] | 118 | struct cred *cred = current->cred, *tcred = task->cred; |
| 119 | |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 120 | /* May we inspect the given task? |
| 121 | * This check is used both for attaching with ptrace |
| 122 | * and for allowing access to sensitive information in /proc. |
| 123 | * |
| 124 | * ptrace_attach denies several cases that /proc allows |
| 125 | * because setting up the necessary parent/child relationship |
| 126 | * or halting the specified task is impossible. |
| 127 | */ |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame^] | 128 | uid_t uid = cred->uid; |
| 129 | gid_t gid = cred->gid; |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 130 | int dumpable = 0; |
| 131 | /* Don't let security modules deny introspection */ |
| 132 | if (task == current) |
| 133 | return 0; |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame^] | 134 | if ((uid != tcred->euid || |
| 135 | uid != tcred->suid || |
| 136 | uid != tcred->uid || |
| 137 | gid != tcred->egid || |
| 138 | gid != tcred->sgid || |
| 139 | gid != tcred->gid) && !capable(CAP_SYS_PTRACE)) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 140 | return -EPERM; |
| 141 | smp_rmb(); |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 142 | if (task->mm) |
Kawai, Hidehiro | 6c5d523 | 2007-07-19 01:48:27 -0700 | [diff] [blame] | 143 | dumpable = get_dumpable(task->mm); |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 144 | if (!dumpable && !capable(CAP_SYS_PTRACE)) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 145 | return -EPERM; |
| 146 | |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 147 | return security_ptrace_may_access(task, mode); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 150 | bool ptrace_may_access(struct task_struct *task, unsigned int mode) |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 151 | { |
| 152 | int err; |
| 153 | task_lock(task); |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 154 | err = __ptrace_may_access(task, mode); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 155 | task_unlock(task); |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 156 | return (!err ? true : false); |
Miklos Szeredi | ab8d11b | 2005-09-06 15:18:24 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | int ptrace_attach(struct task_struct *task) |
| 160 | { |
| 161 | int retval; |
Sripathi Kodi | 6175ecf | 2007-07-15 23:39:26 -0700 | [diff] [blame] | 162 | unsigned long flags; |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 163 | |
Al Viro | a5cb013 | 2007-03-20 13:58:35 -0400 | [diff] [blame] | 164 | audit_ptrace(task); |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | retval = -EPERM; |
Pavel Emelyanov | bac0abd | 2007-10-18 23:40:18 -0700 | [diff] [blame] | 167 | if (same_thread_group(task, current)) |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 168 | goto out; |
| 169 | |
Linus Torvalds | f358166 | 2006-05-11 11:08:49 -0700 | [diff] [blame] | 170 | repeat: |
| 171 | /* |
| 172 | * Nasty, nasty. |
| 173 | * |
| 174 | * We want to hold both the task-lock and the |
| 175 | * tasklist_lock for writing at the same time. |
| 176 | * But that's against the rules (tasklist_lock |
| 177 | * is taken for reading by interrupts on other |
| 178 | * cpu's that may have task_lock). |
| 179 | */ |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 180 | task_lock(task); |
Sripathi Kodi | 6175ecf | 2007-07-15 23:39:26 -0700 | [diff] [blame] | 181 | if (!write_trylock_irqsave(&tasklist_lock, flags)) { |
Linus Torvalds | f358166 | 2006-05-11 11:08:49 -0700 | [diff] [blame] | 182 | task_unlock(task); |
| 183 | do { |
| 184 | cpu_relax(); |
| 185 | } while (!write_can_lock(&tasklist_lock)); |
| 186 | goto repeat; |
| 187 | } |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 188 | |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 189 | if (!task->mm) |
| 190 | goto bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /* the same process cannot be attached many times */ |
| 192 | if (task->ptrace & PT_PTRACED) |
| 193 | goto bad; |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 194 | retval = __ptrace_may_access(task, PTRACE_MODE_ATTACH); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | if (retval) |
| 196 | goto bad; |
| 197 | |
| 198 | /* Go */ |
Oleg Nesterov | 6b39c7b | 2008-02-08 04:18:58 -0800 | [diff] [blame] | 199 | task->ptrace |= PT_PTRACED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | if (capable(CAP_SYS_PTRACE)) |
| 201 | task->ptrace |= PT_PTRACE_CAP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | __ptrace_link(task, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Oleg Nesterov | 33e9fc7 | 2008-04-30 00:53:14 -0700 | [diff] [blame] | 205 | send_sig_info(SIGSTOP, SEND_SIG_FORCED, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | bad: |
Sripathi Kodi | 6175ecf | 2007-07-15 23:39:26 -0700 | [diff] [blame] | 207 | write_unlock_irqrestore(&tasklist_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | task_unlock(task); |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 209 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | return retval; |
| 211 | } |
| 212 | |
Oleg Nesterov | d5f70c0 | 2006-06-26 00:26:07 -0700 | [diff] [blame] | 213 | static inline void __ptrace_detach(struct task_struct *child, unsigned int data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | child->exit_code = data; |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 216 | /* .. re-parent .. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | __ptrace_unlink(child); |
| 218 | /* .. and wake it up. */ |
| 219 | if (child->exit_state != EXIT_ZOMBIE) |
| 220 | wake_up_process(child); |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | int ptrace_detach(struct task_struct *child, unsigned int data) |
| 224 | { |
| 225 | if (!valid_signal(data)) |
| 226 | return -EIO; |
| 227 | |
| 228 | /* Architecture-specific hardware disable .. */ |
| 229 | ptrace_disable(child); |
Roland McGrath | 7d94143 | 2007-09-05 03:05:56 -0700 | [diff] [blame] | 230 | clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 231 | |
| 232 | write_lock_irq(&tasklist_lock); |
Oleg Nesterov | d5f70c0 | 2006-06-26 00:26:07 -0700 | [diff] [blame] | 233 | /* protect against de_thread()->release_task() */ |
Oleg Nesterov | 5ecfbae | 2006-02-15 22:50:10 +0300 | [diff] [blame] | 234 | if (child->ptrace) |
| 235 | __ptrace_detach(child, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | write_unlock_irq(&tasklist_lock); |
| 237 | |
| 238 | return 0; |
| 239 | } |
| 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len) |
| 242 | { |
| 243 | int copied = 0; |
| 244 | |
| 245 | while (len > 0) { |
| 246 | char buf[128]; |
| 247 | int this_len, retval; |
| 248 | |
| 249 | this_len = (len > sizeof(buf)) ? sizeof(buf) : len; |
| 250 | retval = access_process_vm(tsk, src, buf, this_len, 0); |
| 251 | if (!retval) { |
| 252 | if (copied) |
| 253 | break; |
| 254 | return -EIO; |
| 255 | } |
| 256 | if (copy_to_user(dst, buf, retval)) |
| 257 | return -EFAULT; |
| 258 | copied += retval; |
| 259 | src += retval; |
| 260 | dst += retval; |
| 261 | len -= retval; |
| 262 | } |
| 263 | return copied; |
| 264 | } |
| 265 | |
| 266 | int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len) |
| 267 | { |
| 268 | int copied = 0; |
| 269 | |
| 270 | while (len > 0) { |
| 271 | char buf[128]; |
| 272 | int this_len, retval; |
| 273 | |
| 274 | this_len = (len > sizeof(buf)) ? sizeof(buf) : len; |
| 275 | if (copy_from_user(buf, src, this_len)) |
| 276 | return -EFAULT; |
| 277 | retval = access_process_vm(tsk, dst, buf, this_len, 1); |
| 278 | if (!retval) { |
| 279 | if (copied) |
| 280 | break; |
| 281 | return -EIO; |
| 282 | } |
| 283 | copied += retval; |
| 284 | src += retval; |
| 285 | dst += retval; |
| 286 | len -= retval; |
| 287 | } |
| 288 | return copied; |
| 289 | } |
| 290 | |
| 291 | static int ptrace_setoptions(struct task_struct *child, long data) |
| 292 | { |
| 293 | child->ptrace &= ~PT_TRACE_MASK; |
| 294 | |
| 295 | if (data & PTRACE_O_TRACESYSGOOD) |
| 296 | child->ptrace |= PT_TRACESYSGOOD; |
| 297 | |
| 298 | if (data & PTRACE_O_TRACEFORK) |
| 299 | child->ptrace |= PT_TRACE_FORK; |
| 300 | |
| 301 | if (data & PTRACE_O_TRACEVFORK) |
| 302 | child->ptrace |= PT_TRACE_VFORK; |
| 303 | |
| 304 | if (data & PTRACE_O_TRACECLONE) |
| 305 | child->ptrace |= PT_TRACE_CLONE; |
| 306 | |
| 307 | if (data & PTRACE_O_TRACEEXEC) |
| 308 | child->ptrace |= PT_TRACE_EXEC; |
| 309 | |
| 310 | if (data & PTRACE_O_TRACEVFORKDONE) |
| 311 | child->ptrace |= PT_TRACE_VFORK_DONE; |
| 312 | |
| 313 | if (data & PTRACE_O_TRACEEXIT) |
| 314 | child->ptrace |= PT_TRACE_EXIT; |
| 315 | |
| 316 | return (data & ~PTRACE_O_MASK) ? -EINVAL : 0; |
| 317 | } |
| 318 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 319 | static int ptrace_getsiginfo(struct task_struct *child, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | int error = -ESRCH; |
| 322 | |
| 323 | read_lock(&tasklist_lock); |
| 324 | if (likely(child->sighand != NULL)) { |
| 325 | error = -EINVAL; |
| 326 | spin_lock_irq(&child->sighand->siglock); |
| 327 | if (likely(child->last_siginfo != NULL)) { |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 328 | *info = *child->last_siginfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | error = 0; |
| 330 | } |
| 331 | spin_unlock_irq(&child->sighand->siglock); |
| 332 | } |
| 333 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | return error; |
| 335 | } |
| 336 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 337 | static int ptrace_setsiginfo(struct task_struct *child, const siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | int error = -ESRCH; |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | read_lock(&tasklist_lock); |
| 342 | if (likely(child->sighand != NULL)) { |
| 343 | error = -EINVAL; |
| 344 | spin_lock_irq(&child->sighand->siglock); |
| 345 | if (likely(child->last_siginfo != NULL)) { |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 346 | *child->last_siginfo = *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | error = 0; |
| 348 | } |
| 349 | spin_unlock_irq(&child->sighand->siglock); |
| 350 | } |
| 351 | read_unlock(&tasklist_lock); |
| 352 | return error; |
| 353 | } |
| 354 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 355 | |
| 356 | #ifdef PTRACE_SINGLESTEP |
| 357 | #define is_singlestep(request) ((request) == PTRACE_SINGLESTEP) |
| 358 | #else |
| 359 | #define is_singlestep(request) 0 |
| 360 | #endif |
| 361 | |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 362 | #ifdef PTRACE_SINGLEBLOCK |
| 363 | #define is_singleblock(request) ((request) == PTRACE_SINGLEBLOCK) |
| 364 | #else |
| 365 | #define is_singleblock(request) 0 |
| 366 | #endif |
| 367 | |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 368 | #ifdef PTRACE_SYSEMU |
| 369 | #define is_sysemu_singlestep(request) ((request) == PTRACE_SYSEMU_SINGLESTEP) |
| 370 | #else |
| 371 | #define is_sysemu_singlestep(request) 0 |
| 372 | #endif |
| 373 | |
| 374 | static int ptrace_resume(struct task_struct *child, long request, long data) |
| 375 | { |
| 376 | if (!valid_signal(data)) |
| 377 | return -EIO; |
| 378 | |
| 379 | if (request == PTRACE_SYSCALL) |
| 380 | set_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
| 381 | else |
| 382 | clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE); |
| 383 | |
| 384 | #ifdef TIF_SYSCALL_EMU |
| 385 | if (request == PTRACE_SYSEMU || request == PTRACE_SYSEMU_SINGLESTEP) |
| 386 | set_tsk_thread_flag(child, TIF_SYSCALL_EMU); |
| 387 | else |
| 388 | clear_tsk_thread_flag(child, TIF_SYSCALL_EMU); |
| 389 | #endif |
| 390 | |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 391 | if (is_singleblock(request)) { |
| 392 | if (unlikely(!arch_has_block_step())) |
| 393 | return -EIO; |
| 394 | user_enable_block_step(child); |
| 395 | } else if (is_singlestep(request) || is_sysemu_singlestep(request)) { |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 396 | if (unlikely(!arch_has_single_step())) |
| 397 | return -EIO; |
| 398 | user_enable_single_step(child); |
| 399 | } |
| 400 | else |
| 401 | user_disable_single_step(child); |
| 402 | |
| 403 | child->exit_code = data; |
| 404 | wake_up_process(child); |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | int ptrace_request(struct task_struct *child, long request, |
| 410 | long addr, long data) |
| 411 | { |
| 412 | int ret = -EIO; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 413 | siginfo_t siginfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | switch (request) { |
Roland McGrath | 16c3e38 | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 416 | case PTRACE_PEEKTEXT: |
| 417 | case PTRACE_PEEKDATA: |
| 418 | return generic_ptrace_peekdata(child, addr, data); |
| 419 | case PTRACE_POKETEXT: |
| 420 | case PTRACE_POKEDATA: |
| 421 | return generic_ptrace_pokedata(child, addr, data); |
| 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | #ifdef PTRACE_OLDSETOPTIONS |
| 424 | case PTRACE_OLDSETOPTIONS: |
| 425 | #endif |
| 426 | case PTRACE_SETOPTIONS: |
| 427 | ret = ptrace_setoptions(child, data); |
| 428 | break; |
| 429 | case PTRACE_GETEVENTMSG: |
| 430 | ret = put_user(child->ptrace_message, (unsigned long __user *) data); |
| 431 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | case PTRACE_GETSIGINFO: |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 434 | ret = ptrace_getsiginfo(child, &siginfo); |
| 435 | if (!ret) |
| 436 | ret = copy_siginfo_to_user((siginfo_t __user *) data, |
| 437 | &siginfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | case PTRACE_SETSIGINFO: |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 441 | if (copy_from_user(&siginfo, (siginfo_t __user *) data, |
| 442 | sizeof siginfo)) |
| 443 | ret = -EFAULT; |
| 444 | else |
| 445 | ret = ptrace_setsiginfo(child, &siginfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | break; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 447 | |
Alexey Dobriyan | 1bcf548 | 2007-10-16 01:23:45 -0700 | [diff] [blame] | 448 | case PTRACE_DETACH: /* detach a process that was attached. */ |
| 449 | ret = ptrace_detach(child, data); |
| 450 | break; |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 451 | |
| 452 | #ifdef PTRACE_SINGLESTEP |
| 453 | case PTRACE_SINGLESTEP: |
| 454 | #endif |
Roland McGrath | 5b88abb | 2008-01-30 13:30:53 +0100 | [diff] [blame] | 455 | #ifdef PTRACE_SINGLEBLOCK |
| 456 | case PTRACE_SINGLEBLOCK: |
| 457 | #endif |
Roland McGrath | 36df29d | 2008-01-30 13:30:51 +0100 | [diff] [blame] | 458 | #ifdef PTRACE_SYSEMU |
| 459 | case PTRACE_SYSEMU: |
| 460 | case PTRACE_SYSEMU_SINGLESTEP: |
| 461 | #endif |
| 462 | case PTRACE_SYSCALL: |
| 463 | case PTRACE_CONT: |
| 464 | return ptrace_resume(child, request, data); |
| 465 | |
| 466 | case PTRACE_KILL: |
| 467 | if (child->exit_state) /* already dead */ |
| 468 | return 0; |
| 469 | return ptrace_resume(child, request, SIGKILL); |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | default: |
| 472 | break; |
| 473 | } |
| 474 | |
| 475 | return ret; |
| 476 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 477 | |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 478 | /** |
| 479 | * ptrace_traceme -- helper for PTRACE_TRACEME |
| 480 | * |
| 481 | * Performs checks and sets PT_PTRACED. |
| 482 | * Should be used by all ptrace implementations for PTRACE_TRACEME. |
| 483 | */ |
| 484 | int ptrace_traceme(void) |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 485 | { |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 486 | int ret = -EPERM; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 487 | |
| 488 | /* |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 489 | * Are we already being traced? |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 490 | */ |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 491 | repeat: |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 492 | task_lock(current); |
| 493 | if (!(current->ptrace & PT_PTRACED)) { |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 494 | /* |
| 495 | * See ptrace_attach() comments about the locking here. |
| 496 | */ |
| 497 | unsigned long flags; |
| 498 | if (!write_trylock_irqsave(&tasklist_lock, flags)) { |
| 499 | task_unlock(current); |
| 500 | do { |
| 501 | cpu_relax(); |
| 502 | } while (!write_can_lock(&tasklist_lock)); |
| 503 | goto repeat; |
| 504 | } |
| 505 | |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 506 | ret = security_ptrace_traceme(current->parent); |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 507 | |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 508 | /* |
| 509 | * Set the ptrace bit in the process ptrace flags. |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 510 | * Then link us on our parent's ptraced list. |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 511 | */ |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 512 | if (!ret) { |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 513 | current->ptrace |= PT_PTRACED; |
Roland McGrath | f470021 | 2008-03-24 18:36:23 -0700 | [diff] [blame] | 514 | __ptrace_link(current, current->real_parent); |
| 515 | } |
| 516 | |
| 517 | write_unlock_irqrestore(&tasklist_lock, flags); |
Linus Torvalds | f5b40e3 | 2006-05-07 10:49:33 -0700 | [diff] [blame] | 518 | } |
| 519 | task_unlock(current); |
| 520 | return ret; |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 521 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 522 | |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 523 | /** |
| 524 | * ptrace_get_task_struct -- grab a task struct reference for ptrace |
| 525 | * @pid: process id to grab a task_struct reference of |
| 526 | * |
| 527 | * This function is a helper for ptrace implementations. It checks |
| 528 | * permissions and then grabs a task struct for use of the actual |
| 529 | * ptrace implementation. |
| 530 | * |
| 531 | * Returns the task_struct for @pid or an ERR_PTR() on failure. |
| 532 | */ |
| 533 | struct task_struct *ptrace_get_task_struct(pid_t pid) |
| 534 | { |
| 535 | struct task_struct *child; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 536 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 537 | read_lock(&tasklist_lock); |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 538 | child = find_task_by_vpid(pid); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 539 | if (child) |
| 540 | get_task_struct(child); |
Sukadev Bhattiprolu | f400e19 | 2006-09-29 02:00:07 -0700 | [diff] [blame] | 541 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 542 | read_unlock(&tasklist_lock); |
| 543 | if (!child) |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 544 | return ERR_PTR(-ESRCH); |
| 545 | return child; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 546 | } |
| 547 | |
Christoph Hellwig | 0ac1555 | 2007-10-16 01:26:37 -0700 | [diff] [blame] | 548 | #ifndef arch_ptrace_attach |
| 549 | #define arch_ptrace_attach(child) do { } while (0) |
| 550 | #endif |
| 551 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 552 | asmlinkage long sys_ptrace(long request, long pid, long addr, long data) |
| 553 | { |
| 554 | struct task_struct *child; |
| 555 | long ret; |
| 556 | |
| 557 | /* |
| 558 | * This lock_kernel fixes a subtle race with suid exec |
| 559 | */ |
| 560 | lock_kernel(); |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 561 | if (request == PTRACE_TRACEME) { |
| 562 | ret = ptrace_traceme(); |
Haavard Skinnemoen | 6ea6dd9 | 2007-11-27 13:02:40 +0100 | [diff] [blame] | 563 | if (!ret) |
| 564 | arch_ptrace_attach(current); |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 565 | goto out; |
Christoph Hellwig | 6b9c7ed | 2006-01-08 01:02:33 -0800 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | child = ptrace_get_task_struct(pid); |
| 569 | if (IS_ERR(child)) { |
| 570 | ret = PTR_ERR(child); |
| 571 | goto out; |
| 572 | } |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 573 | |
| 574 | if (request == PTRACE_ATTACH) { |
| 575 | ret = ptrace_attach(child); |
Christoph Hellwig | 0ac1555 | 2007-10-16 01:26:37 -0700 | [diff] [blame] | 576 | /* |
| 577 | * Some architectures need to do book-keeping after |
| 578 | * a ptrace attach. |
| 579 | */ |
| 580 | if (!ret) |
| 581 | arch_ptrace_attach(child); |
Christoph Hellwig | 005f18d | 2005-11-13 16:06:33 -0800 | [diff] [blame] | 582 | goto out_put_task_struct; |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | ret = ptrace_check_attach(child, request == PTRACE_KILL); |
| 586 | if (ret < 0) |
| 587 | goto out_put_task_struct; |
| 588 | |
| 589 | ret = arch_ptrace(child, request, addr, data); |
| 590 | if (ret < 0) |
| 591 | goto out_put_task_struct; |
| 592 | |
| 593 | out_put_task_struct: |
| 594 | put_task_struct(child); |
| 595 | out: |
| 596 | unlock_kernel(); |
| 597 | return ret; |
| 598 | } |
Alexey Dobriyan | 7664732 | 2007-07-17 04:03:43 -0700 | [diff] [blame] | 599 | |
| 600 | int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data) |
| 601 | { |
| 602 | unsigned long tmp; |
| 603 | int copied; |
| 604 | |
| 605 | copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0); |
| 606 | if (copied != sizeof(tmp)) |
| 607 | return -EIO; |
| 608 | return put_user(tmp, (unsigned long __user *)data); |
| 609 | } |
Alexey Dobriyan | f284ce7 | 2007-07-17 04:03:44 -0700 | [diff] [blame] | 610 | |
| 611 | int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data) |
| 612 | { |
| 613 | int copied; |
| 614 | |
| 615 | copied = access_process_vm(tsk, addr, &data, sizeof(data), 1); |
| 616 | return (copied == sizeof(data)) ? 0 : -EIO; |
| 617 | } |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 618 | |
Roland McGrath | 9d04d92 | 2008-04-28 13:57:19 -0700 | [diff] [blame] | 619 | #if defined CONFIG_COMPAT && defined __ARCH_WANT_COMPAT_SYS_PTRACE |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 620 | #include <linux/compat.h> |
| 621 | |
| 622 | int compat_ptrace_request(struct task_struct *child, compat_long_t request, |
| 623 | compat_ulong_t addr, compat_ulong_t data) |
| 624 | { |
| 625 | compat_ulong_t __user *datap = compat_ptr(data); |
| 626 | compat_ulong_t word; |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 627 | siginfo_t siginfo; |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 628 | int ret; |
| 629 | |
| 630 | switch (request) { |
| 631 | case PTRACE_PEEKTEXT: |
| 632 | case PTRACE_PEEKDATA: |
| 633 | ret = access_process_vm(child, addr, &word, sizeof(word), 0); |
| 634 | if (ret != sizeof(word)) |
| 635 | ret = -EIO; |
| 636 | else |
| 637 | ret = put_user(word, datap); |
| 638 | break; |
| 639 | |
| 640 | case PTRACE_POKETEXT: |
| 641 | case PTRACE_POKEDATA: |
| 642 | ret = access_process_vm(child, addr, &data, sizeof(data), 1); |
| 643 | ret = (ret != sizeof(data) ? -EIO : 0); |
| 644 | break; |
| 645 | |
| 646 | case PTRACE_GETEVENTMSG: |
| 647 | ret = put_user((compat_ulong_t) child->ptrace_message, datap); |
| 648 | break; |
| 649 | |
Roland McGrath | e16b278 | 2008-04-20 13:10:12 -0700 | [diff] [blame] | 650 | case PTRACE_GETSIGINFO: |
| 651 | ret = ptrace_getsiginfo(child, &siginfo); |
| 652 | if (!ret) |
| 653 | ret = copy_siginfo_to_user32( |
| 654 | (struct compat_siginfo __user *) datap, |
| 655 | &siginfo); |
| 656 | break; |
| 657 | |
| 658 | case PTRACE_SETSIGINFO: |
| 659 | memset(&siginfo, 0, sizeof siginfo); |
| 660 | if (copy_siginfo_from_user32( |
| 661 | &siginfo, (struct compat_siginfo __user *) datap)) |
| 662 | ret = -EFAULT; |
| 663 | else |
| 664 | ret = ptrace_setsiginfo(child, &siginfo); |
| 665 | break; |
| 666 | |
Roland McGrath | 032d82d | 2008-01-30 13:31:47 +0100 | [diff] [blame] | 667 | default: |
| 668 | ret = ptrace_request(child, request, addr, data); |
| 669 | } |
| 670 | |
| 671 | return ret; |
| 672 | } |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 673 | |
Roland McGrath | c269f19 | 2008-01-30 13:31:48 +0100 | [diff] [blame] | 674 | asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid, |
| 675 | compat_long_t addr, compat_long_t data) |
| 676 | { |
| 677 | struct task_struct *child; |
| 678 | long ret; |
| 679 | |
| 680 | /* |
| 681 | * This lock_kernel fixes a subtle race with suid exec |
| 682 | */ |
| 683 | lock_kernel(); |
| 684 | if (request == PTRACE_TRACEME) { |
| 685 | ret = ptrace_traceme(); |
| 686 | goto out; |
| 687 | } |
| 688 | |
| 689 | child = ptrace_get_task_struct(pid); |
| 690 | if (IS_ERR(child)) { |
| 691 | ret = PTR_ERR(child); |
| 692 | goto out; |
| 693 | } |
| 694 | |
| 695 | if (request == PTRACE_ATTACH) { |
| 696 | ret = ptrace_attach(child); |
| 697 | /* |
| 698 | * Some architectures need to do book-keeping after |
| 699 | * a ptrace attach. |
| 700 | */ |
| 701 | if (!ret) |
| 702 | arch_ptrace_attach(child); |
| 703 | goto out_put_task_struct; |
| 704 | } |
| 705 | |
| 706 | ret = ptrace_check_attach(child, request == PTRACE_KILL); |
| 707 | if (!ret) |
| 708 | ret = compat_arch_ptrace(child, request, addr, data); |
| 709 | |
| 710 | out_put_task_struct: |
| 711 | put_task_struct(child); |
| 712 | out: |
| 713 | unlock_kernel(); |
| 714 | return ret; |
| 715 | } |
Roland McGrath | 9d04d92 | 2008-04-28 13:57:19 -0700 | [diff] [blame] | 716 | #endif /* CONFIG_COMPAT && __ARCH_WANT_COMPAT_SYS_PTRACE */ |