]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/process_32.c
Merge branch 'percpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / process_32.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1995 Linus Torvalds
3 *
4 * Pentium III FXSR, SSE support
5 * Gareth Hughes <gareth@valinux.com>, May 2000
6 */
7
8/*
9 * This file handles the architecture-dependent parts of process handling..
10 */
11
5c79d2a5 12#include <linux/stackprotector.h>
f3705136 13#include <linux/cpu.h>
1da177e4
LT
14#include <linux/errno.h>
15#include <linux/sched.h>
16#include <linux/fs.h>
17#include <linux/kernel.h>
18#include <linux/mm.h>
19#include <linux/elfcore.h>
20#include <linux/smp.h>
1da177e4
LT
21#include <linux/stddef.h>
22#include <linux/slab.h>
23#include <linux/vmalloc.h>
24#include <linux/user.h>
1da177e4 25#include <linux/interrupt.h>
1da177e4
LT
26#include <linux/utsname.h>
27#include <linux/delay.h>
28#include <linux/reboot.h>
29#include <linux/init.h>
30#include <linux/mc146818rtc.h>
31#include <linux/module.h>
32#include <linux/kallsyms.h>
33#include <linux/ptrace.h>
c16b63e0 34#include <linux/personality.h>
74167347 35#include <linux/tick.h>
7c3576d2 36#include <linux/percpu.h>
529e25f6 37#include <linux/prctl.h>
90f7d25c 38#include <linux/dmi.h>
8b96f011 39#include <linux/ftrace.h>
befa9e78
JSR
40#include <linux/uaccess.h>
41#include <linux/io.h>
42#include <linux/kdebug.h>
1da177e4 43
1da177e4
LT
44#include <asm/pgtable.h>
45#include <asm/system.h>
1da177e4
LT
46#include <asm/ldt.h>
47#include <asm/processor.h>
48#include <asm/i387.h>
1da177e4
LT
49#include <asm/desc.h>
50#ifdef CONFIG_MATH_EMULATION
51#include <asm/math_emu.h>
52#endif
53
1da177e4
LT
54#include <linux/err.h>
55
f3705136
ZM
56#include <asm/tlbflush.h>
57#include <asm/cpu.h>
1eda8149 58#include <asm/idle.h>
bbc1f698 59#include <asm/syscalls.h>
bf53de90 60#include <asm/ds.h>
f3705136 61
1da177e4
LT
62asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
63
7c3576d2
JF
64DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
65EXPORT_PER_CPU_SYMBOL(current_task);
66
1da177e4
LT
67/*
68 * Return saved PC of a blocked thread.
69 */
70unsigned long thread_saved_pc(struct task_struct *tsk)
71{
faca6227 72 return ((unsigned long *)tsk->thread.sp)[3];
1da177e4
LT
73}
74
913da64b
AN
75#ifndef CONFIG_SMP
76static inline void play_dead(void)
77{
78 BUG();
79}
80#endif
81
1da177e4
LT
82/*
83 * The idle thread. There's no useful work to be
84 * done, so just try to conserve power and have a
85 * low exit latency (ie sit in a loop waiting for
86 * somebody to say that they'd like to reschedule)
87 */
f3705136 88void cpu_idle(void)
1da177e4 89{
5bfb5d69 90 int cpu = smp_processor_id();
f3705136 91
5c79d2a5
TH
92 /*
93 * If we're the non-boot CPU, nothing set the stack canary up
94 * for us. CPU0 already has it initialized but no harm in
95 * doing it again. This is a good place for updating it, as
96 * we wont ever return from this function (so the invalid
97 * canaries already on the stack wont ever trigger).
98 */
99 boot_init_stack_canary();
100
495ab9c0 101 current_thread_info()->status |= TS_POLLING;
64c7c8f8 102
1da177e4
LT
103 /* endless idle loop with no priority at all */
104 while (1) {
b8f8c3cf 105 tick_nohz_stop_sched_tick(1);
1da177e4 106 while (!need_resched()) {
1da177e4 107
f1d1a842 108 check_pgt_cache();
1da177e4 109 rmb();
1da177e4 110
f3705136
ZM
111 if (cpu_is_offline(cpu))
112 play_dead();
113
7f424a8b 114 local_irq_disable();
6cd8a4bb
SR
115 /* Don't trace irqs off for idle */
116 stop_critical_timings();
6ddd2a27 117 pm_idle();
6cd8a4bb 118 start_critical_timings();
1da177e4 119 }
74167347 120 tick_nohz_restart_sched_tick();
5bfb5d69 121 preempt_enable_no_resched();
1da177e4 122 schedule();
5bfb5d69 123 preempt_disable();
1da177e4
LT
124 }
125}
126
e2ce07c8 127void __show_regs(struct pt_regs *regs, int all)
1da177e4
LT
128{
129 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
bb1995d5 130 unsigned long d0, d1, d2, d3, d6, d7;
65ea5b03 131 unsigned long sp;
9d975ebd 132 unsigned short ss, gs;
90f7d25c 133 const char *board;
9d975ebd
PE
134
135 if (user_mode_vm(regs)) {
65ea5b03
PA
136 sp = regs->sp;
137 ss = regs->ss & 0xffff;
d9a89a26 138 gs = get_user_gs(regs);
9d975ebd 139 } else {
65ea5b03 140 sp = (unsigned long) (&regs->sp);
9d975ebd
PE
141 savesegment(ss, ss);
142 savesegment(gs, gs);
143 }
1da177e4
LT
144
145 printk("\n");
90f7d25c
AV
146
147 board = dmi_get_system_info(DMI_PRODUCT_NAME);
148 if (!board)
149 board = "";
150 printk("Pid: %d, comm: %s %s (%s %.*s) %s\n",
60812a4a 151 task_pid_nr(current), current->comm,
9d975ebd
PE
152 print_tainted(), init_utsname()->release,
153 (int)strcspn(init_utsname()->version, " "),
90f7d25c 154 init_utsname()->version, board);
9d975ebd
PE
155
156 printk("EIP: %04x:[<%08lx>] EFLAGS: %08lx CPU: %d\n",
92bc2056 157 (u16)regs->cs, regs->ip, regs->flags,
9d975ebd 158 smp_processor_id());
65ea5b03 159 print_symbol("EIP is at %s\n", regs->ip);
1da177e4 160
1da177e4 161 printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
65ea5b03 162 regs->ax, regs->bx, regs->cx, regs->dx);
9d975ebd 163 printk("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
65ea5b03 164 regs->si, regs->di, regs->bp, sp);
9d975ebd 165 printk(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
92bc2056 166 (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss);
9d975ebd
PE
167
168 if (!all)
169 return;
1da177e4 170
4bb0d3ec
ZA
171 cr0 = read_cr0();
172 cr2 = read_cr2();
173 cr3 = read_cr3();
ff6e8c0d 174 cr4 = read_cr4_safe();
9d975ebd
PE
175 printk("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
176 cr0, cr2, cr3, cr4);
bb1995d5
AS
177
178 get_debugreg(d0, 0);
179 get_debugreg(d1, 1);
180 get_debugreg(d2, 2);
181 get_debugreg(d3, 3);
182 printk("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
183 d0, d1, d2, d3);
9d975ebd 184
bb1995d5
AS
185 get_debugreg(d6, 6);
186 get_debugreg(d7, 7);
9d975ebd
PE
187 printk("DR6: %08lx DR7: %08lx\n",
188 d6, d7);
189}
bb1995d5 190
9d975ebd
PE
191void show_regs(struct pt_regs *regs)
192{
e2ce07c8 193 __show_regs(regs, 1);
5bc27dc2 194 show_trace(NULL, regs, &regs->sp, regs->bp);
1da177e4
LT
195}
196
197/*
65ea5b03
PA
198 * This gets run with %bx containing the
199 * function to call, and %dx containing
1da177e4
LT
200 * the "args".
201 */
202extern void kernel_thread_helper(void);
1da177e4
LT
203
204/*
205 * Create a kernel thread
206 */
befa9e78 207int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
1da177e4
LT
208{
209 struct pt_regs regs;
210
211 memset(&regs, 0, sizeof(regs));
212
65ea5b03
PA
213 regs.bx = (unsigned long) fn;
214 regs.dx = (unsigned long) arg;
1da177e4 215
65ea5b03
PA
216 regs.ds = __USER_DS;
217 regs.es = __USER_DS;
218 regs.fs = __KERNEL_PERCPU;
60a5317f 219 regs.gs = __KERNEL_STACK_CANARY;
65ea5b03
PA
220 regs.orig_ax = -1;
221 regs.ip = (unsigned long) kernel_thread_helper;
222 regs.cs = __KERNEL_CS | get_kernel_rpl();
223 regs.flags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2;
1da177e4
LT
224
225 /* Ok, create the new process.. */
8cf2c519 226 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
1da177e4 227}
129f6946 228EXPORT_SYMBOL(kernel_thread);
1da177e4 229
1da177e4
LT
230void release_thread(struct task_struct *dead_task)
231{
2684927c 232 BUG_ON(dead_task->mm);
1da177e4
LT
233 release_vm86_irqs(dead_task);
234}
235
236/*
237 * This gets called before we allocate a new thread and copy
238 * the current task into it.
239 */
240void prepare_to_copy(struct task_struct *tsk)
241{
242 unlazy_fpu(tsk);
243}
244
6f2c55b8 245int copy_thread(unsigned long clone_flags, unsigned long sp,
1da177e4 246 unsigned long unused,
befa9e78 247 struct task_struct *p, struct pt_regs *regs)
1da177e4 248{
befa9e78 249 struct pt_regs *childregs;
1da177e4
LT
250 struct task_struct *tsk;
251 int err;
252
07b047fc 253 childregs = task_pt_regs(p);
f48d9663 254 *childregs = *regs;
65ea5b03
PA
255 childregs->ax = 0;
256 childregs->sp = sp;
f48d9663 257
faca6227
PA
258 p->thread.sp = (unsigned long) childregs;
259 p->thread.sp0 = (unsigned long) (childregs+1);
1da177e4 260
faca6227 261 p->thread.ip = (unsigned long) ret_from_fork;
1da177e4 262
d9a89a26 263 task_user_gs(p) = get_user_gs(regs);
1da177e4
LT
264
265 tsk = current;
b3cf2576 266 if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) {
52978be6
AD
267 p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr,
268 IO_BITMAP_BYTES, GFP_KERNEL);
1da177e4
LT
269 if (!p->thread.io_bitmap_ptr) {
270 p->thread.io_bitmap_max = 0;
271 return -ENOMEM;
272 }
b3cf2576 273 set_tsk_thread_flag(p, TIF_IO_BITMAP);
1da177e4
LT
274 }
275
efd1ca52
RM
276 err = 0;
277
1da177e4
LT
278 /*
279 * Set a new TLS for the child thread?
280 */
efd1ca52
RM
281 if (clone_flags & CLONE_SETTLS)
282 err = do_set_thread_area(p, -1,
65ea5b03 283 (struct user_desc __user *)childregs->si, 0);
1da177e4 284
1da177e4
LT
285 if (err && p->thread.io_bitmap_ptr) {
286 kfree(p->thread.io_bitmap_ptr);
287 p->thread.io_bitmap_max = 0;
288 }
bf53de90
MM
289
290 ds_copy_thread(p, current);
291
292 clear_tsk_thread_flag(p, TIF_DEBUGCTLMSR);
293 p->thread.debugctlmsr = 0;
294
1da177e4
LT
295 return err;
296}
297
513ad84b
IM
298void
299start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
300{
d9a89a26 301 set_user_gs(regs, 0);
513ad84b
IM
302 regs->fs = 0;
303 set_fs(USER_DS);
304 regs->ds = __USER_DS;
305 regs->es = __USER_DS;
306 regs->ss = __USER_DS;
307 regs->cs = __USER_CS;
308 regs->ip = new_ip;
309 regs->sp = new_sp;
aa283f49
SS
310 /*
311 * Free the old FP and other extended state
312 */
313 free_thread_xstate(current);
513ad84b
IM
314}
315EXPORT_SYMBOL_GPL(start_thread);
316
1da177e4
LT
317
318/*
319 * switch_to(x,yn) should switch tasks from x to y.
320 *
321 * We fsave/fwait so that an exception goes off at the right time
322 * (as a call from the fsave or fwait in effect) rather than to
323 * the wrong process. Lazy FP saving no longer makes any sense
324 * with modern CPU's, and this simplifies a lot of things (SMP
325 * and UP become the same).
326 *
327 * NOTE! We used to use the x86 hardware context switching. The
328 * reason for not using it any more becomes apparent when you
329 * try to recover gracefully from saved state that is no longer
330 * valid (stale segment register values in particular). With the
331 * hardware task-switch, there is no way to fix up bad state in
332 * a reasonable manner.
333 *
334 * The fact that Intel documents the hardware task-switching to
335 * be slow is a fairly red herring - this code is not noticeably
336 * faster. However, there _is_ some room for improvement here,
337 * so the performance issues may eventually be a valid point.
338 * More important, however, is the fact that this allows us much
339 * more flexibility.
340 *
65ea5b03 341 * The return value (in %ax) will be the "prev" task after
1da177e4
LT
342 * the task-switch, and shows up in ret_from_fork in entry.S,
343 * for example.
344 */
8b96f011
FW
345__notrace_funcgraph struct task_struct *
346__switch_to(struct task_struct *prev_p, struct task_struct *next_p)
1da177e4
LT
347{
348 struct thread_struct *prev = &prev_p->thread,
349 *next = &next_p->thread;
350 int cpu = smp_processor_id();
351 struct tss_struct *tss = &per_cpu(init_tss, cpu);
352
353 /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
354
355 __unlazy_fpu(prev_p);
356
acc20761
CE
357
358 /* we're going to use this soon, after a few expensive things */
359 if (next_p->fpu_counter > 5)
61c4628b 360 prefetch(next->xstate);
acc20761 361
1da177e4 362 /*
e7a2ff59 363 * Reload esp0.
1da177e4 364 */
faca6227 365 load_sp0(tss, next);
1da177e4
LT
366
367 /*
464d1a78 368 * Save away %gs. No need to save %fs, as it was saved on the
f95d47ca
JF
369 * stack on entry. No need to save %es and %ds, as those are
370 * always kernel segments while inside the kernel. Doing this
371 * before setting the new TLS descriptors avoids the situation
372 * where we temporarily have non-reloadable segments in %fs
373 * and %gs. This could be an issue if the NMI handler ever
374 * used %fs or %gs (it does not today), or if the kernel is
375 * running inside of a hypervisor layer.
1da177e4 376 */
ccbeed3a 377 lazy_save_gs(prev->gs);
1da177e4
LT
378
379 /*
e7a2ff59 380 * Load the per-thread Thread-Local Storage descriptor.
1da177e4 381 */
e7a2ff59 382 load_TLS(next, cpu);
1da177e4 383
8b151144
ZA
384 /*
385 * Restore IOPL if needed. In normal use, the flags restore
386 * in the switch assembly will handle this. But if the kernel
387 * is running virtualized at a non-zero CPL, the popf will
388 * not restore flags, so it must be done in a separate step.
389 */
390 if (get_kernel_rpl() && unlikely(prev->iopl != next->iopl))
391 set_iopl_mask(next->iopl);
392
1da177e4 393 /*
b3cf2576 394 * Now maybe handle debug registers and/or IO bitmaps
1da177e4 395 */
cf99abac
AA
396 if (unlikely(task_thread_info(prev_p)->flags & _TIF_WORK_CTXSW_PREV ||
397 task_thread_info(next_p)->flags & _TIF_WORK_CTXSW_NEXT))
398 __switch_to_xtra(prev_p, next_p, tss);
ffaa8bd6 399
9226d125
ZA
400 /*
401 * Leave lazy mode, flushing any hypercalls made here.
402 * This must be done before restoring TLS segments so
403 * the GDT and LDT are properly updated, and must be
404 * done before math_state_restore, so the TS bit is up
405 * to date.
406 */
224101ed 407 arch_end_context_switch(next_p);
9226d125 408
acc20761
CE
409 /* If the task has used fpu the last 5 timeslices, just do a full
410 * restore of the math state immediately to avoid the trap; the
411 * chances of needing FPU soon are obviously high now
870568b3
SS
412 *
413 * tsk_used_math() checks prevent calling math_state_restore(),
414 * which can sleep in the case of !tsk_used_math()
acc20761 415 */
870568b3 416 if (tsk_used_math(next_p) && next_p->fpu_counter > 5)
acc20761
CE
417 math_state_restore();
418
9226d125
ZA
419 /*
420 * Restore %gs if needed (which is common)
421 */
422 if (prev->gs | next->gs)
ccbeed3a 423 lazy_load_gs(next->gs);
9226d125 424
6dbde353 425 percpu_write(current_task, next_p);
9226d125 426
1da177e4
LT
427 return prev_p;
428}
429
b12bdaf1 430int sys_clone(struct pt_regs *regs)
1da177e4 431{
b12bdaf1
BG
432 unsigned long clone_flags;
433 unsigned long newsp;
434 int __user *parent_tidptr, *child_tidptr;
435
436 clone_flags = regs->bx;
437 newsp = regs->cx;
438 parent_tidptr = (int __user *)regs->dx;
439 child_tidptr = (int __user *)regs->di;
1da177e4 440 if (!newsp)
253f29a4
BG
441 newsp = regs->sp;
442 return do_fork(clone_flags, newsp, regs, 0, parent_tidptr, child_tidptr);
1da177e4
LT
443}
444
1da177e4
LT
445/*
446 * sys_execve() executes a new program.
447 */
b12bdaf1 448int sys_execve(struct pt_regs *regs)
1da177e4
LT
449{
450 int error;
befa9e78 451 char *filename;
1da177e4 452
b12bdaf1 453 filename = getname((char __user *) regs->bx);
1da177e4
LT
454 error = PTR_ERR(filename);
455 if (IS_ERR(filename))
456 goto out;
b12bdaf1
BG
457 error = do_execve(filename,
458 (char __user * __user *) regs->cx,
459 (char __user * __user *) regs->dx,
460 regs);
1da177e4 461 if (error == 0) {
1da177e4
LT
462 /* Make sure we don't return using sysenter.. */
463 set_thread_flag(TIF_IRET);
464 }
465 putname(filename);
466out:
467 return error;
468}
469
470#define top_esp (THREAD_SIZE - sizeof(unsigned long))
471#define top_ebp (THREAD_SIZE - 2*sizeof(unsigned long))
472
473unsigned long get_wchan(struct task_struct *p)
474{
65ea5b03 475 unsigned long bp, sp, ip;
1da177e4
LT
476 unsigned long stack_page;
477 int count = 0;
478 if (!p || p == current || p->state == TASK_RUNNING)
479 return 0;
65e0fdff 480 stack_page = (unsigned long)task_stack_page(p);
faca6227 481 sp = p->thread.sp;
65ea5b03 482 if (!stack_page || sp < stack_page || sp > top_esp+stack_page)
1da177e4 483 return 0;
65ea5b03
PA
484 /* include/asm-i386/system.h:switch_to() pushes bp last. */
485 bp = *(unsigned long *) sp;
1da177e4 486 do {
65ea5b03 487 if (bp < stack_page || bp > top_ebp+stack_page)
1da177e4 488 return 0;
65ea5b03
PA
489 ip = *(unsigned long *) (bp+4);
490 if (!in_sched_functions(ip))
491 return ip;
492 bp = *(unsigned long *) bp;
1da177e4
LT
493 } while (count++ < 16);
494 return 0;
495}
496