178f894384f478dfbb95b85a53168f9943c329f3
[powerpc.git] / arch / um / sys-i386 / ptrace.c
1 /*
2  * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/mm.h"
7 #include "linux/sched.h"
8 #include "asm/uaccess.h"
9
10 extern int arch_switch_tls(struct task_struct *from, struct task_struct *to);
11
12 void arch_switch_to(struct task_struct *from, struct task_struct *to)
13 {
14         int err = arch_switch_tls(from, to);
15         if (!err)
16                 return;
17
18         if (err != -EINVAL)
19                 printk(KERN_WARNING "arch_switch_tls failed, errno %d, "
20                        "not EINVAL\n", -err);
21         else
22                 printk(KERN_WARNING "arch_switch_tls failed, errno = EINVAL\n");
23 }
24
25 int is_syscall(unsigned long addr)
26 {
27         unsigned short instr;
28         int n;
29
30         n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
31         if (n) {
32                 /* access_process_vm() grants access to vsyscall and stub,
33                  * while copy_from_user doesn't. Maybe access_process_vm is
34                  * slow, but that doesn't matter, since it will be called only
35                  * in case of singlestepping, if copy_from_user failed.
36                  */
37                 n = access_process_vm(current, addr, &instr, sizeof(instr), 0);
38                 if (n != sizeof(instr)) {
39                         printk(KERN_ERR "is_syscall : failed to read "
40                                "instruction from 0x%lx\n", addr);
41                         return 1;
42                 }
43         }
44         /* int 0x80 or sysenter */
45         return (instr == 0x80cd) || (instr == 0x340f);
46 }
47
48 /* determines which flags the user has access to. */
49 /* 1 = access 0 = no access */
50 #define FLAG_MASK 0x00044dd5
51
52 int putreg(struct task_struct *child, int regno, unsigned long value)
53 {
54         regno >>= 2;
55         switch (regno) {
56         case FS:
57                 if (value && (value & 3) != 3)
58                         return -EIO;
59                 PT_REGS_FS(&child->thread.regs) = value;
60                 return 0;
61         case GS:
62                 if (value && (value & 3) != 3)
63                         return -EIO;
64                 PT_REGS_GS(&child->thread.regs) = value;
65                 return 0;
66         case DS:
67         case ES:
68                 if (value && (value & 3) != 3)
69                         return -EIO;
70                 value &= 0xffff;
71                 break;
72         case SS:
73         case CS:
74                 if ((value & 3) != 3)
75                         return -EIO;
76                 value &= 0xffff;
77                 break;
78         case EFL:
79                 value &= FLAG_MASK;
80                 value |= PT_REGS_EFLAGS(&child->thread.regs);
81                 break;
82         }
83         PT_REGS_SET(&child->thread.regs, regno, value);
84         return 0;
85 }
86
87 int poke_user(struct task_struct *child, long addr, long data)
88 {
89         if ((addr & 3) || addr < 0)
90                 return -EIO;
91
92         if (addr < MAX_REG_OFFSET)
93                 return putreg(child, addr, data);
94         else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
95                  (addr <= offsetof(struct user, u_debugreg[7]))) {
96                 addr -= offsetof(struct user, u_debugreg[0]);
97                 addr = addr >> 2;
98                 if ((addr == 4) || (addr == 5))
99                         return -EIO;
100                 child->thread.arch.debugregs[addr] = data;
101                 return 0;
102         }
103         return -EIO;
104 }
105
106 unsigned long getreg(struct task_struct *child, int regno)
107 {
108         unsigned long retval = ~0UL;
109
110         regno >>= 2;
111         switch (regno) {
112         case FS:
113         case GS:
114         case DS:
115         case ES:
116         case SS:
117         case CS:
118                 retval = 0xffff;
119                 /* fall through */
120         default:
121                 retval &= PT_REG(&child->thread.regs, regno);
122         }
123         return retval;
124 }
125
126 /* read the word at location addr in the USER area. */
127 int peek_user(struct task_struct *child, long addr, long data)
128 {
129         unsigned long tmp;
130
131         if ((addr & 3) || addr < 0)
132                 return -EIO;
133
134         tmp = 0;  /* Default return condition */
135         if (addr < MAX_REG_OFFSET) {
136                 tmp = getreg(child, addr);
137         }
138         else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
139                  (addr <= offsetof(struct user, u_debugreg[7]))) {
140                 addr -= offsetof(struct user, u_debugreg[0]);
141                 addr = addr >> 2;
142                 tmp = child->thread.arch.debugregs[addr];
143         }
144         return put_user(tmp, (unsigned long __user *) data);
145 }
146
147 struct i387_fxsave_struct {
148         unsigned short  cwd;
149         unsigned short  swd;
150         unsigned short  twd;
151         unsigned short  fop;
152         long    fip;
153         long    fcs;
154         long    foo;
155         long    fos;
156         long    mxcsr;
157         long    reserved;
158         long    st_space[32];   /* 8*16 bytes for each FP-reg = 128 bytes */
159         long    xmm_space[32];  /* 8*16 bytes for each XMM-reg = 128 bytes */
160         long    padding[56];
161 };
162
163 /*
164  * FPU tag word conversions.
165  */
166
167 static inline unsigned short twd_i387_to_fxsr( unsigned short twd )
168 {
169         unsigned int tmp; /* to avoid 16 bit prefixes in the code */
170
171         /* Transform each pair of bits into 01 (valid) or 00 (empty) */
172         tmp = ~twd;
173         tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
174         /* and move the valid bits to the lower byte. */
175         tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
176         tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
177         tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
178         return tmp;
179 }
180
181 static inline unsigned long twd_fxsr_to_i387( struct i387_fxsave_struct *fxsave )
182 {
183         struct _fpxreg *st = NULL;
184         unsigned long twd = (unsigned long) fxsave->twd;
185         unsigned long tag;
186         unsigned long ret = 0xffff0000;
187         int i;
188
189 #define FPREG_ADDR(f, n)        ((char *)&(f)->st_space + (n) * 16);
190
191         for ( i = 0 ; i < 8 ; i++ ) {
192                 if ( twd & 0x1 ) {
193                         st = (struct _fpxreg *) FPREG_ADDR( fxsave, i );
194
195                         switch ( st->exponent & 0x7fff ) {
196                         case 0x7fff:
197                                 tag = 2;                /* Special */
198                                 break;
199                         case 0x0000:
200                                 if ( !st->significand[0] &&
201                                      !st->significand[1] &&
202                                      !st->significand[2] &&
203                                      !st->significand[3] ) {
204                                         tag = 1;        /* Zero */
205                                 } else {
206                                         tag = 2;        /* Special */
207                                 }
208                                 break;
209                         default:
210                                 if ( st->significand[3] & 0x8000 ) {
211                                         tag = 0;        /* Valid */
212                                 } else {
213                                         tag = 2;        /* Special */
214                                 }
215                                 break;
216                         }
217                 } else {
218                         tag = 3;                        /* Empty */
219                 }
220                 ret |= (tag << (2 * i));
221                 twd = twd >> 1;
222         }
223         return ret;
224 }
225
226 static inline int convert_fxsr_to_user(struct _fpstate __user *buf,
227                                        struct pt_regs *regs)
228 {
229         return 0;
230 }
231
232 static inline int convert_fxsr_from_user(struct pt_regs *regs,
233                                          struct _fpstate __user *buf)
234 {
235         return 0;
236 }
237
238 int get_fpregs(unsigned long buf, struct task_struct *child)
239 {
240         int err;
241
242         err = convert_fxsr_to_user((struct _fpstate __user *) buf,
243                                    &child->thread.regs);
244         if (err)
245                 return -EFAULT;
246         return 0;
247 }
248
249 int set_fpregs(unsigned long buf, struct task_struct *child)
250 {
251         int err;
252
253         err = convert_fxsr_from_user(&child->thread.regs,
254                                      (struct _fpstate __user *) buf);
255         if (err)
256                 return -EFAULT;
257         return 0;
258 }
259
260 int get_fpxregs(unsigned long buf, struct task_struct *tsk)
261 {
262         return 0;
263 }
264
265 int set_fpxregs(unsigned long buf, struct task_struct *tsk)
266 {
267         return 0;
268 }
269
270 #ifdef notdef
271 int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
272 {
273         fpu->cwd = (((SC_FP_CW(PT_REGS_SC(regs)) & 0xffff) << 16) |
274                     (SC_FP_SW(PT_REGS_SC(regs)) & 0xffff));
275         fpu->swd = SC_FP_CSSEL(PT_REGS_SC(regs)) & 0xffff;
276         fpu->twd = SC_FP_IPOFF(PT_REGS_SC(regs));
277         fpu->fip = SC_FP_CSSEL(PT_REGS_SC(regs)) & 0xffff;
278         fpu->fcs = SC_FP_DATAOFF(PT_REGS_SC(regs));
279         fpu->foo = SC_FP_DATASEL(PT_REGS_SC(regs));
280         fpu->fos = 0;
281         memcpy(fpu->st_space, (void *) SC_FP_ST(PT_REGS_SC(regs)),
282                sizeof(fpu->st_space));
283         return 1;
284 }
285 #endif
286
287 int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu )
288 {
289         return 1;
290 }