Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * 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 Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 8 | #include <linux/module.h> |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 9 | #include <linux/regset.h> |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 10 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <asm/sigcontext.h> |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 14 | #include <asm/processor.h> |
| 15 | #include <asm/math_emu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <asm/uaccess.h> |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 17 | #include <asm/ptrace.h> |
| 18 | #include <asm/i387.h> |
| 19 | #include <asm/user.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 21 | #ifdef CONFIG_X86_64 |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 22 | # include <asm/sigcontext32.h> |
| 23 | # include <asm/user32.h> |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 24 | #else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 25 | # define save_i387_xstate_ia32 save_i387_xstate |
| 26 | # define restore_i387_xstate_ia32 restore_i387_xstate |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 27 | # define _fpstate_ia32 _fpstate |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 28 | # define _xstate_ia32 _xstate |
Suresh Siddha | 3c1c7f1 | 2008-07-29 10:29:21 -0700 | [diff] [blame] | 29 | # define sig_xstate_ia32_size sig_xstate_size |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 30 | # define fx_sw_reserved_ia32 fx_sw_reserved |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 31 | # define user_i387_ia32_struct user_i387_struct |
| 32 | # define user32_fxsr_struct user_fxsr_struct |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 33 | #endif |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #ifdef CONFIG_MATH_EMULATION |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 36 | # define HAVE_HWFP (boot_cpu_data.hard_math) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #else |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 38 | # define HAVE_HWFP 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #endif |
| 40 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 41 | static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 42 | unsigned int xstate_size; |
Suresh Siddha | 3c1c7f1 | 2008-07-29 10:29:21 -0700 | [diff] [blame] | 43 | unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32); |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 44 | static struct i387_fxsave_struct fx_scratch __cpuinitdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 46 | void __cpuinit mxcsr_feature_mask_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
| 48 | unsigned long mask = 0; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | clts(); |
| 51 | if (cpu_has_fxsr) { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 52 | memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct)); |
| 53 | asm volatile("fxsave %0" : : "m" (fx_scratch)); |
| 54 | mask = fx_scratch.mxcsr_mask; |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 55 | if (mask == 0) |
| 56 | mask = 0x0000ffbf; |
| 57 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | mxcsr_feature_mask &= mask; |
| 59 | stts(); |
| 60 | } |
| 61 | |
Rakib Mullick | 9bc646f | 2008-11-20 19:08:45 +0600 | [diff] [blame] | 62 | void __cpuinit init_thread_xstate(void) |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 63 | { |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 64 | if (!HAVE_HWFP) { |
| 65 | xstate_size = sizeof(struct i387_soft_struct); |
| 66 | return; |
| 67 | } |
| 68 | |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 69 | if (cpu_has_xsave) { |
| 70 | xsave_cntxt_init(); |
| 71 | return; |
| 72 | } |
| 73 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 74 | 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 Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 82 | #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 | */ |
| 87 | void __cpuinit fpu_init(void) |
| 88 | { |
| 89 | unsigned long oldcr0 = read_cr0(); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 90 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 91 | set_in_cr4(X86_CR4_OSFXSR); |
| 92 | set_in_cr4(X86_CR4_OSXMMEXCPT); |
| 93 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 94 | write_cr0(oldcr0 & ~(X86_CR0_TS|X86_CR0_EM)); /* clear TS and EM */ |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 95 | |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 96 | /* |
| 97 | * Boot processor to setup the FP and extended state context info. |
| 98 | */ |
| 99 | if (!smp_processor_id()) |
| 100 | init_thread_xstate(); |
| 101 | xsave_init(); |
| 102 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 103 | mxcsr_feature_mask_init(); |
| 104 | /* clean state in init */ |
Avi Kivity | c9ad488 | 2010-05-06 11:45:45 +0300 | [diff] [blame^] | 105 | current_thread_info()->status = 0; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 106 | clear_used_math(); |
| 107 | } |
| 108 | #endif /* CONFIG_X86_64 */ |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | /* |
| 111 | * The _current_ task is using the FPU for the first time |
| 112 | * so initialize it and set the mxcsr to its default |
| 113 | * value at reset if we support XMM instructions and then |
| 114 | * remeber the current task has used the FPU. |
| 115 | */ |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 116 | int init_fpu(struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 118 | if (tsk_used_math(tsk)) { |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 119 | if (HAVE_HWFP && tsk == current) |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 120 | unlazy_fpu(tsk); |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 121 | return 0; |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | * Memory allocation at the first usage of the FPU and other state. |
| 126 | */ |
| 127 | if (!tsk->thread.xstate) { |
| 128 | tsk->thread.xstate = kmem_cache_alloc(task_xstate_cachep, |
| 129 | GFP_KERNEL); |
| 130 | if (!tsk->thread.xstate) |
| 131 | return -ENOMEM; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 132 | } |
| 133 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 134 | #ifdef CONFIG_X86_32 |
| 135 | if (!HAVE_HWFP) { |
| 136 | memset(tsk->thread.xstate, 0, xstate_size); |
Daniel Glöckner | ab9e185 | 2009-03-04 19:42:27 +0100 | [diff] [blame] | 137 | finit_task(tsk); |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 138 | set_stopped_child_used_math(tsk); |
| 139 | return 0; |
| 140 | } |
| 141 | #endif |
| 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | if (cpu_has_fxsr) { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 144 | struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave; |
| 145 | |
| 146 | memset(fx, 0, xstate_size); |
| 147 | fx->cwd = 0x37f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | if (cpu_has_xmm) |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 149 | fx->mxcsr = MXCSR_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } else { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 151 | struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave; |
| 152 | memset(fp, 0, xstate_size); |
| 153 | fp->cwd = 0xffff037fu; |
| 154 | fp->swd = 0xffff0000u; |
| 155 | fp->twd = 0xffffffffu; |
| 156 | fp->fos = 0xffff0000u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 158 | /* |
| 159 | * Only the device not available exception or ptrace can call init_fpu. |
| 160 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | set_stopped_child_used_math(tsk); |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 162 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 165 | /* |
| 166 | * The xstateregs_active() routine is the same as the fpregs_active() routine, |
| 167 | * as the "regset->n" for the xstate regset will be updated based on the feature |
| 168 | * capabilites supported by the xsave. |
| 169 | */ |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 170 | int fpregs_active(struct task_struct *target, const struct user_regset *regset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 172 | return tsk_used_math(target) ? regset->n : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 174 | |
| 175 | int xfpregs_active(struct task_struct *target, const struct user_regset *regset) |
| 176 | { |
| 177 | return (cpu_has_fxsr && tsk_used_math(target)) ? regset->n : 0; |
| 178 | } |
| 179 | |
| 180 | int xfpregs_get(struct task_struct *target, const struct user_regset *regset, |
| 181 | unsigned int pos, unsigned int count, |
| 182 | void *kbuf, void __user *ubuf) |
| 183 | { |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 184 | int ret; |
| 185 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 186 | if (!cpu_has_fxsr) |
| 187 | return -ENODEV; |
| 188 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 189 | ret = init_fpu(target); |
| 190 | if (ret) |
| 191 | return ret; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 192 | |
| 193 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 194 | &target->thread.xstate->fxsave, 0, -1); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | int xfpregs_set(struct task_struct *target, const struct user_regset *regset, |
| 198 | unsigned int pos, unsigned int count, |
| 199 | const void *kbuf, const void __user *ubuf) |
| 200 | { |
| 201 | int ret; |
| 202 | |
| 203 | if (!cpu_has_fxsr) |
| 204 | return -ENODEV; |
| 205 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 206 | ret = init_fpu(target); |
| 207 | if (ret) |
| 208 | return ret; |
| 209 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 210 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 211 | &target->thread.xstate->fxsave, 0, -1); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 212 | |
| 213 | /* |
| 214 | * mxcsr reserved bits must be masked to zero for security reasons. |
| 215 | */ |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 216 | target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 217 | |
Suresh Siddha | 42deec6 | 2008-07-29 10:29:26 -0700 | [diff] [blame] | 218 | /* |
| 219 | * update the header bits in the xsave header, indicating the |
| 220 | * presence of FP and SSE state. |
| 221 | */ |
| 222 | if (cpu_has_xsave) |
| 223 | target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE; |
| 224 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 225 | return ret; |
| 226 | } |
| 227 | |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 228 | int xstateregs_get(struct task_struct *target, const struct user_regset *regset, |
| 229 | unsigned int pos, unsigned int count, |
| 230 | void *kbuf, void __user *ubuf) |
| 231 | { |
| 232 | int ret; |
| 233 | |
| 234 | if (!cpu_has_xsave) |
| 235 | return -ENODEV; |
| 236 | |
| 237 | ret = init_fpu(target); |
| 238 | if (ret) |
| 239 | return ret; |
| 240 | |
| 241 | /* |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame] | 242 | * Copy the 48bytes defined by the software first into the xstate |
| 243 | * memory layout in the thread struct, so that we can copy the entire |
| 244 | * xstateregs to the user using one user_regset_copyout(). |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 245 | */ |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame] | 246 | memcpy(&target->thread.xstate->fxsave.sw_reserved, |
| 247 | xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes)); |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 248 | |
| 249 | /* |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame] | 250 | * Copy the xstate memory layout. |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 251 | */ |
| 252 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame] | 253 | &target->thread.xstate->xsave, 0, -1); |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 254 | return ret; |
| 255 | } |
| 256 | |
| 257 | int xstateregs_set(struct task_struct *target, const struct user_regset *regset, |
| 258 | unsigned int pos, unsigned int count, |
| 259 | const void *kbuf, const void __user *ubuf) |
| 260 | { |
| 261 | int ret; |
| 262 | struct xsave_hdr_struct *xsave_hdr; |
| 263 | |
| 264 | if (!cpu_has_xsave) |
| 265 | return -ENODEV; |
| 266 | |
| 267 | ret = init_fpu(target); |
| 268 | if (ret) |
| 269 | return ret; |
| 270 | |
| 271 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 272 | &target->thread.xstate->xsave, 0, -1); |
| 273 | |
| 274 | /* |
| 275 | * mxcsr reserved bits must be masked to zero for security reasons. |
| 276 | */ |
| 277 | target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
| 278 | |
| 279 | xsave_hdr = &target->thread.xstate->xsave.xsave_hdr; |
| 280 | |
| 281 | xsave_hdr->xstate_bv &= pcntxt_mask; |
| 282 | /* |
| 283 | * These bits must be zero. |
| 284 | */ |
| 285 | xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0; |
| 286 | |
| 287 | return ret; |
| 288 | } |
| 289 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 290 | #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | /* |
| 293 | * FPU tag word conversions. |
| 294 | */ |
| 295 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 296 | static inline unsigned short twd_i387_to_fxsr(unsigned short twd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
| 298 | unsigned int tmp; /* to avoid 16 bit prefixes in the code */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | /* Transform each pair of bits into 01 (valid) or 00 (empty) */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 301 | tmp = ~twd; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 302 | tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 303 | /* and move the valid bits to the lower byte. */ |
| 304 | tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */ |
| 305 | tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */ |
| 306 | tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */ |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 307 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 308 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 311 | #define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16); |
| 312 | #define FP_EXP_TAG_VALID 0 |
| 313 | #define FP_EXP_TAG_ZERO 1 |
| 314 | #define FP_EXP_TAG_SPECIAL 2 |
| 315 | #define FP_EXP_TAG_EMPTY 3 |
| 316 | |
| 317 | static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 319 | struct _fpxreg *st; |
| 320 | u32 tos = (fxsave->swd >> 11) & 7; |
| 321 | u32 twd = (unsigned long) fxsave->twd; |
| 322 | u32 tag; |
| 323 | u32 ret = 0xffff0000u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | int i; |
| 325 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 326 | for (i = 0; i < 8; i++, twd >>= 1) { |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 327 | if (twd & 0x1) { |
| 328 | st = FPREG_ADDR(fxsave, (i - tos) & 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 330 | switch (st->exponent & 0x7fff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | case 0x7fff: |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 332 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | break; |
| 334 | case 0x0000: |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 335 | if (!st->significand[0] && |
| 336 | !st->significand[1] && |
| 337 | !st->significand[2] && |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 338 | !st->significand[3]) |
| 339 | tag = FP_EXP_TAG_ZERO; |
| 340 | else |
| 341 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | break; |
| 343 | default: |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 344 | if (st->significand[3] & 0x8000) |
| 345 | tag = FP_EXP_TAG_VALID; |
| 346 | else |
| 347 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | break; |
| 349 | } |
| 350 | } else { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 351 | tag = FP_EXP_TAG_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 353 | ret |= tag << (2 * i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | return ret; |
| 356 | } |
| 357 | |
| 358 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | * FXSR floating point environment conversions. |
| 360 | */ |
| 361 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 362 | static void |
| 363 | convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 365 | struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 366 | struct _fpreg *to = (struct _fpreg *) &env->st_space[0]; |
| 367 | struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | int i; |
| 369 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 370 | env->cwd = fxsave->cwd | 0xffff0000u; |
| 371 | env->swd = fxsave->swd | 0xffff0000u; |
| 372 | env->twd = twd_fxsr_to_i387(fxsave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 374 | #ifdef CONFIG_X86_64 |
| 375 | env->fip = fxsave->rip; |
| 376 | env->foo = fxsave->rdp; |
| 377 | if (tsk == current) { |
| 378 | /* |
| 379 | * should be actually ds/cs at fpu exception time, but |
| 380 | * that information is not available in 64bit mode. |
| 381 | */ |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 382 | asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos)); |
| 383 | asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs)); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 384 | } else { |
| 385 | struct pt_regs *regs = task_pt_regs(tsk); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 386 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 387 | env->fos = 0xffff0000 | tsk->thread.ds; |
| 388 | env->fcs = regs->cs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 390 | #else |
| 391 | env->fip = fxsave->fip; |
Jan Beulich | 609b529 | 2008-03-05 08:35:14 +0000 | [diff] [blame] | 392 | env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 393 | env->foo = fxsave->foo; |
| 394 | env->fos = fxsave->fos; |
| 395 | #endif |
| 396 | |
| 397 | for (i = 0; i < 8; ++i) |
| 398 | memcpy(&to[i], &from[i], sizeof(to[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } |
| 400 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 401 | static void convert_to_fxsr(struct task_struct *tsk, |
| 402 | const struct user_i387_ia32_struct *env) |
| 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 405 | struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 406 | struct _fpreg *from = (struct _fpreg *) &env->st_space[0]; |
| 407 | struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | int i; |
| 409 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 410 | fxsave->cwd = env->cwd; |
| 411 | fxsave->swd = env->swd; |
| 412 | fxsave->twd = twd_i387_to_fxsr(env->twd); |
| 413 | fxsave->fop = (u16) ((u32) env->fcs >> 16); |
| 414 | #ifdef CONFIG_X86_64 |
| 415 | fxsave->rip = env->fip; |
| 416 | fxsave->rdp = env->foo; |
| 417 | /* cs and ds ignored */ |
| 418 | #else |
| 419 | fxsave->fip = env->fip; |
| 420 | fxsave->fcs = (env->fcs & 0xffff); |
| 421 | fxsave->foo = env->foo; |
| 422 | fxsave->fos = env->fos; |
| 423 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 425 | for (i = 0; i < 8; ++i) |
| 426 | memcpy(&to[i], &from[i], sizeof(from[0])); |
| 427 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 429 | int fpregs_get(struct task_struct *target, const struct user_regset *regset, |
| 430 | unsigned int pos, unsigned int count, |
| 431 | void *kbuf, void __user *ubuf) |
| 432 | { |
| 433 | struct user_i387_ia32_struct env; |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 434 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 436 | ret = init_fpu(target); |
| 437 | if (ret) |
| 438 | return ret; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 439 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 440 | if (!HAVE_HWFP) |
| 441 | return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf); |
| 442 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 443 | if (!cpu_has_fxsr) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 444 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 445 | &target->thread.xstate->fsave, 0, |
| 446 | -1); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 447 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 448 | |
| 449 | if (kbuf && pos == 0 && count == sizeof(env)) { |
| 450 | convert_from_fxsr(kbuf, target); |
| 451 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 453 | |
| 454 | convert_from_fxsr(&env, target); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 455 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 456 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1); |
| 457 | } |
| 458 | |
| 459 | int fpregs_set(struct task_struct *target, const struct user_regset *regset, |
| 460 | unsigned int pos, unsigned int count, |
| 461 | const void *kbuf, const void __user *ubuf) |
| 462 | { |
| 463 | struct user_i387_ia32_struct env; |
| 464 | int ret; |
| 465 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 466 | ret = init_fpu(target); |
| 467 | if (ret) |
| 468 | return ret; |
| 469 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 470 | if (!HAVE_HWFP) |
| 471 | return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf); |
| 472 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 473 | if (!cpu_has_fxsr) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 474 | return user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 475 | &target->thread.xstate->fsave, 0, -1); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 476 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 477 | |
| 478 | if (pos > 0 || count < sizeof(env)) |
| 479 | convert_from_fxsr(&env, target); |
| 480 | |
| 481 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1); |
| 482 | if (!ret) |
| 483 | convert_to_fxsr(target, &env); |
| 484 | |
Suresh Siddha | 42deec6 | 2008-07-29 10:29:26 -0700 | [diff] [blame] | 485 | /* |
| 486 | * update the header bit in the xsave header, indicating the |
| 487 | * presence of FP. |
| 488 | */ |
| 489 | if (cpu_has_xsave) |
| 490 | target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FP; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 491 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | /* |
| 495 | * Signal frame handlers. |
| 496 | */ |
| 497 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 498 | static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | { |
| 500 | struct task_struct *tsk = current; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 501 | struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 503 | fp->status = fp->swd; |
| 504 | if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | return -1; |
| 506 | return 1; |
| 507 | } |
| 508 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 509 | static int save_i387_fxsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | { |
| 511 | struct task_struct *tsk = current; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 512 | struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 513 | struct user_i387_ia32_struct env; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | int err = 0; |
| 515 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 516 | convert_from_fxsr(&env, tsk); |
| 517 | if (__copy_to_user(buf, &env, sizeof(env))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | return -1; |
| 519 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 520 | err |= __put_user(fx->swd, &buf->status); |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 521 | err |= __put_user(X86_FXSR_MAGIC, &buf->magic); |
| 522 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | return -1; |
| 524 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 525 | if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | return -1; |
| 527 | return 1; |
| 528 | } |
| 529 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 530 | static int save_i387_xsave(void __user *buf) |
| 531 | { |
Suresh Siddha | 04944b7 | 2008-10-07 14:04:28 -0700 | [diff] [blame] | 532 | struct task_struct *tsk = current; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 533 | struct _fpstate_ia32 __user *fx = buf; |
| 534 | int err = 0; |
| 535 | |
Suresh Siddha | 04944b7 | 2008-10-07 14:04:28 -0700 | [diff] [blame] | 536 | /* |
| 537 | * For legacy compatible, we always set FP/SSE bits in the bit |
| 538 | * vector while saving the state to the user context. |
| 539 | * This will enable us capturing any changes(during sigreturn) to |
| 540 | * the FP/SSE bits by the legacy applications which don't touch |
| 541 | * xstate_bv in the xsave header. |
| 542 | * |
| 543 | * xsave aware applications can change the xstate_bv in the xsave |
| 544 | * header as well as change any contents in the memory layout. |
| 545 | * xrestore as part of sigreturn will capture all the changes. |
| 546 | */ |
| 547 | tsk->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE; |
| 548 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 549 | if (save_i387_fxsave(fx) < 0) |
| 550 | return -1; |
| 551 | |
| 552 | err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32, |
| 553 | sizeof(struct _fpx_sw_bytes)); |
| 554 | err |= __put_user(FP_XSTATE_MAGIC2, |
| 555 | (__u32 __user *) (buf + sig_xstate_ia32_size |
| 556 | - FP_XSTATE_MAGIC2_SIZE)); |
| 557 | if (err) |
| 558 | return -1; |
| 559 | |
| 560 | return 1; |
| 561 | } |
| 562 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 563 | int save_i387_xstate_ia32(void __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | { |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 565 | struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf; |
| 566 | struct task_struct *tsk = current; |
| 567 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 568 | if (!used_math()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | return 0; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 570 | |
| 571 | if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size)) |
| 572 | return -EACCES; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 573 | /* |
| 574 | * This will cause a "finit" to be triggered by the next |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | * attempted FPU operation by the 'current' process. |
| 576 | */ |
| 577 | clear_used_math(); |
| 578 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 579 | if (!HAVE_HWFP) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 580 | return fpregs_soft_get(current, NULL, |
| 581 | 0, sizeof(struct user_i387_ia32_struct), |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 582 | NULL, fp) ? -1 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | } |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 584 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 585 | unlazy_fpu(tsk); |
| 586 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 587 | if (cpu_has_xsave) |
| 588 | return save_i387_xsave(fp); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 589 | if (cpu_has_fxsr) |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 590 | return save_i387_fxsave(fp); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 591 | else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 592 | return save_i387_fsave(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | } |
| 594 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 595 | static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | { |
| 597 | struct task_struct *tsk = current; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 598 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 599 | return __copy_from_user(&tsk->thread.xstate->fsave, buf, |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 600 | sizeof(struct i387_fsave_struct)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | } |
| 602 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 603 | static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf, |
| 604 | unsigned int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | struct task_struct *tsk = current; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 607 | struct user_i387_ia32_struct env; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 608 | int err; |
| 609 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 610 | err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0], |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 611 | size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | /* mxcsr reserved bits must be masked to zero for security reasons */ |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 613 | tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 614 | if (err || __copy_from_user(&env, buf, sizeof(env))) |
| 615 | return 1; |
| 616 | convert_to_fxsr(tsk, &env); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 617 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 618 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 621 | static int restore_i387_xsave(void __user *buf) |
| 622 | { |
| 623 | struct _fpx_sw_bytes fx_sw_user; |
| 624 | struct _fpstate_ia32 __user *fx_user = |
| 625 | ((struct _fpstate_ia32 __user *) buf); |
| 626 | struct i387_fxsave_struct __user *fx = |
| 627 | (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0]; |
| 628 | struct xsave_hdr_struct *xsave_hdr = |
| 629 | ¤t->thread.xstate->xsave.xsave_hdr; |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 630 | u64 mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 631 | int err; |
| 632 | |
| 633 | if (check_for_xstate(fx, buf, &fx_sw_user)) |
| 634 | goto fx_only; |
| 635 | |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 636 | mask = fx_sw_user.xstate_bv; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 637 | |
| 638 | err = restore_i387_fxsave(buf, fx_sw_user.xstate_size); |
| 639 | |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 640 | xsave_hdr->xstate_bv &= pcntxt_mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 641 | /* |
| 642 | * These bits must be zero. |
| 643 | */ |
| 644 | xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0; |
| 645 | |
| 646 | /* |
| 647 | * Init the state that is not present in the memory layout |
| 648 | * and enabled by the OS. |
| 649 | */ |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 650 | mask = ~(pcntxt_mask & ~mask); |
| 651 | xsave_hdr->xstate_bv &= mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 652 | |
| 653 | return err; |
| 654 | fx_only: |
| 655 | /* |
| 656 | * Couldn't find the extended state information in the memory |
| 657 | * layout. Restore the FP/SSE and init the other extended state |
| 658 | * enabled by the OS. |
| 659 | */ |
| 660 | xsave_hdr->xstate_bv = XSTATE_FPSSE; |
| 661 | return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct)); |
| 662 | } |
| 663 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 664 | int restore_i387_xstate_ia32(void __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | { |
| 666 | int err; |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 667 | struct task_struct *tsk = current; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 668 | struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 670 | if (HAVE_HWFP) |
Suresh Siddha | fd3c3ed | 2008-05-07 12:09:52 -0700 | [diff] [blame] | 671 | clear_fpu(tsk); |
| 672 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 673 | if (!buf) { |
| 674 | if (used_math()) { |
| 675 | clear_fpu(tsk); |
| 676 | clear_used_math(); |
| 677 | } |
| 678 | |
| 679 | return 0; |
| 680 | } else |
| 681 | if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size)) |
| 682 | return -EACCES; |
| 683 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 684 | if (!used_math()) { |
| 685 | err = init_fpu(tsk); |
| 686 | if (err) |
| 687 | return err; |
| 688 | } |
Suresh Siddha | fd3c3ed | 2008-05-07 12:09:52 -0700 | [diff] [blame] | 689 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 690 | if (HAVE_HWFP) { |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 691 | if (cpu_has_xsave) |
| 692 | err = restore_i387_xsave(buf); |
| 693 | else if (cpu_has_fxsr) |
| 694 | err = restore_i387_fxsave(fp, sizeof(struct |
| 695 | i387_fxsave_struct)); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 696 | else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 697 | err = restore_i387_fsave(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | } else { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 699 | err = fpregs_soft_set(current, NULL, |
| 700 | 0, sizeof(struct user_i387_ia32_struct), |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 701 | NULL, fp) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | } |
| 703 | set_used_math(); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | return err; |
| 706 | } |
| 707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | /* |
| 709 | * FPU state for core dumps. |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 710 | * This is only used for a.out dumps now. |
| 711 | * It is declared generically using elf_fpregset_t (which is |
| 712 | * struct user_i387_struct) but is in fact only used for 32-bit |
| 713 | * dumps, so on 64-bit it is really struct user_i387_ia32_struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 715 | int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | struct task_struct *tsk = current; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 718 | int fpvalid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
| 720 | fpvalid = !!used_math(); |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 721 | if (fpvalid) |
| 722 | fpvalid = !fpregs_get(tsk, NULL, |
| 723 | 0, sizeof(struct user_i387_ia32_struct), |
| 724 | fpu, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
| 726 | return fpvalid; |
| 727 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 728 | EXPORT_SYMBOL(dump_fpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 730 | #endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */ |