blob: b9032992a99728b268ee9a693263b4dc5c5bbec4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2003 PathScale, Inc.
3 *
4 * Licensed under the GPL
5 */
6
7#define __FRAME_OFFSETS
Jeff Dikeba9950c2005-05-20 13:59:07 -07008#include <asm/ptrace.h>
9#include <linux/sched.h>
10#include <linux/errno.h>
Bodo Stroesser81efcd32006-03-27 01:14:34 -080011#include <linux/mm.h>
Jeff Dikeba9950c2005-05-20 13:59:07 -070012#include <asm/uaccess.h>
13#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/* XXX x86_64 */
16unsigned long not_ss;
17unsigned long not_ds;
18unsigned long not_es;
19
20#define SC_SS(r) (not_ss)
21#define SC_DS(r) (not_ds)
22#define SC_ES(r) (not_es)
23
24/* determines which flags the user has access to. */
25/* 1 = access 0 = no access */
26#define FLAG_MASK 0x44dd5UL
27
28int putreg(struct task_struct *child, int regno, unsigned long value)
29{
30 unsigned long tmp;
31
32#ifdef TIF_IA32
33 /* Some code in the 64bit emulation may not be 64bit clean.
34 Don't take any chances. */
35 if (test_tsk_thread_flag(child, TIF_IA32))
36 value &= 0xffffffff;
37#endif
38 switch (regno){
39 case FS:
40 case GS:
41 case DS:
42 case ES:
43 case SS:
44 case CS:
45 if (value && (value & 3) != 3)
46 return -EIO;
47 value &= 0xffff;
48 break;
49
50 case FS_BASE:
51 case GS_BASE:
52 if (!((value >> 48) == 0 || (value >> 48) == 0xffff))
53 return -EIO;
54 break;
55
56 case EFLAGS:
57 value &= FLAG_MASK;
58 tmp = PT_REGS_EFLAGS(&child->thread.regs) & ~FLAG_MASK;
59 value |= tmp;
60 break;
61 }
62
63 PT_REGS_SET(&child->thread.regs, regno, value);
64 return 0;
65}
66
Bodo Stroesser82c1c112005-05-06 21:30:46 -070067int poke_user(struct task_struct *child, long addr, long data)
68{
69 if ((addr & 3) || addr < 0)
70 return -EIO;
71
72 if (addr < MAX_REG_OFFSET)
73 return putreg(child, addr, data);
Bodo Stroesser82c1c112005-05-06 21:30:46 -070074 else if((addr >= offsetof(struct user, u_debugreg[0])) &&
75 (addr <= offsetof(struct user, u_debugreg[7]))){
76 addr -= offsetof(struct user, u_debugreg[0]);
77 addr = addr >> 2;
78 if((addr == 4) || (addr == 5)) return -EIO;
79 child->thread.arch.debugregs[addr] = data;
80 return 0;
81 }
Bodo Stroesser82c1c112005-05-06 21:30:46 -070082 return -EIO;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085unsigned long getreg(struct task_struct *child, int regno)
86{
87 unsigned long retval = ~0UL;
88 switch (regno) {
89 case FS:
90 case GS:
91 case DS:
92 case ES:
93 case SS:
94 case CS:
95 retval = 0xffff;
96 /* fall through */
97 default:
98 retval &= PT_REG(&child->thread.regs, regno);
99#ifdef TIF_IA32
100 if (test_tsk_thread_flag(child, TIF_IA32))
101 retval &= 0xffffffff;
102#endif
103 }
104 return retval;
105}
106
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700107int peek_user(struct task_struct *child, long addr, long data)
108{
109 /* read the word at location addr in the USER area. */
110 unsigned long tmp;
111
112 if ((addr & 3) || addr < 0)
113 return -EIO;
114
115 tmp = 0; /* Default return condition */
116 if(addr < MAX_REG_OFFSET){
117 tmp = getreg(child, addr);
118 }
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700119 else if((addr >= offsetof(struct user, u_debugreg[0])) &&
120 (addr <= offsetof(struct user, u_debugreg[7]))){
121 addr -= offsetof(struct user, u_debugreg[0]);
122 addr = addr >> 2;
123 tmp = child->thread.arch.debugregs[addr];
124 }
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700125 return put_user(tmp, (unsigned long *) data);
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128void arch_switch(void)
129{
130/* XXX
131 printk("arch_switch\n");
132*/
133}
134
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800135/* XXX Mostly copied from sys-i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136int is_syscall(unsigned long addr)
137{
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800138 unsigned short instr;
139 int n;
140
141 n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
142 if(n){
143 /* access_process_vm() grants access to vsyscall and stub,
144 * while copy_from_user doesn't. Maybe access_process_vm is
145 * slow, but that doesn't matter, since it will be called only
146 * in case of singlestepping, if copy_from_user failed.
147 */
148 n = access_process_vm(current, addr, &instr, sizeof(instr), 0);
149 if(n != sizeof(instr)) {
150 printk("is_syscall : failed to read instruction from "
151 "0x%lx\n", addr);
152 return(1);
153 }
154 }
155 /* sysenter */
156 return(instr == 0x050f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Jeff Dikee8012b52007-10-16 01:27:16 -0700159int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Jeff Dikee8012b52007-10-16 01:27:16 -0700161 int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
162 long fpregs[HOST_FP_SIZE];
163
164 BUG_ON(sizeof(*buf) != sizeof(fpregs));
165 err = save_fp_registers(userspace_pid[cpu], fpregs);
166 if (err)
167 return err;
168
169 n = copy_to_user((void *) buf, fpregs, sizeof(fpregs));
170 if(n > 0)
171 return -EFAULT;
172
173 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Jeff Dikee8012b52007-10-16 01:27:16 -0700176int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Jeff Dikee8012b52007-10-16 01:27:16 -0700178 int n, cpu = ((struct thread_info *) child->stack)->cpu;
179 long fpregs[HOST_FP_SIZE];
180
181 BUG_ON(sizeof(*buf) != sizeof(fpregs));
182 n = copy_from_user(fpregs, (void *) buf, sizeof(fpregs));
183 if (n > 0)
184 return -EFAULT;
185
186 return restore_fp_registers(userspace_pid[cpu], fpregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Jeff Dikee8012b52007-10-16 01:27:16 -0700189long subarch_ptrace(struct task_struct *child, long request, long addr,
190 long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Jeff Dikee8012b52007-10-16 01:27:16 -0700192 int ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jeff Dikee8012b52007-10-16 01:27:16 -0700194 switch (request) {
195 case PTRACE_GETFPXREGS: /* Get the child FPU state. */
196 ret = get_fpregs((struct user_i387_struct __user *) data,
197 child);
198 break;
199 case PTRACE_SETFPXREGS: /* Set the child FPU state. */
200 ret = set_fpregs((struct user_i387_struct __user *) data,
201 child);
202 break;
203 }
204
205 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
208/*
209 * Overrides for Emacs so that we follow Linus's tabbing style.
210 * Emacs will notice this stuff at the end of the file and automatically
211 * adjust the settings for this buffer only. This must remain at the end
212 * of the file.
213 * ---------------------------------------------------------------------------
214 * Local variables:
215 * c-file-style: "linux"
216 * End:
217 */