Input: fix faulty XXinput_* calls
[deliverable/linux.git] / arch / x86 / kernel / i387.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1994 Linus Torvalds
3 *
4 * Pentium III FXSR, SSE support
5 * General FPU state handling cleanups
6 * Gareth Hughes <gareth@valinux.com>, May 2000
7 */
129f6946 8#include <linux/module.h>
44210111 9#include <linux/regset.h>
f668964e 10#include <linux/sched.h>
5a0e3ad6 11#include <linux/slab.h>
f668964e
IM
12
13#include <asm/sigcontext.h>
1da177e4 14#include <asm/processor.h>
1da177e4 15#include <asm/math_emu.h>
1da177e4 16#include <asm/uaccess.h>
f668964e
IM
17#include <asm/ptrace.h>
18#include <asm/i387.h>
19#include <asm/user.h>
1da177e4 20
44210111 21#ifdef CONFIG_X86_64
f668964e
IM
22# include <asm/sigcontext32.h>
23# include <asm/user32.h>
44210111 24#else
ab513701
SS
25# define save_i387_xstate_ia32 save_i387_xstate
26# define restore_i387_xstate_ia32 restore_i387_xstate
f668964e 27# define _fpstate_ia32 _fpstate
ab513701 28# define _xstate_ia32 _xstate
3c1c7f10 29# define sig_xstate_ia32_size sig_xstate_size
c37b5efe 30# define fx_sw_reserved_ia32 fx_sw_reserved
f668964e
IM
31# define user_i387_ia32_struct user_i387_struct
32# define user32_fxsr_struct user_fxsr_struct
44210111
RM
33#endif
34
1da177e4 35#ifdef CONFIG_MATH_EMULATION
f668964e 36# define HAVE_HWFP (boot_cpu_data.hard_math)
1da177e4 37#else
f668964e 38# define HAVE_HWFP 1
1da177e4
LT
39#endif
40
f668964e 41static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
61c4628b 42unsigned int xstate_size;
3c1c7f10 43unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32);
61c4628b 44static struct i387_fxsave_struct fx_scratch __cpuinitdata;
1da177e4 45
61c4628b 46void __cpuinit mxcsr_feature_mask_init(void)
1da177e4
LT
47{
48 unsigned long mask = 0;
f668964e 49
1da177e4
LT
50 clts();
51 if (cpu_has_fxsr) {
61c4628b
SS
52 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
53 asm volatile("fxsave %0" : : "m" (fx_scratch));
54 mask = fx_scratch.mxcsr_mask;
3b095a04
CG
55 if (mask == 0)
56 mask = 0x0000ffbf;
57 }
1da177e4
LT
58 mxcsr_feature_mask &= mask;
59 stts();
60}
61
0e49bf66 62static void __cpuinit init_thread_xstate(void)
61c4628b 63{
0e49bf66
RR
64 /*
65 * Note that xstate_size might be overwriten later during
66 * xsave_init().
67 */
68
e8a496ac
SS
69 if (!HAVE_HWFP) {
70 xstate_size = sizeof(struct i387_soft_struct);
71 return;
72 }
73
61c4628b
SS
74 if (cpu_has_fxsr)
75 xstate_size = sizeof(struct i387_fxsave_struct);
76#ifdef CONFIG_X86_32
77 else
78 xstate_size = sizeof(struct i387_fsave_struct);
79#endif
61c4628b
SS
80}
81
44210111
RM
82#ifdef CONFIG_X86_64
83/*
84 * Called at bootup to set up the initial FPU state that is later cloned
85 * into all processes.
86 */
0e49bf66 87
44210111
RM
88void __cpuinit fpu_init(void)
89{
90 unsigned long oldcr0 = read_cr0();
f668964e 91
44210111
RM
92 set_in_cr4(X86_CR4_OSFXSR);
93 set_in_cr4(X86_CR4_OSXMMEXCPT);
94
f668964e 95 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
44210111 96
dc1e35c6
SS
97 if (!smp_processor_id())
98 init_thread_xstate();
dc1e35c6 99
44210111
RM
100 mxcsr_feature_mask_init();
101 /* clean state in init */
c9ad4882 102 current_thread_info()->status = 0;
44210111
RM
103 clear_used_math();
104}
0e49bf66
RR
105
106#else /* CONFIG_X86_64 */
107
108void __cpuinit fpu_init(void)
109{
110 if (!smp_processor_id())
111 init_thread_xstate();
112}
113
114#endif /* CONFIG_X86_32 */
44210111 115
5ee481da 116void fpu_finit(struct fpu *fpu)
1da177e4 117{
e8a496ac
SS
118#ifdef CONFIG_X86_32
119 if (!HAVE_HWFP) {
86603283
AK
120 finit_soft_fpu(&fpu->state->soft);
121 return;
e8a496ac
SS
122 }
123#endif
124
1da177e4 125 if (cpu_has_fxsr) {
86603283 126 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
61c4628b
SS
127
128 memset(fx, 0, xstate_size);
129 fx->cwd = 0x37f;
1da177e4 130 if (cpu_has_xmm)
61c4628b 131 fx->mxcsr = MXCSR_DEFAULT;
1da177e4 132 } else {
86603283 133 struct i387_fsave_struct *fp = &fpu->state->fsave;
61c4628b
SS
134 memset(fp, 0, xstate_size);
135 fp->cwd = 0xffff037fu;
136 fp->swd = 0xffff0000u;
137 fp->twd = 0xffffffffu;
138 fp->fos = 0xffff0000u;
1da177e4 139 }
86603283 140}
5ee481da 141EXPORT_SYMBOL_GPL(fpu_finit);
86603283
AK
142
143/*
144 * The _current_ task is using the FPU for the first time
145 * so initialize it and set the mxcsr to its default
146 * value at reset if we support XMM instructions and then
147 * remeber the current task has used the FPU.
148 */
149int init_fpu(struct task_struct *tsk)
150{
151 int ret;
152
153 if (tsk_used_math(tsk)) {
154 if (HAVE_HWFP && tsk == current)
155 unlazy_fpu(tsk);
156 return 0;
157 }
158
44210111 159 /*
86603283 160 * Memory allocation at the first usage of the FPU and other state.
44210111 161 */
86603283
AK
162 ret = fpu_alloc(&tsk->thread.fpu);
163 if (ret)
164 return ret;
165
166 fpu_finit(&tsk->thread.fpu);
167
1da177e4 168 set_stopped_child_used_math(tsk);
aa283f49 169 return 0;
1da177e4
LT
170}
171
5b3efd50
SS
172/*
173 * The xstateregs_active() routine is the same as the fpregs_active() routine,
174 * as the "regset->n" for the xstate regset will be updated based on the feature
175 * capabilites supported by the xsave.
176 */
44210111
RM
177int fpregs_active(struct task_struct *target, const struct user_regset *regset)
178{
179 return tsk_used_math(target) ? regset->n : 0;
180}
1da177e4 181
44210111 182int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
1da177e4 183{
44210111
RM
184 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
185}
1da177e4 186
44210111
RM
187int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
188 unsigned int pos, unsigned int count,
189 void *kbuf, void __user *ubuf)
190{
aa283f49
SS
191 int ret;
192
44210111
RM
193 if (!cpu_has_fxsr)
194 return -ENODEV;
195
aa283f49
SS
196 ret = init_fpu(target);
197 if (ret)
198 return ret;
44210111 199
29104e10
SS
200 sanitize_i387_state(target);
201
44210111 202 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
86603283 203 &target->thread.fpu.state->fxsave, 0, -1);
1da177e4 204}
44210111
RM
205
206int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
207 unsigned int pos, unsigned int count,
208 const void *kbuf, const void __user *ubuf)
209{
210 int ret;
211
212 if (!cpu_has_fxsr)
213 return -ENODEV;
214
aa283f49
SS
215 ret = init_fpu(target);
216 if (ret)
217 return ret;
218
29104e10
SS
219 sanitize_i387_state(target);
220
44210111 221 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
86603283 222 &target->thread.fpu.state->fxsave, 0, -1);
44210111
RM
223
224 /*
225 * mxcsr reserved bits must be masked to zero for security reasons.
226 */
86603283 227 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
44210111 228
42deec6f
SS
229 /*
230 * update the header bits in the xsave header, indicating the
231 * presence of FP and SSE state.
232 */
233 if (cpu_has_xsave)
86603283 234 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
42deec6f 235
44210111
RM
236 return ret;
237}
238
5b3efd50
SS
239int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
240 unsigned int pos, unsigned int count,
241 void *kbuf, void __user *ubuf)
242{
243 int ret;
244
245 if (!cpu_has_xsave)
246 return -ENODEV;
247
248 ret = init_fpu(target);
249 if (ret)
250 return ret;
251
252 /*
ff7fbc72
SS
253 * Copy the 48bytes defined by the software first into the xstate
254 * memory layout in the thread struct, so that we can copy the entire
255 * xstateregs to the user using one user_regset_copyout().
5b3efd50 256 */
86603283 257 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
ff7fbc72 258 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
5b3efd50
SS
259
260 /*
ff7fbc72 261 * Copy the xstate memory layout.
5b3efd50
SS
262 */
263 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
86603283 264 &target->thread.fpu.state->xsave, 0, -1);
5b3efd50
SS
265 return ret;
266}
267
268int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
269 unsigned int pos, unsigned int count,
270 const void *kbuf, const void __user *ubuf)
271{
272 int ret;
273 struct xsave_hdr_struct *xsave_hdr;
274
275 if (!cpu_has_xsave)
276 return -ENODEV;
277
278 ret = init_fpu(target);
279 if (ret)
280 return ret;
281
282 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
86603283 283 &target->thread.fpu.state->xsave, 0, -1);
5b3efd50
SS
284
285 /*
286 * mxcsr reserved bits must be masked to zero for security reasons.
287 */
86603283 288 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
5b3efd50 289
86603283 290 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
5b3efd50
SS
291
292 xsave_hdr->xstate_bv &= pcntxt_mask;
293 /*
294 * These bits must be zero.
295 */
296 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
297
298 return ret;
299}
300
44210111 301#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1da177e4 302
1da177e4
LT
303/*
304 * FPU tag word conversions.
305 */
306
3b095a04 307static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
1da177e4
LT
308{
309 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
3b095a04 310
1da177e4 311 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
3b095a04 312 tmp = ~twd;
44210111 313 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
3b095a04
CG
314 /* and move the valid bits to the lower byte. */
315 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
316 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
317 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
f668964e 318
3b095a04 319 return tmp;
1da177e4
LT
320}
321
1da177e4 322#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
44210111
RM
323#define FP_EXP_TAG_VALID 0
324#define FP_EXP_TAG_ZERO 1
325#define FP_EXP_TAG_SPECIAL 2
326#define FP_EXP_TAG_EMPTY 3
327
328static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
329{
330 struct _fpxreg *st;
331 u32 tos = (fxsave->swd >> 11) & 7;
332 u32 twd = (unsigned long) fxsave->twd;
333 u32 tag;
334 u32 ret = 0xffff0000u;
335 int i;
1da177e4 336
44210111 337 for (i = 0; i < 8; i++, twd >>= 1) {
3b095a04
CG
338 if (twd & 0x1) {
339 st = FPREG_ADDR(fxsave, (i - tos) & 7);
1da177e4 340
3b095a04 341 switch (st->exponent & 0x7fff) {
1da177e4 342 case 0x7fff:
44210111 343 tag = FP_EXP_TAG_SPECIAL;
1da177e4
LT
344 break;
345 case 0x0000:
3b095a04
CG
346 if (!st->significand[0] &&
347 !st->significand[1] &&
348 !st->significand[2] &&
44210111
RM
349 !st->significand[3])
350 tag = FP_EXP_TAG_ZERO;
351 else
352 tag = FP_EXP_TAG_SPECIAL;
1da177e4
LT
353 break;
354 default:
44210111
RM
355 if (st->significand[3] & 0x8000)
356 tag = FP_EXP_TAG_VALID;
357 else
358 tag = FP_EXP_TAG_SPECIAL;
1da177e4
LT
359 break;
360 }
361 } else {
44210111 362 tag = FP_EXP_TAG_EMPTY;
1da177e4 363 }
44210111 364 ret |= tag << (2 * i);
1da177e4
LT
365 }
366 return ret;
367}
368
369/*
44210111 370 * FXSR floating point environment conversions.
1da177e4
LT
371 */
372
f668964e
IM
373static void
374convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
1da177e4 375{
86603283 376 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
44210111
RM
377 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
378 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
379 int i;
1da177e4 380
44210111
RM
381 env->cwd = fxsave->cwd | 0xffff0000u;
382 env->swd = fxsave->swd | 0xffff0000u;
383 env->twd = twd_fxsr_to_i387(fxsave);
384
385#ifdef CONFIG_X86_64
386 env->fip = fxsave->rip;
387 env->foo = fxsave->rdp;
388 if (tsk == current) {
389 /*
390 * should be actually ds/cs at fpu exception time, but
391 * that information is not available in 64bit mode.
392 */
f668964e
IM
393 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
394 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
1da177e4 395 } else {
44210111 396 struct pt_regs *regs = task_pt_regs(tsk);
f668964e 397
44210111
RM
398 env->fos = 0xffff0000 | tsk->thread.ds;
399 env->fcs = regs->cs;
1da177e4 400 }
44210111
RM
401#else
402 env->fip = fxsave->fip;
609b5297 403 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
44210111
RM
404 env->foo = fxsave->foo;
405 env->fos = fxsave->fos;
406#endif
1da177e4 407
44210111
RM
408 for (i = 0; i < 8; ++i)
409 memcpy(&to[i], &from[i], sizeof(to[0]));
1da177e4
LT
410}
411
44210111
RM
412static void convert_to_fxsr(struct task_struct *tsk,
413 const struct user_i387_ia32_struct *env)
1da177e4 414
1da177e4 415{
86603283 416 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
44210111
RM
417 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
418 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
419 int i;
1da177e4 420
44210111
RM
421 fxsave->cwd = env->cwd;
422 fxsave->swd = env->swd;
423 fxsave->twd = twd_i387_to_fxsr(env->twd);
424 fxsave->fop = (u16) ((u32) env->fcs >> 16);
425#ifdef CONFIG_X86_64
426 fxsave->rip = env->fip;
427 fxsave->rdp = env->foo;
428 /* cs and ds ignored */
429#else
430 fxsave->fip = env->fip;
431 fxsave->fcs = (env->fcs & 0xffff);
432 fxsave->foo = env->foo;
433 fxsave->fos = env->fos;
434#endif
1da177e4 435
44210111
RM
436 for (i = 0; i < 8; ++i)
437 memcpy(&to[i], &from[i], sizeof(from[0]));
1da177e4
LT
438}
439
44210111
RM
440int fpregs_get(struct task_struct *target, const struct user_regset *regset,
441 unsigned int pos, unsigned int count,
442 void *kbuf, void __user *ubuf)
1da177e4 443{
44210111 444 struct user_i387_ia32_struct env;
aa283f49 445 int ret;
1da177e4 446
aa283f49
SS
447 ret = init_fpu(target);
448 if (ret)
449 return ret;
1da177e4 450
e8a496ac
SS
451 if (!HAVE_HWFP)
452 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
453
f668964e 454 if (!cpu_has_fxsr) {
44210111 455 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
86603283 456 &target->thread.fpu.state->fsave, 0,
61c4628b 457 -1);
f668964e 458 }
1da177e4 459
29104e10
SS
460 sanitize_i387_state(target);
461
44210111
RM
462 if (kbuf && pos == 0 && count == sizeof(env)) {
463 convert_from_fxsr(kbuf, target);
464 return 0;
1da177e4 465 }
44210111
RM
466
467 convert_from_fxsr(&env, target);
f668964e 468
44210111 469 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
1da177e4
LT
470}
471
44210111
RM
472int fpregs_set(struct task_struct *target, const struct user_regset *regset,
473 unsigned int pos, unsigned int count,
474 const void *kbuf, const void __user *ubuf)
1da177e4 475{
44210111
RM
476 struct user_i387_ia32_struct env;
477 int ret;
1da177e4 478
aa283f49
SS
479 ret = init_fpu(target);
480 if (ret)
481 return ret;
482
29104e10
SS
483 sanitize_i387_state(target);
484
e8a496ac
SS
485 if (!HAVE_HWFP)
486 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
487
f668964e 488 if (!cpu_has_fxsr) {
44210111 489 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
86603283 490 &target->thread.fpu.state->fsave, 0, -1);
f668964e 491 }
44210111
RM
492
493 if (pos > 0 || count < sizeof(env))
494 convert_from_fxsr(&env, target);
495
496 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
497 if (!ret)
498 convert_to_fxsr(target, &env);
499
42deec6f
SS
500 /*
501 * update the header bit in the xsave header, indicating the
502 * presence of FP.
503 */
504 if (cpu_has_xsave)
86603283 505 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
44210111 506 return ret;
1da177e4
LT
507}
508
509/*
510 * Signal frame handlers.
511 */
512
44210111 513static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
1da177e4
LT
514{
515 struct task_struct *tsk = current;
86603283 516 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
1da177e4 517
61c4628b
SS
518 fp->status = fp->swd;
519 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
1da177e4
LT
520 return -1;
521 return 1;
522}
523
44210111 524static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
1da177e4
LT
525{
526 struct task_struct *tsk = current;
86603283 527 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
44210111 528 struct user_i387_ia32_struct env;
1da177e4
LT
529 int err = 0;
530
44210111
RM
531 convert_from_fxsr(&env, tsk);
532 if (__copy_to_user(buf, &env, sizeof(env)))
1da177e4
LT
533 return -1;
534
61c4628b 535 err |= __put_user(fx->swd, &buf->status);
3b095a04
CG
536 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
537 if (err)
1da177e4
LT
538 return -1;
539
c37b5efe 540 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
1da177e4
LT
541 return -1;
542 return 1;
543}
544
c37b5efe
SS
545static int save_i387_xsave(void __user *buf)
546{
04944b79 547 struct task_struct *tsk = current;
c37b5efe
SS
548 struct _fpstate_ia32 __user *fx = buf;
549 int err = 0;
550
29104e10
SS
551
552 sanitize_i387_state(tsk);
553
04944b79
SS
554 /*
555 * For legacy compatible, we always set FP/SSE bits in the bit
556 * vector while saving the state to the user context.
557 * This will enable us capturing any changes(during sigreturn) to
558 * the FP/SSE bits by the legacy applications which don't touch
559 * xstate_bv in the xsave header.
560 *
561 * xsave aware applications can change the xstate_bv in the xsave
562 * header as well as change any contents in the memory layout.
563 * xrestore as part of sigreturn will capture all the changes.
564 */
86603283 565 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
04944b79 566
c37b5efe
SS
567 if (save_i387_fxsave(fx) < 0)
568 return -1;
569
570 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
571 sizeof(struct _fpx_sw_bytes));
572 err |= __put_user(FP_XSTATE_MAGIC2,
573 (__u32 __user *) (buf + sig_xstate_ia32_size
574 - FP_XSTATE_MAGIC2_SIZE));
575 if (err)
576 return -1;
577
578 return 1;
579}
580
ab513701 581int save_i387_xstate_ia32(void __user *buf)
1da177e4 582{
ab513701
SS
583 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
584 struct task_struct *tsk = current;
585
3b095a04 586 if (!used_math())
1da177e4 587 return 0;
ab513701
SS
588
589 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
590 return -EACCES;
f668964e
IM
591 /*
592 * This will cause a "finit" to be triggered by the next
1da177e4
LT
593 * attempted FPU operation by the 'current' process.
594 */
595 clear_used_math();
596
f668964e 597 if (!HAVE_HWFP) {
44210111
RM
598 return fpregs_soft_get(current, NULL,
599 0, sizeof(struct user_i387_ia32_struct),
ab513701 600 NULL, fp) ? -1 : 1;
1da177e4 601 }
f668964e 602
ab513701
SS
603 unlazy_fpu(tsk);
604
c37b5efe
SS
605 if (cpu_has_xsave)
606 return save_i387_xsave(fp);
f668964e 607 if (cpu_has_fxsr)
ab513701 608 return save_i387_fxsave(fp);
f668964e 609 else
ab513701 610 return save_i387_fsave(fp);
1da177e4
LT
611}
612
44210111 613static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
1da177e4
LT
614{
615 struct task_struct *tsk = current;
f668964e 616
86603283 617 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
3b095a04 618 sizeof(struct i387_fsave_struct));
1da177e4
LT
619}
620
c37b5efe
SS
621static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
622 unsigned int size)
1da177e4 623{
1da177e4 624 struct task_struct *tsk = current;
44210111 625 struct user_i387_ia32_struct env;
f668964e
IM
626 int err;
627
86603283 628 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
c37b5efe 629 size);
1da177e4 630 /* mxcsr reserved bits must be masked to zero for security reasons */
86603283 631 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
44210111
RM
632 if (err || __copy_from_user(&env, buf, sizeof(env)))
633 return 1;
634 convert_to_fxsr(tsk, &env);
f668964e 635
44210111 636 return 0;
1da177e4
LT
637}
638
c37b5efe
SS
639static int restore_i387_xsave(void __user *buf)
640{
641 struct _fpx_sw_bytes fx_sw_user;
642 struct _fpstate_ia32 __user *fx_user =
643 ((struct _fpstate_ia32 __user *) buf);
644 struct i387_fxsave_struct __user *fx =
645 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
646 struct xsave_hdr_struct *xsave_hdr =
86603283 647 &current->thread.fpu.state->xsave.xsave_hdr;
6152e4b1 648 u64 mask;
c37b5efe
SS
649 int err;
650
651 if (check_for_xstate(fx, buf, &fx_sw_user))
652 goto fx_only;
653
6152e4b1 654 mask = fx_sw_user.xstate_bv;
c37b5efe
SS
655
656 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
657
6152e4b1 658 xsave_hdr->xstate_bv &= pcntxt_mask;
c37b5efe
SS
659 /*
660 * These bits must be zero.
661 */
662 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
663
664 /*
665 * Init the state that is not present in the memory layout
666 * and enabled by the OS.
667 */
6152e4b1
PA
668 mask = ~(pcntxt_mask & ~mask);
669 xsave_hdr->xstate_bv &= mask;
c37b5efe
SS
670
671 return err;
672fx_only:
673 /*
674 * Couldn't find the extended state information in the memory
675 * layout. Restore the FP/SSE and init the other extended state
676 * enabled by the OS.
677 */
678 xsave_hdr->xstate_bv = XSTATE_FPSSE;
679 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
680}
681
ab513701 682int restore_i387_xstate_ia32(void __user *buf)
1da177e4
LT
683{
684 int err;
e8a496ac 685 struct task_struct *tsk = current;
ab513701 686 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
1da177e4 687
e8a496ac 688 if (HAVE_HWFP)
fd3c3ed5
SS
689 clear_fpu(tsk);
690
ab513701
SS
691 if (!buf) {
692 if (used_math()) {
693 clear_fpu(tsk);
694 clear_used_math();
695 }
696
697 return 0;
698 } else
699 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
700 return -EACCES;
701
e8a496ac
SS
702 if (!used_math()) {
703 err = init_fpu(tsk);
704 if (err)
705 return err;
706 }
fd3c3ed5 707
e8a496ac 708 if (HAVE_HWFP) {
c37b5efe
SS
709 if (cpu_has_xsave)
710 err = restore_i387_xsave(buf);
711 else if (cpu_has_fxsr)
712 err = restore_i387_fxsave(fp, sizeof(struct
713 i387_fxsave_struct));
f668964e 714 else
ab513701 715 err = restore_i387_fsave(fp);
1da177e4 716 } else {
44210111
RM
717 err = fpregs_soft_set(current, NULL,
718 0, sizeof(struct user_i387_ia32_struct),
ab513701 719 NULL, fp) != 0;
1da177e4
LT
720 }
721 set_used_math();
f668964e 722
1da177e4
LT
723 return err;
724}
725
1da177e4
LT
726/*
727 * FPU state for core dumps.
60b3b9af
RM
728 * This is only used for a.out dumps now.
729 * It is declared generically using elf_fpregset_t (which is
730 * struct user_i387_struct) but is in fact only used for 32-bit
731 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
1da177e4 732 */
3b095a04 733int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
1da177e4 734{
1da177e4 735 struct task_struct *tsk = current;
f668964e 736 int fpvalid;
1da177e4
LT
737
738 fpvalid = !!used_math();
60b3b9af
RM
739 if (fpvalid)
740 fpvalid = !fpregs_get(tsk, NULL,
741 0, sizeof(struct user_i387_ia32_struct),
742 fpu, NULL);
1da177e4
LT
743
744 return fpvalid;
745}
129f6946 746EXPORT_SYMBOL(dump_fpu);
1da177e4 747
60b3b9af 748#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */
This page took 0.570346 seconds and 5 git commands to generate.