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 | /* |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame^] | 246 | * Copy the 48bytes defined by the software first into the xstate |
| 247 | * memory layout in the thread struct, so that we can copy the entire |
| 248 | * xstateregs to the user using one user_regset_copyout(). |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 249 | */ |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame^] | 250 | memcpy(&target->thread.xstate->fxsave.sw_reserved, |
| 251 | xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes)); |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 252 | |
| 253 | /* |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame^] | 254 | * Copy the xstate memory layout. |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 255 | */ |
| 256 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | ff7fbc7 | 2010-02-22 14:51:33 -0800 | [diff] [blame^] | 257 | &target->thread.xstate->xsave, 0, -1); |
Suresh Siddha | 5b3efd5 | 2010-02-11 11:50:59 -0800 | [diff] [blame] | 258 | return ret; |
| 259 | } |
| 260 | |
| 261 | int xstateregs_set(struct task_struct *target, const struct user_regset *regset, |
| 262 | unsigned int pos, unsigned int count, |
| 263 | const void *kbuf, const void __user *ubuf) |
| 264 | { |
| 265 | int ret; |
| 266 | struct xsave_hdr_struct *xsave_hdr; |
| 267 | |
| 268 | if (!cpu_has_xsave) |
| 269 | return -ENODEV; |
| 270 | |
| 271 | ret = init_fpu(target); |
| 272 | if (ret) |
| 273 | return ret; |
| 274 | |
| 275 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
| 276 | &target->thread.xstate->xsave, 0, -1); |
| 277 | |
| 278 | /* |
| 279 | * mxcsr reserved bits must be masked to zero for security reasons. |
| 280 | */ |
| 281 | target->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
| 282 | |
| 283 | xsave_hdr = &target->thread.xstate->xsave.xsave_hdr; |
| 284 | |
| 285 | xsave_hdr->xstate_bv &= pcntxt_mask; |
| 286 | /* |
| 287 | * These bits must be zero. |
| 288 | */ |
| 289 | xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0; |
| 290 | |
| 291 | return ret; |
| 292 | } |
| 293 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 294 | #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | /* |
| 297 | * FPU tag word conversions. |
| 298 | */ |
| 299 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 300 | static inline unsigned short twd_i387_to_fxsr(unsigned short twd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
| 302 | unsigned int tmp; /* to avoid 16 bit prefixes in the code */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | /* Transform each pair of bits into 01 (valid) or 00 (empty) */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 305 | tmp = ~twd; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 306 | tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 307 | /* and move the valid bits to the lower byte. */ |
| 308 | tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */ |
| 309 | tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */ |
| 310 | tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */ |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 311 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 312 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 315 | #define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16); |
| 316 | #define FP_EXP_TAG_VALID 0 |
| 317 | #define FP_EXP_TAG_ZERO 1 |
| 318 | #define FP_EXP_TAG_SPECIAL 2 |
| 319 | #define FP_EXP_TAG_EMPTY 3 |
| 320 | |
| 321 | static inline u32 twd_fxsr_to_i387(struct i387_fxsave_struct *fxsave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 323 | struct _fpxreg *st; |
| 324 | u32 tos = (fxsave->swd >> 11) & 7; |
| 325 | u32 twd = (unsigned long) fxsave->twd; |
| 326 | u32 tag; |
| 327 | u32 ret = 0xffff0000u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | int i; |
| 329 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 330 | for (i = 0; i < 8; i++, twd >>= 1) { |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 331 | if (twd & 0x1) { |
| 332 | st = FPREG_ADDR(fxsave, (i - tos) & 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 334 | switch (st->exponent & 0x7fff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | case 0x7fff: |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 336 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | break; |
| 338 | case 0x0000: |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 339 | if (!st->significand[0] && |
| 340 | !st->significand[1] && |
| 341 | !st->significand[2] && |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 342 | !st->significand[3]) |
| 343 | tag = FP_EXP_TAG_ZERO; |
| 344 | else |
| 345 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | break; |
| 347 | default: |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 348 | if (st->significand[3] & 0x8000) |
| 349 | tag = FP_EXP_TAG_VALID; |
| 350 | else |
| 351 | tag = FP_EXP_TAG_SPECIAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | break; |
| 353 | } |
| 354 | } else { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 355 | tag = FP_EXP_TAG_EMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 357 | ret |= tag << (2 * i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | return ret; |
| 360 | } |
| 361 | |
| 362 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | * FXSR floating point environment conversions. |
| 364 | */ |
| 365 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 366 | static void |
| 367 | 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] | 368 | { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 369 | struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 370 | struct _fpreg *to = (struct _fpreg *) &env->st_space[0]; |
| 371 | struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | int i; |
| 373 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 374 | env->cwd = fxsave->cwd | 0xffff0000u; |
| 375 | env->swd = fxsave->swd | 0xffff0000u; |
| 376 | env->twd = twd_fxsr_to_i387(fxsave); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 378 | #ifdef CONFIG_X86_64 |
| 379 | env->fip = fxsave->rip; |
| 380 | env->foo = fxsave->rdp; |
| 381 | if (tsk == current) { |
| 382 | /* |
| 383 | * should be actually ds/cs at fpu exception time, but |
| 384 | * that information is not available in 64bit mode. |
| 385 | */ |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 386 | asm("mov %%ds, %[fos]" : [fos] "=r" (env->fos)); |
| 387 | asm("mov %%cs, %[fcs]" : [fcs] "=r" (env->fcs)); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 388 | } else { |
| 389 | struct pt_regs *regs = task_pt_regs(tsk); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 390 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 391 | env->fos = 0xffff0000 | tsk->thread.ds; |
| 392 | env->fcs = regs->cs; |
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 | #else |
| 395 | env->fip = fxsave->fip; |
Jan Beulich | 609b529 | 2008-03-05 08:35:14 +0000 | [diff] [blame] | 396 | env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16); |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 397 | env->foo = fxsave->foo; |
| 398 | env->fos = fxsave->fos; |
| 399 | #endif |
| 400 | |
| 401 | for (i = 0; i < 8; ++i) |
| 402 | memcpy(&to[i], &from[i], sizeof(to[0])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 405 | static void convert_to_fxsr(struct task_struct *tsk, |
| 406 | const struct user_i387_ia32_struct *env) |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 409 | struct i387_fxsave_struct *fxsave = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 410 | struct _fpreg *from = (struct _fpreg *) &env->st_space[0]; |
| 411 | struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | int i; |
| 413 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 414 | fxsave->cwd = env->cwd; |
| 415 | fxsave->swd = env->swd; |
| 416 | fxsave->twd = twd_i387_to_fxsr(env->twd); |
| 417 | fxsave->fop = (u16) ((u32) env->fcs >> 16); |
| 418 | #ifdef CONFIG_X86_64 |
| 419 | fxsave->rip = env->fip; |
| 420 | fxsave->rdp = env->foo; |
| 421 | /* cs and ds ignored */ |
| 422 | #else |
| 423 | fxsave->fip = env->fip; |
| 424 | fxsave->fcs = (env->fcs & 0xffff); |
| 425 | fxsave->foo = env->foo; |
| 426 | fxsave->fos = env->fos; |
| 427 | #endif |
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 | for (i = 0; i < 8; ++i) |
| 430 | memcpy(&to[i], &from[i], sizeof(from[0])); |
| 431 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 433 | int fpregs_get(struct task_struct *target, const struct user_regset *regset, |
| 434 | unsigned int pos, unsigned int count, |
| 435 | void *kbuf, void __user *ubuf) |
| 436 | { |
| 437 | struct user_i387_ia32_struct env; |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 438 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 440 | ret = init_fpu(target); |
| 441 | if (ret) |
| 442 | return ret; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 443 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 444 | if (!HAVE_HWFP) |
| 445 | return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf); |
| 446 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 447 | if (!cpu_has_fxsr) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 448 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 449 | &target->thread.xstate->fsave, 0, |
| 450 | -1); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 451 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 452 | |
| 453 | if (kbuf && pos == 0 && count == sizeof(env)) { |
| 454 | convert_from_fxsr(kbuf, target); |
| 455 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 457 | |
| 458 | convert_from_fxsr(&env, target); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 459 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 460 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1); |
| 461 | } |
| 462 | |
| 463 | int fpregs_set(struct task_struct *target, const struct user_regset *regset, |
| 464 | unsigned int pos, unsigned int count, |
| 465 | const void *kbuf, const void __user *ubuf) |
| 466 | { |
| 467 | struct user_i387_ia32_struct env; |
| 468 | int ret; |
| 469 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 470 | ret = init_fpu(target); |
| 471 | if (ret) |
| 472 | return ret; |
| 473 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 474 | set_stopped_child_used_math(target); |
| 475 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 476 | if (!HAVE_HWFP) |
| 477 | return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf); |
| 478 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 479 | if (!cpu_has_fxsr) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 480 | return user_regset_copyin(&pos, &count, &kbuf, &ubuf, |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 481 | &target->thread.xstate->fsave, 0, -1); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 482 | } |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 483 | |
| 484 | if (pos > 0 || count < sizeof(env)) |
| 485 | convert_from_fxsr(&env, target); |
| 486 | |
| 487 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1); |
| 488 | if (!ret) |
| 489 | convert_to_fxsr(target, &env); |
| 490 | |
Suresh Siddha | 42deec6 | 2008-07-29 10:29:26 -0700 | [diff] [blame] | 491 | /* |
| 492 | * update the header bit in the xsave header, indicating the |
| 493 | * presence of FP. |
| 494 | */ |
| 495 | if (cpu_has_xsave) |
| 496 | target->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FP; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 497 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | /* |
| 501 | * Signal frame handlers. |
| 502 | */ |
| 503 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 504 | static inline int save_i387_fsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
| 506 | struct task_struct *tsk = current; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 507 | struct i387_fsave_struct *fp = &tsk->thread.xstate->fsave; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 509 | fp->status = fp->swd; |
| 510 | if (__copy_to_user(buf, fp, sizeof(struct i387_fsave_struct))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | return -1; |
| 512 | return 1; |
| 513 | } |
| 514 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 515 | static int save_i387_fxsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
| 517 | struct task_struct *tsk = current; |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 518 | struct i387_fxsave_struct *fx = &tsk->thread.xstate->fxsave; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 519 | struct user_i387_ia32_struct env; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | int err = 0; |
| 521 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 522 | convert_from_fxsr(&env, tsk); |
| 523 | if (__copy_to_user(buf, &env, sizeof(env))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | return -1; |
| 525 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 526 | err |= __put_user(fx->swd, &buf->status); |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 527 | err |= __put_user(X86_FXSR_MAGIC, &buf->magic); |
| 528 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | return -1; |
| 530 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 531 | if (__copy_to_user(&buf->_fxsr_env[0], fx, xstate_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | return -1; |
| 533 | return 1; |
| 534 | } |
| 535 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 536 | static int save_i387_xsave(void __user *buf) |
| 537 | { |
Suresh Siddha | 04944b7 | 2008-10-07 14:04:28 -0700 | [diff] [blame] | 538 | struct task_struct *tsk = current; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 539 | struct _fpstate_ia32 __user *fx = buf; |
| 540 | int err = 0; |
| 541 | |
Suresh Siddha | 04944b7 | 2008-10-07 14:04:28 -0700 | [diff] [blame] | 542 | /* |
| 543 | * For legacy compatible, we always set FP/SSE bits in the bit |
| 544 | * vector while saving the state to the user context. |
| 545 | * This will enable us capturing any changes(during sigreturn) to |
| 546 | * the FP/SSE bits by the legacy applications which don't touch |
| 547 | * xstate_bv in the xsave header. |
| 548 | * |
| 549 | * xsave aware applications can change the xstate_bv in the xsave |
| 550 | * header as well as change any contents in the memory layout. |
| 551 | * xrestore as part of sigreturn will capture all the changes. |
| 552 | */ |
| 553 | tsk->thread.xstate->xsave.xsave_hdr.xstate_bv |= XSTATE_FPSSE; |
| 554 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 555 | if (save_i387_fxsave(fx) < 0) |
| 556 | return -1; |
| 557 | |
| 558 | err = __copy_to_user(&fx->sw_reserved, &fx_sw_reserved_ia32, |
| 559 | sizeof(struct _fpx_sw_bytes)); |
| 560 | err |= __put_user(FP_XSTATE_MAGIC2, |
| 561 | (__u32 __user *) (buf + sig_xstate_ia32_size |
| 562 | - FP_XSTATE_MAGIC2_SIZE)); |
| 563 | if (err) |
| 564 | return -1; |
| 565 | |
| 566 | return 1; |
| 567 | } |
| 568 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 569 | int save_i387_xstate_ia32(void __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 571 | struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf; |
| 572 | struct task_struct *tsk = current; |
| 573 | |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 574 | if (!used_math()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | return 0; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 576 | |
| 577 | if (!access_ok(VERIFY_WRITE, buf, sig_xstate_ia32_size)) |
| 578 | return -EACCES; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 579 | /* |
| 580 | * This will cause a "finit" to be triggered by the next |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | * attempted FPU operation by the 'current' process. |
| 582 | */ |
| 583 | clear_used_math(); |
| 584 | |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 585 | if (!HAVE_HWFP) { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 586 | return fpregs_soft_get(current, NULL, |
| 587 | 0, sizeof(struct user_i387_ia32_struct), |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 588 | NULL, fp) ? -1 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 590 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 591 | unlazy_fpu(tsk); |
| 592 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 593 | if (cpu_has_xsave) |
| 594 | return save_i387_xsave(fp); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 595 | if (cpu_has_fxsr) |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 596 | return save_i387_fxsave(fp); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 597 | else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 598 | return save_i387_fsave(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 601 | static inline int restore_i387_fsave(struct _fpstate_ia32 __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | { |
| 603 | struct task_struct *tsk = current; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 604 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 605 | return __copy_from_user(&tsk->thread.xstate->fsave, buf, |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 606 | sizeof(struct i387_fsave_struct)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 609 | static int restore_i387_fxsave(struct _fpstate_ia32 __user *buf, |
| 610 | unsigned int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | struct task_struct *tsk = current; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 613 | struct user_i387_ia32_struct env; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 614 | int err; |
| 615 | |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 616 | err = __copy_from_user(&tsk->thread.xstate->fxsave, &buf->_fxsr_env[0], |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 617 | size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | /* mxcsr reserved bits must be masked to zero for security reasons */ |
Suresh Siddha | 61c4628 | 2008-03-10 15:28:04 -0700 | [diff] [blame] | 619 | tsk->thread.xstate->fxsave.mxcsr &= mxcsr_feature_mask; |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 620 | if (err || __copy_from_user(&env, buf, sizeof(env))) |
| 621 | return 1; |
| 622 | convert_to_fxsr(tsk, &env); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 623 | |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 624 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } |
| 626 | |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 627 | static int restore_i387_xsave(void __user *buf) |
| 628 | { |
| 629 | struct _fpx_sw_bytes fx_sw_user; |
| 630 | struct _fpstate_ia32 __user *fx_user = |
| 631 | ((struct _fpstate_ia32 __user *) buf); |
| 632 | struct i387_fxsave_struct __user *fx = |
| 633 | (struct i387_fxsave_struct __user *) &fx_user->_fxsr_env[0]; |
| 634 | struct xsave_hdr_struct *xsave_hdr = |
| 635 | ¤t->thread.xstate->xsave.xsave_hdr; |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 636 | u64 mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 637 | int err; |
| 638 | |
| 639 | if (check_for_xstate(fx, buf, &fx_sw_user)) |
| 640 | goto fx_only; |
| 641 | |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 642 | mask = fx_sw_user.xstate_bv; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 643 | |
| 644 | err = restore_i387_fxsave(buf, fx_sw_user.xstate_size); |
| 645 | |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 646 | xsave_hdr->xstate_bv &= pcntxt_mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 647 | /* |
| 648 | * These bits must be zero. |
| 649 | */ |
| 650 | xsave_hdr->reserved1[0] = xsave_hdr->reserved1[1] = 0; |
| 651 | |
| 652 | /* |
| 653 | * Init the state that is not present in the memory layout |
| 654 | * and enabled by the OS. |
| 655 | */ |
H. Peter Anvin | 6152e4b | 2008-07-29 17:23:16 -0700 | [diff] [blame] | 656 | mask = ~(pcntxt_mask & ~mask); |
| 657 | xsave_hdr->xstate_bv &= mask; |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 658 | |
| 659 | return err; |
| 660 | fx_only: |
| 661 | /* |
| 662 | * Couldn't find the extended state information in the memory |
| 663 | * layout. Restore the FP/SSE and init the other extended state |
| 664 | * enabled by the OS. |
| 665 | */ |
| 666 | xsave_hdr->xstate_bv = XSTATE_FPSSE; |
| 667 | return restore_i387_fxsave(buf, sizeof(struct i387_fxsave_struct)); |
| 668 | } |
| 669 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 670 | int restore_i387_xstate_ia32(void __user *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | { |
| 672 | int err; |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 673 | struct task_struct *tsk = current; |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 674 | struct _fpstate_ia32 __user *fp = (struct _fpstate_ia32 __user *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 676 | if (HAVE_HWFP) |
Suresh Siddha | fd3c3ed | 2008-05-07 12:09:52 -0700 | [diff] [blame] | 677 | clear_fpu(tsk); |
| 678 | |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 679 | if (!buf) { |
| 680 | if (used_math()) { |
| 681 | clear_fpu(tsk); |
| 682 | clear_used_math(); |
| 683 | } |
| 684 | |
| 685 | return 0; |
| 686 | } else |
| 687 | if (!access_ok(VERIFY_READ, buf, sig_xstate_ia32_size)) |
| 688 | return -EACCES; |
| 689 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 690 | if (!used_math()) { |
| 691 | err = init_fpu(tsk); |
| 692 | if (err) |
| 693 | return err; |
| 694 | } |
Suresh Siddha | fd3c3ed | 2008-05-07 12:09:52 -0700 | [diff] [blame] | 695 | |
Suresh Siddha | e8a496a | 2008-05-23 16:26:37 -0700 | [diff] [blame] | 696 | if (HAVE_HWFP) { |
Suresh Siddha | c37b5ef | 2008-07-29 10:29:25 -0700 | [diff] [blame] | 697 | if (cpu_has_xsave) |
| 698 | err = restore_i387_xsave(buf); |
| 699 | else if (cpu_has_fxsr) |
| 700 | err = restore_i387_fxsave(fp, sizeof(struct |
| 701 | i387_fxsave_struct)); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 702 | else |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 703 | err = restore_i387_fsave(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } else { |
Roland McGrath | 4421011 | 2008-01-30 13:31:50 +0100 | [diff] [blame] | 705 | err = fpregs_soft_set(current, NULL, |
| 706 | 0, sizeof(struct user_i387_ia32_struct), |
Suresh Siddha | ab51370 | 2008-07-29 10:29:22 -0700 | [diff] [blame] | 707 | NULL, fp) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
| 709 | set_used_math(); |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | return err; |
| 712 | } |
| 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | /* |
| 715 | * FPU state for core dumps. |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 716 | * This is only used for a.out dumps now. |
| 717 | * It is declared generically using elf_fpregset_t (which is |
| 718 | * struct user_i387_struct) but is in fact only used for 32-bit |
| 719 | * 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] | 720 | */ |
Cyrill Gorcunov | 3b095a0 | 2008-01-30 13:31:26 +0100 | [diff] [blame] | 721 | int dump_fpu(struct pt_regs *regs, struct user_i387_struct *fpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | struct task_struct *tsk = current; |
Ingo Molnar | f668964 | 2008-03-05 15:37:32 +0100 | [diff] [blame] | 724 | int fpvalid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
| 726 | fpvalid = !!used_math(); |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 727 | if (fpvalid) |
| 728 | fpvalid = !fpregs_get(tsk, NULL, |
| 729 | 0, sizeof(struct user_i387_ia32_struct), |
| 730 | fpu, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | return fpvalid; |
| 733 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 734 | EXPORT_SYMBOL(dump_fpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
Roland McGrath | 60b3b9a | 2008-01-30 13:31:55 +0100 | [diff] [blame] | 736 | #endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */ |