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> |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/sigcontext.h> |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 13 | #include <asm/processor.h> |
| 14 | #include <asm/math_emu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/uaccess.h> |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 16 | #include <asm/ptrace.h> |
| 17 | #include <asm/i387.h> |
| 18 | #include <asm/user.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 20 | #ifdef CONFIG_X86_64 |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 21 | # include <asm/sigcontext32.h> |
| 22 | # include <asm/user32.h> |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 23 | #else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 24 | # define save_i387_xstate_ia32 save_i387_xstate |
| 25 | # define restore_i387_xstate_ia32 restore_i387_xstate |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 26 | # define _fpstate_ia32 _fpstate |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 27 | # define _xstate_ia32 _xstate |
Suresh Siddha | 3c1c7f1 | 2008-07-29 10:29:21 -0700 | [diff] [blame] | 28 | # define sig_xstate_ia32_size sig_xstate_size |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 29 | # define fx_sw_reserved_ia32 fx_sw_reserved |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 30 | # define user_i387_ia32_struct user_i387_struct |
| 31 | # define user32_fxsr_struct user_fxsr_struct |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 32 | #endif |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #ifdef CONFIG_MATH_EMULATION |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 35 | # define HAVE_HWFP (boot_cpu_data.hard_math) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #else |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 37 | # define HAVE_HWFP 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #endif |
| 39 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 40 | static unsigned int mxcsr_feature_mask __read_mostly = 0xffffffffu; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 41 | unsigned int xstate_size; |
Suresh Siddha | 3c1c7f1 | 2008-07-29 10:29:21 -0700 | [diff] [blame] | 42 | unsigned int sig_xstate_ia32_size = sizeof(struct _fpstate_ia32); |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 43 | static struct i387_fxsave_struct fx_scratch __cpuinitdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 45 | void __cpuinit mxcsr_feature_mask_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
| 47 | unsigned long mask = 0; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | clts(); |
| 50 | if (cpu_has_fxsr) { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 51 | memset(&fx_scratch, 0, sizeof(struct i387_fxsave_struct)); |
| 52 | asm volatile("fxsave %0" : : "m" (fx_scratch)); |
| 53 | mask = fx_scratch.mxcsr_mask; |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 54 | if (mask == 0) |
| 55 | mask = 0x0000ffbf; |
| 56 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | mxcsr_feature_mask &= mask; |
| 58 | stts(); |
| 59 | } |
| 60 | |
Rakib Mullick | 9bc646f | 2008-11-20 19:08:45 +0600 | [diff] [blame] | 61 | void __cpuinit init_thread_xstate(void) |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 62 | { |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 63 | if (!HAVE_HWFP) { |
| 64 | xstate_size = sizeof(struct i387_soft_struct); |
| 65 | return; |
| 66 | } |
| 67 | |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 68 | if (cpu_has_xsave) { |
| 69 | xsave_cntxt_init(); |
| 70 | return; |
| 71 | } |
| 72 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 73 | 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 Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 81 | #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 | */ |
| 86 | void __cpuinit fpu_init(void) |
| 87 | { |
| 88 | unsigned long oldcr0 = read_cr0(); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 89 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 90 | set_in_cr4(X86_CR4_OSFXSR); |
| 91 | set_in_cr4(X86_CR4_OSXMMEXCPT); |
| 92 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 93 | 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] | 94 | |
Suresh Siddha | dc1e35c | 2008-07-29 10:29:19 -0700 | [diff] [blame] | 95 | /* |
| 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 McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 102 | mxcsr_feature_mask_init(); |
| 103 | /* clean state in init */ |
Suresh Siddha | b359e8a | 2008-07-29 10:29:20 -0700 | [diff] [blame] | 104 | if (cpu_has_xsave) |
| 105 | current_thread_info()->status = TS_XSAVE; |
| 106 | else |
| 107 | current_thread_info()->status = 0; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 108 | clear_used_math(); |
| 109 | } |
| 110 | #endif /* CONFIG_X86_64 */ |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | /* |
| 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 Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 118 | int init_fpu(struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 120 | if (tsk_used_math(tsk)) { |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 121 | if (HAVE_HWFP && tsk == current) |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 122 | unlazy_fpu(tsk); |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 123 | 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 McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 134 | } |
| 135 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 136 | #ifdef CONFIG_X86_32 |
| 137 | if (!HAVE_HWFP) { |
| 138 | memset(tsk->thread.xstate, 0, xstate_size); |
Daniel Glöckner | ab9e185 | 2009-03-04 19:42:27 +0100 | [diff] [blame] | 139 | finit_task(tsk); |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 140 | set_stopped_child_used_math(tsk); |
| 141 | return 0; |
| 142 | } |
| 143 | #endif |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | if (cpu_has_fxsr) { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 146 | struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave; |
| 147 | |
| 148 | memset(fx, 0, xstate_size); |
| 149 | fx->cwd = 0x37f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | if (cpu_has_xmm) |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 151 | fx->mxcsr = MXCSR_DEFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } else { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 153 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 160 | /* |
| 161 | * Only the device not available exception or ptrace can call init_fpu. |
| 162 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | set_stopped_child_used_math(tsk); |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 164 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame^] | 167 | /* |
| 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 McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 172 | int fpregs_active(struct task_struct *target, const struct user_regset *regset) |
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 | return tsk_used_math(target) ? regset->n : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 176 | |
| 177 | int 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 | |
| 182 | int 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 Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 186 | int ret; |
| 187 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 188 | if (!cpu_has_fxsr) |
| 189 | return -ENODEV; |
| 190 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 191 | ret = init_fpu(target); |
| 192 | if (ret) |
| 193 | return ret; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 194 | |
| 195 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 196 | &target->thread.xstate->fxsave, 0, -1); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | int 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 Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 208 | ret = init_fpu(target); |
| 209 | if (ret) |
| 210 | return ret; |
| 211 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 212 | set_stopped_child_used_math(target); |
| 213 | |
| 214 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 215 | &target->thread.xstate->fxsave, 0, -1); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 216 | |
| 217 | /* |
| 218 | * mxcsr reserved bits must be masked to zero for security reasons. |
| 219 | */ |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 220 | target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 221 | |
Suresh Siddha | 42deec6 | 2008-07-29 10:29:26 -0700 | [diff] [blame] | 222 | /* |
| 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 McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 229 | return ret; |
| 230 | } |
| 231 | |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame^] | 232 | int 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 | |
| 277 | int 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 McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 310 | #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | /* |
| 313 | * FPU tag word conversions. |
| 314 | */ |
| 315 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 316 | static inline unsigned short twd_i387_to_fxsr(unsigned short twd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
| 318 | unsigned int tmp; /* to avoid 16 bit prefixes in the code */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | /* Transform each pair of bits into 01 (valid) or 00 (empty) */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 321 | tmp = ~twd; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 322 | tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 323 | /* 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 Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 327 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 328 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 331 | #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 | |
| 337 | static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 339 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | int i; |
| 345 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 346 | for (i = 0; i < 8; i++, twd >>= 1) { |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 347 | if (twd & 0x1) { |
| 348 | st = FPREG_ADDR(fxsave, (i - tos) & 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 350 | switch (st->exponent & 0x7fff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | case 0x7fff: |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 352 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | break; |
| 354 | case 0x0000: |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 355 | if (!st->significand[0] && |
| 356 | !st->significand[1] && |
| 357 | !st->significand[2] && |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 358 | !st->significand[3]) |
| 359 | tag = FP_EXP_TAG_ZERO; |
| 360 | else |
| 361 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | break; |
| 363 | default: |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 364 | if (st->significand[3] & 0x8000) |
| 365 | tag = FP_EXP_TAG_VALID; |
| 366 | else |
| 367 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | break; |
| 369 | } |
| 370 | } else { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 371 | tag = FP_EXP_TAG_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 373 | ret |= tag << (2 * i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | return ret; |
| 376 | } |
| 377 | |
| 378 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | * FXSR floating point environment conversions. |
| 380 | */ |
| 381 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 382 | static void |
| 383 | 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] | 384 | { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 385 | struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 386 | struct _fpreg *to = (struct _fpreg *) &env->st_space[0]; |
| 387 | struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | int i; |
| 389 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 390 | env->cwd = fxsave->cwd | 0xffff0000u; |
| 391 | env->swd = fxsave->swd | 0xffff0000u; |
| 392 | env->twd = twd_fxsr_to_i387(fxsave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 394 | #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 Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 402 | asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos)); |
| 403 | asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs)); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 404 | } else { |
| 405 | struct pt_regs *regs = task_pt_regs(tsk); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 406 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 407 | env->fos = 0xffff0000 | tsk->thread.ds; |
| 408 | env->fcs = regs->cs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 410 | #else |
| 411 | env->fip = fxsave->fip; |
Jan Beulich | 609b529 | 2008-03-05 08:35:14 +0000 | [diff] [blame] | 412 | env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 413 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 421 | static void convert_to_fxsr(struct task_struct *tsk, |
| 422 | const struct user_i387_ia32_struct *env) |
| 423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 425 | struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 426 | struct _fpreg *from = (struct _fpreg *) &env->st_space[0]; |
| 427 | struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | int i; |
| 429 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 430 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 445 | for (i = 0; i < 8; ++i) |
| 446 | memcpy(&to[i], &from[i], sizeof(from[0])); |
| 447 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 449 | int 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 Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 454 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 456 | ret = init_fpu(target); |
| 457 | if (ret) |
| 458 | return ret; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 459 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 460 | if (!HAVE_HWFP) |
| 461 | return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf); |
| 462 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 463 | if (!cpu_has_fxsr) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 464 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 465 | &target->thread.xstate->fsave, 0, |
| 466 | -1); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 467 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 468 | |
| 469 | if (kbuf && pos == 0 && count == sizeof(env)) { |
| 470 | convert_from_fxsr(kbuf, target); |
| 471 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 473 | |
| 474 | convert_from_fxsr(&env, target); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 475 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 476 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1); |
| 477 | } |
| 478 | |
| 479 | int 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 Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 486 | ret = init_fpu(target); |
| 487 | if (ret) |
| 488 | return ret; |
| 489 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 490 | set_stopped_child_used_math(target); |
| 491 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 492 | if (!HAVE_HWFP) |
| 493 | return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf); |
| 494 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 495 | if (!cpu_has_fxsr) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 496 | return user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 497 | &target->thread.xstate->fsave, 0, -1); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 498 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 499 | |
| 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 Siddha | 42deec6 | 2008-07-29 10:29:26 -0700 | [diff] [blame] | 507 | /* |
| 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 McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 513 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /* |
| 517 | * Signal frame handlers. |
| 518 | */ |
| 519 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 520 | static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
| 522 | struct task_struct *tsk = current; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 523 | struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 525 | fp->status = fp->swd; |
| 526 | if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | return -1; |
| 528 | return 1; |
| 529 | } |
| 530 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 531 | static int save_i387_fxsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | { |
| 533 | struct task_struct *tsk = current; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 534 | struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 535 | struct user_i387_ia32_struct env; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | int err = 0; |
| 537 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 538 | convert_from_fxsr(&env, tsk); |
| 539 | if (__copy_to_user(buf, &env, sizeof(env))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | return -1; |
| 541 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 542 | err |= __put_user(fx->swd, &buf->status); |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 543 | err |= __put_user(X86_FXSR_MAGIC, &buf->magic); |
| 544 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | return -1; |
| 546 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 547 | if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | return -1; |
| 549 | return 1; |
| 550 | } |
| 551 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 552 | static int save_i387_xsave(void __user *buf) |
| 553 | { |
Suresh Siddha | 04944b7 | 2008-10-07 14:04:28 -0700 | [diff] [blame] | 554 | struct task_struct *tsk = current; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 555 | struct _fpstate_ia32 __user *fx = buf; |
| 556 | int err = 0; |
| 557 | |
Suresh Siddha | 04944b7 | 2008-10-07 14:04:28 -0700 | [diff] [blame] | 558 | /* |
| 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 Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 571 | 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 Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 585 | int save_i387_xstate_ia32(void __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | { |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 587 | struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf; |
| 588 | struct task_struct *tsk = current; |
| 589 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 590 | if (!used_math()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | return 0; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 592 | |
| 593 | if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size)) |
| 594 | return -EACCES; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 595 | /* |
| 596 | * This will cause a "finit" to be triggered by the next |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | * attempted FPU operation by the 'current' process. |
| 598 | */ |
| 599 | clear_used_math(); |
| 600 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 601 | if (!HAVE_HWFP) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 602 | return fpregs_soft_get(current, NULL, |
| 603 | 0, sizeof(struct user_i387_ia32_struct), |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 604 | NULL, fp) ? -1 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 606 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 607 | unlazy_fpu(tsk); |
| 608 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 609 | if (cpu_has_xsave) |
| 610 | return save_i387_xsave(fp); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 611 | if (cpu_has_fxsr) |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 612 | return save_i387_fxsave(fp); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 613 | else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 614 | return save_i387_fsave(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
| 616 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 617 | static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | { |
| 619 | struct task_struct *tsk = current; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 620 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 621 | return __copy_from_user(&tsk->thread.xstate->fsave, buf, |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 622 | sizeof(struct i387_fsave_struct)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } |
| 624 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 625 | static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf, |
| 626 | unsigned int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | struct task_struct *tsk = current; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 629 | struct user_i387_ia32_struct env; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 630 | int err; |
| 631 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 632 | err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0], |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 633 | size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | /* mxcsr reserved bits must be masked to zero for security reasons */ |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 635 | tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 636 | if (err || __copy_from_user(&env, buf, sizeof(env))) |
| 637 | return 1; |
| 638 | convert_to_fxsr(tsk, &env); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 639 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 640 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 643 | static 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 | ¤t->thread.xstate->xsave.xsave_hdr; |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 652 | u64 mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 653 | int err; |
| 654 | |
| 655 | if (check_for_xstate(fx, buf, &fx_sw_user)) |
| 656 | goto fx_only; |
| 657 | |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 658 | mask = fx_sw_user.xstate_bv; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 659 | |
| 660 | err = restore_i387_fxsave(buf, fx_sw_user.xstate_size); |
| 661 | |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 662 | xsave_hdr->xstate_bv &= pcntxt_mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 663 | /* |
| 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 Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 672 | mask = ~(pcntxt_mask & ~mask); |
| 673 | xsave_hdr->xstate_bv &= mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 674 | |
| 675 | return err; |
| 676 | fx_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 Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 686 | int restore_i387_xstate_ia32(void __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
| 688 | int err; |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 689 | struct task_struct *tsk = current; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 690 | struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 692 | if (HAVE_HWFP) |
Suresh Siddha | fd3c3ed | 2008-05-07 12:09:52 -0700 | [diff] [blame] | 693 | clear_fpu(tsk); |
| 694 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 695 | 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 Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 706 | if (!used_math()) { |
| 707 | err = init_fpu(tsk); |
| 708 | if (err) |
| 709 | return err; |
| 710 | } |
Suresh Siddha | fd3c3ed | 2008-05-07 12:09:52 -0700 | [diff] [blame] | 711 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 712 | if (HAVE_HWFP) { |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 713 | 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 Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 718 | else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 719 | err = restore_i387_fsave(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | } else { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 721 | err = fpregs_soft_set(current, NULL, |
| 722 | 0, sizeof(struct user_i387_ia32_struct), |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 723 | NULL, fp) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | } |
| 725 | set_used_math(); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | return err; |
| 728 | } |
| 729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | /* |
| 731 | * FPU state for core dumps. |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 732 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 737 | int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | struct task_struct *tsk = current; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 740 | int fpvalid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | |
| 742 | fpvalid = !!used_math(); |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 743 | if (fpvalid) |
| 744 | fpvalid = !fpregs_get(tsk, NULL, |
| 745 | 0, sizeof(struct user_i387_ia32_struct), |
| 746 | fpu, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
| 748 | return fpvalid; |
| 749 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 750 | EXPORT_SYMBOL(dump_fpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 752 | #endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */ |