blob: cbb9dc474a21f95305b0d0d12b951c84716dd573 [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>
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/sigcontext.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010013#include <asm/processor.h>
14#include <asm/math_emu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/uaccess.h>
Ingo Molnarf6689642008-03-05 15:37:32 +010016#include <asm/ptrace.h>
17#include <asm/i387.h>
18#include <asm/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Roland McGrath44210112008-01-30 13:31:50 +010020#ifdef CONFIG_X86_64
Ingo Molnarf6689642008-03-05 15:37:32 +010021# include <asm/sigcontext32.h>
22# include <asm/user32.h>
Roland McGrath44210112008-01-30 13:31:50 +010023#else
Suresh Siddhaab513702008-07-29 10:29:22 -070024# define save_i387_xstate_ia32 save_i387_xstate
25# define restore_i387_xstate_ia32 restore_i387_xstate
Ingo Molnarf6689642008-03-05 15:37:32 +010026# define _fpstate_ia32 _fpstate
Suresh Siddhaab513702008-07-29 10:29:22 -070027# define _xstate_ia32 _xstate
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070028# define sig_xstate_ia32_size sig_xstate_size
Suresh Siddhac37b5ef2008-07-29 10:29:25 -070029# define fx_sw_reserved_ia32 fx_sw_reserved
Ingo Molnarf6689642008-03-05 15:37:32 +010030# define user_i387_ia32_struct user_i387_struct
31# define user32_fxsr_struct user_fxsr_struct
Roland McGrath44210112008-01-30 13:31:50 +010032#endif
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#ifdef CONFIG_MATH_EMULATION
Ingo Molnarf6689642008-03-05 15:37:32 +010035# define HAVE_HWFP (boot_cpu_data.hard_math)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#else
Ingo Molnarf6689642008-03-05 15:37:32 +010037# define HAVE_HWFP 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#endif
39
Ingo Molnarf6689642008-03-05 15:37:32 +010040static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu;
Suresh Siddha61c46282008-03-10 15:28:04 -070041unsigned int xstate_size;
Suresh Siddha3c1c7f12008-07-29 10:29:21 -070042unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32);
Suresh Siddha61c46282008-03-10 15:28:04 -070043static struct i387_fxsave_struct fx_scratch __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Suresh Siddha61c46282008-03-10 15:28:04 -070045void __cpuinit mxcsr_feature_mask_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 unsigned long mask = 0;
Ingo Molnarf6689642008-03-05 15:37:32 +010048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 clts();
50 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -070051 memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct));
52 asm volatile("fxsave %0" : : "m" (fx_scratch));
53 mask = fx_scratch.mxcsr_mask;
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +010054 if (mask == 0)
55 mask = 0x0000ffbf;
56 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 mxcsr_feature_mask &= mask;
58 stts();
59}
60
Suresh Siddha61c46282008-03-10 15:28:04 -070061void __init init_thread_xstate(void)
62{
Suresh Siddhae8a496a2008-05-23 16:26:37 -070063 if (!HAVE_HWFP) {
64 xstate_size = sizeof(struct i387_soft_struct);
65 return;
66 }
67
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070068 if (cpu_has_xsave) {
69 xsave_cntxt_init();
70 return;
71 }
72
Suresh Siddha61c46282008-03-10 15:28:04 -070073 if (cpu_has_fxsr)
74 xstate_size = sizeof(struct i387_fxsave_struct);
75#ifdef CONFIG_X86_32
76 else
77 xstate_size = sizeof(struct i387_fsave_struct);
78#endif
Suresh Siddha61c46282008-03-10 15:28:04 -070079}
80
Roland McGrath44210112008-01-30 13:31:50 +010081#ifdef CONFIG_X86_64
82/*
83 * Called at bootup to set up the initial FPU state that is later cloned
84 * into all processes.
85 */
86void __cpuinit fpu_init(void)
87{
88 unsigned long oldcr0 = read_cr0();
Ingo Molnarf6689642008-03-05 15:37:32 +010089
Roland McGrath44210112008-01-30 13:31:50 +010090 set_in_cr4(X86_CR4_OSFXSR);
91 set_in_cr4(X86_CR4_OSXMMEXCPT);
92
Ingo Molnarf6689642008-03-05 15:37:32 +010093 write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */
Roland McGrath44210112008-01-30 13:31:50 +010094
Suresh Siddhadc1e35c2008-07-29 10:29:19 -070095 /*
96 * Boot processor to setup the FP and extended state context info.
97 */
98 if (!smp_processor_id())
99 init_thread_xstate();
100 xsave_init();
101
Roland McGrath44210112008-01-30 13:31:50 +0100102 mxcsr_feature_mask_init();
103 /* clean state in init */
Suresh Siddhab359e8a2008-07-29 10:29:20 -0700104 if (cpu_has_xsave)
105 current_thread_info()->status = TS_XSAVE;
106 else
107 current_thread_info()->status = 0;
Roland McGrath44210112008-01-30 13:31:50 +0100108 clear_used_math();
109}
110#endif /* CONFIG_X86_64 */
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * The _current_ task is using the FPU for the first time
114 * so initialize it and set the mxcsr to its default
115 * value at reset if we support XMM instructions and then
116 * remeber the current task has used the FPU.
117 */
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700118int init_fpu(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Roland McGrath44210112008-01-30 13:31:50 +0100120 if (tsk_used_math(tsk)) {
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700121 if (HAVE_HWFP && tsk == current)
Roland McGrath44210112008-01-30 13:31:50 +0100122 unlazy_fpu(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700123 return 0;
124 }
125
126 /*
127 * Memory allocation at the first usage of the FPU and other state.
128 */
129 if (!tsk->thread.xstate) {
130 tsk->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
131 GFP_KERNEL);
132 if (!tsk->thread.xstate)
133 return -ENOMEM;
Roland McGrath44210112008-01-30 13:31:50 +0100134 }
135
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700136#ifdef CONFIG_X86_32
137 if (!HAVE_HWFP) {
138 memset(tsk->thread.xstate, 0, xstate_size);
139 finit();
140 set_stopped_child_used_math(tsk);
141 return 0;
142 }
143#endif
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (cpu_has_fxsr) {
Suresh Siddha61c46282008-03-10 15:28:04 -0700146 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
147
148 memset(fx, 0, xstate_size);
149 fx->cwd = 0x37f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (cpu_has_xmm)
Suresh Siddha61c46282008-03-10 15:28:04 -0700151 fx->mxcsr = MXCSR_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 } else {
Suresh Siddha61c46282008-03-10 15:28:04 -0700153 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
154 memset(fp, 0, xstate_size);
155 fp->cwd = 0xffff037fu;
156 fp->swd = 0xffff0000u;
157 fp->twd = 0xffffffffu;
158 fp->fos = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
Roland McGrath44210112008-01-30 13:31:50 +0100160 /*
161 * Only the device not available exception or ptrace can call init_fpu.
162 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 set_stopped_child_used_math(tsk);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Roland McGrath44210112008-01-30 13:31:50 +0100167int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Roland McGrath44210112008-01-30 13:31:50 +0100169 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
Roland McGrath44210112008-01-30 13:31:50 +0100171
172int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
173{
174 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
175}
176
177int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
178 unsigned int pos, unsigned int count,
179 void *kbuf, void __user *ubuf)
180{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700181 int ret;
182
Roland McGrath44210112008-01-30 13:31:50 +0100183 if (!cpu_has_fxsr)
184 return -ENODEV;
185
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700186 ret = init_fpu(target);
187 if (ret)
188 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100189
190 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700191 &target->thread.xstate->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100192}
193
194int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
195 unsigned int pos, unsigned int count,
196 const void *kbuf, const void __user *ubuf)
197{
198 int ret;
199
200 if (!cpu_has_fxsr)
201 return -ENODEV;
202
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700203 ret = init_fpu(target);
204 if (ret)
205 return ret;
206
Roland McGrath44210112008-01-30 13:31:50 +0100207 set_stopped_child_used_math(target);
208
209 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700210 &target->thread.xstate->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100211
212 /*
213 * mxcsr reserved bits must be masked to zero for security reasons.
214 */
Suresh Siddha61c46282008-03-10 15:28:04 -0700215 target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100216
217 return ret;
218}
219
220#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/*
223 * FPU tag word conversions.
224 */
225
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100226static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100231 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100232 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100233 /* and move the valid bits to the lower byte. */
234 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
235 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
236 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100237
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100238 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Roland McGrath44210112008-01-30 13:31:50 +0100241#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
242#define FP_EXP_TAG_VALID 0
243#define FP_EXP_TAG_ZERO 1
244#define FP_EXP_TAG_SPECIAL 2
245#define FP_EXP_TAG_EMPTY 3
246
247static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Roland McGrath44210112008-01-30 13:31:50 +0100249 struct _fpxreg *st;
250 u32 tos = (fxsave->swd >> 11) & 7;
251 u32 twd = (unsigned long) fxsave->twd;
252 u32 tag;
253 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 int i;
255
Roland McGrath44210112008-01-30 13:31:50 +0100256 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100257 if (twd & 0x1) {
258 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100260 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100262 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100265 if (!st->significand[0] &&
266 !st->significand[1] &&
267 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100268 !st->significand[3])
269 tag = FP_EXP_TAG_ZERO;
270 else
271 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 break;
273 default:
Roland McGrath44210112008-01-30 13:31:50 +0100274 if (st->significand[3] & 0x8000)
275 tag = FP_EXP_TAG_VALID;
276 else
277 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 break;
279 }
280 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100281 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Roland McGrath44210112008-01-30 13:31:50 +0100283 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285 return ret;
286}
287
288/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * FXSR floating point environment conversions.
290 */
291
Ingo Molnarf6689642008-03-05 15:37:32 +0100292static void
293convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Suresh Siddha61c46282008-03-10 15:28:04 -0700295 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100296 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
297 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int i;
299
Roland McGrath44210112008-01-30 13:31:50 +0100300 env->cwd = fxsave->cwd | 0xffff0000u;
301 env->swd = fxsave->swd | 0xffff0000u;
302 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Roland McGrath44210112008-01-30 13:31:50 +0100304#ifdef CONFIG_X86_64
305 env->fip = fxsave->rip;
306 env->foo = fxsave->rdp;
307 if (tsk == current) {
308 /*
309 * should be actually ds/cs at fpu exception time, but
310 * that information is not available in 64bit mode.
311 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100312 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
313 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100314 } else {
315 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100316
Roland McGrath44210112008-01-30 13:31:50 +0100317 env->fos = 0xffff0000 | tsk->thread.ds;
318 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Roland McGrath44210112008-01-30 13:31:50 +0100320#else
321 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000322 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100323 env->foo = fxsave->foo;
324 env->fos = fxsave->fos;
325#endif
326
327 for (i = 0; i < 8; ++i)
328 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Roland McGrath44210112008-01-30 13:31:50 +0100331static void convert_to_fxsr(struct task_struct *tsk,
332 const struct user_i387_ia32_struct *env)
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Suresh Siddha61c46282008-03-10 15:28:04 -0700335 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100336 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
337 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 int i;
339
Roland McGrath44210112008-01-30 13:31:50 +0100340 fxsave->cwd = env->cwd;
341 fxsave->swd = env->swd;
342 fxsave->twd = twd_i387_to_fxsr(env->twd);
343 fxsave->fop = (u16) ((u32) env->fcs >> 16);
344#ifdef CONFIG_X86_64
345 fxsave->rip = env->fip;
346 fxsave->rdp = env->foo;
347 /* cs and ds ignored */
348#else
349 fxsave->fip = env->fip;
350 fxsave->fcs = (env->fcs & 0xffff);
351 fxsave->foo = env->foo;
352 fxsave->fos = env->fos;
353#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Roland McGrath44210112008-01-30 13:31:50 +0100355 for (i = 0; i < 8; ++i)
356 memcpy(&to[i], &from[i], sizeof(from[0]));
357}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Roland McGrath44210112008-01-30 13:31:50 +0100359int fpregs_get(struct task_struct *target, const struct user_regset *regset,
360 unsigned int pos, unsigned int count,
361 void *kbuf, void __user *ubuf)
362{
363 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700364 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700366 ret = init_fpu(target);
367 if (ret)
368 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100369
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700370 if (!HAVE_HWFP)
371 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
372
Ingo Molnarf6689642008-03-05 15:37:32 +0100373 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100374 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700375 &target->thread.xstate->fsave, 0,
376 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100377 }
Roland McGrath44210112008-01-30 13:31:50 +0100378
379 if (kbuf && pos == 0 && count == sizeof(env)) {
380 convert_from_fxsr(kbuf, target);
381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Roland McGrath44210112008-01-30 13:31:50 +0100383
384 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100385
Roland McGrath44210112008-01-30 13:31:50 +0100386 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
387}
388
389int fpregs_set(struct task_struct *target, const struct user_regset *regset,
390 unsigned int pos, unsigned int count,
391 const void *kbuf, const void __user *ubuf)
392{
393 struct user_i387_ia32_struct env;
394 int ret;
395
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700396 ret = init_fpu(target);
397 if (ret)
398 return ret;
399
Roland McGrath44210112008-01-30 13:31:50 +0100400 set_stopped_child_used_math(target);
401
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700402 if (!HAVE_HWFP)
403 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
404
Ingo Molnarf6689642008-03-05 15:37:32 +0100405 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100406 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700407 &target->thread.xstate->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100408 }
Roland McGrath44210112008-01-30 13:31:50 +0100409
410 if (pos > 0 || count < sizeof(env))
411 convert_from_fxsr(&env, target);
412
413 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
414 if (!ret)
415 convert_to_fxsr(target, &env);
416
417 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420/*
421 * Signal frame handlers.
422 */
423
Roland McGrath44210112008-01-30 13:31:50 +0100424static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 struct task_struct *tsk = current;
Suresh Siddha61c46282008-03-10 15:28:04 -0700427 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Suresh Siddha61c46282008-03-10 15:28:04 -0700429 fp->status = fp->swd;
430 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return -1;
432 return 1;
433}
434
Roland McGrath44210112008-01-30 13:31:50 +0100435static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct task_struct *tsk = current;
Suresh Siddha61c46282008-03-10 15:28:04 -0700438 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100439 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 int err = 0;
441
Roland McGrath44210112008-01-30 13:31:50 +0100442 convert_from_fxsr(&env, tsk);
443 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -1;
445
Suresh Siddha61c46282008-03-10 15:28:04 -0700446 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100447 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
448 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return -1;
450
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700451 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -1;
453 return 1;
454}
455
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700456static int save_i387_xsave(void __user *buf)
457{
458 struct _fpstate_ia32 __user *fx = buf;
459 int err = 0;
460
461 if (save_i387_fxsave(fx) < 0)
462 return -1;
463
464 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
465 sizeof(struct _fpx_sw_bytes));
466 err |= __put_user(FP_XSTATE_MAGIC2,
467 (__u32 __user *) (buf + sig_xstate_ia32_size
468 - FP_XSTATE_MAGIC2_SIZE));
469 if (err)
470 return -1;
471
472 return 1;
473}
474
Suresh Siddhaab513702008-07-29 10:29:22 -0700475int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Suresh Siddhaab513702008-07-29 10:29:22 -0700477 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
478 struct task_struct *tsk = current;
479
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100480 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700482
483 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
484 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100485 /*
486 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * attempted FPU operation by the 'current' process.
488 */
489 clear_used_math();
490
Ingo Molnarf6689642008-03-05 15:37:32 +0100491 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100492 return fpregs_soft_get(current, NULL,
493 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700494 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100496
Suresh Siddhaab513702008-07-29 10:29:22 -0700497 unlazy_fpu(tsk);
498
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700499 if (cpu_has_xsave)
500 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100501 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700502 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100503 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700504 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Roland McGrath44210112008-01-30 13:31:50 +0100507static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100510
Suresh Siddha61c46282008-03-10 15:28:04 -0700511 return __copy_from_user(&tsk->thread.xstate->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100512 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700515static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
516 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100519 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100520 int err;
521
Suresh Siddha61c46282008-03-10 15:28:04 -0700522 err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700523 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* mxcsr reserved bits must be masked to zero for security reasons */
Suresh Siddha61c46282008-03-10 15:28:04 -0700525 tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100526 if (err || __copy_from_user(&env, buf, sizeof(env)))
527 return 1;
528 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100529
Roland McGrath44210112008-01-30 13:31:50 +0100530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700533static int restore_i387_xsave(void __user *buf)
534{
535 struct _fpx_sw_bytes fx_sw_user;
536 struct _fpstate_ia32 __user *fx_user =
537 ((struct _fpstate_ia32 __user *) buf);
538 struct i387_fxsave_struct __user *fx =
539 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
540 struct xsave_hdr_struct *xsave_hdr =
541 &current->thread.xstate->xsave.xsave_hdr;
542 unsigned int lmask, hmask;
543 int err;
544
545 if (check_for_xstate(fx, buf, &fx_sw_user))
546 goto fx_only;
547
548 lmask = fx_sw_user.xstate_bv;
549 hmask = fx_sw_user.xstate_bv >> 32;
550
551 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
552
553 xsave_hdr->xstate_bv &= (pcntxt_lmask | (((u64) pcntxt_hmask) << 32));
554 /*
555 * These bits must be zero.
556 */
557 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
558
559 /*
560 * Init the state that is not present in the memory layout
561 * and enabled by the OS.
562 */
563 lmask = ~(pcntxt_lmask & ~lmask);
564 hmask = ~(pcntxt_hmask & ~hmask);
565 xsave_hdr->xstate_bv &= (lmask | (((u64) hmask) << 32));
566
567 return err;
568fx_only:
569 /*
570 * Couldn't find the extended state information in the memory
571 * layout. Restore the FP/SSE and init the other extended state
572 * enabled by the OS.
573 */
574 xsave_hdr->xstate_bv = XSTATE_FPSSE;
575 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
576}
577
Suresh Siddhaab513702008-07-29 10:29:22 -0700578int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700581 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700582 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700584 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700585 clear_fpu(tsk);
586
Suresh Siddhaab513702008-07-29 10:29:22 -0700587 if (!buf) {
588 if (used_math()) {
589 clear_fpu(tsk);
590 clear_used_math();
591 }
592
593 return 0;
594 } else
595 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
596 return -EACCES;
597
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700598 if (!used_math()) {
599 err = init_fpu(tsk);
600 if (err)
601 return err;
602 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700603
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700604 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700605 if (cpu_has_xsave)
606 err = restore_i387_xsave(buf);
607 else if (cpu_has_fxsr)
608 err = restore_i387_fxsave(fp, sizeof(struct
609 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100610 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700611 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100613 err = fpregs_soft_set(current, NULL,
614 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700615 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return err;
620}
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622/*
623 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100624 * This is only used for a.out dumps now.
625 * It is declared generically using elf_fpregset_t (which is
626 * struct user_i387_struct) but is in fact only used for 32-bit
627 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100629int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100632 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100635 if (fpvalid)
636 fpvalid = !fpregs_get(tsk, NULL,
637 0, sizeof(struct user_i387_ia32_struct),
638 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 return fpvalid;
641}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700642EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100644#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */