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