blob: 1f11f5ce668f93aadff67c425fae359da6efc6a8 [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) {
70 xstate_size = sizeof(struct i387_soft_struct);
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 */
Robert Richter0e49bf62010-07-21 19:03:52 +020087
Roland McGrath44210112008-01-30 13:31:50 +010088void __cpuinit fpu_init(void)
89{
90 unsigned long oldcr0 = read_cr0();
Ingo Molnarf6689642008-03-05 15:37:32 +010091
Roland McGrath44210112008-01-30 13:31:50 +010092 set_in_cr4(X86_CR4_OSFXSR);
93 set_in_cr4(X86_CR4_OSXMMEXCPT);
94
Ingo Molnarf6689642008-03-05 15:37:32 +010095 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
Roland McGrath44210112008-01-30 13:31:50 +010096
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070097 if (!smp_processor_id())
98 init_thread_xstate();
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070099
Roland McGrath44210112008-01-30 13:31:50 +0100100 mxcsr_feature_mask_init();
101 /* clean state in init */
Avi Kivityc9ad4882010-05-06 11:45:45 +0300102 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100103 clear_used_math();
104}
Robert Richter0e49bf62010-07-21 19:03:52 +0200105
106#else /* CONFIG_X86_64 */
107
108void __cpuinit fpu_init(void)
109{
110 if (!smp_processor_id())
111 init_thread_xstate();
112}
113
114#endif /* CONFIG_X86_32 */
Roland McGrath44210112008-01-30 13:31:50 +0100115
Sheng Yang5ee481d2010-05-17 17:22:23 +0800116void fpu_finit(struct fpu *fpu)
Avi Kivity86603282010-05-06 11:45:46 +0300117{
118#ifdef CONFIG_X86_32
119 if (!HAVE_HWFP) {
120 finit_soft_fpu(&fpu->state->soft);
121 return;
122 }
123#endif
124
125 if (cpu_has_fxsr) {
126 struct i387_fxsave_struct *fx = &fpu->state->fxsave;
127
128 memset(fx, 0, xstate_size);
129 fx->cwd = 0x37f;
130 if (cpu_has_xmm)
131 fx->mxcsr = MXCSR_DEFAULT;
132 } else {
133 struct i387_fsave_struct *fp = &fpu->state->fsave;
134 memset(fp, 0, xstate_size);
135 fp->cwd = 0xffff037fu;
136 fp->swd = 0xffff0000u;
137 fp->twd = 0xffffffffu;
138 fp->fos = 0xffff0000u;
139 }
140}
Sheng Yang5ee481d2010-05-17 17:22:23 +0800141EXPORT_SYMBOL_GPL(fpu_finit);
Avi Kivity86603282010-05-06 11:45:46 +0300142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
144 * The _current_ task is using the FPU for the first time
145 * so initialize it and set the mxcsr to its default
146 * value at reset if we support XMM instructions and then
147 * remeber the current task has used the FPU.
148 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700149int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Avi Kivity86603282010-05-06 11:45:46 +0300151 int ret;
152
Roland McGrath44210112008-01-30 13:31:50 +0100153 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700154 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100155 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700156 return 0;
157 }
158
159 /*
160 * Memory allocation at the first usage of the FPU and other state.
161 */
Avi Kivity86603282010-05-06 11:45:46 +0300162 ret = fpu_alloc(&tsk->thread.fpu);
163 if (ret)
164 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100165
Avi Kivity86603282010-05-06 11:45:46 +0300166 fpu_finit(&tsk->thread.fpu);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700169 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800172/*
173 * The xstateregs_active() routine is the same as the fpregs_active() routine,
174 * as the "regset->n" for the xstate regset will be updated based on the feature
175 * capabilites supported by the xsave.
176 */
Roland McGrath44210112008-01-30 13:31:50 +0100177int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Roland McGrath44210112008-01-30 13:31:50 +0100179 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Roland McGrath44210112008-01-30 13:31:50 +0100181
182int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
183{
184 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
185}
186
187int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
188 unsigned int pos, unsigned int count,
189 void *kbuf, void __user *ubuf)
190{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700191 int ret;
192
Roland McGrath44210112008-01-30 13:31:50 +0100193 if (!cpu_has_fxsr)
194 return -ENODEV;
195
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700196 ret = init_fpu(target);
197 if (ret)
198 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100199
Suresh Siddha29104e12010-07-19 16:05:49 -0700200 sanitize_i387_state(target);
201
Roland McGrath44210112008-01-30 13:31:50 +0100202 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300203 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100204}
205
206int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
207 unsigned int pos, unsigned int count,
208 const void *kbuf, const void __user *ubuf)
209{
210 int ret;
211
212 if (!cpu_has_fxsr)
213 return -ENODEV;
214
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700215 ret = init_fpu(target);
216 if (ret)
217 return ret;
218
Suresh Siddha29104e12010-07-19 16:05:49 -0700219 sanitize_i387_state(target);
220
Roland McGrath44210112008-01-30 13:31:50 +0100221 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300222 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100223
224 /*
225 * mxcsr reserved bits must be masked to zero for security reasons.
226 */
Avi Kivity86603282010-05-06 11:45:46 +0300227 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100228
Suresh Siddha42deec62008-07-29 10:29:26 -0700229 /*
230 * update the header bits in the xsave header, indicating the
231 * presence of FP and SSE state.
232 */
233 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300234 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha42deec62008-07-29 10:29:26 -0700235
Roland McGrath44210112008-01-30 13:31:50 +0100236 return ret;
237}
238
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800239int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
240 unsigned int pos, unsigned int count,
241 void *kbuf, void __user *ubuf)
242{
243 int ret;
244
245 if (!cpu_has_xsave)
246 return -ENODEV;
247
248 ret = init_fpu(target);
249 if (ret)
250 return ret;
251
252 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800253 * Copy the 48bytes defined by the software first into the xstate
254 * memory layout in the thread struct, so that we can copy the entire
255 * xstateregs to the user using one user_regset_copyout().
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800256 */
Avi Kivity86603282010-05-06 11:45:46 +0300257 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800258 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800259
260 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800261 * Copy the xstate memory layout.
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800262 */
263 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300264 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800265 return ret;
266}
267
268int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
269 unsigned int pos, unsigned int count,
270 const void *kbuf, const void __user *ubuf)
271{
272 int ret;
273 struct xsave_hdr_struct *xsave_hdr;
274
275 if (!cpu_has_xsave)
276 return -ENODEV;
277
278 ret = init_fpu(target);
279 if (ret)
280 return ret;
281
282 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300283 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800284
285 /*
286 * mxcsr reserved bits must be masked to zero for security reasons.
287 */
Avi Kivity86603282010-05-06 11:45:46 +0300288 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800289
Avi Kivity86603282010-05-06 11:45:46 +0300290 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800291
292 xsave_hdr->xstate_bv &= pcntxt_mask;
293 /*
294 * These bits must be zero.
295 */
296 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
297
298 return ret;
299}
300
Roland McGrath44210112008-01-30 13:31:50 +0100301#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * FPU tag word conversions.
305 */
306
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100307static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100312 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100313 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100314 /* and move the valid bits to the lower byte. */
315 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
316 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
317 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100318
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100319 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Roland McGrath44210112008-01-30 13:31:50 +0100322#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
323#define FP_EXP_TAG_VALID 0
324#define FP_EXP_TAG_ZERO 1
325#define FP_EXP_TAG_SPECIAL 2
326#define FP_EXP_TAG_EMPTY 3
327
328static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Roland McGrath44210112008-01-30 13:31:50 +0100330 struct _fpxreg *st;
331 u32 tos = (fxsave->swd >> 11) & 7;
332 u32 twd = (unsigned long) fxsave->twd;
333 u32 tag;
334 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 int i;
336
Roland McGrath44210112008-01-30 13:31:50 +0100337 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100338 if (twd & 0x1) {
339 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100341 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100343 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
345 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100346 if (!st->significand[0] &&
347 !st->significand[1] &&
348 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100349 !st->significand[3])
350 tag = FP_EXP_TAG_ZERO;
351 else
352 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 break;
354 default:
Roland McGrath44210112008-01-30 13:31:50 +0100355 if (st->significand[3] & 0x8000)
356 tag = FP_EXP_TAG_VALID;
357 else
358 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 }
361 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100362 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Roland McGrath44210112008-01-30 13:31:50 +0100364 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366 return ret;
367}
368
369/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * FXSR floating point environment conversions.
371 */
372
Ingo Molnarf6689642008-03-05 15:37:32 +0100373static void
374convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Avi Kivity86603282010-05-06 11:45:46 +0300376 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100377 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
378 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int i;
380
Roland McGrath44210112008-01-30 13:31:50 +0100381 env->cwd = fxsave->cwd | 0xffff0000u;
382 env->swd = fxsave->swd | 0xffff0000u;
383 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Roland McGrath44210112008-01-30 13:31:50 +0100385#ifdef CONFIG_X86_64
386 env->fip = fxsave->rip;
387 env->foo = fxsave->rdp;
388 if (tsk == current) {
389 /*
390 * should be actually ds/cs at fpu exception time, but
391 * that information is not available in 64bit mode.
392 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100393 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
394 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100395 } else {
396 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100397
Roland McGrath44210112008-01-30 13:31:50 +0100398 env->fos = 0xffff0000 | tsk->thread.ds;
399 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Roland McGrath44210112008-01-30 13:31:50 +0100401#else
402 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000403 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100404 env->foo = fxsave->foo;
405 env->fos = fxsave->fos;
406#endif
407
408 for (i = 0; i < 8; ++i)
409 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Roland McGrath44210112008-01-30 13:31:50 +0100412static void convert_to_fxsr(struct task_struct *tsk,
413 const struct user_i387_ia32_struct *env)
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Avi Kivity86603282010-05-06 11:45:46 +0300416 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100417 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
418 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 int i;
420
Roland McGrath44210112008-01-30 13:31:50 +0100421 fxsave->cwd = env->cwd;
422 fxsave->swd = env->swd;
423 fxsave->twd = twd_i387_to_fxsr(env->twd);
424 fxsave->fop = (u16) ((u32) env->fcs >> 16);
425#ifdef CONFIG_X86_64
426 fxsave->rip = env->fip;
427 fxsave->rdp = env->foo;
428 /* cs and ds ignored */
429#else
430 fxsave->fip = env->fip;
431 fxsave->fcs = (env->fcs & 0xffff);
432 fxsave->foo = env->foo;
433 fxsave->fos = env->fos;
434#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Roland McGrath44210112008-01-30 13:31:50 +0100436 for (i = 0; i < 8; ++i)
437 memcpy(&to[i], &from[i], sizeof(from[0]));
438}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Roland McGrath44210112008-01-30 13:31:50 +0100440int fpregs_get(struct task_struct *target, const struct user_regset *regset,
441 unsigned int pos, unsigned int count,
442 void *kbuf, void __user *ubuf)
443{
444 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700445 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700447 ret = init_fpu(target);
448 if (ret)
449 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100450
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700451 if (!HAVE_HWFP)
452 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
453
Ingo Molnarf6689642008-03-05 15:37:32 +0100454 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100455 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300456 &target->thread.fpu.state->fsave, 0,
Suresh Siddha61c46282008-03-10 15:28:04 -0700457 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100458 }
Roland McGrath44210112008-01-30 13:31:50 +0100459
Suresh Siddha29104e12010-07-19 16:05:49 -0700460 sanitize_i387_state(target);
461
Roland McGrath44210112008-01-30 13:31:50 +0100462 if (kbuf && pos == 0 && count == sizeof(env)) {
463 convert_from_fxsr(kbuf, target);
464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Roland McGrath44210112008-01-30 13:31:50 +0100466
467 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100468
Roland McGrath44210112008-01-30 13:31:50 +0100469 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
470}
471
472int fpregs_set(struct task_struct *target, const struct user_regset *regset,
473 unsigned int pos, unsigned int count,
474 const void *kbuf, const void __user *ubuf)
475{
476 struct user_i387_ia32_struct env;
477 int ret;
478
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700479 ret = init_fpu(target);
480 if (ret)
481 return ret;
482
Suresh Siddha29104e12010-07-19 16:05:49 -0700483 sanitize_i387_state(target);
484
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700485 if (!HAVE_HWFP)
486 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
487
Ingo Molnarf6689642008-03-05 15:37:32 +0100488 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100489 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300490 &target->thread.fpu.state->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100491 }
Roland McGrath44210112008-01-30 13:31:50 +0100492
493 if (pos > 0 || count < sizeof(env))
494 convert_from_fxsr(&env, target);
495
496 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
497 if (!ret)
498 convert_to_fxsr(target, &env);
499
Suresh Siddha42deec62008-07-29 10:29:26 -0700500 /*
501 * update the header bit in the xsave header, indicating the
502 * presence of FP.
503 */
504 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300505 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100506 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509/*
510 * Signal frame handlers.
511 */
512
Roland McGrath44210112008-01-30 13:31:50 +0100513static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300516 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Suresh Siddha61c46282008-03-10 15:28:04 -0700518 fp->status = fp->swd;
519 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -1;
521 return 1;
522}
523
Roland McGrath44210112008-01-30 13:31:50 +0100524static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300527 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100528 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int err = 0;
530
Roland McGrath44210112008-01-30 13:31:50 +0100531 convert_from_fxsr(&env, tsk);
532 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return -1;
534
Suresh Siddha61c46282008-03-10 15:28:04 -0700535 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100536 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
537 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return -1;
539
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700540 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return -1;
542 return 1;
543}
544
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700545static int save_i387_xsave(void __user *buf)
546{
Suresh Siddha04944b72008-10-07 14:04:28 -0700547 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700548 struct _fpstate_ia32 __user *fx = buf;
549 int err = 0;
550
Suresh Siddha29104e12010-07-19 16:05:49 -0700551
552 sanitize_i387_state(tsk);
553
Suresh Siddha04944b72008-10-07 14:04:28 -0700554 /*
555 * For legacy compatible, we always set FP/SSE bits in the bit
556 * vector while saving the state to the user context.
557 * This will enable us capturing any changes(during sigreturn) to
558 * the FP/SSE bits by the legacy applications which don't touch
559 * xstate_bv in the xsave header.
560 *
561 * xsave aware applications can change the xstate_bv in the xsave
562 * header as well as change any contents in the memory layout.
563 * xrestore as part of sigreturn will capture all the changes.
564 */
Avi Kivity86603282010-05-06 11:45:46 +0300565 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha04944b72008-10-07 14:04:28 -0700566
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700567 if (save_i387_fxsave(fx) < 0)
568 return -1;
569
570 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
571 sizeof(struct _fpx_sw_bytes));
572 err |= __put_user(FP_XSTATE_MAGIC2,
573 (__u32 __user *) (buf + sig_xstate_ia32_size
574 - FP_XSTATE_MAGIC2_SIZE));
575 if (err)
576 return -1;
577
578 return 1;
579}
580
Suresh Siddhaab513702008-07-29 10:29:22 -0700581int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Suresh Siddhaab513702008-07-29 10:29:22 -0700583 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
584 struct task_struct *tsk = current;
585
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100586 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700588
589 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
590 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100591 /*
592 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * attempted FPU operation by the 'current' process.
594 */
595 clear_used_math();
596
Ingo Molnarf6689642008-03-05 15:37:32 +0100597 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100598 return fpregs_soft_get(current, NULL,
599 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700600 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100602
Suresh Siddhaab513702008-07-29 10:29:22 -0700603 unlazy_fpu(tsk);
604
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700605 if (cpu_has_xsave)
606 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100607 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700608 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100609 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700610 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Roland McGrath44210112008-01-30 13:31:50 +0100613static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100616
Avi Kivity86603282010-05-06 11:45:46 +0300617 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100618 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700621static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
622 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100625 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100626 int err;
627
Avi Kivity86603282010-05-06 11:45:46 +0300628 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700629 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* mxcsr reserved bits must be masked to zero for security reasons */
Avi Kivity86603282010-05-06 11:45:46 +0300631 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100632 if (err || __copy_from_user(&env, buf, sizeof(env)))
633 return 1;
634 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100635
Roland McGrath44210112008-01-30 13:31:50 +0100636 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700639static int restore_i387_xsave(void __user *buf)
640{
641 struct _fpx_sw_bytes fx_sw_user;
642 struct _fpstate_ia32 __user *fx_user =
643 ((struct _fpstate_ia32 __user *) buf);
644 struct i387_fxsave_struct __user *fx =
645 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
646 struct xsave_hdr_struct *xsave_hdr =
Avi Kivity86603282010-05-06 11:45:46 +0300647 &current->thread.fpu.state->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700648 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700649 int err;
650
651 if (check_for_xstate(fx, buf, &fx_sw_user))
652 goto fx_only;
653
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700654 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700655
656 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
657
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700658 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700659 /*
660 * These bits must be zero.
661 */
662 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
663
664 /*
665 * Init the state that is not present in the memory layout
666 * and enabled by the OS.
667 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700668 mask = ~(pcntxt_mask & ~mask);
669 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700670
671 return err;
672fx_only:
673 /*
674 * Couldn't find the extended state information in the memory
675 * layout. Restore the FP/SSE and init the other extended state
676 * enabled by the OS.
677 */
678 xsave_hdr->xstate_bv = XSTATE_FPSSE;
679 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
680}
681
Suresh Siddhaab513702008-07-29 10:29:22 -0700682int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700685 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700686 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700688 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700689 clear_fpu(tsk);
690
Suresh Siddhaab513702008-07-29 10:29:22 -0700691 if (!buf) {
692 if (used_math()) {
693 clear_fpu(tsk);
694 clear_used_math();
695 }
696
697 return 0;
698 } else
699 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
700 return -EACCES;
701
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700702 if (!used_math()) {
703 err = init_fpu(tsk);
704 if (err)
705 return err;
706 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700707
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700708 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700709 if (cpu_has_xsave)
710 err = restore_i387_xsave(buf);
711 else if (cpu_has_fxsr)
712 err = restore_i387_fxsave(fp, sizeof(struct
713 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100714 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700715 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100717 err = fpregs_soft_set(current, NULL,
718 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700719 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return err;
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
727 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100728 * This is only used for a.out dumps now.
729 * It is declared generically using elf_fpregset_t (which is
730 * struct user_i387_struct) but is in fact only used for 32-bit
731 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100733int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100736 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100739 if (fpvalid)
740 fpvalid = !fpregs_get(tsk, NULL,
741 0, sizeof(struct user_i387_ia32_struct),
742 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 return fpvalid;
745}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700746EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100748#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */