x86/fpu: Also check fpu_lazy_restore() when use_eager_fpu()
[firefly-linux-kernel-4.4.55.git] / arch / x86 / include / asm / fpu-internal.h
1 /*
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  * x86-64 work by Andi Kleen 2002
8  */
9
10 #ifndef _FPU_INTERNAL_H
11 #define _FPU_INTERNAL_H
12
13 #include <linux/kernel_stat.h>
14 #include <linux/regset.h>
15 #include <linux/compat.h>
16 #include <linux/slab.h>
17 #include <asm/asm.h>
18 #include <asm/cpufeature.h>
19 #include <asm/processor.h>
20 #include <asm/sigcontext.h>
21 #include <asm/user.h>
22 #include <asm/uaccess.h>
23 #include <asm/xsave.h>
24 #include <asm/smap.h>
25
26 #ifdef CONFIG_X86_64
27 # include <asm/sigcontext32.h>
28 # include <asm/user32.h>
29 struct ksignal;
30 int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
31                         compat_sigset_t *set, struct pt_regs *regs);
32 int ia32_setup_frame(int sig, struct ksignal *ksig,
33                      compat_sigset_t *set, struct pt_regs *regs);
34 #else
35 # define user_i387_ia32_struct  user_i387_struct
36 # define user32_fxsr_struct     user_fxsr_struct
37 # define ia32_setup_frame       __setup_frame
38 # define ia32_setup_rt_frame    __setup_rt_frame
39 #endif
40
41 extern unsigned int mxcsr_feature_mask;
42 extern void fpu_init(void);
43 extern void eager_fpu_init(void);
44
45 DECLARE_PER_CPU(struct task_struct *, fpu_owner_task);
46
47 extern void convert_from_fxsr(struct user_i387_ia32_struct *env,
48                               struct task_struct *tsk);
49 extern void convert_to_fxsr(struct task_struct *tsk,
50                             const struct user_i387_ia32_struct *env);
51
52 extern user_regset_active_fn fpregs_active, xfpregs_active;
53 extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
54                                 xstateregs_get;
55 extern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set,
56                                  xstateregs_set;
57
58 /*
59  * xstateregs_active == fpregs_active. Please refer to the comment
60  * at the definition of fpregs_active.
61  */
62 #define xstateregs_active       fpregs_active
63
64 #ifdef CONFIG_MATH_EMULATION
65 extern void finit_soft_fpu(struct i387_soft_struct *soft);
66 #else
67 static inline void finit_soft_fpu(struct i387_soft_struct *soft) {}
68 #endif
69
70 /*
71  * Must be run with preemption disabled: this clears the fpu_owner_task,
72  * on this CPU.
73  *
74  * This will disable any lazy FPU state restore of the current FPU state,
75  * but if the current thread owns the FPU, it will still be saved by.
76  */
77 static inline void __cpu_disable_lazy_restore(unsigned int cpu)
78 {
79         per_cpu(fpu_owner_task, cpu) = NULL;
80 }
81
82 /*
83  * Used to indicate that the FPU state in memory is newer than the FPU
84  * state in registers, and the FPU state should be reloaded next time the
85  * task is run. Only safe on the current task, or non-running tasks.
86  */
87 static inline void task_disable_lazy_fpu_restore(struct task_struct *tsk)
88 {
89         tsk->thread.fpu.last_cpu = ~0;
90 }
91
92 static inline int fpu_lazy_restore(struct task_struct *new, unsigned int cpu)
93 {
94         return new == this_cpu_read_stable(fpu_owner_task) &&
95                 cpu == new->thread.fpu.last_cpu;
96 }
97
98 static inline int is_ia32_compat_frame(void)
99 {
100         return config_enabled(CONFIG_IA32_EMULATION) &&
101                test_thread_flag(TIF_IA32);
102 }
103
104 static inline int is_ia32_frame(void)
105 {
106         return config_enabled(CONFIG_X86_32) || is_ia32_compat_frame();
107 }
108
109 static inline int is_x32_frame(void)
110 {
111         return config_enabled(CONFIG_X86_X32_ABI) && test_thread_flag(TIF_X32);
112 }
113
114 #define X87_FSW_ES (1 << 7)     /* Exception Summary */
115
116 static __always_inline __pure bool use_eager_fpu(void)
117 {
118         return static_cpu_has_safe(X86_FEATURE_EAGER_FPU);
119 }
120
121 static __always_inline __pure bool use_xsaveopt(void)
122 {
123         return static_cpu_has_safe(X86_FEATURE_XSAVEOPT);
124 }
125
126 static __always_inline __pure bool use_xsave(void)
127 {
128         return static_cpu_has_safe(X86_FEATURE_XSAVE);
129 }
130
131 static __always_inline __pure bool use_fxsr(void)
132 {
133         return static_cpu_has_safe(X86_FEATURE_FXSR);
134 }
135
136 static inline void fx_finit(struct i387_fxsave_struct *fx)
137 {
138         memset(fx, 0, xstate_size);
139         fx->cwd = 0x37f;
140         fx->mxcsr = MXCSR_DEFAULT;
141 }
142
143 extern void __sanitize_i387_state(struct task_struct *);
144
145 static inline void sanitize_i387_state(struct task_struct *tsk)
146 {
147         if (!use_xsaveopt())
148                 return;
149         __sanitize_i387_state(tsk);
150 }
151
152 #define user_insn(insn, output, input...)                               \
153 ({                                                                      \
154         int err;                                                        \
155         asm volatile(ASM_STAC "\n"                                      \
156                      "1:" #insn "\n\t"                                  \
157                      "2: " ASM_CLAC "\n"                                \
158                      ".section .fixup,\"ax\"\n"                         \
159                      "3:  movl $-1,%[err]\n"                            \
160                      "    jmp  2b\n"                                    \
161                      ".previous\n"                                      \
162                      _ASM_EXTABLE(1b, 3b)                               \
163                      : [err] "=r" (err), output                         \
164                      : "0"(0), input);                                  \
165         err;                                                            \
166 })
167
168 #define check_insn(insn, output, input...)                              \
169 ({                                                                      \
170         int err;                                                        \
171         asm volatile("1:" #insn "\n\t"                                  \
172                      "2:\n"                                             \
173                      ".section .fixup,\"ax\"\n"                         \
174                      "3:  movl $-1,%[err]\n"                            \
175                      "    jmp  2b\n"                                    \
176                      ".previous\n"                                      \
177                      _ASM_EXTABLE(1b, 3b)                               \
178                      : [err] "=r" (err), output                         \
179                      : "0"(0), input);                                  \
180         err;                                                            \
181 })
182
183 static inline int fsave_user(struct i387_fsave_struct __user *fx)
184 {
185         return user_insn(fnsave %[fx]; fwait,  [fx] "=m" (*fx), "m" (*fx));
186 }
187
188 static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
189 {
190         if (config_enabled(CONFIG_X86_32))
191                 return user_insn(fxsave %[fx], [fx] "=m" (*fx), "m" (*fx));
192         else if (config_enabled(CONFIG_AS_FXSAVEQ))
193                 return user_insn(fxsaveq %[fx], [fx] "=m" (*fx), "m" (*fx));
194
195         /* See comment in fpu_fxsave() below. */
196         return user_insn(rex64/fxsave (%[fx]), "=m" (*fx), [fx] "R" (fx));
197 }
198
199 static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
200 {
201         if (config_enabled(CONFIG_X86_32))
202                 return check_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
203         else if (config_enabled(CONFIG_AS_FXSAVEQ))
204                 return check_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
205
206         /* See comment in fpu_fxsave() below. */
207         return check_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
208                           "m" (*fx));
209 }
210
211 static inline int fxrstor_user(struct i387_fxsave_struct __user *fx)
212 {
213         if (config_enabled(CONFIG_X86_32))
214                 return user_insn(fxrstor %[fx], "=m" (*fx), [fx] "m" (*fx));
215         else if (config_enabled(CONFIG_AS_FXSAVEQ))
216                 return user_insn(fxrstorq %[fx], "=m" (*fx), [fx] "m" (*fx));
217
218         /* See comment in fpu_fxsave() below. */
219         return user_insn(rex64/fxrstor (%[fx]), "=m" (*fx), [fx] "R" (fx),
220                           "m" (*fx));
221 }
222
223 static inline int frstor_checking(struct i387_fsave_struct *fx)
224 {
225         return check_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
226 }
227
228 static inline int frstor_user(struct i387_fsave_struct __user *fx)
229 {
230         return user_insn(frstor %[fx], "=m" (*fx), [fx] "m" (*fx));
231 }
232
233 static inline void fpu_fxsave(struct fpu *fpu)
234 {
235         if (config_enabled(CONFIG_X86_32))
236                 asm volatile( "fxsave %[fx]" : [fx] "=m" (fpu->state->fxsave));
237         else if (config_enabled(CONFIG_AS_FXSAVEQ))
238                 asm volatile("fxsaveq %0" : "=m" (fpu->state->fxsave));
239         else {
240                 /* Using "rex64; fxsave %0" is broken because, if the memory
241                  * operand uses any extended registers for addressing, a second
242                  * REX prefix will be generated (to the assembler, rex64
243                  * followed by semicolon is a separate instruction), and hence
244                  * the 64-bitness is lost.
245                  *
246                  * Using "fxsaveq %0" would be the ideal choice, but is only
247                  * supported starting with gas 2.16.
248                  *
249                  * Using, as a workaround, the properly prefixed form below
250                  * isn't accepted by any binutils version so far released,
251                  * complaining that the same type of prefix is used twice if
252                  * an extended register is needed for addressing (fix submitted
253                  * to mainline 2005-11-21).
254                  *
255                  *  asm volatile("rex64/fxsave %0" : "=m" (fpu->state->fxsave));
256                  *
257                  * This, however, we can work around by forcing the compiler to
258                  * select an addressing mode that doesn't require extended
259                  * registers.
260                  */
261                 asm volatile( "rex64/fxsave (%[fx])"
262                              : "=m" (fpu->state->fxsave)
263                              : [fx] "R" (&fpu->state->fxsave));
264         }
265 }
266
267 /*
268  * These must be called with preempt disabled. Returns
269  * 'true' if the FPU state is still intact.
270  */
271 static inline int fpu_save_init(struct fpu *fpu)
272 {
273         if (use_xsave()) {
274                 fpu_xsave(fpu);
275
276                 /*
277                  * xsave header may indicate the init state of the FP.
278                  */
279                 if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
280                         return 1;
281         } else if (use_fxsr()) {
282                 fpu_fxsave(fpu);
283         } else {
284                 asm volatile("fnsave %[fx]; fwait"
285                              : [fx] "=m" (fpu->state->fsave));
286                 return 0;
287         }
288
289         /*
290          * If exceptions are pending, we need to clear them so
291          * that we don't randomly get exceptions later.
292          *
293          * FIXME! Is this perhaps only true for the old-style
294          * irq13 case? Maybe we could leave the x87 state
295          * intact otherwise?
296          */
297         if (unlikely(fpu->state->fxsave.swd & X87_FSW_ES)) {
298                 asm volatile("fnclex");
299                 return 0;
300         }
301         return 1;
302 }
303
304 static inline int __save_init_fpu(struct task_struct *tsk)
305 {
306         return fpu_save_init(&tsk->thread.fpu);
307 }
308
309 static inline int fpu_restore_checking(struct fpu *fpu)
310 {
311         if (use_xsave())
312                 return fpu_xrstor_checking(&fpu->state->xsave);
313         else if (use_fxsr())
314                 return fxrstor_checking(&fpu->state->fxsave);
315         else
316                 return frstor_checking(&fpu->state->fsave);
317 }
318
319 static inline int restore_fpu_checking(struct task_struct *tsk)
320 {
321         /* AMD K7/K8 CPUs don't save/restore FDP/FIP/FOP unless an exception
322            is pending.  Clear the x87 state here by setting it to fixed
323            values. "m" is a random variable that should be in L1 */
324         if (unlikely(static_cpu_has_bug_safe(X86_BUG_FXSAVE_LEAK))) {
325                 asm volatile(
326                         "fnclex\n\t"
327                         "emms\n\t"
328                         "fildl %P[addr]"        /* set F?P to defined value */
329                         : : [addr] "m" (tsk->thread.fpu.has_fpu));
330         }
331
332         return fpu_restore_checking(&tsk->thread.fpu);
333 }
334
335 /*
336  * Software FPU state helpers. Careful: these need to
337  * be preemption protection *and* they need to be
338  * properly paired with the CR0.TS changes!
339  */
340 static inline int __thread_has_fpu(struct task_struct *tsk)
341 {
342         return tsk->thread.fpu.has_fpu;
343 }
344
345 /* Must be paired with an 'stts' after! */
346 static inline void __thread_clear_has_fpu(struct task_struct *tsk)
347 {
348         tsk->thread.fpu.has_fpu = 0;
349         this_cpu_write(fpu_owner_task, NULL);
350 }
351
352 /* Must be paired with a 'clts' before! */
353 static inline void __thread_set_has_fpu(struct task_struct *tsk)
354 {
355         tsk->thread.fpu.has_fpu = 1;
356         this_cpu_write(fpu_owner_task, tsk);
357 }
358
359 /*
360  * Encapsulate the CR0.TS handling together with the
361  * software flag.
362  *
363  * These generally need preemption protection to work,
364  * do try to avoid using these on their own.
365  */
366 static inline void __thread_fpu_end(struct task_struct *tsk)
367 {
368         __thread_clear_has_fpu(tsk);
369         if (!use_eager_fpu())
370                 stts();
371 }
372
373 static inline void __thread_fpu_begin(struct task_struct *tsk)
374 {
375         if (!use_eager_fpu())
376                 clts();
377         __thread_set_has_fpu(tsk);
378 }
379
380 static inline void __drop_fpu(struct task_struct *tsk)
381 {
382         if (__thread_has_fpu(tsk)) {
383                 /* Ignore delayed exceptions from user space */
384                 asm volatile("1: fwait\n"
385                              "2:\n"
386                              _ASM_EXTABLE(1b, 2b));
387                 __thread_fpu_end(tsk);
388         }
389 }
390
391 static inline void drop_fpu(struct task_struct *tsk)
392 {
393         /*
394          * Forget coprocessor state..
395          */
396         preempt_disable();
397         tsk->thread.fpu_counter = 0;
398         __drop_fpu(tsk);
399         clear_used_math();
400         preempt_enable();
401 }
402
403 static inline void drop_init_fpu(struct task_struct *tsk)
404 {
405         if (!use_eager_fpu())
406                 drop_fpu(tsk);
407         else {
408                 if (use_xsave())
409                         xrstor_state(init_xstate_buf, -1);
410                 else
411                         fxrstor_checking(&init_xstate_buf->i387);
412         }
413 }
414
415 /*
416  * FPU state switching for scheduling.
417  *
418  * This is a two-stage process:
419  *
420  *  - switch_fpu_prepare() saves the old state and
421  *    sets the new state of the CR0.TS bit. This is
422  *    done within the context of the old process.
423  *
424  *  - switch_fpu_finish() restores the new state as
425  *    necessary.
426  */
427 typedef struct { int preload; } fpu_switch_t;
428
429 static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new, int cpu)
430 {
431         fpu_switch_t fpu;
432
433         /*
434          * If the task has used the math, pre-load the FPU on xsave processors
435          * or if the past 5 consecutive context-switches used math.
436          */
437         fpu.preload = tsk_used_math(new) &&
438                       (use_eager_fpu() || new->thread.fpu_counter > 5);
439
440         if (__thread_has_fpu(old)) {
441                 if (!__save_init_fpu(old))
442                         task_disable_lazy_fpu_restore(old);
443                 else
444                         old->thread.fpu.last_cpu = cpu;
445
446                 /* But leave fpu_owner_task! */
447                 old->thread.fpu.has_fpu = 0;
448
449                 /* Don't change CR0.TS if we just switch! */
450                 if (fpu.preload) {
451                         new->thread.fpu_counter++;
452                         __thread_set_has_fpu(new);
453                         prefetch(new->thread.fpu.state);
454                 } else if (!use_eager_fpu())
455                         stts();
456         } else {
457                 old->thread.fpu_counter = 0;
458                 task_disable_lazy_fpu_restore(old);
459                 if (fpu.preload) {
460                         new->thread.fpu_counter++;
461                         if (fpu_lazy_restore(new, cpu))
462                                 fpu.preload = 0;
463                         else
464                                 prefetch(new->thread.fpu.state);
465                         __thread_fpu_begin(new);
466                 }
467         }
468         return fpu;
469 }
470
471 /*
472  * By the time this gets called, we've already cleared CR0.TS and
473  * given the process the FPU if we are going to preload the FPU
474  * state - all we need to do is to conditionally restore the register
475  * state itself.
476  */
477 static inline void switch_fpu_finish(struct task_struct *new, fpu_switch_t fpu)
478 {
479         if (fpu.preload) {
480                 if (unlikely(restore_fpu_checking(new)))
481                         drop_init_fpu(new);
482         }
483 }
484
485 /*
486  * Signal frame handlers...
487  */
488 extern int save_xstate_sig(void __user *buf, void __user *fx, int size);
489 extern int __restore_xstate_sig(void __user *buf, void __user *fx, int size);
490
491 static inline int xstate_sigframe_size(void)
492 {
493         return use_xsave() ? xstate_size + FP_XSTATE_MAGIC2_SIZE : xstate_size;
494 }
495
496 static inline int restore_xstate_sig(void __user *buf, int ia32_frame)
497 {
498         void __user *buf_fx = buf;
499         int size = xstate_sigframe_size();
500
501         if (ia32_frame && use_fxsr()) {
502                 buf_fx = buf + sizeof(struct i387_fsave_struct);
503                 size += sizeof(struct i387_fsave_struct);
504         }
505
506         return __restore_xstate_sig(buf, buf_fx, size);
507 }
508
509 /*
510  * Need to be preemption-safe.
511  *
512  * NOTE! user_fpu_begin() must be used only immediately before restoring
513  * it. This function does not do any save/restore on their own.
514  */
515 static inline void user_fpu_begin(void)
516 {
517         preempt_disable();
518         if (!user_has_fpu())
519                 __thread_fpu_begin(current);
520         preempt_enable();
521 }
522
523 static inline void __save_fpu(struct task_struct *tsk)
524 {
525         if (use_xsave()) {
526                 if (unlikely(system_state == SYSTEM_BOOTING))
527                         xsave_state_booting(&tsk->thread.fpu.state->xsave, -1);
528                 else
529                         xsave_state(&tsk->thread.fpu.state->xsave, -1);
530         } else
531                 fpu_fxsave(&tsk->thread.fpu);
532 }
533
534 /*
535  * i387 state interaction
536  */
537 static inline unsigned short get_fpu_cwd(struct task_struct *tsk)
538 {
539         if (cpu_has_fxsr) {
540                 return tsk->thread.fpu.state->fxsave.cwd;
541         } else {
542                 return (unsigned short)tsk->thread.fpu.state->fsave.cwd;
543         }
544 }
545
546 static inline unsigned short get_fpu_swd(struct task_struct *tsk)
547 {
548         if (cpu_has_fxsr) {
549                 return tsk->thread.fpu.state->fxsave.swd;
550         } else {
551                 return (unsigned short)tsk->thread.fpu.state->fsave.swd;
552         }
553 }
554
555 static inline unsigned short get_fpu_mxcsr(struct task_struct *tsk)
556 {
557         if (cpu_has_xmm) {
558                 return tsk->thread.fpu.state->fxsave.mxcsr;
559         } else {
560                 return MXCSR_DEFAULT;
561         }
562 }
563
564 static bool fpu_allocated(struct fpu *fpu)
565 {
566         return fpu->state != NULL;
567 }
568
569 static inline int fpu_alloc(struct fpu *fpu)
570 {
571         if (fpu_allocated(fpu))
572                 return 0;
573         fpu->state = kmem_cache_alloc(task_xstate_cachep, GFP_KERNEL);
574         if (!fpu->state)
575                 return -ENOMEM;
576         WARN_ON((unsigned long)fpu->state & 15);
577         return 0;
578 }
579
580 static inline void fpu_free(struct fpu *fpu)
581 {
582         if (fpu->state) {
583                 kmem_cache_free(task_xstate_cachep, fpu->state);
584                 fpu->state = NULL;
585         }
586 }
587
588 static inline void fpu_copy(struct task_struct *dst, struct task_struct *src)
589 {
590         if (use_eager_fpu()) {
591                 memset(&dst->thread.fpu.state->xsave, 0, xstate_size);
592                 __save_fpu(dst);
593         } else {
594                 struct fpu *dfpu = &dst->thread.fpu;
595                 struct fpu *sfpu = &src->thread.fpu;
596
597                 unlazy_fpu(src);
598                 memcpy(dfpu->state, sfpu->state, xstate_size);
599         }
600 }
601
602 static inline unsigned long
603 alloc_mathframe(unsigned long sp, int ia32_frame, unsigned long *buf_fx,
604                 unsigned long *size)
605 {
606         unsigned long frame_size = xstate_sigframe_size();
607
608         *buf_fx = sp = round_down(sp - frame_size, 64);
609         if (ia32_frame && use_fxsr()) {
610                 frame_size += sizeof(struct i387_fsave_struct);
611                 sp -= sizeof(struct i387_fsave_struct);
612         }
613
614         *size = frame_size;
615         return sp;
616 }
617
618 #endif