blob: e73c54ebafce983b6a2b32150634a7f8df4838c8 [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
Robert Richter0e49bf62010-07-21 19:03:52 +020097 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
Avi Kivity86603282010-05-06 11:45:46 +0300116static void fpu_finit(struct fpu *fpu)
117{
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}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * The _current_ task is using the FPU for the first time
144 * so initialize it and set the mxcsr to its default
145 * value at reset if we support XMM instructions and then
146 * remeber the current task has used the FPU.
147 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700148int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Avi Kivity86603282010-05-06 11:45:46 +0300150 int ret;
151
Roland McGrath44210112008-01-30 13:31:50 +0100152 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700153 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100154 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700155 return 0;
156 }
157
158 /*
159 * Memory allocation at the first usage of the FPU and other state.
160 */
Avi Kivity86603282010-05-06 11:45:46 +0300161 ret = fpu_alloc(&tsk->thread.fpu);
162 if (ret)
163 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100164
Avi Kivity86603282010-05-06 11:45:46 +0300165 fpu_finit(&tsk->thread.fpu);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800171/*
172 * The xstateregs_active() routine is the same as the fpregs_active() routine,
173 * as the "regset->n" for the xstate regset will be updated based on the feature
174 * capabilites supported by the xsave.
175 */
Roland McGrath44210112008-01-30 13:31:50 +0100176int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Roland McGrath44210112008-01-30 13:31:50 +0100178 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
Roland McGrath44210112008-01-30 13:31:50 +0100180
181int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
182{
183 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
184}
185
186int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
187 unsigned int pos, unsigned int count,
188 void *kbuf, void __user *ubuf)
189{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700190 int ret;
191
Roland McGrath44210112008-01-30 13:31:50 +0100192 if (!cpu_has_fxsr)
193 return -ENODEV;
194
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700195 ret = init_fpu(target);
196 if (ret)
197 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100198
Suresh Siddha29104e12010-07-19 16:05:49 -0700199 sanitize_i387_state(target);
200
Roland McGrath44210112008-01-30 13:31:50 +0100201 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300202 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100203}
204
205int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
206 unsigned int pos, unsigned int count,
207 const void *kbuf, const void __user *ubuf)
208{
209 int ret;
210
211 if (!cpu_has_fxsr)
212 return -ENODEV;
213
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700214 ret = init_fpu(target);
215 if (ret)
216 return ret;
217
Suresh Siddha29104e12010-07-19 16:05:49 -0700218 sanitize_i387_state(target);
219
Roland McGrath44210112008-01-30 13:31:50 +0100220 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300221 &target->thread.fpu.state->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100222
223 /*
224 * mxcsr reserved bits must be masked to zero for security reasons.
225 */
Avi Kivity86603282010-05-06 11:45:46 +0300226 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100227
Suresh Siddha42deec62008-07-29 10:29:26 -0700228 /*
229 * update the header bits in the xsave header, indicating the
230 * presence of FP and SSE state.
231 */
232 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300233 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha42deec62008-07-29 10:29:26 -0700234
Roland McGrath44210112008-01-30 13:31:50 +0100235 return ret;
236}
237
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800238int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
239 unsigned int pos, unsigned int count,
240 void *kbuf, void __user *ubuf)
241{
242 int ret;
243
244 if (!cpu_has_xsave)
245 return -ENODEV;
246
247 ret = init_fpu(target);
248 if (ret)
249 return ret;
250
251 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800252 * Copy the 48bytes defined by the software first into the xstate
253 * memory layout in the thread struct, so that we can copy the entire
254 * xstateregs to the user using one user_regset_copyout().
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800255 */
Avi Kivity86603282010-05-06 11:45:46 +0300256 memcpy(&target->thread.fpu.state->fxsave.sw_reserved,
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800257 xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800258
259 /*
Suresh Siddhaff7fbc72010-02-22 14:51:33 -0800260 * Copy the xstate memory layout.
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800261 */
262 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300263 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800264 return ret;
265}
266
267int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
268 unsigned int pos, unsigned int count,
269 const void *kbuf, const void __user *ubuf)
270{
271 int ret;
272 struct xsave_hdr_struct *xsave_hdr;
273
274 if (!cpu_has_xsave)
275 return -ENODEV;
276
277 ret = init_fpu(target);
278 if (ret)
279 return ret;
280
281 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300282 &target->thread.fpu.state->xsave, 0, -1);
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800283
284 /*
285 * mxcsr reserved bits must be masked to zero for security reasons.
286 */
Avi Kivity86603282010-05-06 11:45:46 +0300287 target->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800288
Avi Kivity86603282010-05-06 11:45:46 +0300289 xsave_hdr = &target->thread.fpu.state->xsave.xsave_hdr;
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800290
291 xsave_hdr->xstate_bv &= pcntxt_mask;
292 /*
293 * These bits must be zero.
294 */
295 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
296
297 return ret;
298}
299
Roland McGrath44210112008-01-30 13:31:50 +0100300#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/*
303 * FPU tag word conversions.
304 */
305
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100306static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100311 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100312 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100313 /* and move the valid bits to the lower byte. */
314 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
315 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
316 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100317
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100318 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Roland McGrath44210112008-01-30 13:31:50 +0100321#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
322#define FP_EXP_TAG_VALID 0
323#define FP_EXP_TAG_ZERO 1
324#define FP_EXP_TAG_SPECIAL 2
325#define FP_EXP_TAG_EMPTY 3
326
327static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Roland McGrath44210112008-01-30 13:31:50 +0100329 struct _fpxreg *st;
330 u32 tos = (fxsave->swd >> 11) & 7;
331 u32 twd = (unsigned long) fxsave->twd;
332 u32 tag;
333 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 int i;
335
Roland McGrath44210112008-01-30 13:31:50 +0100336 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100337 if (twd & 0x1) {
338 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100340 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100342 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100345 if (!st->significand[0] &&
346 !st->significand[1] &&
347 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100348 !st->significand[3])
349 tag = FP_EXP_TAG_ZERO;
350 else
351 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
353 default:
Roland McGrath44210112008-01-30 13:31:50 +0100354 if (st->significand[3] & 0x8000)
355 tag = FP_EXP_TAG_VALID;
356 else
357 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 break;
359 }
360 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100361 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Roland McGrath44210112008-01-30 13:31:50 +0100363 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365 return ret;
366}
367
368/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * FXSR floating point environment conversions.
370 */
371
Ingo Molnarf6689642008-03-05 15:37:32 +0100372static void
373convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Avi Kivity86603282010-05-06 11:45:46 +0300375 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100376 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
377 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int i;
379
Roland McGrath44210112008-01-30 13:31:50 +0100380 env->cwd = fxsave->cwd | 0xffff0000u;
381 env->swd = fxsave->swd | 0xffff0000u;
382 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Roland McGrath44210112008-01-30 13:31:50 +0100384#ifdef CONFIG_X86_64
385 env->fip = fxsave->rip;
386 env->foo = fxsave->rdp;
387 if (tsk == current) {
388 /*
389 * should be actually ds/cs at fpu exception time, but
390 * that information is not available in 64bit mode.
391 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100392 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
393 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100394 } else {
395 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100396
Roland McGrath44210112008-01-30 13:31:50 +0100397 env->fos = 0xffff0000 | tsk->thread.ds;
398 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Roland McGrath44210112008-01-30 13:31:50 +0100400#else
401 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000402 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100403 env->foo = fxsave->foo;
404 env->fos = fxsave->fos;
405#endif
406
407 for (i = 0; i < 8; ++i)
408 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Roland McGrath44210112008-01-30 13:31:50 +0100411static void convert_to_fxsr(struct task_struct *tsk,
412 const struct user_i387_ia32_struct *env)
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Avi Kivity86603282010-05-06 11:45:46 +0300415 struct i387_fxsave_struct *fxsave = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100416 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
417 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 int i;
419
Roland McGrath44210112008-01-30 13:31:50 +0100420 fxsave->cwd = env->cwd;
421 fxsave->swd = env->swd;
422 fxsave->twd = twd_i387_to_fxsr(env->twd);
423 fxsave->fop = (u16) ((u32) env->fcs >> 16);
424#ifdef CONFIG_X86_64
425 fxsave->rip = env->fip;
426 fxsave->rdp = env->foo;
427 /* cs and ds ignored */
428#else
429 fxsave->fip = env->fip;
430 fxsave->fcs = (env->fcs & 0xffff);
431 fxsave->foo = env->foo;
432 fxsave->fos = env->fos;
433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Roland McGrath44210112008-01-30 13:31:50 +0100435 for (i = 0; i < 8; ++i)
436 memcpy(&to[i], &from[i], sizeof(from[0]));
437}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Roland McGrath44210112008-01-30 13:31:50 +0100439int fpregs_get(struct task_struct *target, const struct user_regset *regset,
440 unsigned int pos, unsigned int count,
441 void *kbuf, void __user *ubuf)
442{
443 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700444 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700446 ret = init_fpu(target);
447 if (ret)
448 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100449
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700450 if (!HAVE_HWFP)
451 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
452
Ingo Molnarf6689642008-03-05 15:37:32 +0100453 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100454 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300455 &target->thread.fpu.state->fsave, 0,
Suresh Siddha61c46282008-03-10 15:28:04 -0700456 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100457 }
Roland McGrath44210112008-01-30 13:31:50 +0100458
Suresh Siddha29104e12010-07-19 16:05:49 -0700459 sanitize_i387_state(target);
460
Roland McGrath44210112008-01-30 13:31:50 +0100461 if (kbuf && pos == 0 && count == sizeof(env)) {
462 convert_from_fxsr(kbuf, target);
463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Roland McGrath44210112008-01-30 13:31:50 +0100465
466 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100467
Roland McGrath44210112008-01-30 13:31:50 +0100468 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
469}
470
471int fpregs_set(struct task_struct *target, const struct user_regset *regset,
472 unsigned int pos, unsigned int count,
473 const void *kbuf, const void __user *ubuf)
474{
475 struct user_i387_ia32_struct env;
476 int ret;
477
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700478 ret = init_fpu(target);
479 if (ret)
480 return ret;
481
Suresh Siddha29104e12010-07-19 16:05:49 -0700482 sanitize_i387_state(target);
483
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700484 if (!HAVE_HWFP)
485 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
486
Ingo Molnarf6689642008-03-05 15:37:32 +0100487 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100488 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Avi Kivity86603282010-05-06 11:45:46 +0300489 &target->thread.fpu.state->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100490 }
Roland McGrath44210112008-01-30 13:31:50 +0100491
492 if (pos > 0 || count < sizeof(env))
493 convert_from_fxsr(&env, target);
494
495 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
496 if (!ret)
497 convert_to_fxsr(target, &env);
498
Suresh Siddha42deec62008-07-29 10:29:26 -0700499 /*
500 * update the header bit in the xsave header, indicating the
501 * presence of FP.
502 */
503 if (cpu_has_xsave)
Avi Kivity86603282010-05-06 11:45:46 +0300504 target->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100505 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508/*
509 * Signal frame handlers.
510 */
511
Roland McGrath44210112008-01-30 13:31:50 +0100512static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300515 struct i387_fsave_struct *fp = &tsk->thread.fpu.state->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Suresh Siddha61c46282008-03-10 15:28:04 -0700517 fp->status = fp->swd;
518 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return -1;
520 return 1;
521}
522
Roland McGrath44210112008-01-30 13:31:50 +0100523static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 struct task_struct *tsk = current;
Avi Kivity86603282010-05-06 11:45:46 +0300526 struct i387_fxsave_struct *fx = &tsk->thread.fpu.state->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100527 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 int err = 0;
529
Roland McGrath44210112008-01-30 13:31:50 +0100530 convert_from_fxsr(&env, tsk);
531 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return -1;
533
Suresh Siddha61c46282008-03-10 15:28:04 -0700534 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100535 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
536 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return -1;
538
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700539 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return -1;
541 return 1;
542}
543
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700544static int save_i387_xsave(void __user *buf)
545{
Suresh Siddha04944b72008-10-07 14:04:28 -0700546 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700547 struct _fpstate_ia32 __user *fx = buf;
548 int err = 0;
549
Suresh Siddha29104e12010-07-19 16:05:49 -0700550
551 sanitize_i387_state(tsk);
552
Suresh Siddha04944b72008-10-07 14:04:28 -0700553 /*
554 * For legacy compatible, we always set FP/SSE bits in the bit
555 * vector while saving the state to the user context.
556 * This will enable us capturing any changes(during sigreturn) to
557 * the FP/SSE bits by the legacy applications which don't touch
558 * xstate_bv in the xsave header.
559 *
560 * xsave aware applications can change the xstate_bv in the xsave
561 * header as well as change any contents in the memory layout.
562 * xrestore as part of sigreturn will capture all the changes.
563 */
Avi Kivity86603282010-05-06 11:45:46 +0300564 tsk->thread.fpu.state->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
Suresh Siddha04944b72008-10-07 14:04:28 -0700565
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700566 if (save_i387_fxsave(fx) < 0)
567 return -1;
568
569 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
570 sizeof(struct _fpx_sw_bytes));
571 err |= __put_user(FP_XSTATE_MAGIC2,
572 (__u32 __user *) (buf + sig_xstate_ia32_size
573 - FP_XSTATE_MAGIC2_SIZE));
574 if (err)
575 return -1;
576
577 return 1;
578}
579
Suresh Siddhaab513702008-07-29 10:29:22 -0700580int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Suresh Siddhaab513702008-07-29 10:29:22 -0700582 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
583 struct task_struct *tsk = current;
584
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100585 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700587
588 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
589 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100590 /*
591 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * attempted FPU operation by the 'current' process.
593 */
594 clear_used_math();
595
Ingo Molnarf6689642008-03-05 15:37:32 +0100596 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100597 return fpregs_soft_get(current, NULL,
598 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700599 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100601
Suresh Siddhaab513702008-07-29 10:29:22 -0700602 unlazy_fpu(tsk);
603
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700604 if (cpu_has_xsave)
605 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100606 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700607 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100608 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700609 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Roland McGrath44210112008-01-30 13:31:50 +0100612static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100615
Avi Kivity86603282010-05-06 11:45:46 +0300616 return __copy_from_user(&tsk->thread.fpu.state->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100617 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700620static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
621 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100624 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100625 int err;
626
Avi Kivity86603282010-05-06 11:45:46 +0300627 err = __copy_from_user(&tsk->thread.fpu.state->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700628 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* mxcsr reserved bits must be masked to zero for security reasons */
Avi Kivity86603282010-05-06 11:45:46 +0300630 tsk->thread.fpu.state->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100631 if (err || __copy_from_user(&env, buf, sizeof(env)))
632 return 1;
633 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100634
Roland McGrath44210112008-01-30 13:31:50 +0100635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700638static int restore_i387_xsave(void __user *buf)
639{
640 struct _fpx_sw_bytes fx_sw_user;
641 struct _fpstate_ia32 __user *fx_user =
642 ((struct _fpstate_ia32 __user *) buf);
643 struct i387_fxsave_struct __user *fx =
644 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
645 struct xsave_hdr_struct *xsave_hdr =
Avi Kivity86603282010-05-06 11:45:46 +0300646 &current->thread.fpu.state->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700647 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700648 int err;
649
650 if (check_for_xstate(fx, buf, &fx_sw_user))
651 goto fx_only;
652
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700653 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700654
655 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
656
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700657 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700658 /*
659 * These bits must be zero.
660 */
661 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
662
663 /*
664 * Init the state that is not present in the memory layout
665 * and enabled by the OS.
666 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700667 mask = ~(pcntxt_mask & ~mask);
668 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700669
670 return err;
671fx_only:
672 /*
673 * Couldn't find the extended state information in the memory
674 * layout. Restore the FP/SSE and init the other extended state
675 * enabled by the OS.
676 */
677 xsave_hdr->xstate_bv = XSTATE_FPSSE;
678 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
679}
680
Suresh Siddhaab513702008-07-29 10:29:22 -0700681int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700684 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700685 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700687 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700688 clear_fpu(tsk);
689
Suresh Siddhaab513702008-07-29 10:29:22 -0700690 if (!buf) {
691 if (used_math()) {
692 clear_fpu(tsk);
693 clear_used_math();
694 }
695
696 return 0;
697 } else
698 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
699 return -EACCES;
700
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700701 if (!used_math()) {
702 err = init_fpu(tsk);
703 if (err)
704 return err;
705 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700706
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700707 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700708 if (cpu_has_xsave)
709 err = restore_i387_xsave(buf);
710 else if (cpu_has_fxsr)
711 err = restore_i387_fxsave(fp, sizeof(struct
712 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100713 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700714 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100716 err = fpregs_soft_set(current, NULL,
717 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700718 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return err;
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725/*
726 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100727 * This is only used for a.out dumps now.
728 * It is declared generically using elf_fpregset_t (which is
729 * struct user_i387_struct) but is in fact only used for 32-bit
730 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100732int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100735 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100738 if (fpvalid)
739 fpvalid = !fpregs_get(tsk, NULL,
740 0, sizeof(struct user_i387_ia32_struct),
741 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 return fpvalid;
744}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700745EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100747#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */