blob: b50604bb1e41818cd3779b3da5cafcebbee1ec04 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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
12#include <stdarg.h>
13
Tejun Heo5c79d2a2009-02-11 16:31:00 +090014#include <linux/stackprotector.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070015#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
17#include <linux/sched.h>
18#include <linux/fs.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/elfcore.h>
22#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/stddef.h>
24#include <linux/slab.h>
25#include <linux/vmalloc.h>
26#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/utsname.h>
29#include <linux/delay.h>
30#include <linux/reboot.h>
31#include <linux/init.h>
32#include <linux/mc146818rtc.h>
33#include <linux/module.h>
34#include <linux/kallsyms.h>
35#include <linux/ptrace.h>
36#include <linux/random.h>
Andi Kleenc16b63e2006-09-26 10:52:28 +020037#include <linux/personality.h>
Ingo Molnar74167342007-02-16 01:28:07 -080038#include <linux/tick.h>
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +020039#include <linux/percpu.h>
Erik Bosman529e25f2008-04-14 00:24:18 +020040#include <linux/prctl.h>
Arjan van de Ven90f7d252008-09-16 11:27:30 -070041#include <linux/dmi.h>
Frederic Weisbecker8b96f012008-12-06 03:40:00 +010042#include <linux/ftrace.h>
Jaswinder Singh Rajputbefa9e72009-01-04 16:18:56 +053043#include <linux/uaccess.h>
44#include <linux/io.h>
45#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/pgtable.h>
48#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/ldt.h>
50#include <asm/processor.h>
51#include <asm/i387.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/desc.h>
53#ifdef CONFIG_MATH_EMULATION
54#include <asm/math_emu.h>
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/err.h>
58
Zwane Mwaikambof3705132005-06-25 14:54:50 -070059#include <asm/tlbflush.h>
60#include <asm/cpu.h>
Marc Dionne1eda8142008-09-23 22:40:02 -040061#include <asm/idle.h>
Jaswinder Singhbbc1f692008-07-21 21:34:13 +053062#include <asm/syscalls.h>
Markus Metzgerbf53de92008-12-19 15:10:24 +010063#include <asm/ds.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
66
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +020067DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
68EXPORT_PER_CPU_SYMBOL(current_task);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * Return saved PC of a blocked thread.
72 */
73unsigned long thread_saved_pc(struct task_struct *tsk)
74{
H. Peter Anvinfaca6222008-01-30 13:31:02 +010075 return ((unsigned long *)tsk->thread.sp)[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Alex Nixon913da642008-09-03 14:30:23 +010078#ifndef CONFIG_SMP
79static inline void play_dead(void)
80{
81 BUG();
82}
83#endif
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * The idle thread. There's no useful work to be
87 * done, so just try to conserve power and have a
88 * low exit latency (ie sit in a loop waiting for
89 * somebody to say that they'd like to reschedule)
90 */
Zwane Mwaikambof3705132005-06-25 14:54:50 -070091void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Nick Piggin5bfb5d62005-11-08 21:39:01 -080093 int cpu = smp_processor_id();
Zwane Mwaikambof3705132005-06-25 14:54:50 -070094
Tejun Heo5c79d2a2009-02-11 16:31:00 +090095 /*
96 * If we're the non-boot CPU, nothing set the stack canary up
97 * for us. CPU0 already has it initialized but no harm in
98 * doing it again. This is a good place for updating it, as
99 * we wont ever return from this function (so the invalid
100 * canaries already on the stack wont ever trigger).
101 */
102 boot_init_stack_canary();
103
Andi Kleen495ab9c2006-06-26 13:59:11 +0200104 current_thread_info()->status |= TS_POLLING;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 /* endless idle loop with no priority at all */
107 while (1) {
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +0200108 tick_nohz_stop_sched_tick(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 while (!need_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Christoph Lameterf1d1a842007-05-12 11:15:24 -0700111 check_pgt_cache();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Benjamin LaHaise0723a692008-01-30 13:33:13 +0100114 if (rcu_pending(cpu))
115 rcu_check_callbacks(cpu, 0);
116
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700117 if (cpu_is_offline(cpu))
118 play_dead();
119
Peter Zijlstra7f424a82008-04-25 17:39:01 +0200120 local_irq_disable();
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200121 /* Don't trace irqs off for idle */
122 stop_critical_timings();
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200123 pm_idle();
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200124 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Ingo Molnar74167342007-02-16 01:28:07 -0800126 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800127 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800129 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131}
132
Pekka Enberge2ce07c2008-04-03 16:40:48 +0300133void __show_regs(struct pt_regs *regs, int all)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
Alan Sternbb1995d2007-07-21 17:10:42 +0200136 unsigned long d0, d1, d2, d3, d6, d7;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100137 unsigned long sp;
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200138 unsigned short ss, gs;
Arjan van de Ven90f7d252008-09-16 11:27:30 -0700139 const char *board;
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200140
141 if (user_mode_vm(regs)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100142 sp = regs->sp;
143 ss = regs->ss & 0xffff;
Tejun Heod9a89a22009-02-09 22:17:40 +0900144 gs = get_user_gs(regs);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200145 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100146 sp = (unsigned long) (&regs->sp);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200147 savesegment(ss, ss);
148 savesegment(gs, gs);
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 printk("\n");
Arjan van de Ven90f7d252008-09-16 11:27:30 -0700152
153 board = dmi_get_system_info(DMI_PRODUCT_NAME);
154 if (!board)
155 board = "";
156 printk("Pid: %d, comm: %s %s (%s %.*s) %s\n",
Linus Torvalds60812a42007-10-19 15:06:00 -0700157 task_pid_nr(current), current->comm,
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200158 print_tainted(), init_utsname()->release,
159 (int)strcspn(init_utsname()->version, " "),
Arjan van de Ven90f7d252008-09-16 11:27:30 -0700160 init_utsname()->version, board);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200161
162 printk("EIP: %04x:[<%08lx>] EFLAGS: %08lx CPU: %d\n",
Harvey Harrison92bc2052008-02-08 12:09:56 -0800163 (u16)regs->cs, regs->ip, regs->flags,
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200164 smp_processor_id());
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100165 print_symbol("EIP is at %s\n", regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100168 regs->ax, regs->bx, regs->cx, regs->dx);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200169 printk("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100170 regs->si, regs->di, regs->bp, sp);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200171 printk(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
Harvey Harrison92bc2052008-02-08 12:09:56 -0800172 (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200173
174 if (!all)
175 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Zachary Amsden4bb0d3e2005-09-03 15:56:36 -0700177 cr0 = read_cr0();
178 cr2 = read_cr2();
179 cr3 = read_cr3();
Zachary Amsdenff6e8c02006-01-06 00:11:50 -0800180 cr4 = read_cr4_safe();
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200181 printk("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
182 cr0, cr2, cr3, cr4);
Alan Sternbb1995d2007-07-21 17:10:42 +0200183
184 get_debugreg(d0, 0);
185 get_debugreg(d1, 1);
186 get_debugreg(d2, 2);
187 get_debugreg(d3, 3);
188 printk("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
189 d0, d1, d2, d3);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200190
Alan Sternbb1995d2007-07-21 17:10:42 +0200191 get_debugreg(d6, 6);
192 get_debugreg(d7, 7);
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200193 printk("DR6: %08lx DR7: %08lx\n",
194 d6, d7);
195}
Alan Sternbb1995d2007-07-21 17:10:42 +0200196
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200197void show_regs(struct pt_regs *regs)
198{
Pekka Enberge2ce07c2008-04-03 16:40:48 +0300199 __show_regs(regs, 1);
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100200 show_trace(NULL, regs, &regs->sp, regs->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100204 * This gets run with %bx containing the
205 * function to call, and %dx containing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * the "args".
207 */
208extern void kernel_thread_helper(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/*
211 * Create a kernel thread
212 */
Jaswinder Singh Rajputbefa9e72009-01-04 16:18:56 +0530213int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 struct pt_regs regs;
216
217 memset(&regs, 0, sizeof(regs));
218
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100219 regs.bx = (unsigned long) fn;
220 regs.dx = (unsigned long) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100222 regs.ds = __USER_DS;
223 regs.es = __USER_DS;
224 regs.fs = __KERNEL_PERCPU;
Tejun Heo60a53172009-02-09 22:17:40 +0900225 regs.gs = __KERNEL_STACK_CANARY;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100226 regs.orig_ax = -1;
227 regs.ip = (unsigned long) kernel_thread_helper;
228 regs.cs = __KERNEL_CS | get_kernel_rpl();
229 regs.flags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* Ok, create the new process.. */
Andi Kleen8cf2c512006-10-21 18:37:02 +0200232 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700234EXPORT_SYMBOL(kernel_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/*
237 * Free current thread data structures etc..
238 */
239void exit_thread(void)
240{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* The process may have allocated an io port bitmap... nuke it. */
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400242 if (unlikely(test_thread_flag(TIF_IO_BITMAP))) {
243 struct task_struct *tsk = current;
244 struct thread_struct *t = &tsk->thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int cpu = get_cpu();
246 struct tss_struct *tss = &per_cpu(init_tss, cpu);
247
248 kfree(t->io_bitmap_ptr);
249 t->io_bitmap_ptr = NULL;
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400250 clear_thread_flag(TIF_IO_BITMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /*
252 * Careful, clear this in the TSS too:
253 */
254 memset(tss->io_bitmap, 0xff, tss->io_bitmap_max);
255 t->io_bitmap_max = 0;
256 tss->io_bitmap_owner = NULL;
257 tss->io_bitmap_max = 0;
Rusty Russella75c54f2007-05-02 19:27:13 +0200258 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 put_cpu();
260 }
Markus Metzgerc2724772008-12-11 13:49:59 +0100261
Markus Metzgerbf53de92008-12-19 15:10:24 +0100262 ds_exit_thread(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265void flush_thread(void)
266{
267 struct task_struct *tsk = current;
268
Roland McGrath0f534092008-01-30 13:30:59 +0100269 tsk->thread.debugreg0 = 0;
270 tsk->thread.debugreg1 = 0;
271 tsk->thread.debugreg2 = 0;
272 tsk->thread.debugreg3 = 0;
273 tsk->thread.debugreg6 = 0;
274 tsk->thread.debugreg7 = 0;
Jaswinder Singh Rajputbefa9e72009-01-04 16:18:56 +0530275 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400276 clear_tsk_thread_flag(tsk, TIF_DEBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
278 * Forget coprocessor state..
279 */
Suresh Siddha75118a82008-06-13 15:47:12 -0700280 tsk->fpu_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 clear_fpu(tsk);
282 clear_used_math();
283}
284
285void release_thread(struct task_struct *dead_task)
286{
Zachary Amsden26849272006-01-06 00:11:59 -0800287 BUG_ON(dead_task->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 release_vm86_irqs(dead_task);
289}
290
291/*
292 * This gets called before we allocate a new thread and copy
293 * the current task into it.
294 */
295void prepare_to_copy(struct task_struct *tsk)
296{
297 unlazy_fpu(tsk);
298}
299
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100300int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 unsigned long unused,
Jaswinder Singh Rajputbefa9e72009-01-04 16:18:56 +0530302 struct task_struct *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Jaswinder Singh Rajputbefa9e72009-01-04 16:18:56 +0530304 struct pt_regs *childregs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct task_struct *tsk;
306 int err;
307
akpm@osdl.org07b047f2006-01-12 01:05:41 -0800308 childregs = task_pt_regs(p);
Alexander Nybergf48d9662005-05-05 16:15:03 -0700309 *childregs = *regs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100310 childregs->ax = 0;
311 childregs->sp = sp;
Alexander Nybergf48d9662005-05-05 16:15:03 -0700312
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100313 p->thread.sp = (unsigned long) childregs;
314 p->thread.sp0 = (unsigned long) (childregs+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100316 p->thread.ip = (unsigned long) ret_from_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Tejun Heod9a89a22009-02-09 22:17:40 +0900318 task_user_gs(p) = get_user_gs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 tsk = current;
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400321 if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -0700322 p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr,
323 IO_BITMAP_BYTES, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!p->thread.io_bitmap_ptr) {
325 p->thread.io_bitmap_max = 0;
326 return -ENOMEM;
327 }
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400328 set_tsk_thread_flag(p, TIF_IO_BITMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Roland McGrathefd1ca52008-01-30 13:30:46 +0100331 err = 0;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /*
334 * Set a new TLS for the child thread?
335 */
Roland McGrathefd1ca52008-01-30 13:30:46 +0100336 if (clone_flags & CLONE_SETTLS)
337 err = do_set_thread_area(p, -1,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100338 (struct user_desc __user *)childregs->si, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (err && p->thread.io_bitmap_ptr) {
341 kfree(p->thread.io_bitmap_ptr);
342 p->thread.io_bitmap_max = 0;
343 }
Markus Metzgerbf53de92008-12-19 15:10:24 +0100344
345 ds_copy_thread(p, current);
346
347 clear_tsk_thread_flag(p, TIF_DEBUGCTLMSR);
348 p->thread.debugctlmsr = 0;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return err;
351}
352
Ingo Molnar513ad842008-02-21 05:18:40 +0100353void
354start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
355{
Tejun Heod9a89a22009-02-09 22:17:40 +0900356 set_user_gs(regs, 0);
Ingo Molnar513ad842008-02-21 05:18:40 +0100357 regs->fs = 0;
358 set_fs(USER_DS);
359 regs->ds = __USER_DS;
360 regs->es = __USER_DS;
361 regs->ss = __USER_DS;
362 regs->cs = __USER_CS;
363 regs->ip = new_ip;
364 regs->sp = new_sp;
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700365 /*
366 * Free the old FP and other extended state
367 */
368 free_thread_xstate(current);
Ingo Molnar513ad842008-02-21 05:18:40 +0100369}
370EXPORT_SYMBOL_GPL(start_thread);
371
Jan Beulichbdb4f152008-01-30 13:31:21 +0100372static void hard_disable_TSC(void)
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700373{
374 write_cr4(read_cr4() | X86_CR4_TSD);
375}
Erik Bosman529e25f2008-04-14 00:24:18 +0200376
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700377void disable_TSC(void)
378{
379 preempt_disable();
380 if (!test_and_set_thread_flag(TIF_NOTSC))
381 /*
382 * Must flip the CPU state synchronously with
383 * TIF_NOTSC in the current running context.
384 */
385 hard_disable_TSC();
386 preempt_enable();
387}
Erik Bosman529e25f2008-04-14 00:24:18 +0200388
Jan Beulichbdb4f152008-01-30 13:31:21 +0100389static void hard_enable_TSC(void)
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700390{
391 write_cr4(read_cr4() & ~X86_CR4_TSD);
392}
Erik Bosman529e25f2008-04-14 00:24:18 +0200393
Ingo Molnara4928cf2008-04-23 13:20:56 +0200394static void enable_TSC(void)
Erik Bosman529e25f2008-04-14 00:24:18 +0200395{
396 preempt_disable();
397 if (test_and_clear_thread_flag(TIF_NOTSC))
398 /*
399 * Must flip the CPU state synchronously with
400 * TIF_NOTSC in the current running context.
401 */
402 hard_enable_TSC();
403 preempt_enable();
404}
405
406int get_tsc_mode(unsigned long adr)
407{
408 unsigned int val;
409
410 if (test_thread_flag(TIF_NOTSC))
411 val = PR_TSC_SIGSEGV;
412 else
413 val = PR_TSC_ENABLE;
414
415 return put_user(val, (unsigned int __user *)adr);
416}
417
418int set_tsc_mode(unsigned int val)
419{
420 if (val == PR_TSC_SIGSEGV)
421 disable_TSC();
422 else if (val == PR_TSC_ENABLE)
423 enable_TSC();
424 else
425 return -EINVAL;
426
427 return 0;
428}
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700429
430static noinline void
431__switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
432 struct tss_struct *tss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Roland McGrath7e991602008-01-30 13:30:54 +0100434 struct thread_struct *prev, *next;
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400435
Roland McGrath7e991602008-01-30 13:30:54 +0100436 prev = &prev_p->thread;
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400437 next = &next_p->thread;
438
Markus Metzgerc2724772008-12-11 13:49:59 +0100439 if (test_tsk_thread_flag(next_p, TIF_DS_AREA_MSR) ||
440 test_tsk_thread_flag(prev_p, TIF_DS_AREA_MSR))
441 ds_switch_to(prev_p, next_p);
442 else if (next->debugctlmsr != prev->debugctlmsr)
Jan Beulich5b0e5082008-03-10 13:11:17 +0000443 update_debugctlmsr(next->debugctlmsr);
Roland McGrath7e991602008-01-30 13:30:54 +0100444
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400445 if (test_tsk_thread_flag(next_p, TIF_DEBUG)) {
Roland McGrath0f534092008-01-30 13:30:59 +0100446 set_debugreg(next->debugreg0, 0);
447 set_debugreg(next->debugreg1, 1);
448 set_debugreg(next->debugreg2, 2);
449 set_debugreg(next->debugreg3, 3);
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400450 /* no 4 and 5 */
Roland McGrath0f534092008-01-30 13:30:59 +0100451 set_debugreg(next->debugreg6, 6);
452 set_debugreg(next->debugreg7, 7);
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400453 }
454
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700455 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
456 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
457 /* prev and next are different */
458 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
459 hard_disable_TSC();
460 else
461 hard_enable_TSC();
462 }
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700463
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400464 if (!test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /*
466 * Disable the bitmap via an invalid offset. We still cache
467 * the previous bitmap owner and the IO bitmap contents:
468 */
Rusty Russella75c54f2007-05-02 19:27:13 +0200469 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return;
471 }
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (likely(next == tss->io_bitmap_owner)) {
474 /*
475 * Previous owner of the bitmap (hence the bitmap content)
476 * matches the next task, we dont have to do anything but
477 * to set a valid offset in the TSS:
478 */
Rusty Russella75c54f2007-05-02 19:27:13 +0200479 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return;
481 }
482 /*
483 * Lazy TSS's I/O bitmap copy. We set an invalid offset here
484 * and we let the task to get a GPF in case an I/O instruction
485 * is performed. The handler of the GPF will verify that the
486 * faulting task has a valid I/O bitmap and, it true, does the
487 * real copy and restart the instruction. This will save us
488 * redundant copies when the currently switched task does not
489 * perform any I/O during its timeslice.
490 */
Rusty Russella75c54f2007-05-02 19:27:13 +0200491 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494/*
495 * switch_to(x,yn) should switch tasks from x to y.
496 *
497 * We fsave/fwait so that an exception goes off at the right time
498 * (as a call from the fsave or fwait in effect) rather than to
499 * the wrong process. Lazy FP saving no longer makes any sense
500 * with modern CPU's, and this simplifies a lot of things (SMP
501 * and UP become the same).
502 *
503 * NOTE! We used to use the x86 hardware context switching. The
504 * reason for not using it any more becomes apparent when you
505 * try to recover gracefully from saved state that is no longer
506 * valid (stale segment register values in particular). With the
507 * hardware task-switch, there is no way to fix up bad state in
508 * a reasonable manner.
509 *
510 * The fact that Intel documents the hardware task-switching to
511 * be slow is a fairly red herring - this code is not noticeably
512 * faster. However, there _is_ some room for improvement here,
513 * so the performance issues may eventually be a valid point.
514 * More important, however, is the fact that this allows us much
515 * more flexibility.
516 *
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100517 * The return value (in %ax) will be the "prev" task after
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * the task-switch, and shows up in ret_from_fork in entry.S,
519 * for example.
520 */
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100521__notrace_funcgraph struct task_struct *
522__switch_to(struct task_struct *prev_p, struct task_struct *next_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct thread_struct *prev = &prev_p->thread,
525 *next = &next_p->thread;
526 int cpu = smp_processor_id();
527 struct tss_struct *tss = &per_cpu(init_tss, cpu);
528
529 /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
530
531 __unlazy_fpu(prev_p);
532
Chuck Ebbertacc20762006-12-07 02:14:01 +0100533
534 /* we're going to use this soon, after a few expensive things */
535 if (next_p->fpu_counter > 5)
Suresh Siddha61c46282008-03-10 15:28:04 -0700536 prefetch(next->xstate);
Chuck Ebbertacc20762006-12-07 02:14:01 +0100537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /*
Zachary Amsdene7a2ff52005-09-03 15:56:39 -0700539 * Reload esp0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100541 load_sp0(tss, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /*
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +0100544 * Save away %gs. No need to save %fs, as it was saved on the
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100545 * stack on entry. No need to save %es and %ds, as those are
546 * always kernel segments while inside the kernel. Doing this
547 * before setting the new TLS descriptors avoids the situation
548 * where we temporarily have non-reloadable segments in %fs
549 * and %gs. This could be an issue if the NMI handler ever
550 * used %fs or %gs (it does not today), or if the kernel is
551 * running inside of a hypervisor layer.
Zachary Amsdene7a2ff52005-09-03 15:56:39 -0700552 */
Tejun Heoccbeed32009-02-09 22:17:40 +0900553 lazy_save_gs(prev->gs);
Zachary Amsdene7a2ff52005-09-03 15:56:39 -0700554
555 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * Load the per-thread Thread-Local Storage descriptor.
557 */
558 load_TLS(next, cpu);
559
560 /*
Zachary Amsden8b151142007-02-13 13:26:21 +0100561 * Restore IOPL if needed. In normal use, the flags restore
562 * in the switch assembly will handle this. But if the kernel
563 * is running virtualized at a non-zero CPL, the popf will
564 * not restore flags, so it must be done in a separate step.
565 */
566 if (get_kernel_rpl() && unlikely(prev->iopl != next->iopl))
567 set_iopl_mask(next->iopl);
568
569 /*
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400570 * Now maybe handle debug registers and/or IO bitmaps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
Andrea Arcangelicf99aba2007-07-15 23:41:33 -0700572 if (unlikely(task_thread_info(prev_p)->flags & _TIF_WORK_CTXSW_PREV ||
573 task_thread_info(next_p)->flags & _TIF_WORK_CTXSW_NEXT))
574 __switch_to_xtra(prev_p, next_p, tss);
Andrea Arcangeliffaa8bd2005-06-27 14:36:36 -0700575
Zachary Amsden9226d122007-02-13 13:26:21 +0100576 /*
577 * Leave lazy mode, flushing any hypercalls made here.
578 * This must be done before restoring TLS segments so
579 * the GDT and LDT are properly updated, and must be
580 * done before math_state_restore, so the TS bit is up
581 * to date.
582 */
583 arch_leave_lazy_cpu_mode();
584
Chuck Ebbertacc20762006-12-07 02:14:01 +0100585 /* If the task has used fpu the last 5 timeslices, just do a full
586 * restore of the math state immediately to avoid the trap; the
587 * chances of needing FPU soon are obviously high now
Suresh Siddha870568b2008-06-02 15:57:27 -0700588 *
589 * tsk_used_math() checks prevent calling math_state_restore(),
590 * which can sleep in the case of !tsk_used_math()
Chuck Ebbertacc20762006-12-07 02:14:01 +0100591 */
Suresh Siddha870568b2008-06-02 15:57:27 -0700592 if (tsk_used_math(next_p) && next_p->fpu_counter > 5)
Chuck Ebbertacc20762006-12-07 02:14:01 +0100593 math_state_restore();
594
Zachary Amsden9226d122007-02-13 13:26:21 +0100595 /*
596 * Restore %gs if needed (which is common)
597 */
598 if (prev->gs | next->gs)
Tejun Heoccbeed32009-02-09 22:17:40 +0900599 lazy_load_gs(next->gs);
Zachary Amsden9226d122007-02-13 13:26:21 +0100600
Ingo Molnar6dbde352009-01-15 22:15:53 +0900601 percpu_write(current_task, next_p);
Zachary Amsden9226d122007-02-13 13:26:21 +0100602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return prev_p;
604}
605
606asmlinkage int sys_fork(struct pt_regs regs)
607{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100608 return do_fork(SIGCHLD, regs.sp, &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611asmlinkage int sys_clone(struct pt_regs regs)
612{
613 unsigned long clone_flags;
614 unsigned long newsp;
615 int __user *parent_tidptr, *child_tidptr;
616
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100617 clone_flags = regs.bx;
618 newsp = regs.cx;
619 parent_tidptr = (int __user *)regs.dx;
620 child_tidptr = (int __user *)regs.di;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (!newsp)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100622 newsp = regs.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return do_fork(clone_flags, newsp, &regs, 0, parent_tidptr, child_tidptr);
624}
625
626/*
627 * This is trivial, and on the face of it looks like it
628 * could equally well be done in user mode.
629 *
630 * Not so, for quite unobvious reasons - register pressure.
631 * In user mode vfork() cannot have a stack frame, and if
632 * done by calling the "clone()" system call directly, you
633 * do not have enough call-clobbered registers to hold all
634 * the information you need.
635 */
636asmlinkage int sys_vfork(struct pt_regs regs)
637{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100638 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.sp, &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
642 * sys_execve() executes a new program.
643 */
644asmlinkage int sys_execve(struct pt_regs regs)
645{
646 int error;
Jaswinder Singh Rajputbefa9e72009-01-04 16:18:56 +0530647 char *filename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100649 filename = getname((char __user *) regs.bx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 error = PTR_ERR(filename);
651 if (IS_ERR(filename))
652 goto out;
653 error = do_execve(filename,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100654 (char __user * __user *) regs.cx,
655 (char __user * __user *) regs.dx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 &regs);
657 if (error == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* Make sure we don't return using sysenter.. */
659 set_thread_flag(TIF_IRET);
660 }
661 putname(filename);
662out:
663 return error;
664}
665
666#define top_esp (THREAD_SIZE - sizeof(unsigned long))
667#define top_ebp (THREAD_SIZE - 2*sizeof(unsigned long))
668
669unsigned long get_wchan(struct task_struct *p)
670{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100671 unsigned long bp, sp, ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 unsigned long stack_page;
673 int count = 0;
674 if (!p || p == current || p->state == TASK_RUNNING)
675 return 0;
Al Viro65e0fdf2006-01-12 01:05:41 -0800676 stack_page = (unsigned long)task_stack_page(p);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100677 sp = p->thread.sp;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100678 if (!stack_page || sp < stack_page || sp > top_esp+stack_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100680 /* include/asm-i386/system.h:switch_to() pushes bp last. */
681 bp = *(unsigned long *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 do {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100683 if (bp < stack_page || bp > top_ebp+stack_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100685 ip = *(unsigned long *) (bp+4);
686 if (!in_sched_functions(ip))
687 return ip;
688 bp = *(unsigned long *) bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 } while (count++ < 16);
690 return 0;
691}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693unsigned long arch_align_stack(unsigned long sp)
694{
Andi Kleenc16b63e2006-09-26 10:52:28 +0200695 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 sp -= get_random_int() % 8192;
697 return sp & ~0xf;
698}
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100699
700unsigned long arch_randomize_brk(struct mm_struct *mm)
701{
702 unsigned long range_end = mm->brk + 0x02000000;
703 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
704}