2 /* By Ross Biro 1/23/92 */
4 * Pentium III FXSR, SSE support
5 * Gareth Hughes <gareth@valinux.com>, May 2000
7 * x86-64 port 2000-2002 Andi Kleen
10 #include <linux/kernel.h>
11 #include <linux/sched.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>
21 #include <linux/signal.h>
23 #include <asm/uaccess.h>
24 #include <asm/pgtable.h>
25 #include <asm/system.h>
26 #include <asm/processor.h>
28 #include <asm/debugreg.h>
31 #include <asm/proto.h>
35 * does not yet catch signals sent when the child dies.
36 * in exit.c or in signal.c.
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).
44 #define FLAG_MASK 0x54dd5UL
46 /* set's the trap flag. */
47 #define TRAP_FLAG 0x100UL
50 * eflags and offset of eflags on child stack..
52 #define EFLAGS offsetof(struct pt_regs, eflags)
53 #define EFL_OFFSET ((int)(EFLAGS-sizeof(struct pt_regs)))
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
61 static inline unsigned long get_stack_long(struct task_struct *task, int offset)
65 stack = (unsigned char *)task->thread.rsp0;
67 return (*((unsigned long *)stack));
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
76 static inline long put_stack_long(struct task_struct *task, int offset,
79 unsigned char * stack;
81 stack = (unsigned char *) task->thread.rsp0;
83 *(unsigned long *) stack = data;
89 unsigned long convert_rip_to_linear(struct task_struct *child, struct pt_regs *regs)
91 unsigned long addr, seg;
94 seg = regs->cs & 0xffff;
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.
102 if (seg & LDT_SEGMENT) {
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);
110 /* 16-bit code segment? */
111 if (!((desc[1] >> 22) & 1))
114 up(&child->mm->context.sem);
119 static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs)
122 unsigned char opcode[15];
123 unsigned long addr = convert_rip_to_linear(child, regs);
125 copied = access_process_vm(child, addr, opcode, sizeof(opcode), 0);
126 for (i = 0; i < copied; i++) {
129 case 0x9d: case 0xcf:
134 /* opcode and address size prefixes */
135 case 0x66: case 0x67:
137 /* irrelevant prefixes (segment overrides and repeats) */
138 case 0x26: case 0x2e:
139 case 0x36: case 0x3e:
140 case 0x64: case 0x65:
141 case 0xf2: case 0xf3:
145 if (regs->cs != __USER_CS)
146 /* 32-bit mode: register increment */
148 /* 64-bit mode: REX prefix */
151 /* CHECKME: f2, f3 */
154 * pushf: NOTE! We should probably not let
155 * the user see the TF bit being set. But
156 * it's more pain than it's worth to avoid
157 * it, and a debugger could emulate this
158 * all in user space if it _really_ cares.
168 static void set_singlestep(struct task_struct *child)
170 struct pt_regs *regs = task_pt_regs(child);
173 * Always set TIF_SINGLESTEP - this guarantees that
174 * we single-step system calls etc.. This will also
175 * cause us to set TF when returning to user mode.
177 set_tsk_thread_flag(child, TIF_SINGLESTEP);
180 * If TF was already set, don't do anything else
182 if (regs->eflags & TRAP_FLAG)
185 /* Set TF on the kernel stack.. */
186 regs->eflags |= TRAP_FLAG;
189 * ..but if TF is changed by the instruction we will trace,
190 * don't mark it as being "us" that set it, so that we
191 * won't clear it by hand later.
193 if (is_setting_trap_flag(child, regs))
196 child->ptrace |= PT_DTRACE;
199 static void clear_singlestep(struct task_struct *child)
201 /* Always clear TIF_SINGLESTEP... */
202 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
204 /* But touch TF only if it was set by us.. */
205 if (child->ptrace & PT_DTRACE) {
206 struct pt_regs *regs = task_pt_regs(child);
207 regs->eflags &= ~TRAP_FLAG;
208 child->ptrace &= ~PT_DTRACE;
213 * Called by kernel/ptrace.c when detaching..
215 * Make sure the single step bit is not set.
217 void ptrace_disable(struct task_struct *child)
219 clear_singlestep(child);
222 static int putreg(struct task_struct *child,
223 unsigned long regno, unsigned long value)
227 /* Some code in the 64bit emulation may not be 64bit clean.
228 Don't take any chances. */
229 if (test_tsk_thread_flag(child, TIF_IA32))
232 case offsetof(struct user_regs_struct,fs):
233 if (value && (value & 3) != 3)
235 child->thread.fsindex = value & 0xffff;
237 case offsetof(struct user_regs_struct,gs):
238 if (value && (value & 3) != 3)
240 child->thread.gsindex = value & 0xffff;
242 case offsetof(struct user_regs_struct,ds):
243 if (value && (value & 3) != 3)
245 child->thread.ds = value & 0xffff;
247 case offsetof(struct user_regs_struct,es):
248 if (value && (value & 3) != 3)
250 child->thread.es = value & 0xffff;
252 case offsetof(struct user_regs_struct,ss):
253 if ((value & 3) != 3)
257 case offsetof(struct user_regs_struct,fs_base):
258 if (value >= TASK_SIZE_OF(child))
260 child->thread.fs = value;
262 case offsetof(struct user_regs_struct,gs_base):
263 if (value >= TASK_SIZE_OF(child))
265 child->thread.gs = value;
267 case offsetof(struct user_regs_struct, eflags):
269 tmp = get_stack_long(child, EFL_OFFSET);
273 case offsetof(struct user_regs_struct,cs):
274 if ((value & 3) != 3)
279 put_stack_long(child, regno - sizeof(struct pt_regs), value);
283 static unsigned long getreg(struct task_struct *child, unsigned long regno)
287 case offsetof(struct user_regs_struct, fs):
288 return child->thread.fsindex;
289 case offsetof(struct user_regs_struct, gs):
290 return child->thread.gsindex;
291 case offsetof(struct user_regs_struct, ds):
292 return child->thread.ds;
293 case offsetof(struct user_regs_struct, es):
294 return child->thread.es;
295 case offsetof(struct user_regs_struct, fs_base):
296 return child->thread.fs;
297 case offsetof(struct user_regs_struct, gs_base):
298 return child->thread.gs;
300 regno = regno - sizeof(struct pt_regs);
301 val = get_stack_long(child, regno);
302 if (test_tsk_thread_flag(child, TIF_IA32))
309 long arch_ptrace(struct task_struct *child, long request, long addr, long data)
315 /* when I and D space are separate, these will need to be fixed. */
316 case PTRACE_PEEKTEXT: /* read word at location addr. */
317 case PTRACE_PEEKDATA: {
321 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
323 if (copied != sizeof(tmp))
325 ret = put_user(tmp,(unsigned long __user *) data);
329 /* read the word at location addr in the USER area. */
330 case PTRACE_PEEKUSR: {
335 addr > sizeof(struct user) - 7)
339 case 0 ... sizeof(struct user_regs_struct) - sizeof(long):
340 tmp = getreg(child, addr);
342 case offsetof(struct user, u_debugreg[0]):
343 tmp = child->thread.debugreg0;
345 case offsetof(struct user, u_debugreg[1]):
346 tmp = child->thread.debugreg1;
348 case offsetof(struct user, u_debugreg[2]):
349 tmp = child->thread.debugreg2;
351 case offsetof(struct user, u_debugreg[3]):
352 tmp = child->thread.debugreg3;
354 case offsetof(struct user, u_debugreg[6]):
355 tmp = child->thread.debugreg6;
357 case offsetof(struct user, u_debugreg[7]):
358 tmp = child->thread.debugreg7;
364 ret = put_user(tmp,(unsigned long __user *) data);
368 /* when I and D space are separate, this will have to be fixed. */
369 case PTRACE_POKETEXT: /* write the word at location addr. */
370 case PTRACE_POKEDATA:
372 if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
377 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
379 int dsize = test_tsk_thread_flag(child, TIF_IA32) ? 3 : 7;
382 addr > sizeof(struct user) - 7)
386 case 0 ... sizeof(struct user_regs_struct) - sizeof(long):
387 ret = putreg(child, addr, data);
389 /* Disallows to set a breakpoint into the vsyscall */
390 case offsetof(struct user, u_debugreg[0]):
391 if (data >= TASK_SIZE_OF(child) - dsize) break;
392 child->thread.debugreg0 = data;
395 case offsetof(struct user, u_debugreg[1]):
396 if (data >= TASK_SIZE_OF(child) - dsize) break;
397 child->thread.debugreg1 = data;
400 case offsetof(struct user, u_debugreg[2]):
401 if (data >= TASK_SIZE_OF(child) - dsize) break;
402 child->thread.debugreg2 = data;
405 case offsetof(struct user, u_debugreg[3]):
406 if (data >= TASK_SIZE_OF(child) - dsize) break;
407 child->thread.debugreg3 = data;
410 case offsetof(struct user, u_debugreg[6]):
413 child->thread.debugreg6 = data;
416 case offsetof(struct user, u_debugreg[7]):
417 /* See arch/i386/kernel/ptrace.c for an explanation of
418 * this awkward check.*/
419 data &= ~DR_CONTROL_RESERVED;
421 if ((0x5554 >> ((data >> (16 + 4*i)) & 0xf)) & 1)
424 child->thread.debugreg7 = data;
426 set_tsk_thread_flag(child, TIF_DEBUG);
428 clear_tsk_thread_flag(child, TIF_DEBUG);
435 case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
436 case PTRACE_CONT: /* restart after signal. */
439 if (!valid_signal(data))
441 if (request == PTRACE_SYSCALL)
442 set_tsk_thread_flag(child,TIF_SYSCALL_TRACE);
444 clear_tsk_thread_flag(child,TIF_SYSCALL_TRACE);
445 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
446 child->exit_code = data;
447 /* make sure the single step bit is not set. */
448 clear_singlestep(child);
449 wake_up_process(child);
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;
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);
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);
476 /* normal 64bit interface to access TLS data.
477 Works just like arch_prctl, except that the arguments
479 case PTRACE_ARCH_PRCTL:
480 ret = do_arch_prctl(child, data, addr);
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
490 if (child->exit_state == EXIT_ZOMBIE) /* already dead */
492 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
493 child->exit_code = SIGKILL;
494 /* make sure the single step bit is not set. */
495 clear_singlestep(child);
496 wake_up_process(child);
499 case PTRACE_SINGLESTEP: /* set the trap flag. */
501 if (!valid_signal(data))
503 clear_tsk_thread_flag(child,TIF_SYSCALL_TRACE);
504 set_singlestep(child);
505 child->exit_code = data;
506 /* give it a chance to run. */
507 wake_up_process(child);
512 /* detach a process that was attached. */
513 ret = ptrace_detach(child, data);
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))) {
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);
530 case PTRACE_SETREGS: { /* Set all gp regs in the child. */
532 if (!access_ok(VERIFY_READ, (unsigned __user *)data,
533 sizeof(struct user_regs_struct))) {
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);
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))) {
552 ret = get_fpregs((struct user_i387_struct __user *)data, child);
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))) {
562 set_stopped_child_used_math(child);
563 ret = set_fpregs(child, (struct user_i387_struct __user *)data);
568 ret = ptrace_request(child, request, addr, data);
574 static void syscall_trace(struct pt_regs *regs)
578 printk("trace %s rip %lx rsp %lx rax %d origrax %d caller %lx tiflags %x ptrace %x\n",
580 regs->rip, regs->rsp, regs->rax, regs->orig_rax, __builtin_return_address(0),
581 current_thread_info()->flags, current->ptrace);
584 ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
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
591 if (current->exit_code) {
592 send_sig(current->exit_code, current, 1);
593 current->exit_code = 0;
597 asmlinkage void syscall_trace_enter(struct pt_regs *regs)
599 /* do the secure computing check first */
600 secure_computing(regs->orig_rax);
602 if (test_thread_flag(TIF_SYSCALL_TRACE)
603 && (current->ptrace & PT_PTRACED))
606 if (unlikely(current->audit_context)) {
607 if (test_thread_flag(TIF_IA32)) {
608 audit_syscall_entry(AUDIT_ARCH_I386,
610 regs->rbx, regs->rcx,
611 regs->rdx, regs->rsi);
613 audit_syscall_entry(AUDIT_ARCH_X86_64,
615 regs->rdi, regs->rsi,
616 regs->rdx, regs->r10);
621 asmlinkage void syscall_trace_leave(struct pt_regs *regs)
623 if (unlikely(current->audit_context))
624 audit_syscall_exit(AUDITSC_RESULT(regs->rax), regs->rax);
626 if ((test_thread_flag(TIF_SYSCALL_TRACE)
627 || test_thread_flag(TIF_SINGLESTEP))
628 && (current->ptrace & PT_PTRACED))