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