blob: 7a8a193b514437f2fa6c293b6c482685df84a995 [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
Rakib Mullick9bc646f2008-11-20 19:08:45 +060061void __cpuinit init_thread_xstate(void)
Suresh Siddha61c46282008-03-10 15:28:04 -070062{
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);
Daniel Glöcknerab9e1852009-03-04 19:42:27 +0100139 finit_task(tsk);
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700140 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
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800167/*
168 * The xstateregs_active() routine is the same as the fpregs_active() routine,
169 * as the "regset->n" for the xstate regset will be updated based on the feature
170 * capabilites supported by the xsave.
171 */
Roland McGrath44210112008-01-30 13:31:50 +0100172int fpregs_active(struct task_struct *target, const struct user_regset *regset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Roland McGrath44210112008-01-30 13:31:50 +0100174 return tsk_used_math(target) ? regset->n : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
Roland McGrath44210112008-01-30 13:31:50 +0100176
177int xfpregs_active(struct task_struct *target, const struct user_regset *regset)
178{
179 return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0;
180}
181
182int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
183 unsigned int pos, unsigned int count,
184 void *kbuf, void __user *ubuf)
185{
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700186 int ret;
187
Roland McGrath44210112008-01-30 13:31:50 +0100188 if (!cpu_has_fxsr)
189 return -ENODEV;
190
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700191 ret = init_fpu(target);
192 if (ret)
193 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100194
195 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700196 &target->thread.xstate->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100197}
198
199int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
200 unsigned int pos, unsigned int count,
201 const void *kbuf, const void __user *ubuf)
202{
203 int ret;
204
205 if (!cpu_has_fxsr)
206 return -ENODEV;
207
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700208 ret = init_fpu(target);
209 if (ret)
210 return ret;
211
Roland McGrath44210112008-01-30 13:31:50 +0100212 set_stopped_child_used_math(target);
213
214 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700215 &target->thread.xstate->fxsave, 0, -1);
Roland McGrath44210112008-01-30 13:31:50 +0100216
217 /*
218 * mxcsr reserved bits must be masked to zero for security reasons.
219 */
Suresh Siddha61c46282008-03-10 15:28:04 -0700220 target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100221
Suresh Siddha42deec62008-07-29 10:29:26 -0700222 /*
223 * update the header bits in the xsave header, indicating the
224 * presence of FP and SSE state.
225 */
226 if (cpu_has_xsave)
227 target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
228
Roland McGrath44210112008-01-30 13:31:50 +0100229 return ret;
230}
231
Suresh Siddha5b3efd52010-02-11 11:50:59 -0800232int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
233 unsigned int pos, unsigned int count,
234 void *kbuf, void __user *ubuf)
235{
236 int ret;
237
238 if (!cpu_has_xsave)
239 return -ENODEV;
240
241 ret = init_fpu(target);
242 if (ret)
243 return ret;
244
245 /*
246 * First copy the fxsave bytes 0..463.
247 */
248 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
249 &target->thread.xstate->xsave, 0,
250 offsetof(struct user_xstateregs,
251 i387.xstate_fx_sw));
252 if (ret)
253 return ret;
254
255 /*
256 * Copy the 48bytes defined by software.
257 */
258 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
259 xstate_fx_sw_bytes,
260 offsetof(struct user_xstateregs,
261 i387.xstate_fx_sw),
262 offsetof(struct user_xstateregs,
263 xsave_hdr));
264 if (ret)
265 return ret;
266
267 /*
268 * Copy the rest of xstate memory layout.
269 */
270 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
271 &target->thread.xstate->xsave.xsave_hdr,
272 offsetof(struct user_xstateregs,
273 xsave_hdr), -1);
274 return ret;
275}
276
277int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
278 unsigned int pos, unsigned int count,
279 const void *kbuf, const void __user *ubuf)
280{
281 int ret;
282 struct xsave_hdr_struct *xsave_hdr;
283
284 if (!cpu_has_xsave)
285 return -ENODEV;
286
287 ret = init_fpu(target);
288 if (ret)
289 return ret;
290
291 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
292 &target->thread.xstate->xsave, 0, -1);
293
294 /*
295 * mxcsr reserved bits must be masked to zero for security reasons.
296 */
297 target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
298
299 xsave_hdr = &target->thread.xstate->xsave.xsave_hdr;
300
301 xsave_hdr->xstate_bv &= pcntxt_mask;
302 /*
303 * These bits must be zero.
304 */
305 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
306
307 return ret;
308}
309
Roland McGrath44210112008-01-30 13:31:50 +0100310#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/*
313 * FPU tag word conversions.
314 */
315
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100316static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100321 tmp = ~twd;
Roland McGrath44210112008-01-30 13:31:50 +0100322 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100323 /* and move the valid bits to the lower byte. */
324 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
325 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
326 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
Ingo Molnarf6689642008-03-05 15:37:32 +0100327
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100328 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Roland McGrath44210112008-01-30 13:31:50 +0100331#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16);
332#define FP_EXP_TAG_VALID 0
333#define FP_EXP_TAG_ZERO 1
334#define FP_EXP_TAG_SPECIAL 2
335#define FP_EXP_TAG_EMPTY 3
336
337static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Roland McGrath44210112008-01-30 13:31:50 +0100339 struct _fpxreg *st;
340 u32 tos = (fxsave->swd >> 11) & 7;
341 u32 twd = (unsigned long) fxsave->twd;
342 u32 tag;
343 u32 ret = 0xffff0000u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 int i;
345
Roland McGrath44210112008-01-30 13:31:50 +0100346 for (i = 0; i < 8; i++, twd >>= 1) {
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100347 if (twd & 0x1) {
348 st = FPREG_ADDR(fxsave, (i - tos) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100350 switch (st->exponent & 0x7fff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 case 0x7fff:
Roland McGrath44210112008-01-30 13:31:50 +0100352 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 break;
354 case 0x0000:
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100355 if (!st->significand[0] &&
356 !st->significand[1] &&
357 !st->significand[2] &&
Roland McGrath44210112008-01-30 13:31:50 +0100358 !st->significand[3])
359 tag = FP_EXP_TAG_ZERO;
360 else
361 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 break;
363 default:
Roland McGrath44210112008-01-30 13:31:50 +0100364 if (st->significand[3] & 0x8000)
365 tag = FP_EXP_TAG_VALID;
366 else
367 tag = FP_EXP_TAG_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 break;
369 }
370 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100371 tag = FP_EXP_TAG_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Roland McGrath44210112008-01-30 13:31:50 +0100373 ret |= tag << (2 * i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375 return ret;
376}
377
378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * FXSR floating point environment conversions.
380 */
381
Ingo Molnarf6689642008-03-05 15:37:32 +0100382static void
383convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Suresh Siddha61c46282008-03-10 15:28:04 -0700385 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100386 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
387 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 int i;
389
Roland McGrath44210112008-01-30 13:31:50 +0100390 env->cwd = fxsave->cwd | 0xffff0000u;
391 env->swd = fxsave->swd | 0xffff0000u;
392 env->twd = twd_fxsr_to_i387(fxsave);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Roland McGrath44210112008-01-30 13:31:50 +0100394#ifdef CONFIG_X86_64
395 env->fip = fxsave->rip;
396 env->foo = fxsave->rdp;
397 if (tsk == current) {
398 /*
399 * should be actually ds/cs at fpu exception time, but
400 * that information is not available in 64bit mode.
401 */
Ingo Molnarf6689642008-03-05 15:37:32 +0100402 asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos));
403 asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs));
Roland McGrath44210112008-01-30 13:31:50 +0100404 } else {
405 struct pt_regs *regs = task_pt_regs(tsk);
Ingo Molnarf6689642008-03-05 15:37:32 +0100406
Roland McGrath44210112008-01-30 13:31:50 +0100407 env->fos = 0xffff0000 | tsk->thread.ds;
408 env->fcs = regs->cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Roland McGrath44210112008-01-30 13:31:50 +0100410#else
411 env->fip = fxsave->fip;
Jan Beulich609b5292008-03-05 08:35:14 +0000412 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
Roland McGrath44210112008-01-30 13:31:50 +0100413 env->foo = fxsave->foo;
414 env->fos = fxsave->fos;
415#endif
416
417 for (i = 0; i < 8; ++i)
418 memcpy(&to[i], &from[i], sizeof(to[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Roland McGrath44210112008-01-30 13:31:50 +0100421static void convert_to_fxsr(struct task_struct *tsk,
422 const struct user_i387_ia32_struct *env)
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Suresh Siddha61c46282008-03-10 15:28:04 -0700425 struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100426 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
427 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int i;
429
Roland McGrath44210112008-01-30 13:31:50 +0100430 fxsave->cwd = env->cwd;
431 fxsave->swd = env->swd;
432 fxsave->twd = twd_i387_to_fxsr(env->twd);
433 fxsave->fop = (u16) ((u32) env->fcs >> 16);
434#ifdef CONFIG_X86_64
435 fxsave->rip = env->fip;
436 fxsave->rdp = env->foo;
437 /* cs and ds ignored */
438#else
439 fxsave->fip = env->fip;
440 fxsave->fcs = (env->fcs & 0xffff);
441 fxsave->foo = env->foo;
442 fxsave->fos = env->fos;
443#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Roland McGrath44210112008-01-30 13:31:50 +0100445 for (i = 0; i < 8; ++i)
446 memcpy(&to[i], &from[i], sizeof(from[0]));
447}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Roland McGrath44210112008-01-30 13:31:50 +0100449int fpregs_get(struct task_struct *target, const struct user_regset *regset,
450 unsigned int pos, unsigned int count,
451 void *kbuf, void __user *ubuf)
452{
453 struct user_i387_ia32_struct env;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700454 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700456 ret = init_fpu(target);
457 if (ret)
458 return ret;
Roland McGrath44210112008-01-30 13:31:50 +0100459
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700460 if (!HAVE_HWFP)
461 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
462
Ingo Molnarf6689642008-03-05 15:37:32 +0100463 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100464 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700465 &target->thread.xstate->fsave, 0,
466 -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100467 }
Roland McGrath44210112008-01-30 13:31:50 +0100468
469 if (kbuf && pos == 0 && count == sizeof(env)) {
470 convert_from_fxsr(kbuf, target);
471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Roland McGrath44210112008-01-30 13:31:50 +0100473
474 convert_from_fxsr(&env, target);
Ingo Molnarf6689642008-03-05 15:37:32 +0100475
Roland McGrath44210112008-01-30 13:31:50 +0100476 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
477}
478
479int fpregs_set(struct task_struct *target, const struct user_regset *regset,
480 unsigned int pos, unsigned int count,
481 const void *kbuf, const void __user *ubuf)
482{
483 struct user_i387_ia32_struct env;
484 int ret;
485
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700486 ret = init_fpu(target);
487 if (ret)
488 return ret;
489
Roland McGrath44210112008-01-30 13:31:50 +0100490 set_stopped_child_used_math(target);
491
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700492 if (!HAVE_HWFP)
493 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
494
Ingo Molnarf6689642008-03-05 15:37:32 +0100495 if (!cpu_has_fxsr) {
Roland McGrath44210112008-01-30 13:31:50 +0100496 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Suresh Siddha61c46282008-03-10 15:28:04 -0700497 &target->thread.xstate->fsave, 0, -1);
Ingo Molnarf6689642008-03-05 15:37:32 +0100498 }
Roland McGrath44210112008-01-30 13:31:50 +0100499
500 if (pos > 0 || count < sizeof(env))
501 convert_from_fxsr(&env, target);
502
503 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
504 if (!ret)
505 convert_to_fxsr(target, &env);
506
Suresh Siddha42deec62008-07-29 10:29:26 -0700507 /*
508 * update the header bit in the xsave header, indicating the
509 * presence of FP.
510 */
511 if (cpu_has_xsave)
512 target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FP;
Roland McGrath44210112008-01-30 13:31:50 +0100513 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516/*
517 * Signal frame handlers.
518 */
519
Roland McGrath44210112008-01-30 13:31:50 +0100520static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 struct task_struct *tsk = current;
Suresh Siddha61c46282008-03-10 15:28:04 -0700523 struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Suresh Siddha61c46282008-03-10 15:28:04 -0700525 fp->status = fp->swd;
526 if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return -1;
528 return 1;
529}
530
Roland McGrath44210112008-01-30 13:31:50 +0100531static int save_i387_fxsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 struct task_struct *tsk = current;
Suresh Siddha61c46282008-03-10 15:28:04 -0700534 struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave;
Roland McGrath44210112008-01-30 13:31:50 +0100535 struct user_i387_ia32_struct env;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int err = 0;
537
Roland McGrath44210112008-01-30 13:31:50 +0100538 convert_from_fxsr(&env, tsk);
539 if (__copy_to_user(buf, &env, sizeof(env)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return -1;
541
Suresh Siddha61c46282008-03-10 15:28:04 -0700542 err |= __put_user(fx->swd, &buf->status);
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100543 err |= __put_user(X86_FXSR_MAGIC, &buf->magic);
544 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -1;
546
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700547 if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -1;
549 return 1;
550}
551
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700552static int save_i387_xsave(void __user *buf)
553{
Suresh Siddha04944b72008-10-07 14:04:28 -0700554 struct task_struct *tsk = current;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700555 struct _fpstate_ia32 __user *fx = buf;
556 int err = 0;
557
Suresh Siddha04944b72008-10-07 14:04:28 -0700558 /*
559 * For legacy compatible, we always set FP/SSE bits in the bit
560 * vector while saving the state to the user context.
561 * This will enable us capturing any changes(during sigreturn) to
562 * the FP/SSE bits by the legacy applications which don't touch
563 * xstate_bv in the xsave header.
564 *
565 * xsave aware applications can change the xstate_bv in the xsave
566 * header as well as change any contents in the memory layout.
567 * xrestore as part of sigreturn will capture all the changes.
568 */
569 tsk->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE;
570
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700571 if (save_i387_fxsave(fx) < 0)
572 return -1;
573
574 err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32,
575 sizeof(struct _fpx_sw_bytes));
576 err |= __put_user(FP_XSTATE_MAGIC2,
577 (__u32 __user *) (buf + sig_xstate_ia32_size
578 - FP_XSTATE_MAGIC2_SIZE));
579 if (err)
580 return -1;
581
582 return 1;
583}
584
Suresh Siddhaab513702008-07-29 10:29:22 -0700585int save_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Suresh Siddhaab513702008-07-29 10:29:22 -0700587 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
588 struct task_struct *tsk = current;
589
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100590 if (!used_math())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700592
593 if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size))
594 return -EACCES;
Ingo Molnarf6689642008-03-05 15:37:32 +0100595 /*
596 * This will cause a "finit" to be triggered by the next
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * attempted FPU operation by the 'current' process.
598 */
599 clear_used_math();
600
Ingo Molnarf6689642008-03-05 15:37:32 +0100601 if (!HAVE_HWFP) {
Roland McGrath44210112008-01-30 13:31:50 +0100602 return fpregs_soft_get(current, NULL,
603 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700604 NULL, fp) ? -1 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Ingo Molnarf6689642008-03-05 15:37:32 +0100606
Suresh Siddhaab513702008-07-29 10:29:22 -0700607 unlazy_fpu(tsk);
608
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700609 if (cpu_has_xsave)
610 return save_i387_xsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100611 if (cpu_has_fxsr)
Suresh Siddhaab513702008-07-29 10:29:22 -0700612 return save_i387_fxsave(fp);
Ingo Molnarf6689642008-03-05 15:37:32 +0100613 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700614 return save_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Roland McGrath44210112008-01-30 13:31:50 +0100617static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100620
Suresh Siddha61c46282008-03-10 15:28:04 -0700621 return __copy_from_user(&tsk->thread.xstate->fsave, buf,
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100622 sizeof(struct i387_fsave_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700625static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf,
626 unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct task_struct *tsk = current;
Roland McGrath44210112008-01-30 13:31:50 +0100629 struct user_i387_ia32_struct env;
Ingo Molnarf6689642008-03-05 15:37:32 +0100630 int err;
631
Suresh Siddha61c46282008-03-10 15:28:04 -0700632 err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0],
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700633 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* mxcsr reserved bits must be masked to zero for security reasons */
Suresh Siddha61c46282008-03-10 15:28:04 -0700635 tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask;
Roland McGrath44210112008-01-30 13:31:50 +0100636 if (err || __copy_from_user(&env, buf, sizeof(env)))
637 return 1;
638 convert_to_fxsr(tsk, &env);
Ingo Molnarf6689642008-03-05 15:37:32 +0100639
Roland McGrath44210112008-01-30 13:31:50 +0100640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700643static int restore_i387_xsave(void __user *buf)
644{
645 struct _fpx_sw_bytes fx_sw_user;
646 struct _fpstate_ia32 __user *fx_user =
647 ((struct _fpstate_ia32 __user *) buf);
648 struct i387_fxsave_struct __user *fx =
649 (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0];
650 struct xsave_hdr_struct *xsave_hdr =
651 &current->thread.xstate->xsave.xsave_hdr;
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700652 u64 mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700653 int err;
654
655 if (check_for_xstate(fx, buf, &fx_sw_user))
656 goto fx_only;
657
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700658 mask = fx_sw_user.xstate_bv;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700659
660 err = restore_i387_fxsave(buf, fx_sw_user.xstate_size);
661
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700662 xsave_hdr->xstate_bv &= pcntxt_mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700663 /*
664 * These bits must be zero.
665 */
666 xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0;
667
668 /*
669 * Init the state that is not present in the memory layout
670 * and enabled by the OS.
671 */
H. Peter Anvin6152e4b2008-07-29 17:23:16 -0700672 mask = ~(pcntxt_mask & ~mask);
673 xsave_hdr->xstate_bv &= mask;
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700674
675 return err;
676fx_only:
677 /*
678 * Couldn't find the extended state information in the memory
679 * layout. Restore the FP/SSE and init the other extended state
680 * enabled by the OS.
681 */
682 xsave_hdr->xstate_bv = XSTATE_FPSSE;
683 return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct));
684}
685
Suresh Siddhaab513702008-07-29 10:29:22 -0700686int restore_i387_xstate_ia32(void __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 int err;
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700689 struct task_struct *tsk = current;
Suresh Siddhaab513702008-07-29 10:29:22 -0700690 struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700692 if (HAVE_HWFP)
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700693 clear_fpu(tsk);
694
Suresh Siddhaab513702008-07-29 10:29:22 -0700695 if (!buf) {
696 if (used_math()) {
697 clear_fpu(tsk);
698 clear_used_math();
699 }
700
701 return 0;
702 } else
703 if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size))
704 return -EACCES;
705
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700706 if (!used_math()) {
707 err = init_fpu(tsk);
708 if (err)
709 return err;
710 }
Suresh Siddhafd3c3ed2008-05-07 12:09:52 -0700711
Suresh Siddhae8a496a2008-05-23 16:26:37 -0700712 if (HAVE_HWFP) {
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700713 if (cpu_has_xsave)
714 err = restore_i387_xsave(buf);
715 else if (cpu_has_fxsr)
716 err = restore_i387_fxsave(fp, sizeof(struct
717 i387_fxsave_struct));
Ingo Molnarf6689642008-03-05 15:37:32 +0100718 else
Suresh Siddhaab513702008-07-29 10:29:22 -0700719 err = restore_i387_fsave(fp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 } else {
Roland McGrath44210112008-01-30 13:31:50 +0100721 err = fpregs_soft_set(current, NULL,
722 0, sizeof(struct user_i387_ia32_struct),
Suresh Siddhaab513702008-07-29 10:29:22 -0700723 NULL, fp) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725 set_used_math();
Ingo Molnarf6689642008-03-05 15:37:32 +0100726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return err;
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/*
731 * FPU state for core dumps.
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100732 * This is only used for a.out dumps now.
733 * It is declared generically using elf_fpregset_t (which is
734 * struct user_i387_struct) but is in fact only used for 32-bit
735 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
Cyrill Gorcunov3b095a02008-01-30 13:31:26 +0100737int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 struct task_struct *tsk = current;
Ingo Molnarf6689642008-03-05 15:37:32 +0100740 int fpvalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 fpvalid = !!used_math();
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100743 if (fpvalid)
744 fpvalid = !fpregs_get(tsk, NULL,
745 0, sizeof(struct user_i387_ia32_struct),
746 fpu, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 return fpvalid;
749}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700750EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Roland McGrath60b3b9a2008-01-30 13:31:55 +0100752#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */