blob: f3775f5ef4ab7f60008436c7853042742cca5c2d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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 */
Alexey Dobriyan129f6942005-06-23 00:08:33 -07008#include <linux/module.h>
Roland McGrath44210112008-01-30 13:31:50 +01009#include <linux/regset.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010010#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/sigcontext.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010014#include <asm/processor.h>
15#include <asm/math_emu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/uaccess.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010017#include <asm/ptrace.h>
18#include <asm/i387.h>
19#include <asm/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Roland McGrath44210112008-01-30 13:31:50 +010021#ifdef CONFIG_X86_64
Ingo Molnarf6689642008-03-05 15:37:32 +010022# include <asm/sigcontext32.h>
23# include <asm/user32.h>
Roland McGrath44210112008-01-30 13:31:50 +010024#else
Suresh Siddhaab513702008-07-29 10:29:22 -070025# define save_i387_xstate_ia32 save_i387_xstate
26# define restore_i387_xstate_ia32 restore_i387_xstate
Ingo Molnarf6689642008-03-05 15:37:32 +010027# define _fpstate_ia32 _fpstate
Suresh Siddhaab513702008-07-29 10:29:22 -070028# define _xstate_ia32 _xstate
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070029# define sig_xstate_ia32_size sig_xstate_size
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070030# define fx_sw_reserved_ia32 fx_sw_reserved
Ingo Molnarf6689642008-03-05 15:37:32 +010031# define user_i387_ia32_struct user_i387_struct
32# define user32_fxsr_struct user_fxsr_struct
Roland McGrath44210112008-01-30 13:31:50 +010033#endif
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#ifdef CONFIG_MATH_EMULATION
Ingo Molnarf6689642008-03-05 15:37:32 +010036# define HAVE_HWFP (boot_cpu_data.hard_math)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#else
Ingo Molnarf6689642008-03-05 15:37:32 +010038# define HAVE_HWFP 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#endif
40
Ingo Molnarf6689642008-03-05 15:37:32 +010041static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
Suresh Siddha61c46282008-03-10 15:28:04 -070042unsigned int xstate_size;
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070043unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32);
Suresh Siddha61c46282008-03-10 15:28:04 -070044static struct i387_fxsave_struct fx_scratch __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Suresh Siddha61c46282008-03-10 15:28:04 -070046void __cpuinit mxcsr_feature_mask_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 unsigned long mask = 0;
Ingo Molnarf6689642008-03-05 15:37:32 +010049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 clts();
51 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -070052 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
53 asm volatile("fxsave %0" : : "m" (fx_scratch));
54 mask = fx_scratch.mxcsr_mask;
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +010055 if (mask == 0)
56 mask = 0x0000ffbf;
57 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 mxcsr_feature_mask &= mask;
59 stts();
60}
61
Robert Richter0e49bf62010-07-21 19:03:52 +020062static void __cpuinit init_thread_xstate(void)
Suresh Siddha61c46282008-03-10 15:28:04 -070063{
Robert Richter0e49bf62010-07-21 19:03:52 +020064 /*
65 * Note that xstate_size might be overwriten later during
66 * xsave_init().
67 */
68
Suresh Siddhae8a496a2008-05-23 16:26:37 -070069 if (!HAVE_HWFP) {
Robert Richter1f999ab2010-07-21 19:03:57 +020070 /*
71 * Disable xsave as we do not support it if i387
72 * emulation is enabled.
73 */
74 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
75 setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
Suresh Siddhae8a496a2008-05-23 16:26:37 -070076 xstate_size = sizeof(struct i387_soft_struct);
77 return;
78 }
79
Suresh Siddha61c46282008-03-10 15:28:04 -070080 if (cpu_has_fxsr)
81 xstate_size = sizeof(struct i387_fxsave_struct);
82#ifdef CONFIG_X86_32
83 else
84 xstate_size = sizeof(struct i387_fsave_struct);
85#endif
Suresh Siddha61c46282008-03-10 15:28:04 -070086}
87
Roland McGrath44210112008-01-30 13:31:50 +010088/*
89 * Called at bootup to set up the initial FPU state that is later cloned
90 * into all processes.
91 */
Robert Richter0e49bf62010-07-21 19:03:52 +020092
Roland McGrath44210112008-01-30 13:31:50 +010093void __cpuinit fpu_init(void)
94{
Brian Gerst6ac8bac2010-09-03 21:17:09 -040095 unsigned long cr0;
96 unsigned long cr4_mask = 0;
Ingo Molnarf6689642008-03-05 15:37:32 +010097
Brian Gerst6ac8bac2010-09-03 21:17:09 -040098 if (cpu_has_fxsr)
99 cr4_mask |= X86_CR4_OSFXSR;
100 if (cpu_has_xmm)
101 cr4_mask |= X86_CR4_OSXMMEXCPT;
102 if (cr4_mask)
103 set_in_cr4(cr4_mask);
Roland McGrath44210112008-01-30 13:31:50 +0100104
Brian Gerst6ac8bac2010-09-03 21:17:09 -0400105 cr0 = read_cr0();
106 cr0 &= ~(X86_CR0_TS|X86_CR0_EM); /* clear TS and EM */
107 if (!HAVE_HWFP)
108 cr0 |= X86_CR0_EM;
109 write_cr0(cr0);
Roland McGrath44210112008-01-30 13:31:50 +0100110
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700111 if (!smp_processor_id())
112 init_thread_xstate();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700113
Roland McGrath44210112008-01-30 13:31:50 +0100114 mxcsr_feature_mask_init();
115 /* clean state in init */
Avi Kivityc9ad4882010-05-06 11:45:45 +0300116 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100117 clear_used_math();
118}
Robert Richter0e49bf62010-07-21 19:03:52 +0200119
Sheng Yang5ee481d2010-05-17 17:22:23 +0800120void fpu_finit(struct fpu *fpu)
Avi Kivity86603282010-05-06 11:45:46 +0300121{
122#ifdef CONFIG_X86_32
123 if (!HAVE_HWFP) {
124 finit_soft_fpu(&fpu->state->soft);
125 return;
126 }
127#endif
128
129 if (cpu_has_fxsr) {
130 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
131
132 memset(fx, 0, xstate_size);
133 fx->cwd = 0x37f;
134 if (cpu_has_xmm)
135 fx->mxcsr = MXCSR_DEFAULT;
136 } else {
137 struct i387_fsave_struct *fp = &fpu->state->fsave;
138 memset(fp, 0, xstate_size);
139 fp->cwd = 0xffff037fu;
140 fp->swd = 0xffff0000u;
141 fp->twd = 0xffffffffu;
142 fp->fos = 0xffff0000u;
143 }
144}
Sheng Yang5ee481d2010-05-17 17:22:23 +0800145EXPORT_SYMBOL_GPL(fpu_finit);
Avi Kivity86603282010-05-06 11:45:46 +0300146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
148 * The _current_ task is using the FPU for the first time
149 * so initialize it and set the mxcsr to its default
150 * value at reset if we support XMM instructions and then
151 * remeber the current task has used the FPU.
152 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700153int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Avi Kivity86603282010-05-06 11:45:46 +0300155 int ret;
156
Roland McGrath44210112008-01-30 13:31:50 +0100157 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700158 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100159 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700160 return 0;
161 }
162
163 /*
164 * Memory allocation at the first usage of the FPU and other state.
165 */
Avi Kivity86603282010-05-06 11:45:46 +0300166 ret = fpu_alloc(&tsk->thread.fpu);
167 if (ret)
168 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100169
Avi Kivity86603282010-05-06 11:45:46 +0300170 fpu_finit(&tsk->thread.fpu);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700173 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800176/*
177 * The xstateregs_active() routine is the same as the fpregs_active() routine,
178 * as the "regset->n" for the xstate regset will be updated based on the feature
179 * capabilites supported by the xsave.
180 */
Roland McGrath44210112008-01-30 13:31:50 +0100181int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Roland McGrath44210112008-01-30 13:31:50 +0100183 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
Roland McGrath44210112008-01-30 13:31:50 +0100185
186int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
187{
188 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
189}
190
191int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
192 unsigned int pos, unsigned int count,
193 void *kbuf, void __user *ubuf)
194{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700195 int ret;
196
Roland McGrath44210112008-01-30 13:31:50 +0100197 if (!cpu_has_fxsr)
198 return -ENODEV;
199
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700200 ret = init_fpu(target);
201 if (ret)
202 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100203
Suresh Siddha29104e12010-07-19 16:05:49 -0700204 sanitize_i387_state(target);
205
Roland McGrath44210112008-01-30 13:31:50 +0100206 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300207 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100208}
209
210int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
211 unsigned int pos, unsigned int count,
212 const void *kbuf, const void __user *ubuf)
213{
214 int ret;
215
216 if (!cpu_has_fxsr)
217 return -ENODEV;
218
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700219 ret = init_fpu(target);
220 if (ret)
221 return ret;
222
Suresh Siddha29104e12010-07-19 16:05:49 -0700223 sanitize_i387_state(target);
224
Roland McGrath44210112008-01-30 13:31:50 +0100225 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300226 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100227
228 /*
229 * mxcsr reserved bits must be masked to zero for security reasons.
230 */
Avi Kivity86603282010-05-06 11:45:46 +0300231 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100232
Suresh Siddha42deec62008-07-29 10:29:26 -0700233 /*
234 * update the header bits in the xsave header, indicating the
235 * presence of FP and SSE state.
236 */
237 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300238 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha42deec62008-07-29 10:29:26 -0700239
Roland McGrath44210112008-01-30 13:31:50 +0100240 return ret;
241}
242
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800243int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
244 unsigned int pos, unsigned int count,
245 void *kbuf, void __user *ubuf)
246{
247 int ret;
248
249 if (!cpu_has_xsave)
250 return -ENODEV;
251
252 ret = init_fpu(target);
253 if (ret)
254 return ret;
255
256 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800257 * Copy the 48bytes defined by the software first into the xstate
258 * memory layout in the thread struct, so that we can copy the entire
259 * xstateregs to the user using one user_regset_copyout().
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800260 */
Avi Kivity86603282010-05-06 11:45:46 +0300261 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800262 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800263
264 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800265 * Copy the xstate memory layout.
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800266 */
267 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300268 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800269 return ret;
270}
271
272int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
273 unsigned int pos, unsigned int count,
274 const void *kbuf, const void __user *ubuf)
275{
276 int ret;
277 struct xsave_hdr_struct *xsave_hdr;
278
279 if (!cpu_has_xsave)
280 return -ENODEV;
281
282 ret = init_fpu(target);
283 if (ret)
284 return ret;
285
286 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300287 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800288
289 /*
290 * mxcsr reserved bits must be masked to zero for security reasons.
291 */
Avi Kivity86603282010-05-06 11:45:46 +0300292 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800293
Avi Kivity86603282010-05-06 11:45:46 +0300294 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800295
296 xsave_hdr->xstate_bv &= pcntxt_mask;
297 /*
298 * These bits must be zero.
299 */
300 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
301
302 return ret;
303}
304
Roland McGrath44210112008-01-30 13:31:50 +0100305#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * FPU tag word conversions.
309 */
310
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100311static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100316 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100317 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100318 /* and move the valid bits to the lower byte. */
319 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
320 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
321 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100322
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100323 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Roland McGrath44210112008-01-30 13:31:50 +0100326#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
327#define FP_EXP_TAG_VALID 0
328#define FP_EXP_TAG_ZERO 1
329#define FP_EXP_TAG_SPECIAL 2
330#define FP_EXP_TAG_EMPTY 3
331
332static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Roland McGrath44210112008-01-30 13:31:50 +0100334 struct _fpxreg *st;
335 u32 tos = (fxsave->swd >> 11) & 7;
336 u32 twd = (unsigned long) fxsave->twd;
337 u32 tag;
338 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 int i;
340
Roland McGrath44210112008-01-30 13:31:50 +0100341 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100342 if (twd & 0x1) {
343 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100345 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100347 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 break;
349 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100350 if (!st->significand[0] &&
351 !st->significand[1] &&
352 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100353 !st->significand[3])
354 tag = FP_EXP_TAG_ZERO;
355 else
356 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 break;
358 default:
Roland McGrath44210112008-01-30 13:31:50 +0100359 if (st->significand[3] & 0x8000)
360 tag = FP_EXP_TAG_VALID;
361 else
362 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 break;
364 }
365 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100366 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Roland McGrath44210112008-01-30 13:31:50 +0100368 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370 return ret;
371}
372
373/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * FXSR floating point environment conversions.
375 */
376
Ingo Molnarf6689642008-03-05 15:37:32 +0100377static void
378convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Avi Kivity86603282010-05-06 11:45:46 +0300380 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100381 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
382 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int i;
384
Roland McGrath44210112008-01-30 13:31:50 +0100385 env->cwd = fxsave->cwd | 0xffff0000u;
386 env->swd = fxsave->swd | 0xffff0000u;
387 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Roland McGrath44210112008-01-30 13:31:50 +0100389#ifdef CONFIG_X86_64
390 env->fip = fxsave->rip;
391 env->foo = fxsave->rdp;
Brian Gerst10c11f32010-09-03 21:17:13 -0400392 /*
393 * should be actually ds/cs at fpu exception time, but
394 * that information is not available in 64bit mode.
395 */
396 env->fcs = task_pt_regs(tsk)->cs;
Roland McGrath44210112008-01-30 13:31:50 +0100397 if (tsk == current) {
Brian Gerst10c11f32010-09-03 21:17:13 -0400398 savesegment(ds, env->fos);
Roland McGrath44210112008-01-30 13:31:50 +0100399 } else {
Brian Gerst10c11f32010-09-03 21:17:13 -0400400 env->fos = tsk->thread.ds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Brian Gerst10c11f32010-09-03 21:17:13 -0400402 env->fos |= 0xffff0000;
Roland McGrath44210112008-01-30 13:31:50 +0100403#else
404 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000405 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100406 env->foo = fxsave->foo;
407 env->fos = fxsave->fos;
408#endif
409
410 for (i = 0; i < 8; ++i)
411 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Roland McGrath44210112008-01-30 13:31:50 +0100414static void convert_to_fxsr(struct task_struct *tsk,
415 const struct user_i387_ia32_struct *env)
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Avi Kivity86603282010-05-06 11:45:46 +0300418 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100419 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
420 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int i;
422
Roland McGrath44210112008-01-30 13:31:50 +0100423 fxsave->cwd = env->cwd;
424 fxsave->swd = env->swd;
425 fxsave->twd = twd_i387_to_fxsr(env->twd);
426 fxsave->fop = (u16) ((u32) env->fcs >> 16);
427#ifdef CONFIG_X86_64
428 fxsave->rip = env->fip;
429 fxsave->rdp = env->foo;
430 /* cs and ds ignored */
431#else
432 fxsave->fip = env->fip;
433 fxsave->fcs = (env->fcs & 0xffff);
434 fxsave->foo = env->foo;
435 fxsave->fos = env->fos;
436#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Roland McGrath44210112008-01-30 13:31:50 +0100438 for (i = 0; i < 8; ++i)
439 memcpy(&to[i], &from[i], sizeof(from[0]));
440}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Roland McGrath44210112008-01-30 13:31:50 +0100442int fpregs_get(struct task_struct *target, const struct user_regset *regset,
443 unsigned int pos, unsigned int count,
444 void *kbuf, void __user *ubuf)
445{
446 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700447 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700449 ret = init_fpu(target);
450 if (ret)
451 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100452
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700453 if (!HAVE_HWFP)
454 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
455
Ingo Molnarf6689642008-03-05 15:37:32 +0100456 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100457 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300458 &target->thread.fpu.state->fsave, 0,
Suresh Siddha61c46282008-03-10 15:28:04 -0700459 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100460 }
Roland McGrath44210112008-01-30 13:31:50 +0100461
Suresh Siddha29104e12010-07-19 16:05:49 -0700462 sanitize_i387_state(target);
463
Roland McGrath44210112008-01-30 13:31:50 +0100464 if (kbuf && pos == 0 && count == sizeof(env)) {
465 convert_from_fxsr(kbuf, target);
466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
Roland McGrath44210112008-01-30 13:31:50 +0100468
469 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100470
Roland McGrath44210112008-01-30 13:31:50 +0100471 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
472}
473
474int fpregs_set(struct task_struct *target, const struct user_regset *regset,
475 unsigned int pos, unsigned int count,
476 const void *kbuf, const void __user *ubuf)
477{
478 struct user_i387_ia32_struct env;
479 int ret;
480
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700481 ret = init_fpu(target);
482 if (ret)
483 return ret;
484
Suresh Siddha29104e12010-07-19 16:05:49 -0700485 sanitize_i387_state(target);
486
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700487 if (!HAVE_HWFP)
488 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
489
Ingo Molnarf6689642008-03-05 15:37:32 +0100490 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100491 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300492 &target->thread.fpu.state->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100493 }
Roland McGrath44210112008-01-30 13:31:50 +0100494
495 if (pos > 0 || count < sizeof(env))
496 convert_from_fxsr(&env, target);
497
498 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
499 if (!ret)
500 convert_to_fxsr(target, &env);
501
Suresh Siddha42deec62008-07-29 10:29:26 -0700502 /*
503 * update the header bit in the xsave header, indicating the
504 * presence of FP.
505 */
506 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300507 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100508 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511/*
512 * Signal frame handlers.
513 */
514
Roland McGrath44210112008-01-30 13:31:50 +0100515static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300518 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Suresh Siddha61c46282008-03-10 15:28:04 -0700520 fp->status = fp->swd;
521 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return -1;
523 return 1;
524}
525
Roland McGrath44210112008-01-30 13:31:50 +0100526static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300529 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100530 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 int err = 0;
532
Roland McGrath44210112008-01-30 13:31:50 +0100533 convert_from_fxsr(&env, tsk);
534 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return -1;
536
Suresh Siddha61c46282008-03-10 15:28:04 -0700537 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100538 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
539 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return -1;
541
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700542 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -1;
544 return 1;
545}
546
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700547static int save_i387_xsave(void __user *buf)
548{
Suresh Siddha04944b72008-10-07 14:04:28 -0700549 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700550 struct _fpstate_ia32 __user *fx = buf;
551 int err = 0;
552
Suresh Siddha29104e12010-07-19 16:05:49 -0700553
554 sanitize_i387_state(tsk);
555
Suresh Siddha04944b72008-10-07 14:04:28 -0700556 /*
557 * For legacy compatible, we always set FP/SSE bits in the bit
558 * vector while saving the state to the user context.
559 * This will enable us capturing any changes(during sigreturn) to
560 * the FP/SSE bits by the legacy applications which don't touch
561 * xstate_bv in the xsave header.
562 *
563 * xsave aware applications can change the xstate_bv in the xsave
564 * header as well as change any contents in the memory layout.
565 * xrestore as part of sigreturn will capture all the changes.
566 */
Avi Kivity86603282010-05-06 11:45:46 +0300567 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha04944b72008-10-07 14:04:28 -0700568
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700569 if (save_i387_fxsave(fx) < 0)
570 return -1;
571
572 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
573 sizeof(struct _fpx_sw_bytes));
574 err |= __put_user(FP_XSTATE_MAGIC2,
575 (__u32 __user *) (buf + sig_xstate_ia32_size
576 - FP_XSTATE_MAGIC2_SIZE));
577 if (err)
578 return -1;
579
580 return 1;
581}
582
Suresh Siddhaab513702008-07-29 10:29:22 -0700583int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Suresh Siddhaab513702008-07-29 10:29:22 -0700585 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
586 struct task_struct *tsk = current;
587
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100588 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700590
591 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
592 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100593 /*
594 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * attempted FPU operation by the 'current' process.
596 */
597 clear_used_math();
598
Ingo Molnarf6689642008-03-05 15:37:32 +0100599 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100600 return fpregs_soft_get(current, NULL,
601 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700602 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100604
Suresh Siddhaab513702008-07-29 10:29:22 -0700605 unlazy_fpu(tsk);
606
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700607 if (cpu_has_xsave)
608 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100609 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700610 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100611 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700612 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Roland McGrath44210112008-01-30 13:31:50 +0100615static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100618
Avi Kivity86603282010-05-06 11:45:46 +0300619 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100620 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700623static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
624 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100627 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100628 int err;
629
Avi Kivity86603282010-05-06 11:45:46 +0300630 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700631 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* mxcsr reserved bits must be masked to zero for security reasons */
Avi Kivity86603282010-05-06 11:45:46 +0300633 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100634 if (err || __copy_from_user(&env, buf, sizeof(env)))
635 return 1;
636 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100637
Roland McGrath44210112008-01-30 13:31:50 +0100638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700641static int restore_i387_xsave(void __user *buf)
642{
643 struct _fpx_sw_bytes fx_sw_user;
644 struct _fpstate_ia32 __user *fx_user =
645 ((struct _fpstate_ia32 __user *) buf);
646 struct i387_fxsave_struct __user *fx =
647 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
648 struct xsave_hdr_struct *xsave_hdr =
Avi Kivity86603282010-05-06 11:45:46 +0300649 &current->thread.fpu.state->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700650 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700651 int err;
652
653 if (check_for_xstate(fx, buf, &fx_sw_user))
654 goto fx_only;
655
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700656 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700657
658 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
659
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700660 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700661 /*
662 * These bits must be zero.
663 */
664 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
665
666 /*
667 * Init the state that is not present in the memory layout
668 * and enabled by the OS.
669 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700670 mask = ~(pcntxt_mask & ~mask);
671 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700672
673 return err;
674fx_only:
675 /*
676 * Couldn't find the extended state information in the memory
677 * layout. Restore the FP/SSE and init the other extended state
678 * enabled by the OS.
679 */
680 xsave_hdr->xstate_bv = XSTATE_FPSSE;
681 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
682}
683
Suresh Siddhaab513702008-07-29 10:29:22 -0700684int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700687 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700688 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700690 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700691 clear_fpu(tsk);
692
Suresh Siddhaab513702008-07-29 10:29:22 -0700693 if (!buf) {
694 if (used_math()) {
695 clear_fpu(tsk);
696 clear_used_math();
697 }
698
699 return 0;
700 } else
701 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
702 return -EACCES;
703
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700704 if (!used_math()) {
705 err = init_fpu(tsk);
706 if (err)
707 return err;
708 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700709
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700710 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700711 if (cpu_has_xsave)
712 err = restore_i387_xsave(buf);
713 else if (cpu_has_fxsr)
714 err = restore_i387_fxsave(fp, sizeof(struct
715 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100716 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700717 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100719 err = fpregs_soft_set(current, NULL,
720 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700721 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return err;
726}
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
729 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100730 * This is only used for a.out dumps now.
731 * It is declared generically using elf_fpregset_t (which is
732 * struct user_i387_struct) but is in fact only used for 32-bit
733 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100735int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100738 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100741 if (fpvalid)
742 fpvalid = !fpregs_get(tsk, NULL,
743 0, sizeof(struct user_i387_ia32_struct),
744 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 return fpvalid;
747}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700748EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100750#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */