blob: c4444bce8469876b2a4a43089cad8a97c3198b73 [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
Rakib Mullick9bc646f2008-11-20 19:08:45 +060062void __cpuinit init_thread_xstate(void)
Suresh Siddha61c46282008-03-10 15:28:04 -070063{
Suresh Siddhae8a496a2008-05-23 16:26:37 -070064 if (!HAVE_HWFP) {
65 xstate_size = sizeof(struct i387_soft_struct);
66 return;
67 }
68
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070069 if (cpu_has_xsave) {
70 xsave_cntxt_init();
71 return;
72 }
73
Suresh Siddha61c46282008-03-10 15:28:04 -070074 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
Suresh Siddha61c46282008-03-10 15:28:04 -070080}
81
Roland McGrath44210112008-01-30 13:31:50 +010082#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 */
87void __cpuinit fpu_init(void)
88{
89 unsigned long oldcr0 = read_cr0();
Ingo Molnarf6689642008-03-05 15:37:32 +010090
Roland McGrath44210112008-01-30 13:31:50 +010091 set_in_cr4(X86_CR4_OSFXSR);
92 set_in_cr4(X86_CR4_OSXMMEXCPT);
93
Ingo Molnarf6689642008-03-05 15:37:32 +010094 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
Roland McGrath44210112008-01-30 13:31:50 +010095
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070096 /*
97 * Boot processor to setup the FP and extended state context info.
98 */
99 if (!smp_processor_id())
100 init_thread_xstate();
101 xsave_init();
102
Roland McGrath44210112008-01-30 13:31:50 +0100103 mxcsr_feature_mask_init();
104 /* clean state in init */
Avi Kivityc9ad4882010-05-06 11:45:45 +0300105 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100106 clear_used_math();
107}
108#endif /* CONFIG_X86_64 */
109
Sheng Yang5ee481d2010-05-17 17:22:23 +0800110void fpu_finit(struct fpu *fpu)
Avi Kivity86603282010-05-06 11:45:46 +0300111{
112#ifdef CONFIG_X86_32
113 if (!HAVE_HWFP) {
114 finit_soft_fpu(&fpu->state->soft);
115 return;
116 }
117#endif
118
119 if (cpu_has_fxsr) {
120 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
121
122 memset(fx, 0, xstate_size);
123 fx->cwd = 0x37f;
124 if (cpu_has_xmm)
125 fx->mxcsr = MXCSR_DEFAULT;
126 } else {
127 struct i387_fsave_struct *fp = &fpu->state->fsave;
128 memset(fp, 0, xstate_size);
129 fp->cwd = 0xffff037fu;
130 fp->swd = 0xffff0000u;
131 fp->twd = 0xffffffffu;
132 fp->fos = 0xffff0000u;
133 }
134}
Sheng Yang5ee481d2010-05-17 17:22:23 +0800135EXPORT_SYMBOL_GPL(fpu_finit);
Avi Kivity86603282010-05-06 11:45:46 +0300136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/*
138 * The _current_ task is using the FPU for the first time
139 * so initialize it and set the mxcsr to its default
140 * value at reset if we support XMM instructions and then
141 * remeber the current task has used the FPU.
142 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700143int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Avi Kivity86603282010-05-06 11:45:46 +0300145 int ret;
146
Roland McGrath44210112008-01-30 13:31:50 +0100147 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700148 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100149 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700150 return 0;
151 }
152
153 /*
154 * Memory allocation at the first usage of the FPU and other state.
155 */
Avi Kivity86603282010-05-06 11:45:46 +0300156 ret = fpu_alloc(&tsk->thread.fpu);
157 if (ret)
158 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100159
Avi Kivity86603282010-05-06 11:45:46 +0300160 fpu_finit(&tsk->thread.fpu);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800166/*
167 * The xstateregs_active() routine is the same as the fpregs_active() routine,
168 * as the "regset->n" for the xstate regset will be updated based on the feature
169 * capabilites supported by the xsave.
170 */
Roland McGrath44210112008-01-30 13:31:50 +0100171int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Roland McGrath44210112008-01-30 13:31:50 +0100173 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
Roland McGrath44210112008-01-30 13:31:50 +0100175
176int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
177{
178 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
179}
180
181int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
182 unsigned int pos, unsigned int count,
183 void *kbuf, void __user *ubuf)
184{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700185 int ret;
186
Roland McGrath44210112008-01-30 13:31:50 +0100187 if (!cpu_has_fxsr)
188 return -ENODEV;
189
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700190 ret = init_fpu(target);
191 if (ret)
192 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100193
194 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300195 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100196}
197
198int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
199 unsigned int pos, unsigned int count,
200 const void *kbuf, const void __user *ubuf)
201{
202 int ret;
203
204 if (!cpu_has_fxsr)
205 return -ENODEV;
206
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700207 ret = init_fpu(target);
208 if (ret)
209 return ret;
210
Roland McGrath44210112008-01-30 13:31:50 +0100211 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300212 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100213
214 /*
215 * mxcsr reserved bits must be masked to zero for security reasons.
216 */
Avi Kivity86603282010-05-06 11:45:46 +0300217 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100218
Suresh Siddha42deec62008-07-29 10:29:26 -0700219 /*
220 * update the header bits in the xsave header, indicating the
221 * presence of FP and SSE state.
222 */
223 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300224 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha42deec62008-07-29 10:29:26 -0700225
Roland McGrath44210112008-01-30 13:31:50 +0100226 return ret;
227}
228
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800229int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
230 unsigned int pos, unsigned int count,
231 void *kbuf, void __user *ubuf)
232{
233 int ret;
234
235 if (!cpu_has_xsave)
236 return -ENODEV;
237
238 ret = init_fpu(target);
239 if (ret)
240 return ret;
241
242 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800243 * Copy the 48bytes defined by the software first into the xstate
244 * memory layout in the thread struct, so that we can copy the entire
245 * xstateregs to the user using one user_regset_copyout().
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800246 */
Avi Kivity86603282010-05-06 11:45:46 +0300247 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800248 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800249
250 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800251 * Copy the xstate memory layout.
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800252 */
253 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300254 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800255 return ret;
256}
257
258int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
259 unsigned int pos, unsigned int count,
260 const void *kbuf, const void __user *ubuf)
261{
262 int ret;
263 struct xsave_hdr_struct *xsave_hdr;
264
265 if (!cpu_has_xsave)
266 return -ENODEV;
267
268 ret = init_fpu(target);
269 if (ret)
270 return ret;
271
272 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300273 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800274
275 /*
276 * mxcsr reserved bits must be masked to zero for security reasons.
277 */
Avi Kivity86603282010-05-06 11:45:46 +0300278 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800279
Avi Kivity86603282010-05-06 11:45:46 +0300280 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800281
282 xsave_hdr->xstate_bv &= pcntxt_mask;
283 /*
284 * These bits must be zero.
285 */
286 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
287
288 return ret;
289}
290
Roland McGrath44210112008-01-30 13:31:50 +0100291#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*
294 * FPU tag word conversions.
295 */
296
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100297static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100302 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100303 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100304 /* and move the valid bits to the lower byte. */
305 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
306 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
307 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100308
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100309 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Roland McGrath44210112008-01-30 13:31:50 +0100312#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
313#define FP_EXP_TAG_VALID 0
314#define FP_EXP_TAG_ZERO 1
315#define FP_EXP_TAG_SPECIAL 2
316#define FP_EXP_TAG_EMPTY 3
317
318static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Roland McGrath44210112008-01-30 13:31:50 +0100320 struct _fpxreg *st;
321 u32 tos = (fxsave->swd >> 11) & 7;
322 u32 twd = (unsigned long) fxsave->twd;
323 u32 tag;
324 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 int i;
326
Roland McGrath44210112008-01-30 13:31:50 +0100327 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100328 if (twd & 0x1) {
329 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100331 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100333 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 break;
335 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100336 if (!st->significand[0] &&
337 !st->significand[1] &&
338 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100339 !st->significand[3])
340 tag = FP_EXP_TAG_ZERO;
341 else
342 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 default:
Roland McGrath44210112008-01-30 13:31:50 +0100345 if (st->significand[3] & 0x8000)
346 tag = FP_EXP_TAG_VALID;
347 else
348 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 break;
350 }
351 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100352 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Roland McGrath44210112008-01-30 13:31:50 +0100354 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356 return ret;
357}
358
359/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * FXSR floating point environment conversions.
361 */
362
Ingo Molnarf6689642008-03-05 15:37:32 +0100363static void
364convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Avi Kivity86603282010-05-06 11:45:46 +0300366 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100367 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
368 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int i;
370
Roland McGrath44210112008-01-30 13:31:50 +0100371 env->cwd = fxsave->cwd | 0xffff0000u;
372 env->swd = fxsave->swd | 0xffff0000u;
373 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Roland McGrath44210112008-01-30 13:31:50 +0100375#ifdef CONFIG_X86_64
376 env->fip = fxsave->rip;
377 env->foo = fxsave->rdp;
378 if (tsk == current) {
379 /*
380 * should be actually ds/cs at fpu exception time, but
381 * that information is not available in 64bit mode.
382 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100383 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
384 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100385 } else {
386 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100387
Roland McGrath44210112008-01-30 13:31:50 +0100388 env->fos = 0xffff0000 | tsk->thread.ds;
389 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Roland McGrath44210112008-01-30 13:31:50 +0100391#else
392 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000393 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100394 env->foo = fxsave->foo;
395 env->fos = fxsave->fos;
396#endif
397
398 for (i = 0; i < 8; ++i)
399 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Roland McGrath44210112008-01-30 13:31:50 +0100402static void convert_to_fxsr(struct task_struct *tsk,
403 const struct user_i387_ia32_struct *env)
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Avi Kivity86603282010-05-06 11:45:46 +0300406 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100407 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
408 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 int i;
410
Roland McGrath44210112008-01-30 13:31:50 +0100411 fxsave->cwd = env->cwd;
412 fxsave->swd = env->swd;
413 fxsave->twd = twd_i387_to_fxsr(env->twd);
414 fxsave->fop = (u16) ((u32) env->fcs >> 16);
415#ifdef CONFIG_X86_64
416 fxsave->rip = env->fip;
417 fxsave->rdp = env->foo;
418 /* cs and ds ignored */
419#else
420 fxsave->fip = env->fip;
421 fxsave->fcs = (env->fcs & 0xffff);
422 fxsave->foo = env->foo;
423 fxsave->fos = env->fos;
424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Roland McGrath44210112008-01-30 13:31:50 +0100426 for (i = 0; i < 8; ++i)
427 memcpy(&to[i], &from[i], sizeof(from[0]));
428}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Roland McGrath44210112008-01-30 13:31:50 +0100430int fpregs_get(struct task_struct *target, const struct user_regset *regset,
431 unsigned int pos, unsigned int count,
432 void *kbuf, void __user *ubuf)
433{
434 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700435 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700437 ret = init_fpu(target);
438 if (ret)
439 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100440
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700441 if (!HAVE_HWFP)
442 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
443
Ingo Molnarf6689642008-03-05 15:37:32 +0100444 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100445 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300446 &target->thread.fpu.state->fsave, 0,
Suresh Siddha61c46282008-03-10 15:28:04 -0700447 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100448 }
Roland McGrath44210112008-01-30 13:31:50 +0100449
450 if (kbuf && pos == 0 && count == sizeof(env)) {
451 convert_from_fxsr(kbuf, target);
452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Roland McGrath44210112008-01-30 13:31:50 +0100454
455 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100456
Roland McGrath44210112008-01-30 13:31:50 +0100457 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
458}
459
460int fpregs_set(struct task_struct *target, const struct user_regset *regset,
461 unsigned int pos, unsigned int count,
462 const void *kbuf, const void __user *ubuf)
463{
464 struct user_i387_ia32_struct env;
465 int ret;
466
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700467 ret = init_fpu(target);
468 if (ret)
469 return ret;
470
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700471 if (!HAVE_HWFP)
472 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
473
Ingo Molnarf6689642008-03-05 15:37:32 +0100474 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100475 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300476 &target->thread.fpu.state->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100477 }
Roland McGrath44210112008-01-30 13:31:50 +0100478
479 if (pos > 0 || count < sizeof(env))
480 convert_from_fxsr(&env, target);
481
482 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
483 if (!ret)
484 convert_to_fxsr(target, &env);
485
Suresh Siddha42deec62008-07-29 10:29:26 -0700486 /*
487 * update the header bit in the xsave header, indicating the
488 * presence of FP.
489 */
490 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300491 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100492 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495/*
496 * Signal frame handlers.
497 */
498
Roland McGrath44210112008-01-30 13:31:50 +0100499static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300502 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Suresh Siddha61c46282008-03-10 15:28:04 -0700504 fp->status = fp->swd;
505 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return -1;
507 return 1;
508}
509
Roland McGrath44210112008-01-30 13:31:50 +0100510static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300513 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100514 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int err = 0;
516
Roland McGrath44210112008-01-30 13:31:50 +0100517 convert_from_fxsr(&env, tsk);
518 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return -1;
520
Suresh Siddha61c46282008-03-10 15:28:04 -0700521 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100522 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
523 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return -1;
525
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700526 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return -1;
528 return 1;
529}
530
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700531static int save_i387_xsave(void __user *buf)
532{
Suresh Siddha04944b72008-10-07 14:04:28 -0700533 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700534 struct _fpstate_ia32 __user *fx = buf;
535 int err = 0;
536
Suresh Siddha04944b72008-10-07 14:04:28 -0700537 /*
538 * For legacy compatible, we always set FP/SSE bits in the bit
539 * vector while saving the state to the user context.
540 * This will enable us capturing any changes(during sigreturn) to
541 * the FP/SSE bits by the legacy applications which don't touch
542 * xstate_bv in the xsave header.
543 *
544 * xsave aware applications can change the xstate_bv in the xsave
545 * header as well as change any contents in the memory layout.
546 * xrestore as part of sigreturn will capture all the changes.
547 */
Avi Kivity86603282010-05-06 11:45:46 +0300548 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha04944b72008-10-07 14:04:28 -0700549
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700550 if (save_i387_fxsave(fx) < 0)
551 return -1;
552
553 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
554 sizeof(struct _fpx_sw_bytes));
555 err |= __put_user(FP_XSTATE_MAGIC2,
556 (__u32 __user *) (buf + sig_xstate_ia32_size
557 - FP_XSTATE_MAGIC2_SIZE));
558 if (err)
559 return -1;
560
561 return 1;
562}
563
Suresh Siddhaab513702008-07-29 10:29:22 -0700564int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Suresh Siddhaab513702008-07-29 10:29:22 -0700566 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
567 struct task_struct *tsk = current;
568
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100569 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700571
572 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
573 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100574 /*
575 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * attempted FPU operation by the 'current' process.
577 */
578 clear_used_math();
579
Ingo Molnarf6689642008-03-05 15:37:32 +0100580 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100581 return fpregs_soft_get(current, NULL,
582 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700583 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100585
Suresh Siddhaab513702008-07-29 10:29:22 -0700586 unlazy_fpu(tsk);
587
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700588 if (cpu_has_xsave)
589 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100590 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700591 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100592 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700593 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Roland McGrath44210112008-01-30 13:31:50 +0100596static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100599
Avi Kivity86603282010-05-06 11:45:46 +0300600 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100601 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700604static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
605 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100608 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100609 int err;
610
Avi Kivity86603282010-05-06 11:45:46 +0300611 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700612 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* mxcsr reserved bits must be masked to zero for security reasons */
Avi Kivity86603282010-05-06 11:45:46 +0300614 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100615 if (err || __copy_from_user(&env, buf, sizeof(env)))
616 return 1;
617 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100618
Roland McGrath44210112008-01-30 13:31:50 +0100619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700622static int restore_i387_xsave(void __user *buf)
623{
624 struct _fpx_sw_bytes fx_sw_user;
625 struct _fpstate_ia32 __user *fx_user =
626 ((struct _fpstate_ia32 __user *) buf);
627 struct i387_fxsave_struct __user *fx =
628 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
629 struct xsave_hdr_struct *xsave_hdr =
Avi Kivity86603282010-05-06 11:45:46 +0300630 &current->thread.fpu.state->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700631 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700632 int err;
633
634 if (check_for_xstate(fx, buf, &fx_sw_user))
635 goto fx_only;
636
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700637 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700638
639 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
640
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700641 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700642 /*
643 * These bits must be zero.
644 */
645 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
646
647 /*
648 * Init the state that is not present in the memory layout
649 * and enabled by the OS.
650 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700651 mask = ~(pcntxt_mask & ~mask);
652 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700653
654 return err;
655fx_only:
656 /*
657 * Couldn't find the extended state information in the memory
658 * layout. Restore the FP/SSE and init the other extended state
659 * enabled by the OS.
660 */
661 xsave_hdr->xstate_bv = XSTATE_FPSSE;
662 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
663}
664
Suresh Siddhaab513702008-07-29 10:29:22 -0700665int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700668 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700669 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700671 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700672 clear_fpu(tsk);
673
Suresh Siddhaab513702008-07-29 10:29:22 -0700674 if (!buf) {
675 if (used_math()) {
676 clear_fpu(tsk);
677 clear_used_math();
678 }
679
680 return 0;
681 } else
682 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
683 return -EACCES;
684
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700685 if (!used_math()) {
686 err = init_fpu(tsk);
687 if (err)
688 return err;
689 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700690
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700691 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700692 if (cpu_has_xsave)
693 err = restore_i387_xsave(buf);
694 else if (cpu_has_fxsr)
695 err = restore_i387_fxsave(fp, sizeof(struct
696 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100697 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700698 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100700 err = fpregs_soft_set(current, NULL,
701 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700702 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return err;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709/*
710 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100711 * This is only used for a.out dumps now.
712 * It is declared generically using elf_fpregset_t (which is
713 * struct user_i387_struct) but is in fact only used for 32-bit
714 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100716int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100719 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100722 if (fpvalid)
723 fpvalid = !fpregs_get(tsk, NULL,
724 0, sizeof(struct user_i387_ia32_struct),
725 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 return fpvalid;
728}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700729EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100731#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */