blob: b7631b0e9ddc212a12966652925646e996768188 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2003 PathScale, Inc.
Jeff Dikef0c4cad2007-10-16 01:27:18 -07003 * Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Licensed under the GPL
6 */
7
8#define __FRAME_OFFSETS
Jeff Dikeba9950c2005-05-20 13:59:07 -07009#include <asm/ptrace.h>
10#include <linux/sched.h>
11#include <linux/errno.h>
Bodo Stroesser81efcd32006-03-27 01:14:34 -080012#include <linux/mm.h>
Jeff Dikeba9950c2005-05-20 13:59:07 -070013#include <asm/uaccess.h>
14#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Jeff Dikef0c4cad2007-10-16 01:27:18 -070016/*
17 * determines which flags the user has access to.
18 * 1 = access 0 = no access
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define FLAG_MASK 0x44dd5UL
21
22int putreg(struct task_struct *child, int regno, unsigned long value)
23{
24 unsigned long tmp;
25
26#ifdef TIF_IA32
27 /* Some code in the 64bit emulation may not be 64bit clean.
28 Don't take any chances. */
29 if (test_tsk_thread_flag(child, TIF_IA32))
30 value &= 0xffffffff;
31#endif
32 switch (regno){
33 case FS:
34 case GS:
35 case DS:
36 case ES:
37 case SS:
38 case CS:
39 if (value && (value & 3) != 3)
40 return -EIO;
41 value &= 0xffff;
42 break;
43
44 case FS_BASE:
45 case GS_BASE:
46 if (!((value >> 48) == 0 || (value >> 48) == 0xffff))
47 return -EIO;
48 break;
49
50 case EFLAGS:
51 value &= FLAG_MASK;
52 tmp = PT_REGS_EFLAGS(&child->thread.regs) & ~FLAG_MASK;
53 value |= tmp;
54 break;
55 }
56
57 PT_REGS_SET(&child->thread.regs, regno, value);
58 return 0;
59}
60
Bodo Stroesser82c1c112005-05-06 21:30:46 -070061int poke_user(struct task_struct *child, long addr, long data)
62{
Jeff Dikef0c4cad2007-10-16 01:27:18 -070063 if ((addr & 3) || addr < 0)
64 return -EIO;
Bodo Stroesser82c1c112005-05-06 21:30:46 -070065
Jeff Dikef0c4cad2007-10-16 01:27:18 -070066 if (addr < MAX_REG_OFFSET)
67 return putreg(child, addr, data);
68 else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
69 (addr <= offsetof(struct user, u_debugreg[7]))){
70 addr -= offsetof(struct user, u_debugreg[0]);
71 addr = addr >> 2;
72 if ((addr == 4) || (addr == 5))
73 return -EIO;
74 child->thread.arch.debugregs[addr] = data;
75 return 0;
76 }
77 return -EIO;
Bodo Stroesser82c1c112005-05-06 21:30:46 -070078}
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080unsigned long getreg(struct task_struct *child, int regno)
81{
82 unsigned long retval = ~0UL;
83 switch (regno) {
84 case FS:
85 case GS:
86 case DS:
87 case ES:
88 case SS:
89 case CS:
90 retval = 0xffff;
91 /* fall through */
92 default:
93 retval &= PT_REG(&child->thread.regs, regno);
94#ifdef TIF_IA32
95 if (test_tsk_thread_flag(child, TIF_IA32))
96 retval &= 0xffffffff;
97#endif
98 }
99 return retval;
100}
101
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700102int peek_user(struct task_struct *child, long addr, long data)
103{
104 /* read the word at location addr in the USER area. */
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700105 unsigned long tmp;
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700106
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700107 if ((addr & 3) || addr < 0)
108 return -EIO;
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700109
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700110 tmp = 0; /* Default return condition */
111 if (addr < MAX_REG_OFFSET){
112 tmp = getreg(child, addr);
113 }
114 else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
115 (addr <= offsetof(struct user, u_debugreg[7]))){
116 addr -= offsetof(struct user, u_debugreg[0]);
117 addr = addr >> 2;
118 tmp = child->thread.arch.debugregs[addr];
119 }
120 return put_user(tmp, (unsigned long *) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800123/* XXX Mostly copied from sys-i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124int is_syscall(unsigned long addr)
125{
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800126 unsigned short instr;
127 int n;
128
129 n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700130 if (n){
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800131 /* access_process_vm() grants access to vsyscall and stub,
132 * while copy_from_user doesn't. Maybe access_process_vm is
133 * slow, but that doesn't matter, since it will be called only
134 * in case of singlestepping, if copy_from_user failed.
135 */
136 n = access_process_vm(current, addr, &instr, sizeof(instr), 0);
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700137 if (n != sizeof(instr)) {
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800138 printk("is_syscall : failed to read instruction from "
139 "0x%lx\n", addr);
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700140 return 1;
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800141 }
142 }
143 /* sysenter */
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700144 return instr == 0x050f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Jeff Dikee8012b52007-10-16 01:27:16 -0700147int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Jeff Dikee8012b52007-10-16 01:27:16 -0700149 int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
150 long fpregs[HOST_FP_SIZE];
151
152 BUG_ON(sizeof(*buf) != sizeof(fpregs));
153 err = save_fp_registers(userspace_pid[cpu], fpregs);
154 if (err)
155 return err;
156
Al Virob4a08a12007-10-29 04:36:10 +0000157 n = copy_to_user(buf, fpregs, sizeof(fpregs));
Jeff Dikee8012b52007-10-16 01:27:16 -0700158 if(n > 0)
159 return -EFAULT;
160
161 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Jeff Dikee8012b52007-10-16 01:27:16 -0700164int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Jeff Dikee8012b52007-10-16 01:27:16 -0700166 int n, cpu = ((struct thread_info *) child->stack)->cpu;
167 long fpregs[HOST_FP_SIZE];
168
169 BUG_ON(sizeof(*buf) != sizeof(fpregs));
Al Virob4a08a12007-10-29 04:36:10 +0000170 n = copy_from_user(fpregs, buf, sizeof(fpregs));
Jeff Dikee8012b52007-10-16 01:27:16 -0700171 if (n > 0)
172 return -EFAULT;
173
174 return restore_fp_registers(userspace_pid[cpu], fpregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Jeff Dikee8012b52007-10-16 01:27:16 -0700177long subarch_ptrace(struct task_struct *child, long request, long addr,
178 long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Jeff Dikee8012b52007-10-16 01:27:16 -0700180 int ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Jeff Dikee8012b52007-10-16 01:27:16 -0700182 switch (request) {
183 case PTRACE_GETFPXREGS: /* Get the child FPU state. */
184 ret = get_fpregs((struct user_i387_struct __user *) data,
185 child);
186 break;
187 case PTRACE_SETFPXREGS: /* Set the child FPU state. */
188 ret = set_fpregs((struct user_i387_struct __user *) data,
189 child);
190 break;
191 }
192
193 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}