1 /*
2 * FPU register's regset abstraction, for ptrace, core dumps, etc.
3 */
4 #include <asm/fpu/internal.h>
5 #include <asm/fpu/signal.h>
6 #include <asm/fpu/regset.h>
7 #include <asm/fpu/xstate.h>
8
9 /*
10 * The xstateregs_active() routine is the same as the regset_fpregs_active() routine,
11 * as the "regset->n" for the xstate regset will be updated based on the feature
12 * capabilities supported by the xsave.
13 */
regset_fpregs_active(struct task_struct * target,const struct user_regset * regset)14 int regset_fpregs_active(struct task_struct *target, const struct user_regset *regset)
15 {
16 struct fpu *target_fpu = &target->thread.fpu;
17
18 return target_fpu->fpstate_active ? regset->n : 0;
19 }
20
regset_xregset_fpregs_active(struct task_struct * target,const struct user_regset * regset)21 int regset_xregset_fpregs_active(struct task_struct *target, const struct user_regset *regset)
22 {
23 struct fpu *target_fpu = &target->thread.fpu;
24
25 if (boot_cpu_has(X86_FEATURE_FXSR) && target_fpu->fpstate_active)
26 return regset->n;
27 else
28 return 0;
29 }
30
xfpregs_get(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,void * kbuf,void __user * ubuf)31 int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
32 unsigned int pos, unsigned int count,
33 void *kbuf, void __user *ubuf)
34 {
35 struct fpu *fpu = &target->thread.fpu;
36
37 if (!boot_cpu_has(X86_FEATURE_FXSR))
38 return -ENODEV;
39
40 fpu__activate_fpstate_read(fpu);
41 fpstate_sanitize_xstate(fpu);
42
43 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
44 &fpu->state.fxsave, 0, -1);
45 }
46
xfpregs_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)47 int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
48 unsigned int pos, unsigned int count,
49 const void *kbuf, const void __user *ubuf)
50 {
51 struct fpu *fpu = &target->thread.fpu;
52 int ret;
53
54 if (!boot_cpu_has(X86_FEATURE_FXSR))
55 return -ENODEV;
56
57 fpu__activate_fpstate_write(fpu);
58 fpstate_sanitize_xstate(fpu);
59
60 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
61 &fpu->state.fxsave, 0, -1);
62
63 /*
64 * mxcsr reserved bits must be masked to zero for security reasons.
65 */
66 fpu->state.fxsave.mxcsr &= mxcsr_feature_mask;
67
68 /*
69 * update the header bits in the xsave header, indicating the
70 * presence of FP and SSE state.
71 */
72 if (boot_cpu_has(X86_FEATURE_XSAVE))
73 fpu->state.xsave.header.xfeatures |= XFEATURE_MASK_FPSSE;
74
75 return ret;
76 }
77
xstateregs_get(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,void * kbuf,void __user * ubuf)78 int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
79 unsigned int pos, unsigned int count,
80 void *kbuf, void __user *ubuf)
81 {
82 struct fpu *fpu = &target->thread.fpu;
83 struct xregs_state *xsave;
84 int ret;
85
86 if (!boot_cpu_has(X86_FEATURE_XSAVE))
87 return -ENODEV;
88
89 xsave = &fpu->state.xsave;
90
91 fpu__activate_fpstate_read(fpu);
92
93 if (using_compacted_format()) {
94 ret = copyout_from_xsaves(pos, count, kbuf, ubuf, xsave);
95 } else {
96 fpstate_sanitize_xstate(fpu);
97 /*
98 * Copy the 48 bytes defined by the software into the xsave
99 * area in the thread struct, so that we can copy the whole
100 * area to user using one user_regset_copyout().
101 */
102 memcpy(&xsave->i387.sw_reserved, xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
103
104 /*
105 * Copy the xstate memory layout.
106 */
107 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, xsave, 0, -1);
108 }
109 return ret;
110 }
111
xstateregs_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)112 int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
113 unsigned int pos, unsigned int count,
114 const void *kbuf, const void __user *ubuf)
115 {
116 struct fpu *fpu = &target->thread.fpu;
117 struct xregs_state *xsave;
118 int ret;
119
120 if (!boot_cpu_has(X86_FEATURE_XSAVE))
121 return -ENODEV;
122
123 /*
124 * A whole standard-format XSAVE buffer is needed:
125 */
126 if ((pos != 0) || (count < fpu_user_xstate_size))
127 return -EFAULT;
128
129 xsave = &fpu->state.xsave;
130
131 fpu__activate_fpstate_write(fpu);
132
133 if (boot_cpu_has(X86_FEATURE_XSAVES)) {
134 ret = copyin_to_xsaves(kbuf, ubuf, xsave);
135 } else {
136 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1);
137
138 /* xcomp_bv must be 0 when using uncompacted format */
139 if (!ret && xsave->header.xcomp_bv)
140 ret = -EINVAL;
141 }
142
143 /*
144 * In case of failure, mark all states as init:
145 */
146 if (ret)
147 fpstate_init(&fpu->state);
148
149 /*
150 * mxcsr reserved bits must be masked to zero for security reasons.
151 */
152 xsave->i387.mxcsr &= mxcsr_feature_mask;
153 xsave->header.xfeatures &= xfeatures_mask;
154 /*
155 * These bits must be zero.
156 */
157 memset(&xsave->header.reserved, 0, 48);
158
159 return ret;
160 }
161
162 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
163
164 /*
165 * FPU tag word conversions.
166 */
167
twd_i387_to_fxsr(unsigned short twd)168 static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
169 {
170 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
171
172 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
173 tmp = ~twd;
174 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
175 /* and move the valid bits to the lower byte. */
176 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
177 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
178 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
179
180 return tmp;
181 }
182
183 #define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16)
184 #define FP_EXP_TAG_VALID 0
185 #define FP_EXP_TAG_ZERO 1
186 #define FP_EXP_TAG_SPECIAL 2
187 #define FP_EXP_TAG_EMPTY 3
188
twd_fxsr_to_i387(struct fxregs_state * fxsave)189 static inline u32 twd_fxsr_to_i387(struct fxregs_state *fxsave)
190 {
191 struct _fpxreg *st;
192 u32 tos = (fxsave->swd >> 11) & 7;
193 u32 twd = (unsigned long) fxsave->twd;
194 u32 tag;
195 u32 ret = 0xffff0000u;
196 int i;
197
198 for (i = 0; i < 8; i++, twd >>= 1) {
199 if (twd & 0x1) {
200 st = FPREG_ADDR(fxsave, (i - tos) & 7);
201
202 switch (st->exponent & 0x7fff) {
203 case 0x7fff:
204 tag = FP_EXP_TAG_SPECIAL;
205 break;
206 case 0x0000:
207 if (!st->significand[0] &&
208 !st->significand[1] &&
209 !st->significand[2] &&
210 !st->significand[3])
211 tag = FP_EXP_TAG_ZERO;
212 else
213 tag = FP_EXP_TAG_SPECIAL;
214 break;
215 default:
216 if (st->significand[3] & 0x8000)
217 tag = FP_EXP_TAG_VALID;
218 else
219 tag = FP_EXP_TAG_SPECIAL;
220 break;
221 }
222 } else {
223 tag = FP_EXP_TAG_EMPTY;
224 }
225 ret |= tag << (2 * i);
226 }
227 return ret;
228 }
229
230 /*
231 * FXSR floating point environment conversions.
232 */
233
234 void
convert_from_fxsr(struct user_i387_ia32_struct * env,struct task_struct * tsk)235 convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
236 {
237 struct fxregs_state *fxsave = &tsk->thread.fpu.state.fxsave;
238 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
239 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
240 int i;
241
242 env->cwd = fxsave->cwd | 0xffff0000u;
243 env->swd = fxsave->swd | 0xffff0000u;
244 env->twd = twd_fxsr_to_i387(fxsave);
245
246 #ifdef CONFIG_X86_64
247 env->fip = fxsave->rip;
248 env->foo = fxsave->rdp;
249 /*
250 * should be actually ds/cs at fpu exception time, but
251 * that information is not available in 64bit mode.
252 */
253 env->fcs = task_pt_regs(tsk)->cs;
254 if (tsk == current) {
255 savesegment(ds, env->fos);
256 } else {
257 env->fos = tsk->thread.ds;
258 }
259 env->fos |= 0xffff0000;
260 #else
261 env->fip = fxsave->fip;
262 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
263 env->foo = fxsave->foo;
264 env->fos = fxsave->fos;
265 #endif
266
267 for (i = 0; i < 8; ++i)
268 memcpy(&to[i], &from[i], sizeof(to[0]));
269 }
270
convert_to_fxsr(struct task_struct * tsk,const struct user_i387_ia32_struct * env)271 void convert_to_fxsr(struct task_struct *tsk,
272 const struct user_i387_ia32_struct *env)
273
274 {
275 struct fxregs_state *fxsave = &tsk->thread.fpu.state.fxsave;
276 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
277 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
278 int i;
279
280 fxsave->cwd = env->cwd;
281 fxsave->swd = env->swd;
282 fxsave->twd = twd_i387_to_fxsr(env->twd);
283 fxsave->fop = (u16) ((u32) env->fcs >> 16);
284 #ifdef CONFIG_X86_64
285 fxsave->rip = env->fip;
286 fxsave->rdp = env->foo;
287 /* cs and ds ignored */
288 #else
289 fxsave->fip = env->fip;
290 fxsave->fcs = (env->fcs & 0xffff);
291 fxsave->foo = env->foo;
292 fxsave->fos = env->fos;
293 #endif
294
295 for (i = 0; i < 8; ++i)
296 memcpy(&to[i], &from[i], sizeof(from[0]));
297 }
298
fpregs_get(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,void * kbuf,void __user * ubuf)299 int fpregs_get(struct task_struct *target, const struct user_regset *regset,
300 unsigned int pos, unsigned int count,
301 void *kbuf, void __user *ubuf)
302 {
303 struct fpu *fpu = &target->thread.fpu;
304 struct user_i387_ia32_struct env;
305
306 fpu__activate_fpstate_read(fpu);
307
308 if (!boot_cpu_has(X86_FEATURE_FPU))
309 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
310
311 if (!boot_cpu_has(X86_FEATURE_FXSR))
312 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
313 &fpu->state.fsave, 0,
314 -1);
315
316 fpstate_sanitize_xstate(fpu);
317
318 if (kbuf && pos == 0 && count == sizeof(env)) {
319 convert_from_fxsr(kbuf, target);
320 return 0;
321 }
322
323 convert_from_fxsr(&env, target);
324
325 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
326 }
327
fpregs_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf)328 int fpregs_set(struct task_struct *target, const struct user_regset *regset,
329 unsigned int pos, unsigned int count,
330 const void *kbuf, const void __user *ubuf)
331 {
332 struct fpu *fpu = &target->thread.fpu;
333 struct user_i387_ia32_struct env;
334 int ret;
335
336 fpu__activate_fpstate_write(fpu);
337 fpstate_sanitize_xstate(fpu);
338
339 if (!boot_cpu_has(X86_FEATURE_FPU))
340 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
341
342 if (!boot_cpu_has(X86_FEATURE_FXSR))
343 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
344 &fpu->state.fsave, 0,
345 -1);
346
347 if (pos > 0 || count < sizeof(env))
348 convert_from_fxsr(&env, target);
349
350 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
351 if (!ret)
352 convert_to_fxsr(target, &env);
353
354 /*
355 * update the header bit in the xsave header, indicating the
356 * presence of FP.
357 */
358 if (boot_cpu_has(X86_FEATURE_XSAVE))
359 fpu->state.xsave.header.xfeatures |= XFEATURE_MASK_FP;
360 return ret;
361 }
362
363 /*
364 * FPU state for core dumps.
365 * This is only used for a.out dumps now.
366 * It is declared generically using elf_fpregset_t (which is
367 * struct user_i387_struct) but is in fact only used for 32-bit
368 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
369 */
dump_fpu(struct pt_regs * regs,struct user_i387_struct * ufpu)370 int dump_fpu(struct pt_regs *regs, struct user_i387_struct *ufpu)
371 {
372 struct task_struct *tsk = current;
373 struct fpu *fpu = &tsk->thread.fpu;
374 int fpvalid;
375
376 fpvalid = fpu->fpstate_active;
377 if (fpvalid)
378 fpvalid = !fpregs_get(tsk, NULL,
379 0, sizeof(struct user_i387_ia32_struct),
380 ufpu, NULL);
381
382 return fpvalid;
383 }
384 EXPORT_SYMBOL(dump_fpu);
385
386 #endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */
387