2 * Copyright 2003 PathScale, Inc.
3 * Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
5 * Licensed under the GPL
9 #include <linux/sched.h>
10 #include <linux/errno.h>
11 #define __FRAME_OFFSETS
12 #include <asm/ptrace.h>
13 #include <asm/uaccess.h>
14 #include <asm/ptrace-abi.h>
17 * determines which flags the user has access to.
18 * 1 = access 0 = no access
20 #define FLAG_MASK 0x44dd5UL
22 static const int reg_offsets[] =
26 [R10 >> 3] = HOST_R10,
27 [R11 >> 3] = HOST_R11,
28 [R12 >> 3] = HOST_R12,
29 [R13 >> 3] = HOST_R13,
30 [R14 >> 3] = HOST_R14,
31 [R15 >> 3] = HOST_R15,
43 [FS_BASE >> 3] = HOST_FS_BASE,
44 [GS_BASE >> 3] = HOST_GS_BASE,
49 [EFLAGS >> 3] = HOST_EFLAGS,
50 [ORIG_RAX >> 3] = HOST_ORIG_AX,
53 int putreg(struct task_struct *child, int regno, unsigned long value)
57 * Some code in the 64bit emulation may not be 64bit clean.
58 * Don't take any chances.
60 if (test_tsk_thread_flag(child, TIF_IA32))
90 if (value && (value & 3) != 3)
97 if (!((value >> 48) == 0 || (value >> 48) == 0xffff))
103 child->thread.regs.regs.gp[HOST_EFLAGS] |= value;
107 panic("Bad register in putreg(): %d\n", regno);
110 child->thread.regs.regs.gp[reg_offsets[regno >> 3]] = value;
114 int poke_user(struct task_struct *child, long addr, long data)
116 if ((addr & 3) || addr < 0)
119 if (addr < MAX_REG_OFFSET)
120 return putreg(child, addr, data);
121 else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
122 (addr <= offsetof(struct user, u_debugreg[7]))) {
123 addr -= offsetof(struct user, u_debugreg[0]);
125 if ((addr == 4) || (addr == 5))
127 child->thread.arch.debugregs[addr] = data;
133 unsigned long getreg(struct task_struct *child, int regno)
135 unsigned long mask = ~0UL;
137 if (test_tsk_thread_flag(child, TIF_IA32))
172 panic("Bad register in getreg: %d\n", regno);
174 return mask & child->thread.regs.regs.gp[reg_offsets[regno >> 3]];
177 int peek_user(struct task_struct *child, long addr, long data)
179 /* read the word at location addr in the USER area. */
182 if ((addr & 3) || addr < 0)
185 tmp = 0; /* Default return condition */
186 if (addr < MAX_REG_OFFSET)
187 tmp = getreg(child, addr);
188 else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
189 (addr <= offsetof(struct user, u_debugreg[7]))) {
190 addr -= offsetof(struct user, u_debugreg[0]);
192 tmp = child->thread.arch.debugregs[addr];
194 return put_user(tmp, (unsigned long *) data);
197 /* XXX Mostly copied from sys-i386 */
198 int is_syscall(unsigned long addr)
200 unsigned short instr;
203 n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
206 * access_process_vm() grants access to vsyscall and stub,
207 * while copy_from_user doesn't. Maybe access_process_vm is
208 * slow, but that doesn't matter, since it will be called only
209 * in case of singlestepping, if copy_from_user failed.
211 n = access_process_vm(current, addr, &instr, sizeof(instr), 0);
212 if (n != sizeof(instr)) {
213 printk("is_syscall : failed to read instruction from "
219 return instr == 0x050f;
222 static int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
224 int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
225 struct user_i387_struct fpregs;
227 err = save_i387_registers(userspace_pid[cpu],
228 (unsigned long *) &fpregs);
232 n = copy_to_user(buf, &fpregs, sizeof(fpregs));
239 static int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
241 int n, cpu = ((struct thread_info *) child->stack)->cpu;
242 struct user_i387_struct fpregs;
244 n = copy_from_user(&fpregs, buf, sizeof(fpregs));
248 return restore_i387_registers(userspace_pid[cpu],
249 (unsigned long *) &fpregs);
252 long subarch_ptrace(struct task_struct *child, long request,
253 unsigned long addr, unsigned long data)
256 void __user *datap = (void __user *) data;
259 case PTRACE_GETFPREGS: /* Get the child FPU state. */
260 ret = get_fpregs(datap, child);
262 case PTRACE_SETFPREGS: /* Set the child FPU state. */
263 ret = set_fpregs(datap, child);
265 case PTRACE_ARCH_PRCTL:
266 /* XXX Calls ptrace on the host - needs some SMP thinking */
267 ret = arch_prctl(child, data, (void __user *) addr);