]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/process.c
sched/headers: Prepare for new header dependencies before moving code to <linux/sched...
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / process.c
CommitLineData
c767a54b
JP
1#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2
61c4628b
SS
3#include <linux/errno.h>
4#include <linux/kernel.h>
5#include <linux/mm.h>
6#include <linux/smp.h>
389d1fb1 7#include <linux/prctl.h>
61c4628b
SS
8#include <linux/slab.h>
9#include <linux/sched.h>
4c822698 10#include <linux/sched/idle.h>
b17b0153 11#include <linux/sched/debug.h>
186f4360
PG
12#include <linux/init.h>
13#include <linux/export.h>
7f424a8b 14#include <linux/pm.h>
162a688e 15#include <linux/tick.h>
9d62dcdf 16#include <linux/random.h>
7c68af6e 17#include <linux/user-return-notifier.h>
814e2c84
AI
18#include <linux/dmi.h>
19#include <linux/utsname.h>
90e24014
RW
20#include <linux/stackprotector.h>
21#include <linux/tick.h>
22#include <linux/cpuidle.h>
61613521 23#include <trace/events/power.h>
24f1e32c 24#include <linux/hw_breakpoint.h>
93789b32 25#include <asm/cpu.h>
d3ec5cae 26#include <asm/apic.h>
2c1b284e 27#include <asm/syscalls.h>
7c0f6ba6 28#include <linux/uaccess.h>
b253149b 29#include <asm/mwait.h>
78f7f1e5 30#include <asm/fpu/internal.h>
66cb5917 31#include <asm/debugreg.h>
90e24014 32#include <asm/nmi.h>
375074cc 33#include <asm/tlbflush.h>
8838eb6c 34#include <asm/mce.h>
9fda6a06 35#include <asm/vm86.h>
7b32aead 36#include <asm/switch_to.h>
b7ffc44d 37#include <asm/desc.h>
90e24014 38
45046892
TG
39/*
40 * per-CPU TSS segments. Threads are completely 'soft' on Linux,
41 * no more per-task TSS's. The TSS size is kept cacheline-aligned
42 * so they are allowed to end up in the .data..cacheline_aligned
43 * section. Since TSS's are completely CPU-local, we want them
44 * on exact cacheline boundaries, to eliminate cacheline ping-pong.
45 */
d0a0de21
AL
46__visible DEFINE_PER_CPU_SHARED_ALIGNED(struct tss_struct, cpu_tss) = {
47 .x86_tss = {
d9e05cc5 48 .sp0 = TOP_OF_INIT_STACK,
d0a0de21
AL
49#ifdef CONFIG_X86_32
50 .ss0 = __KERNEL_DS,
51 .ss1 = __KERNEL_CS,
52 .io_bitmap_base = INVALID_IO_BITMAP_OFFSET,
53#endif
54 },
55#ifdef CONFIG_X86_32
56 /*
57 * Note that the .io_bitmap member must be extra-big. This is because
58 * the CPU will access an additional byte beyond the end of the IO
59 * permission bitmap. The extra byte must be all 1 bits, and must
60 * be within the limit.
61 */
62 .io_bitmap = { [0 ... IO_BITMAP_LONGS] = ~0 },
63#endif
2a41aa4f
AL
64#ifdef CONFIG_X86_32
65 .SYSENTER_stack_canary = STACK_END_MAGIC,
66#endif
d0a0de21 67};
de71ad2c 68EXPORT_PER_CPU_SYMBOL(cpu_tss);
45046892 69
b7ffc44d
AL
70DEFINE_PER_CPU(bool, need_tr_refresh);
71EXPORT_PER_CPU_SYMBOL_GPL(need_tr_refresh);
72
55ccf3fe
SS
73/*
74 * this gets called so that we can store lazy state into memory and copy the
75 * current task into the new thread.
76 */
61c4628b
SS
77int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
78{
5aaeb5c0 79 memcpy(dst, src, arch_task_struct_size);
2459ee86
AL
80#ifdef CONFIG_VM86
81 dst->thread.vm86 = NULL;
82#endif
f1853505 83
c69e098b 84 return fpu__copy(&dst->thread.fpu, &src->thread.fpu);
61c4628b 85}
7f424a8b 86
389d1fb1
JF
87/*
88 * Free current thread data structures etc..
89 */
e6464694 90void exit_thread(struct task_struct *tsk)
389d1fb1 91{
e6464694 92 struct thread_struct *t = &tsk->thread;
250981e6 93 unsigned long *bp = t->io_bitmap_ptr;
ca6787ba 94 struct fpu *fpu = &t->fpu;
389d1fb1 95
250981e6 96 if (bp) {
24933b82 97 struct tss_struct *tss = &per_cpu(cpu_tss, get_cpu());
389d1fb1 98
389d1fb1
JF
99 t->io_bitmap_ptr = NULL;
100 clear_thread_flag(TIF_IO_BITMAP);
101 /*
102 * Careful, clear this in the TSS too:
103 */
104 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
105 t->io_bitmap_max = 0;
106 put_cpu();
250981e6 107 kfree(bp);
389d1fb1 108 }
1dcc8d7b 109
9fda6a06
BG
110 free_vm86(t);
111
50338615 112 fpu__drop(fpu);
389d1fb1
JF
113}
114
115void flush_thread(void)
116{
117 struct task_struct *tsk = current;
118
24f1e32c 119 flush_ptrace_hw_breakpoint(tsk);
389d1fb1 120 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
110d7f75 121
04c8e01d 122 fpu__clear(&tsk->thread.fpu);
389d1fb1
JF
123}
124
125static void hard_disable_TSC(void)
126{
375074cc 127 cr4_set_bits(X86_CR4_TSD);
389d1fb1
JF
128}
129
130void disable_TSC(void)
131{
132 preempt_disable();
133 if (!test_and_set_thread_flag(TIF_NOTSC))
134 /*
135 * Must flip the CPU state synchronously with
136 * TIF_NOTSC in the current running context.
137 */
138 hard_disable_TSC();
139 preempt_enable();
140}
141
142static void hard_enable_TSC(void)
143{
375074cc 144 cr4_clear_bits(X86_CR4_TSD);
389d1fb1
JF
145}
146
147static void enable_TSC(void)
148{
149 preempt_disable();
150 if (test_and_clear_thread_flag(TIF_NOTSC))
151 /*
152 * Must flip the CPU state synchronously with
153 * TIF_NOTSC in the current running context.
154 */
155 hard_enable_TSC();
156 preempt_enable();
157}
158
159int get_tsc_mode(unsigned long adr)
160{
161 unsigned int val;
162
163 if (test_thread_flag(TIF_NOTSC))
164 val = PR_TSC_SIGSEGV;
165 else
166 val = PR_TSC_ENABLE;
167
168 return put_user(val, (unsigned int __user *)adr);
169}
170
171int set_tsc_mode(unsigned int val)
172{
173 if (val == PR_TSC_SIGSEGV)
174 disable_TSC();
175 else if (val == PR_TSC_ENABLE)
176 enable_TSC();
177 else
178 return -EINVAL;
179
180 return 0;
181}
182
183void __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
184 struct tss_struct *tss)
185{
186 struct thread_struct *prev, *next;
187
188 prev = &prev_p->thread;
189 next = &next_p->thread;
190
ea8e61b7
PZ
191 if (test_tsk_thread_flag(prev_p, TIF_BLOCKSTEP) ^
192 test_tsk_thread_flag(next_p, TIF_BLOCKSTEP)) {
193 unsigned long debugctl = get_debugctlmsr();
194
195 debugctl &= ~DEBUGCTLMSR_BTF;
196 if (test_tsk_thread_flag(next_p, TIF_BLOCKSTEP))
197 debugctl |= DEBUGCTLMSR_BTF;
198
199 update_debugctlmsr(debugctl);
200 }
389d1fb1 201
389d1fb1
JF
202 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
203 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
204 /* prev and next are different */
205 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
206 hard_disable_TSC();
207 else
208 hard_enable_TSC();
209 }
210
211 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
212 /*
213 * Copy the relevant range of the IO bitmap.
214 * Normally this is 128 bytes or less:
215 */
216 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
217 max(prev->io_bitmap_max, next->io_bitmap_max));
b7ffc44d
AL
218
219 /*
220 * Make sure that the TSS limit is correct for the CPU
221 * to notice the IO bitmap.
222 */
223 refresh_TR();
389d1fb1
JF
224 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
225 /*
226 * Clear any possible leftover bits:
227 */
228 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
229 }
7c68af6e 230 propagate_user_return_notify(prev_p, next_p);
389d1fb1
JF
231}
232
00dba564
TG
233/*
234 * Idle related variables and functions
235 */
d1896049 236unsigned long boot_option_idle_override = IDLE_NO_OVERRIDE;
00dba564
TG
237EXPORT_SYMBOL(boot_option_idle_override);
238
a476bda3 239static void (*x86_idle)(void);
00dba564 240
90e24014
RW
241#ifndef CONFIG_SMP
242static inline void play_dead(void)
243{
244 BUG();
245}
246#endif
247
7d1a9417
TG
248void arch_cpu_idle_enter(void)
249{
6a369583 250 tsc_verify_tsc_adjust(false);
7d1a9417 251 local_touch_nmi();
7d1a9417 252}
90e24014 253
7d1a9417
TG
254void arch_cpu_idle_dead(void)
255{
256 play_dead();
257}
90e24014 258
7d1a9417
TG
259/*
260 * Called from the generic idle code.
261 */
262void arch_cpu_idle(void)
263{
16f8b05a 264 x86_idle();
90e24014
RW
265}
266
00dba564 267/*
7d1a9417 268 * We use this if we don't have any better idle routine..
00dba564 269 */
6727ad9e 270void __cpuidle default_idle(void)
00dba564 271{
4d0e42cc 272 trace_cpu_idle_rcuidle(1, smp_processor_id());
7d1a9417 273 safe_halt();
4d0e42cc 274 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
00dba564 275}
60b8b1de 276#ifdef CONFIG_APM_MODULE
00dba564
TG
277EXPORT_SYMBOL(default_idle);
278#endif
279
6a377ddc
LB
280#ifdef CONFIG_XEN
281bool xen_set_default_idle(void)
e5fd47bf 282{
a476bda3 283 bool ret = !!x86_idle;
e5fd47bf 284
a476bda3 285 x86_idle = default_idle;
e5fd47bf
KRW
286
287 return ret;
288}
6a377ddc 289#endif
d3ec5cae
IV
290void stop_this_cpu(void *dummy)
291{
292 local_irq_disable();
293 /*
294 * Remove this CPU:
295 */
4f062896 296 set_cpu_online(smp_processor_id(), false);
d3ec5cae 297 disable_local_APIC();
8838eb6c 298 mcheck_cpu_clear(this_cpu_ptr(&cpu_info));
d3ec5cae 299
27be4570
LB
300 for (;;)
301 halt();
7f424a8b
PZ
302}
303
aa276e1c 304/*
07c94a38
BP
305 * AMD Erratum 400 aware idle routine. We handle it the same way as C3 power
306 * states (local apic timer and TSC stop).
aa276e1c 307 */
02c68a02 308static void amd_e400_idle(void)
aa276e1c 309{
07c94a38
BP
310 /*
311 * We cannot use static_cpu_has_bug() here because X86_BUG_AMD_APIC_C1E
312 * gets set after static_cpu_has() places have been converted via
313 * alternatives.
314 */
315 if (!boot_cpu_has_bug(X86_BUG_AMD_APIC_C1E)) {
316 default_idle();
317 return;
aa276e1c
TG
318 }
319
07c94a38 320 tick_broadcast_enter();
aa276e1c 321
07c94a38 322 default_idle();
0beefa20 323
07c94a38
BP
324 /*
325 * The switch back from broadcast mode needs to be called with
326 * interrupts disabled.
327 */
328 local_irq_disable();
329 tick_broadcast_exit();
330 local_irq_enable();
aa276e1c
TG
331}
332
b253149b
LB
333/*
334 * Intel Core2 and older machines prefer MWAIT over HALT for C1.
335 * We can't rely on cpuidle installing MWAIT, because it will not load
336 * on systems that support only C1 -- so the boot default must be MWAIT.
337 *
338 * Some AMD machines are the opposite, they depend on using HALT.
339 *
340 * So for default C1, which is used during boot until cpuidle loads,
341 * use MWAIT-C1 on Intel HW that has it, else use HALT.
342 */
343static int prefer_mwait_c1_over_halt(const struct cpuinfo_x86 *c)
344{
345 if (c->x86_vendor != X86_VENDOR_INTEL)
346 return 0;
347
08e237fa 348 if (!cpu_has(c, X86_FEATURE_MWAIT) || static_cpu_has_bug(X86_BUG_MONITOR))
b253149b
LB
349 return 0;
350
351 return 1;
352}
353
354/*
0fb0328d
HR
355 * MONITOR/MWAIT with no hints, used for default C1 state. This invokes MWAIT
356 * with interrupts enabled and no flags, which is backwards compatible with the
357 * original MWAIT implementation.
b253149b 358 */
6727ad9e 359static __cpuidle void mwait_idle(void)
b253149b 360{
f8e617f4 361 if (!current_set_polling_and_test()) {
e43d0189 362 trace_cpu_idle_rcuidle(1, smp_processor_id());
f8e617f4 363 if (this_cpu_has(X86_BUG_CLFLUSH_MONITOR)) {
ca59809f 364 mb(); /* quirk */
b253149b 365 clflush((void *)&current_thread_info()->flags);
ca59809f 366 mb(); /* quirk */
f8e617f4 367 }
b253149b
LB
368
369 __monitor((void *)&current_thread_info()->flags, 0, 0);
b253149b
LB
370 if (!need_resched())
371 __sti_mwait(0, 0);
372 else
373 local_irq_enable();
e43d0189 374 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
f8e617f4 375 } else {
b253149b 376 local_irq_enable();
f8e617f4
MG
377 }
378 __current_clr_polling();
b253149b
LB
379}
380
148f9bb8 381void select_idle_routine(const struct cpuinfo_x86 *c)
7f424a8b 382{
3e5095d1 383#ifdef CONFIG_SMP
7d1a9417 384 if (boot_option_idle_override == IDLE_POLL && smp_num_siblings > 1)
c767a54b 385 pr_warn_once("WARNING: polling idle and HT enabled, performance may degrade\n");
7f424a8b 386#endif
7d1a9417 387 if (x86_idle || boot_option_idle_override == IDLE_POLL)
6ddd2a27
TG
388 return;
389
3344ed30 390 if (boot_cpu_has_bug(X86_BUG_AMD_E400)) {
c767a54b 391 pr_info("using AMD E400 aware idle routine\n");
a476bda3 392 x86_idle = amd_e400_idle;
b253149b
LB
393 } else if (prefer_mwait_c1_over_halt(c)) {
394 pr_info("using mwait in idle threads\n");
395 x86_idle = mwait_idle;
6ddd2a27 396 } else
a476bda3 397 x86_idle = default_idle;
7f424a8b
PZ
398}
399
07c94a38 400void amd_e400_c1e_apic_setup(void)
30e1e6d1 401{
07c94a38
BP
402 if (boot_cpu_has_bug(X86_BUG_AMD_APIC_C1E)) {
403 pr_info("Switch to broadcast mode on CPU%d\n", smp_processor_id());
404 local_irq_disable();
405 tick_broadcast_force();
406 local_irq_enable();
407 }
30e1e6d1
RR
408}
409
e7ff3a47
TG
410void __init arch_post_acpi_subsys_init(void)
411{
412 u32 lo, hi;
413
414 if (!boot_cpu_has_bug(X86_BUG_AMD_E400))
415 return;
416
417 /*
418 * AMD E400 detection needs to happen after ACPI has been enabled. If
419 * the machine is affected K8_INTP_C1E_ACTIVE_MASK bits are set in
420 * MSR_K8_INT_PENDING_MSG.
421 */
422 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
423 if (!(lo & K8_INTP_C1E_ACTIVE_MASK))
424 return;
425
426 boot_cpu_set_bug(X86_BUG_AMD_APIC_C1E);
427
428 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
429 mark_tsc_unstable("TSC halt in AMD C1E");
430 pr_info("System has AMD C1E enabled\n");
431}
432
7f424a8b
PZ
433static int __init idle_setup(char *str)
434{
ab6bc3e3
CG
435 if (!str)
436 return -EINVAL;
437
7f424a8b 438 if (!strcmp(str, "poll")) {
c767a54b 439 pr_info("using polling idle threads\n");
d1896049 440 boot_option_idle_override = IDLE_POLL;
7d1a9417 441 cpu_idle_poll_ctrl(true);
d1896049 442 } else if (!strcmp(str, "halt")) {
c1e3b377
ZY
443 /*
444 * When the boot option of idle=halt is added, halt is
445 * forced to be used for CPU idle. In such case CPU C2/C3
446 * won't be used again.
447 * To continue to load the CPU idle driver, don't touch
448 * the boot_option_idle_override.
449 */
a476bda3 450 x86_idle = default_idle;
d1896049 451 boot_option_idle_override = IDLE_HALT;
da5e09a1
ZY
452 } else if (!strcmp(str, "nomwait")) {
453 /*
454 * If the boot option of "idle=nomwait" is added,
455 * it means that mwait will be disabled for CPU C2/C3
456 * states. In such case it won't touch the variable
457 * of boot_option_idle_override.
458 */
d1896049 459 boot_option_idle_override = IDLE_NOMWAIT;
c1e3b377 460 } else
7f424a8b
PZ
461 return -1;
462
7f424a8b
PZ
463 return 0;
464}
465early_param("idle", idle_setup);
466
9d62dcdf
AW
467unsigned long arch_align_stack(unsigned long sp)
468{
469 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
470 sp -= get_random_int() % 8192;
471 return sp & ~0xf;
472}
473
474unsigned long arch_randomize_brk(struct mm_struct *mm)
475{
9c6f0902 476 return randomize_page(mm->brk, 0x02000000);
9d62dcdf
AW
477}
478
ffcb043b
BG
479/*
480 * Return saved PC of a blocked thread.
481 * What is this good for? it will be always the scheduler or ret_from_fork.
482 */
483unsigned long thread_saved_pc(struct task_struct *tsk)
484{
485 struct inactive_task_frame *frame =
486 (struct inactive_task_frame *) READ_ONCE(tsk->thread.sp);
487 return READ_ONCE_NOCHECK(frame->ret_addr);
488}
489
7ba78053
TG
490/*
491 * Called from fs/proc with a reference on @p to find the function
492 * which called into schedule(). This needs to be done carefully
493 * because the task might wake up and we might look at a stack
494 * changing under us.
495 */
496unsigned long get_wchan(struct task_struct *p)
497{
74327a3e 498 unsigned long start, bottom, top, sp, fp, ip, ret = 0;
7ba78053
TG
499 int count = 0;
500
501 if (!p || p == current || p->state == TASK_RUNNING)
502 return 0;
503
74327a3e
AL
504 if (!try_get_task_stack(p))
505 return 0;
506
7ba78053
TG
507 start = (unsigned long)task_stack_page(p);
508 if (!start)
74327a3e 509 goto out;
7ba78053
TG
510
511 /*
512 * Layout of the stack page:
513 *
514 * ----------- topmax = start + THREAD_SIZE - sizeof(unsigned long)
515 * PADDING
516 * ----------- top = topmax - TOP_OF_KERNEL_STACK_PADDING
517 * stack
15f4eae7 518 * ----------- bottom = start
7ba78053
TG
519 *
520 * The tasks stack pointer points at the location where the
521 * framepointer is stored. The data on the stack is:
522 * ... IP FP ... IP FP
523 *
524 * We need to read FP and IP, so we need to adjust the upper
525 * bound by another unsigned long.
526 */
527 top = start + THREAD_SIZE - TOP_OF_KERNEL_STACK_PADDING;
528 top -= 2 * sizeof(unsigned long);
15f4eae7 529 bottom = start;
7ba78053
TG
530
531 sp = READ_ONCE(p->thread.sp);
532 if (sp < bottom || sp > top)
74327a3e 533 goto out;
7ba78053 534
7b32aead 535 fp = READ_ONCE_NOCHECK(((struct inactive_task_frame *)sp)->bp);
7ba78053
TG
536 do {
537 if (fp < bottom || fp > top)
74327a3e 538 goto out;
f7d27c35 539 ip = READ_ONCE_NOCHECK(*(unsigned long *)(fp + sizeof(unsigned long)));
74327a3e
AL
540 if (!in_sched_functions(ip)) {
541 ret = ip;
542 goto out;
543 }
f7d27c35 544 fp = READ_ONCE_NOCHECK(*(unsigned long *)fp);
7ba78053 545 } while (count++ < 16 && p->state != TASK_RUNNING);
74327a3e
AL
546
547out:
548 put_task_stack(p);
549 return ret;
7ba78053 550}