Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* ptrace.c */ |
| 2 | /* By Ross Biro 1/23/92 */ |
| 3 | /* |
| 4 | * Pentium III FXSR, SSE support |
| 5 | * Gareth Hughes <gareth@valinux.com>, May 2000 |
| 6 | * |
| 7 | * x86-64 port 2000-2002 Andi Kleen |
| 8 | */ |
| 9 | |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/sched.h> |
| 12 | #include <linux/mm.h> |
| 13 | #include <linux/smp.h> |
| 14 | #include <linux/smp_lock.h> |
| 15 | #include <linux/errno.h> |
| 16 | #include <linux/ptrace.h> |
| 17 | #include <linux/user.h> |
| 18 | #include <linux/security.h> |
| 19 | #include <linux/audit.h> |
| 20 | #include <linux/seccomp.h> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 21 | #include <linux/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #include <asm/uaccess.h> |
| 24 | #include <asm/pgtable.h> |
| 25 | #include <asm/system.h> |
| 26 | #include <asm/processor.h> |
| 27 | #include <asm/i387.h> |
| 28 | #include <asm/debugreg.h> |
| 29 | #include <asm/ldt.h> |
| 30 | #include <asm/desc.h> |
| 31 | #include <asm/proto.h> |
| 32 | #include <asm/ia32.h> |
| 33 | |
| 34 | /* |
| 35 | * does not yet catch signals sent when the child dies. |
| 36 | * in exit.c or in signal.c. |
| 37 | */ |
| 38 | |
Chuck Ebbert | 60923df | 2006-01-11 22:46:03 +0100 | [diff] [blame] | 39 | /* |
| 40 | * Determines which flags the user has access to [1 = access, 0 = no access]. |
| 41 | * Prohibits changing ID(21), VIP(20), VIF(19), VM(17), IOPL(12-13), IF(9). |
| 42 | * Also masks reserved bits (63-22, 15, 5, 3, 1). |
| 43 | */ |
| 44 | #define FLAG_MASK 0x54dd5UL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | /* set's the trap flag. */ |
| 47 | #define TRAP_FLAG 0x100UL |
| 48 | |
| 49 | /* |
| 50 | * eflags and offset of eflags on child stack.. |
| 51 | */ |
| 52 | #define EFLAGS offsetof(struct pt_regs, eflags) |
| 53 | #define EFL_OFFSET ((int)(EFLAGS-sizeof(struct pt_regs))) |
| 54 | |
| 55 | /* |
| 56 | * this routine will get a word off of the processes privileged stack. |
| 57 | * the offset is how far from the base addr as stored in the TSS. |
| 58 | * this routine assumes that all the privileged stacks are in our |
| 59 | * data space. |
| 60 | */ |
| 61 | static inline unsigned long get_stack_long(struct task_struct *task, int offset) |
| 62 | { |
| 63 | unsigned char *stack; |
| 64 | |
| 65 | stack = (unsigned char *)task->thread.rsp0; |
| 66 | stack += offset; |
| 67 | return (*((unsigned long *)stack)); |
| 68 | } |
| 69 | |
| 70 | /* |
| 71 | * this routine will put a word on the processes privileged stack. |
| 72 | * the offset is how far from the base addr as stored in the TSS. |
| 73 | * this routine assumes that all the privileged stacks are in our |
| 74 | * data space. |
| 75 | */ |
| 76 | static inline long put_stack_long(struct task_struct *task, int offset, |
| 77 | unsigned long data) |
| 78 | { |
| 79 | unsigned char * stack; |
| 80 | |
| 81 | stack = (unsigned char *) task->thread.rsp0; |
| 82 | stack += offset; |
| 83 | *(unsigned long *) stack = data; |
| 84 | return 0; |
| 85 | } |
| 86 | |
Andi Kleen | e502cdd | 2005-04-16 15:24:58 -0700 | [diff] [blame] | 87 | #define LDT_SEGMENT 4 |
| 88 | |
| 89 | unsigned long convert_rip_to_linear(struct task_struct *child, struct pt_regs *regs) |
| 90 | { |
| 91 | unsigned long addr, seg; |
| 92 | |
| 93 | addr = regs->rip; |
| 94 | seg = regs->cs & 0xffff; |
| 95 | |
| 96 | /* |
| 97 | * We'll assume that the code segments in the GDT |
| 98 | * are all zero-based. That is largely true: the |
| 99 | * TLS segments are used for data, and the PNPBIOS |
| 100 | * and APM bios ones we just ignore here. |
| 101 | */ |
| 102 | if (seg & LDT_SEGMENT) { |
| 103 | u32 *desc; |
| 104 | unsigned long base; |
| 105 | |
| 106 | down(&child->mm->context.sem); |
| 107 | desc = child->mm->context.ldt + (seg & ~7); |
| 108 | base = (desc[0] >> 16) | ((desc[1] & 0xff) << 16) | (desc[1] & 0xff000000); |
| 109 | |
| 110 | /* 16-bit code segment? */ |
| 111 | if (!((desc[1] >> 22) & 1)) |
| 112 | addr &= 0xffff; |
| 113 | addr += base; |
| 114 | up(&child->mm->context.sem); |
| 115 | } |
| 116 | return addr; |
| 117 | } |
| 118 | |
| 119 | static int is_at_popf(struct task_struct *child, struct pt_regs *regs) |
| 120 | { |
| 121 | int i, copied; |
| 122 | unsigned char opcode[16]; |
| 123 | unsigned long addr = convert_rip_to_linear(child, regs); |
| 124 | |
| 125 | copied = access_process_vm(child, addr, opcode, sizeof(opcode), 0); |
| 126 | for (i = 0; i < copied; i++) { |
| 127 | switch (opcode[i]) { |
| 128 | /* popf */ |
| 129 | case 0x9d: |
| 130 | return 1; |
| 131 | |
| 132 | /* CHECKME: 64 65 */ |
| 133 | |
| 134 | /* opcode and address size prefixes */ |
| 135 | case 0x66: case 0x67: |
| 136 | continue; |
| 137 | /* irrelevant prefixes (segment overrides and repeats) */ |
| 138 | case 0x26: case 0x2e: |
| 139 | case 0x36: case 0x3e: |
| 140 | case 0x64: case 0x65: |
| 141 | case 0xf0: case 0xf2: case 0xf3: |
| 142 | continue; |
| 143 | |
| 144 | /* REX prefixes */ |
| 145 | case 0x40 ... 0x4f: |
| 146 | continue; |
| 147 | |
| 148 | /* CHECKME: f0, f2, f3 */ |
| 149 | |
| 150 | /* |
| 151 | * pushf: NOTE! We should probably not let |
| 152 | * the user see the TF bit being set. But |
| 153 | * it's more pain than it's worth to avoid |
| 154 | * it, and a debugger could emulate this |
| 155 | * all in user space if it _really_ cares. |
| 156 | */ |
| 157 | case 0x9c: |
| 158 | default: |
| 159 | return 0; |
| 160 | } |
| 161 | } |
| 162 | return 0; |
| 163 | } |
| 164 | |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 165 | static void set_singlestep(struct task_struct *child) |
| 166 | { |
Al Viro | bb04923 | 2006-01-12 01:05:38 -0800 | [diff] [blame] | 167 | struct pt_regs *regs = task_pt_regs(child); |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * Always set TIF_SINGLESTEP - this guarantees that |
| 171 | * we single-step system calls etc.. This will also |
| 172 | * cause us to set TF when returning to user mode. |
| 173 | */ |
| 174 | set_tsk_thread_flag(child, TIF_SINGLESTEP); |
| 175 | |
| 176 | /* |
| 177 | * If TF was already set, don't do anything else |
| 178 | */ |
| 179 | if (regs->eflags & TRAP_FLAG) |
| 180 | return; |
| 181 | |
| 182 | /* Set TF on the kernel stack.. */ |
| 183 | regs->eflags |= TRAP_FLAG; |
| 184 | |
Andi Kleen | e502cdd | 2005-04-16 15:24:58 -0700 | [diff] [blame] | 185 | /* |
| 186 | * ..but if TF is changed by the instruction we will trace, |
| 187 | * don't mark it as being "us" that set it, so that we |
| 188 | * won't clear it by hand later. |
| 189 | * |
| 190 | * AK: this is not enough, LAHF and IRET can change TF in user space too. |
| 191 | */ |
| 192 | if (is_at_popf(child, regs)) |
| 193 | return; |
| 194 | |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 195 | child->ptrace |= PT_DTRACE; |
| 196 | } |
| 197 | |
| 198 | static void clear_singlestep(struct task_struct *child) |
| 199 | { |
| 200 | /* Always clear TIF_SINGLESTEP... */ |
| 201 | clear_tsk_thread_flag(child, TIF_SINGLESTEP); |
| 202 | |
| 203 | /* But touch TF only if it was set by us.. */ |
| 204 | if (child->ptrace & PT_DTRACE) { |
Al Viro | bb04923 | 2006-01-12 01:05:38 -0800 | [diff] [blame] | 205 | struct pt_regs *regs = task_pt_regs(child); |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 206 | regs->eflags &= ~TRAP_FLAG; |
| 207 | child->ptrace &= ~PT_DTRACE; |
| 208 | } |
| 209 | } |
| 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | /* |
| 212 | * Called by kernel/ptrace.c when detaching.. |
| 213 | * |
| 214 | * Make sure the single step bit is not set. |
| 215 | */ |
| 216 | void ptrace_disable(struct task_struct *child) |
| 217 | { |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 218 | clear_singlestep(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | static int putreg(struct task_struct *child, |
| 222 | unsigned long regno, unsigned long value) |
| 223 | { |
| 224 | unsigned long tmp; |
| 225 | |
| 226 | /* Some code in the 64bit emulation may not be 64bit clean. |
| 227 | Don't take any chances. */ |
| 228 | if (test_tsk_thread_flag(child, TIF_IA32)) |
| 229 | value &= 0xffffffff; |
| 230 | switch (regno) { |
| 231 | case offsetof(struct user_regs_struct,fs): |
| 232 | if (value && (value & 3) != 3) |
| 233 | return -EIO; |
| 234 | child->thread.fsindex = value & 0xffff; |
| 235 | return 0; |
| 236 | case offsetof(struct user_regs_struct,gs): |
| 237 | if (value && (value & 3) != 3) |
| 238 | return -EIO; |
| 239 | child->thread.gsindex = value & 0xffff; |
| 240 | return 0; |
| 241 | case offsetof(struct user_regs_struct,ds): |
| 242 | if (value && (value & 3) != 3) |
| 243 | return -EIO; |
| 244 | child->thread.ds = value & 0xffff; |
| 245 | return 0; |
| 246 | case offsetof(struct user_regs_struct,es): |
| 247 | if (value && (value & 3) != 3) |
| 248 | return -EIO; |
| 249 | child->thread.es = value & 0xffff; |
| 250 | return 0; |
| 251 | case offsetof(struct user_regs_struct,ss): |
| 252 | if ((value & 3) != 3) |
| 253 | return -EIO; |
| 254 | value &= 0xffff; |
| 255 | return 0; |
| 256 | case offsetof(struct user_regs_struct,fs_base): |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 257 | if (value >= TASK_SIZE_OF(child)) |
Andi Kleen | f6b8d47 | 2005-05-16 21:53:30 -0700 | [diff] [blame] | 258 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | child->thread.fs = value; |
| 260 | return 0; |
| 261 | case offsetof(struct user_regs_struct,gs_base): |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 262 | if (value >= TASK_SIZE_OF(child)) |
Andi Kleen | f6b8d47 | 2005-05-16 21:53:30 -0700 | [diff] [blame] | 263 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | child->thread.gs = value; |
| 265 | return 0; |
| 266 | case offsetof(struct user_regs_struct, eflags): |
| 267 | value &= FLAG_MASK; |
| 268 | tmp = get_stack_long(child, EFL_OFFSET); |
| 269 | tmp &= ~FLAG_MASK; |
| 270 | value |= tmp; |
| 271 | break; |
| 272 | case offsetof(struct user_regs_struct,cs): |
| 273 | if ((value & 3) != 3) |
| 274 | return -EIO; |
| 275 | value &= 0xffff; |
| 276 | break; |
Andi Kleen | d1099e8 | 2005-05-16 21:53:29 -0700 | [diff] [blame] | 277 | case offsetof(struct user_regs_struct, rip): |
| 278 | /* Check if the new RIP address is canonical */ |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 279 | if (value >= TASK_SIZE_OF(child)) |
Andi Kleen | d1099e8 | 2005-05-16 21:53:29 -0700 | [diff] [blame] | 280 | return -EIO; |
| 281 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } |
| 283 | put_stack_long(child, regno - sizeof(struct pt_regs), value); |
| 284 | return 0; |
| 285 | } |
| 286 | |
| 287 | static unsigned long getreg(struct task_struct *child, unsigned long regno) |
| 288 | { |
| 289 | unsigned long val; |
| 290 | switch (regno) { |
| 291 | case offsetof(struct user_regs_struct, fs): |
| 292 | return child->thread.fsindex; |
| 293 | case offsetof(struct user_regs_struct, gs): |
| 294 | return child->thread.gsindex; |
| 295 | case offsetof(struct user_regs_struct, ds): |
| 296 | return child->thread.ds; |
| 297 | case offsetof(struct user_regs_struct, es): |
| 298 | return child->thread.es; |
| 299 | case offsetof(struct user_regs_struct, fs_base): |
| 300 | return child->thread.fs; |
| 301 | case offsetof(struct user_regs_struct, gs_base): |
| 302 | return child->thread.gs; |
| 303 | default: |
| 304 | regno = regno - sizeof(struct pt_regs); |
| 305 | val = get_stack_long(child, regno); |
| 306 | if (test_tsk_thread_flag(child, TIF_IA32)) |
| 307 | val &= 0xffffffff; |
| 308 | return val; |
| 309 | } |
| 310 | |
| 311 | } |
| 312 | |
Christoph Hellwig | 481bed4 | 2005-11-07 00:59:47 -0800 | [diff] [blame] | 313 | long arch_ptrace(struct task_struct *child, long request, long addr, long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | long i, ret; |
| 316 | unsigned ui; |
| 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | switch (request) { |
| 319 | /* when I and D space are separate, these will need to be fixed. */ |
| 320 | case PTRACE_PEEKTEXT: /* read word at location addr. */ |
| 321 | case PTRACE_PEEKDATA: { |
| 322 | unsigned long tmp; |
| 323 | int copied; |
| 324 | |
| 325 | copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0); |
| 326 | ret = -EIO; |
| 327 | if (copied != sizeof(tmp)) |
| 328 | break; |
| 329 | ret = put_user(tmp,(unsigned long __user *) data); |
| 330 | break; |
| 331 | } |
| 332 | |
| 333 | /* read the word at location addr in the USER area. */ |
| 334 | case PTRACE_PEEKUSR: { |
| 335 | unsigned long tmp; |
| 336 | |
| 337 | ret = -EIO; |
| 338 | if ((addr & 7) || |
| 339 | addr > sizeof(struct user) - 7) |
| 340 | break; |
| 341 | |
| 342 | switch (addr) { |
Andi Kleen | c4d1fcf | 2005-05-20 14:27:56 -0700 | [diff] [blame] | 343 | case 0 ... sizeof(struct user_regs_struct) - sizeof(long): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | tmp = getreg(child, addr); |
| 345 | break; |
| 346 | case offsetof(struct user, u_debugreg[0]): |
| 347 | tmp = child->thread.debugreg0; |
| 348 | break; |
| 349 | case offsetof(struct user, u_debugreg[1]): |
| 350 | tmp = child->thread.debugreg1; |
| 351 | break; |
| 352 | case offsetof(struct user, u_debugreg[2]): |
| 353 | tmp = child->thread.debugreg2; |
| 354 | break; |
| 355 | case offsetof(struct user, u_debugreg[3]): |
| 356 | tmp = child->thread.debugreg3; |
| 357 | break; |
| 358 | case offsetof(struct user, u_debugreg[6]): |
| 359 | tmp = child->thread.debugreg6; |
| 360 | break; |
| 361 | case offsetof(struct user, u_debugreg[7]): |
| 362 | tmp = child->thread.debugreg7; |
| 363 | break; |
| 364 | default: |
| 365 | tmp = 0; |
| 366 | break; |
| 367 | } |
| 368 | ret = put_user(tmp,(unsigned long __user *) data); |
| 369 | break; |
| 370 | } |
| 371 | |
| 372 | /* when I and D space are separate, this will have to be fixed. */ |
| 373 | case PTRACE_POKETEXT: /* write the word at location addr. */ |
| 374 | case PTRACE_POKEDATA: |
| 375 | ret = 0; |
| 376 | if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data)) |
| 377 | break; |
| 378 | ret = -EIO; |
| 379 | break; |
| 380 | |
| 381 | case PTRACE_POKEUSR: /* write the word at location addr in the USER area */ |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 382 | { |
| 383 | int dsize = test_tsk_thread_flag(child, TIF_IA32) ? 3 : 7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | ret = -EIO; |
| 385 | if ((addr & 7) || |
| 386 | addr > sizeof(struct user) - 7) |
| 387 | break; |
| 388 | |
| 389 | switch (addr) { |
Andi Kleen | c4d1fcf | 2005-05-20 14:27:56 -0700 | [diff] [blame] | 390 | case 0 ... sizeof(struct user_regs_struct) - sizeof(long): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | ret = putreg(child, addr, data); |
| 392 | break; |
| 393 | /* Disallows to set a breakpoint into the vsyscall */ |
| 394 | case offsetof(struct user, u_debugreg[0]): |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 395 | if (data >= TASK_SIZE_OF(child) - dsize) break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | child->thread.debugreg0 = data; |
| 397 | ret = 0; |
| 398 | break; |
| 399 | case offsetof(struct user, u_debugreg[1]): |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 400 | if (data >= TASK_SIZE_OF(child) - dsize) break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | child->thread.debugreg1 = data; |
| 402 | ret = 0; |
| 403 | break; |
| 404 | case offsetof(struct user, u_debugreg[2]): |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 405 | if (data >= TASK_SIZE_OF(child) - dsize) break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | child->thread.debugreg2 = data; |
| 407 | ret = 0; |
| 408 | break; |
| 409 | case offsetof(struct user, u_debugreg[3]): |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 410 | if (data >= TASK_SIZE_OF(child) - dsize) break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | child->thread.debugreg3 = data; |
| 412 | ret = 0; |
| 413 | break; |
| 414 | case offsetof(struct user, u_debugreg[6]): |
| 415 | if (data >> 32) |
| 416 | break; |
| 417 | child->thread.debugreg6 = data; |
| 418 | ret = 0; |
| 419 | break; |
| 420 | case offsetof(struct user, u_debugreg[7]): |
| 421 | /* See arch/i386/kernel/ptrace.c for an explanation of |
| 422 | * this awkward check.*/ |
Jan Beulich | 893efca | 2006-03-25 16:29:19 +0100 | [diff] [blame^] | 423 | data &= ~DR_CONTROL_RESERVED; |
| 424 | for(i=0; i<4; i++) |
| 425 | if ((0x5554 >> ((data >> (16 + 4*i)) & 0xf)) & 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | break; |
| 427 | if (i == 4) { |
| 428 | child->thread.debugreg7 = data; |
| 429 | ret = 0; |
| 430 | } |
| 431 | break; |
| 432 | } |
| 433 | break; |
Suresh Siddha | 8492980 | 2005-06-21 17:14:32 -0700 | [diff] [blame] | 434 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */ |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 436 | case PTRACE_CONT: /* restart after signal. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | ret = -EIO; |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 439 | if (!valid_signal(data)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | break; |
| 441 | if (request == PTRACE_SYSCALL) |
| 442 | set_tsk_thread_flag(child,TIF_SYSCALL_TRACE); |
| 443 | else |
| 444 | clear_tsk_thread_flag(child,TIF_SYSCALL_TRACE); |
| 445 | clear_tsk_thread_flag(child, TIF_SINGLESTEP); |
| 446 | child->exit_code = data; |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 447 | /* make sure the single step bit is not set. */ |
| 448 | clear_singlestep(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | wake_up_process(child); |
| 450 | ret = 0; |
| 451 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | #ifdef CONFIG_IA32_EMULATION |
| 454 | /* This makes only sense with 32bit programs. Allow a |
| 455 | 64bit debugger to fully examine them too. Better |
| 456 | don't use it against 64bit processes, use |
| 457 | PTRACE_ARCH_PRCTL instead. */ |
| 458 | case PTRACE_SET_THREAD_AREA: { |
| 459 | struct user_desc __user *p; |
| 460 | int old; |
| 461 | p = (struct user_desc __user *)data; |
| 462 | get_user(old, &p->entry_number); |
| 463 | put_user(addr, &p->entry_number); |
| 464 | ret = do_set_thread_area(&child->thread, p); |
| 465 | put_user(old, &p->entry_number); |
| 466 | break; |
| 467 | case PTRACE_GET_THREAD_AREA: |
| 468 | p = (struct user_desc __user *)data; |
| 469 | get_user(old, &p->entry_number); |
| 470 | put_user(addr, &p->entry_number); |
| 471 | ret = do_get_thread_area(&child->thread, p); |
| 472 | put_user(old, &p->entry_number); |
| 473 | break; |
| 474 | } |
| 475 | #endif |
| 476 | /* normal 64bit interface to access TLS data. |
| 477 | Works just like arch_prctl, except that the arguments |
| 478 | are reversed. */ |
| 479 | case PTRACE_ARCH_PRCTL: |
| 480 | ret = do_arch_prctl(child, data, addr); |
| 481 | break; |
| 482 | |
| 483 | /* |
| 484 | * make the child exit. Best I can do is send it a sigkill. |
| 485 | * perhaps it should be put in the status that it wants to |
| 486 | * exit. |
| 487 | */ |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 488 | case PTRACE_KILL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | ret = 0; |
| 490 | if (child->exit_state == EXIT_ZOMBIE) /* already dead */ |
| 491 | break; |
| 492 | clear_tsk_thread_flag(child, TIF_SINGLESTEP); |
| 493 | child->exit_code = SIGKILL; |
| 494 | /* make sure the single step bit is not set. */ |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 495 | clear_singlestep(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | wake_up_process(child); |
| 497 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 499 | case PTRACE_SINGLESTEP: /* set the trap flag. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | ret = -EIO; |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 501 | if (!valid_signal(data)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | break; |
| 503 | clear_tsk_thread_flag(child,TIF_SYSCALL_TRACE); |
Andi Kleen | aa85b9a | 2005-04-16 15:24:56 -0700 | [diff] [blame] | 504 | set_singlestep(child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | child->exit_code = data; |
| 506 | /* give it a chance to run. */ |
| 507 | wake_up_process(child); |
| 508 | ret = 0; |
| 509 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | case PTRACE_DETACH: |
| 512 | /* detach a process that was attached. */ |
| 513 | ret = ptrace_detach(child, data); |
| 514 | break; |
| 515 | |
| 516 | case PTRACE_GETREGS: { /* Get all gp regs from the child. */ |
| 517 | if (!access_ok(VERIFY_WRITE, (unsigned __user *)data, |
| 518 | sizeof(struct user_regs_struct))) { |
| 519 | ret = -EIO; |
| 520 | break; |
| 521 | } |
| 522 | ret = 0; |
| 523 | for (ui = 0; ui < sizeof(struct user_regs_struct); ui += sizeof(long)) { |
| 524 | ret |= __put_user(getreg(child, ui),(unsigned long __user *) data); |
| 525 | data += sizeof(long); |
| 526 | } |
| 527 | break; |
| 528 | } |
| 529 | |
| 530 | case PTRACE_SETREGS: { /* Set all gp regs in the child. */ |
| 531 | unsigned long tmp; |
| 532 | if (!access_ok(VERIFY_READ, (unsigned __user *)data, |
| 533 | sizeof(struct user_regs_struct))) { |
| 534 | ret = -EIO; |
| 535 | break; |
| 536 | } |
| 537 | ret = 0; |
| 538 | for (ui = 0; ui < sizeof(struct user_regs_struct); ui += sizeof(long)) { |
| 539 | ret |= __get_user(tmp, (unsigned long __user *) data); |
| 540 | putreg(child, ui, tmp); |
| 541 | data += sizeof(long); |
| 542 | } |
| 543 | break; |
| 544 | } |
| 545 | |
| 546 | case PTRACE_GETFPREGS: { /* Get the child extended FPU state. */ |
| 547 | if (!access_ok(VERIFY_WRITE, (unsigned __user *)data, |
| 548 | sizeof(struct user_i387_struct))) { |
| 549 | ret = -EIO; |
| 550 | break; |
| 551 | } |
| 552 | ret = get_fpregs((struct user_i387_struct __user *)data, child); |
| 553 | break; |
| 554 | } |
| 555 | |
| 556 | case PTRACE_SETFPREGS: { /* Set the child extended FPU state. */ |
| 557 | if (!access_ok(VERIFY_READ, (unsigned __user *)data, |
| 558 | sizeof(struct user_i387_struct))) { |
| 559 | ret = -EIO; |
| 560 | break; |
| 561 | } |
| 562 | set_stopped_child_used_math(child); |
| 563 | ret = set_fpregs(child, (struct user_i387_struct __user *)data); |
| 564 | break; |
| 565 | } |
| 566 | |
| 567 | default: |
| 568 | ret = ptrace_request(child, request, addr, data); |
| 569 | break; |
| 570 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | return ret; |
| 572 | } |
| 573 | |
| 574 | static void syscall_trace(struct pt_regs *regs) |
| 575 | { |
| 576 | |
| 577 | #if 0 |
| 578 | printk("trace %s rip %lx rsp %lx rax %d origrax %d caller %lx tiflags %x ptrace %x\n", |
| 579 | current->comm, |
| 580 | regs->rip, regs->rsp, regs->rax, regs->orig_rax, __builtin_return_address(0), |
| 581 | current_thread_info()->flags, current->ptrace); |
| 582 | #endif |
| 583 | |
| 584 | ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) |
| 585 | ? 0x80 : 0)); |
| 586 | /* |
| 587 | * this isn't the same as continuing with a signal, but it will do |
| 588 | * for normal use. strace only continues with a signal if the |
| 589 | * stopping signal is not SIGTRAP. -brl |
| 590 | */ |
| 591 | if (current->exit_code) { |
| 592 | send_sig(current->exit_code, current, 1); |
| 593 | current->exit_code = 0; |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | asmlinkage void syscall_trace_enter(struct pt_regs *regs) |
| 598 | { |
| 599 | /* do the secure computing check first */ |
| 600 | secure_computing(regs->orig_rax); |
| 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | if (test_thread_flag(TIF_SYSCALL_TRACE) |
| 603 | && (current->ptrace & PT_PTRACED)) |
| 604 | syscall_trace(regs); |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 605 | |
David Woodhouse | 488f2ea | 2005-05-03 14:11:02 +0100 | [diff] [blame] | 606 | if (unlikely(current->audit_context)) { |
| 607 | if (test_thread_flag(TIF_IA32)) { |
| 608 | audit_syscall_entry(current, AUDIT_ARCH_I386, |
| 609 | regs->orig_rax, |
| 610 | regs->rbx, regs->rcx, |
| 611 | regs->rdx, regs->rsi); |
| 612 | } else { |
| 613 | audit_syscall_entry(current, AUDIT_ARCH_X86_64, |
| 614 | regs->orig_rax, |
| 615 | regs->rdi, regs->rsi, |
| 616 | regs->rdx, regs->r10); |
| 617 | } |
| 618 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | asmlinkage void syscall_trace_leave(struct pt_regs *regs) |
| 622 | { |
| 623 | if (unlikely(current->audit_context)) |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 624 | audit_syscall_exit(current, AUDITSC_RESULT(regs->rax), regs->rax); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
| 626 | if ((test_thread_flag(TIF_SYSCALL_TRACE) |
| 627 | || test_thread_flag(TIF_SINGLESTEP)) |
| 628 | && (current->ptrace & PT_PTRACED)) |
| 629 | syscall_trace(regs); |
| 630 | } |