blob: 2605c50b11d3a0e7708b0761f93eee9fe91295e4 [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#ifdef CONFIG_X86_64
89/*
90 * Called at bootup to set up the initial FPU state that is later cloned
91 * into all processes.
92 */
Robert Richter0e49bf62010-07-21 19:03:52 +020093
Roland McGrath44210112008-01-30 13:31:50 +010094void __cpuinit fpu_init(void)
95{
96 unsigned long oldcr0 = read_cr0();
Ingo Molnarf6689642008-03-05 15:37:32 +010097
Roland McGrath44210112008-01-30 13:31:50 +010098 set_in_cr4(X86_CR4_OSFXSR);
99 set_in_cr4(X86_CR4_OSXMMEXCPT);
100
Ingo Molnarf6689642008-03-05 15:37:32 +0100101 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
Roland McGrath44210112008-01-30 13:31:50 +0100102
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700103 if (!smp_processor_id())
104 init_thread_xstate();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -0700105
Roland McGrath44210112008-01-30 13:31:50 +0100106 mxcsr_feature_mask_init();
107 /* clean state in init */
Avi Kivityc9ad4882010-05-06 11:45:45 +0300108 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100109 clear_used_math();
110}
Robert Richter0e49bf62010-07-21 19:03:52 +0200111
112#else /* CONFIG_X86_64 */
113
114void __cpuinit fpu_init(void)
115{
116 if (!smp_processor_id())
117 init_thread_xstate();
118}
119
120#endif /* CONFIG_X86_32 */
Roland McGrath44210112008-01-30 13:31:50 +0100121
Sheng Yang5ee481d2010-05-17 17:22:23 +0800122void fpu_finit(struct fpu *fpu)
Avi Kivity86603282010-05-06 11:45:46 +0300123{
124#ifdef CONFIG_X86_32
125 if (!HAVE_HWFP) {
126 finit_soft_fpu(&fpu->state->soft);
127 return;
128 }
129#endif
130
131 if (cpu_has_fxsr) {
132 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
133
134 memset(fx, 0, xstate_size);
135 fx->cwd = 0x37f;
136 if (cpu_has_xmm)
137 fx->mxcsr = MXCSR_DEFAULT;
138 } else {
139 struct i387_fsave_struct *fp = &fpu->state->fsave;
140 memset(fp, 0, xstate_size);
141 fp->cwd = 0xffff037fu;
142 fp->swd = 0xffff0000u;
143 fp->twd = 0xffffffffu;
144 fp->fos = 0xffff0000u;
145 }
146}
Sheng Yang5ee481d2010-05-17 17:22:23 +0800147EXPORT_SYMBOL_GPL(fpu_finit);
Avi Kivity86603282010-05-06 11:45:46 +0300148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * The _current_ task is using the FPU for the first time
151 * so initialize it and set the mxcsr to its default
152 * value at reset if we support XMM instructions and then
153 * remeber the current task has used the FPU.
154 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700155int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Avi Kivity86603282010-05-06 11:45:46 +0300157 int ret;
158
Roland McGrath44210112008-01-30 13:31:50 +0100159 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700160 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100161 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700162 return 0;
163 }
164
165 /*
166 * Memory allocation at the first usage of the FPU and other state.
167 */
Avi Kivity86603282010-05-06 11:45:46 +0300168 ret = fpu_alloc(&tsk->thread.fpu);
169 if (ret)
170 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100171
Avi Kivity86603282010-05-06 11:45:46 +0300172 fpu_finit(&tsk->thread.fpu);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800178/*
179 * The xstateregs_active() routine is the same as the fpregs_active() routine,
180 * as the "regset->n" for the xstate regset will be updated based on the feature
181 * capabilites supported by the xsave.
182 */
Roland McGrath44210112008-01-30 13:31:50 +0100183int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Roland McGrath44210112008-01-30 13:31:50 +0100185 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
Roland McGrath44210112008-01-30 13:31:50 +0100187
188int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
189{
190 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
191}
192
193int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
194 unsigned int pos, unsigned int count,
195 void *kbuf, void __user *ubuf)
196{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700197 int ret;
198
Roland McGrath44210112008-01-30 13:31:50 +0100199 if (!cpu_has_fxsr)
200 return -ENODEV;
201
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700202 ret = init_fpu(target);
203 if (ret)
204 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100205
Suresh Siddha29104e12010-07-19 16:05:49 -0700206 sanitize_i387_state(target);
207
Roland McGrath44210112008-01-30 13:31:50 +0100208 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300209 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100210}
211
212int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
213 unsigned int pos, unsigned int count,
214 const void *kbuf, const void __user *ubuf)
215{
216 int ret;
217
218 if (!cpu_has_fxsr)
219 return -ENODEV;
220
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700221 ret = init_fpu(target);
222 if (ret)
223 return ret;
224
Suresh Siddha29104e12010-07-19 16:05:49 -0700225 sanitize_i387_state(target);
226
Roland McGrath44210112008-01-30 13:31:50 +0100227 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300228 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100229
230 /*
231 * mxcsr reserved bits must be masked to zero for security reasons.
232 */
Avi Kivity86603282010-05-06 11:45:46 +0300233 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100234
Suresh Siddha42deec62008-07-29 10:29:26 -0700235 /*
236 * update the header bits in the xsave header, indicating the
237 * presence of FP and SSE state.
238 */
239 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300240 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha42deec62008-07-29 10:29:26 -0700241
Roland McGrath44210112008-01-30 13:31:50 +0100242 return ret;
243}
244
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800245int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
246 unsigned int pos, unsigned int count,
247 void *kbuf, void __user *ubuf)
248{
249 int ret;
250
251 if (!cpu_has_xsave)
252 return -ENODEV;
253
254 ret = init_fpu(target);
255 if (ret)
256 return ret;
257
258 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800259 * Copy the 48bytes defined by the software first into the xstate
260 * memory layout in the thread struct, so that we can copy the entire
261 * xstateregs to the user using one user_regset_copyout().
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800262 */
Avi Kivity86603282010-05-06 11:45:46 +0300263 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800264 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800265
266 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800267 * Copy the xstate memory layout.
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800268 */
269 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300270 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800271 return ret;
272}
273
274int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
275 unsigned int pos, unsigned int count,
276 const void *kbuf, const void __user *ubuf)
277{
278 int ret;
279 struct xsave_hdr_struct *xsave_hdr;
280
281 if (!cpu_has_xsave)
282 return -ENODEV;
283
284 ret = init_fpu(target);
285 if (ret)
286 return ret;
287
288 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300289 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800290
291 /*
292 * mxcsr reserved bits must be masked to zero for security reasons.
293 */
Avi Kivity86603282010-05-06 11:45:46 +0300294 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800295
Avi Kivity86603282010-05-06 11:45:46 +0300296 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800297
298 xsave_hdr->xstate_bv &= pcntxt_mask;
299 /*
300 * These bits must be zero.
301 */
302 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
303
304 return ret;
305}
306
Roland McGrath44210112008-01-30 13:31:50 +0100307#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/*
310 * FPU tag word conversions.
311 */
312
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100313static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100318 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100319 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100320 /* and move the valid bits to the lower byte. */
321 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
322 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
323 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100324
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100325 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Roland McGrath44210112008-01-30 13:31:50 +0100328#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
329#define FP_EXP_TAG_VALID 0
330#define FP_EXP_TAG_ZERO 1
331#define FP_EXP_TAG_SPECIAL 2
332#define FP_EXP_TAG_EMPTY 3
333
334static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Roland McGrath44210112008-01-30 13:31:50 +0100336 struct _fpxreg *st;
337 u32 tos = (fxsave->swd >> 11) & 7;
338 u32 twd = (unsigned long) fxsave->twd;
339 u32 tag;
340 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int i;
342
Roland McGrath44210112008-01-30 13:31:50 +0100343 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100344 if (twd & 0x1) {
345 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100347 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100349 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
351 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100352 if (!st->significand[0] &&
353 !st->significand[1] &&
354 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100355 !st->significand[3])
356 tag = FP_EXP_TAG_ZERO;
357 else
358 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 default:
Roland McGrath44210112008-01-30 13:31:50 +0100361 if (st->significand[3] & 0x8000)
362 tag = FP_EXP_TAG_VALID;
363 else
364 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 break;
366 }
367 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100368 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Roland McGrath44210112008-01-30 13:31:50 +0100370 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 return ret;
373}
374
375/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * FXSR floating point environment conversions.
377 */
378
Ingo Molnarf6689642008-03-05 15:37:32 +0100379static void
380convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Avi Kivity86603282010-05-06 11:45:46 +0300382 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100383 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
384 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 int i;
386
Roland McGrath44210112008-01-30 13:31:50 +0100387 env->cwd = fxsave->cwd | 0xffff0000u;
388 env->swd = fxsave->swd | 0xffff0000u;
389 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Roland McGrath44210112008-01-30 13:31:50 +0100391#ifdef CONFIG_X86_64
392 env->fip = fxsave->rip;
393 env->foo = fxsave->rdp;
394 if (tsk == current) {
395 /*
396 * should be actually ds/cs at fpu exception time, but
397 * that information is not available in 64bit mode.
398 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100399 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
400 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100401 } else {
402 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100403
Roland McGrath44210112008-01-30 13:31:50 +0100404 env->fos = 0xffff0000 | tsk->thread.ds;
405 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
Roland McGrath44210112008-01-30 13:31:50 +0100407#else
408 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000409 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100410 env->foo = fxsave->foo;
411 env->fos = fxsave->fos;
412#endif
413
414 for (i = 0; i < 8; ++i)
415 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Roland McGrath44210112008-01-30 13:31:50 +0100418static void convert_to_fxsr(struct task_struct *tsk,
419 const struct user_i387_ia32_struct *env)
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Avi Kivity86603282010-05-06 11:45:46 +0300422 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100423 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
424 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 int i;
426
Roland McGrath44210112008-01-30 13:31:50 +0100427 fxsave->cwd = env->cwd;
428 fxsave->swd = env->swd;
429 fxsave->twd = twd_i387_to_fxsr(env->twd);
430 fxsave->fop = (u16) ((u32) env->fcs >> 16);
431#ifdef CONFIG_X86_64
432 fxsave->rip = env->fip;
433 fxsave->rdp = env->foo;
434 /* cs and ds ignored */
435#else
436 fxsave->fip = env->fip;
437 fxsave->fcs = (env->fcs & 0xffff);
438 fxsave->foo = env->foo;
439 fxsave->fos = env->fos;
440#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Roland McGrath44210112008-01-30 13:31:50 +0100442 for (i = 0; i < 8; ++i)
443 memcpy(&to[i], &from[i], sizeof(from[0]));
444}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Roland McGrath44210112008-01-30 13:31:50 +0100446int fpregs_get(struct task_struct *target, const struct user_regset *regset,
447 unsigned int pos, unsigned int count,
448 void *kbuf, void __user *ubuf)
449{
450 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700451 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700453 ret = init_fpu(target);
454 if (ret)
455 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100456
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700457 if (!HAVE_HWFP)
458 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
459
Ingo Molnarf6689642008-03-05 15:37:32 +0100460 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100461 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300462 &target->thread.fpu.state->fsave, 0,
Suresh Siddha61c46282008-03-10 15:28:04 -0700463 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100464 }
Roland McGrath44210112008-01-30 13:31:50 +0100465
Suresh Siddha29104e12010-07-19 16:05:49 -0700466 sanitize_i387_state(target);
467
Roland McGrath44210112008-01-30 13:31:50 +0100468 if (kbuf && pos == 0 && count == sizeof(env)) {
469 convert_from_fxsr(kbuf, target);
470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
Roland McGrath44210112008-01-30 13:31:50 +0100472
473 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100474
Roland McGrath44210112008-01-30 13:31:50 +0100475 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
476}
477
478int fpregs_set(struct task_struct *target, const struct user_regset *regset,
479 unsigned int pos, unsigned int count,
480 const void *kbuf, const void __user *ubuf)
481{
482 struct user_i387_ia32_struct env;
483 int ret;
484
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700485 ret = init_fpu(target);
486 if (ret)
487 return ret;
488
Suresh Siddha29104e12010-07-19 16:05:49 -0700489 sanitize_i387_state(target);
490
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700491 if (!HAVE_HWFP)
492 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
493
Ingo Molnarf6689642008-03-05 15:37:32 +0100494 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100495 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300496 &target->thread.fpu.state->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100497 }
Roland McGrath44210112008-01-30 13:31:50 +0100498
499 if (pos > 0 || count < sizeof(env))
500 convert_from_fxsr(&env, target);
501
502 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
503 if (!ret)
504 convert_to_fxsr(target, &env);
505
Suresh Siddha42deec62008-07-29 10:29:26 -0700506 /*
507 * update the header bit in the xsave header, indicating the
508 * presence of FP.
509 */
510 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300511 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100512 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515/*
516 * Signal frame handlers.
517 */
518
Roland McGrath44210112008-01-30 13:31:50 +0100519static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300522 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Suresh Siddha61c46282008-03-10 15:28:04 -0700524 fp->status = fp->swd;
525 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return -1;
527 return 1;
528}
529
Roland McGrath44210112008-01-30 13:31:50 +0100530static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300533 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100534 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 int err = 0;
536
Roland McGrath44210112008-01-30 13:31:50 +0100537 convert_from_fxsr(&env, tsk);
538 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return -1;
540
Suresh Siddha61c46282008-03-10 15:28:04 -0700541 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100542 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
543 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return -1;
545
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700546 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -1;
548 return 1;
549}
550
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700551static int save_i387_xsave(void __user *buf)
552{
Suresh Siddha04944b72008-10-07 14:04:28 -0700553 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700554 struct _fpstate_ia32 __user *fx = buf;
555 int err = 0;
556
Suresh Siddha29104e12010-07-19 16:05:49 -0700557
558 sanitize_i387_state(tsk);
559
Suresh Siddha04944b72008-10-07 14:04:28 -0700560 /*
561 * For legacy compatible, we always set FP/SSE bits in the bit
562 * vector while saving the state to the user context.
563 * This will enable us capturing any changes(during sigreturn) to
564 * the FP/SSE bits by the legacy applications which don't touch
565 * xstate_bv in the xsave header.
566 *
567 * xsave aware applications can change the xstate_bv in the xsave
568 * header as well as change any contents in the memory layout.
569 * xrestore as part of sigreturn will capture all the changes.
570 */
Avi Kivity86603282010-05-06 11:45:46 +0300571 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha04944b72008-10-07 14:04:28 -0700572
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700573 if (save_i387_fxsave(fx) < 0)
574 return -1;
575
576 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
577 sizeof(struct _fpx_sw_bytes));
578 err |= __put_user(FP_XSTATE_MAGIC2,
579 (__u32 __user *) (buf + sig_xstate_ia32_size
580 - FP_XSTATE_MAGIC2_SIZE));
581 if (err)
582 return -1;
583
584 return 1;
585}
586
Suresh Siddhaab513702008-07-29 10:29:22 -0700587int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Suresh Siddhaab513702008-07-29 10:29:22 -0700589 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
590 struct task_struct *tsk = current;
591
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100592 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700594
595 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
596 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100597 /*
598 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * attempted FPU operation by the 'current' process.
600 */
601 clear_used_math();
602
Ingo Molnarf6689642008-03-05 15:37:32 +0100603 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100604 return fpregs_soft_get(current, NULL,
605 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700606 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100608
Suresh Siddhaab513702008-07-29 10:29:22 -0700609 unlazy_fpu(tsk);
610
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700611 if (cpu_has_xsave)
612 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100613 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700614 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100615 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700616 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Roland McGrath44210112008-01-30 13:31:50 +0100619static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100622
Avi Kivity86603282010-05-06 11:45:46 +0300623 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100624 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700627static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
628 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100631 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100632 int err;
633
Avi Kivity86603282010-05-06 11:45:46 +0300634 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700635 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* mxcsr reserved bits must be masked to zero for security reasons */
Avi Kivity86603282010-05-06 11:45:46 +0300637 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100638 if (err || __copy_from_user(&env, buf, sizeof(env)))
639 return 1;
640 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100641
Roland McGrath44210112008-01-30 13:31:50 +0100642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700645static int restore_i387_xsave(void __user *buf)
646{
647 struct _fpx_sw_bytes fx_sw_user;
648 struct _fpstate_ia32 __user *fx_user =
649 ((struct _fpstate_ia32 __user *) buf);
650 struct i387_fxsave_struct __user *fx =
651 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
652 struct xsave_hdr_struct *xsave_hdr =
Avi Kivity86603282010-05-06 11:45:46 +0300653 &current->thread.fpu.state->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700654 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700655 int err;
656
657 if (check_for_xstate(fx, buf, &fx_sw_user))
658 goto fx_only;
659
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700660 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700661
662 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
663
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700664 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700665 /*
666 * These bits must be zero.
667 */
668 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
669
670 /*
671 * Init the state that is not present in the memory layout
672 * and enabled by the OS.
673 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700674 mask = ~(pcntxt_mask & ~mask);
675 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700676
677 return err;
678fx_only:
679 /*
680 * Couldn't find the extended state information in the memory
681 * layout. Restore the FP/SSE and init the other extended state
682 * enabled by the OS.
683 */
684 xsave_hdr->xstate_bv = XSTATE_FPSSE;
685 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
686}
687
Suresh Siddhaab513702008-07-29 10:29:22 -0700688int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700691 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700692 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700694 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700695 clear_fpu(tsk);
696
Suresh Siddhaab513702008-07-29 10:29:22 -0700697 if (!buf) {
698 if (used_math()) {
699 clear_fpu(tsk);
700 clear_used_math();
701 }
702
703 return 0;
704 } else
705 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
706 return -EACCES;
707
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700708 if (!used_math()) {
709 err = init_fpu(tsk);
710 if (err)
711 return err;
712 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700713
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700714 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700715 if (cpu_has_xsave)
716 err = restore_i387_xsave(buf);
717 else if (cpu_has_fxsr)
718 err = restore_i387_fxsave(fp, sizeof(struct
719 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100720 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700721 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100723 err = fpregs_soft_set(current, NULL,
724 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700725 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return err;
730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732/*
733 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100734 * This is only used for a.out dumps now.
735 * It is declared generically using elf_fpregset_t (which is
736 * struct user_i387_struct) but is in fact only used for 32-bit
737 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100739int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100742 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100745 if (fpvalid)
746 fpvalid = !fpregs_get(tsk, NULL,
747 0, sizeof(struct user_i387_ia32_struct),
748 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 return fpvalid;
751}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700752EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100754#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */