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