blob: dfd3f575208581f640bd74e998e1042c24d0deb0 [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
Hiroshi Shimamoto66125382008-01-30 13:31:03 +01006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * X86-64 port
8 * Andi Kleen.
Ashok Raj76e4f662005-06-25 14:55:00 -07009 *
10 * CPU hotplug support - ashok.raj@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13/*
14 * This file handles the architecture-dependent parts of process handling..
15 */
16
17#include <stdarg.h>
18
Ashok Raj76e4f662005-06-25 14:55:00 -070019#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/errno.h>
21#include <linux/sched.h>
Hiroshi Shimamoto66125382008-01-30 13:31:03 +010022#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/kernel.h>
24#include <linux/mm.h>
25#include <linux/elfcore.h>
26#include <linux/smp.h>
27#include <linux/slab.h>
28#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/utsname.h>
Hiroshi Shimamoto66125382008-01-30 13:31:03 +010031#include <linux/delay.h>
32#include <linux/module.h>
33#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/random.h>
Andi Kleen95833c82006-01-11 22:44:36 +010035#include <linux/notifier.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080036#include <linux/kprobes.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070037#include <linux/kdebug.h>
Chris Wright02290682007-10-12 23:04:07 +020038#include <linux/tick.h>
Erik Bosman529e25f2008-04-14 00:24:18 +020039#include <linux/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/uaccess.h>
42#include <asm/pgtable.h>
43#include <asm/system.h>
44#include <asm/io.h>
45#include <asm/processor.h>
46#include <asm/i387.h>
47#include <asm/mmu_context.h>
48#include <asm/pda.h>
49#include <asm/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/desc.h>
51#include <asm/proto.h>
52#include <asm/ia32.h>
Andi Kleen95833c82006-01-11 22:44:36 +010053#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55asmlinkage extern void ret_from_fork(void);
56
57unsigned long kernel_thread_flags = CLONE_VM | CLONE_UNTRACED;
58
Alan Sterne041c682006-03-27 01:16:30 -080059static ATOMIC_NOTIFIER_HEAD(idle_notifier);
Andi Kleen95833c82006-01-11 22:44:36 +010060
61void idle_notifier_register(struct notifier_block *n)
62{
Alan Sterne041c682006-03-27 01:16:30 -080063 atomic_notifier_chain_register(&idle_notifier, n);
Andi Kleen95833c82006-01-11 22:44:36 +010064}
Andi Kleen95833c82006-01-11 22:44:36 +010065
Andi Kleen95833c82006-01-11 22:44:36 +010066void enter_idle(void)
67{
Andi Kleena15da492006-09-26 10:52:40 +020068 write_pda(isidle, 1);
Alan Sterne041c682006-03-27 01:16:30 -080069 atomic_notifier_call_chain(&idle_notifier, IDLE_START, NULL);
Andi Kleen95833c82006-01-11 22:44:36 +010070}
71
72static void __exit_idle(void)
73{
Andi Kleen94468682006-11-14 16:57:46 +010074 if (test_and_clear_bit_pda(0, isidle) == 0)
Andi Kleena15da492006-09-26 10:52:40 +020075 return;
Alan Sterne041c682006-03-27 01:16:30 -080076 atomic_notifier_call_chain(&idle_notifier, IDLE_END, NULL);
Andi Kleen95833c82006-01-11 22:44:36 +010077}
78
79/* Called from interrupts to signify idle end */
80void exit_idle(void)
81{
Andi Kleena15da492006-09-26 10:52:40 +020082 /* idle loop has pid 0 */
83 if (current->pid)
Andi Kleen95833c82006-01-11 22:44:36 +010084 return;
85 __exit_idle();
86}
87
Ashok Raj76e4f662005-06-25 14:55:00 -070088#ifdef CONFIG_HOTPLUG_CPU
89DECLARE_PER_CPU(int, cpu_state);
90
91#include <asm/nmi.h>
Shaohua Li1fa744e2006-01-06 00:12:20 -080092/* We halt the CPU with physical CPU hotplug */
Alex Nixon93be71b2008-08-22 11:52:11 +010093void native_play_dead(void)
Ashok Raj76e4f662005-06-25 14:55:00 -070094{
95 idle_task_exit();
Ashok Raj76e4f662005-06-25 14:55:00 -070096 mb();
97 /* Ack it */
98 __get_cpu_var(cpu_state) = CPU_DEAD;
99
Shaohua Li1fa744e2006-01-06 00:12:20 -0800100 local_irq_disable();
Mark Langsdorf394a1502008-08-14 09:11:26 -0500101 /* mask all interrupts, flush any and all caches, and halt */
102 wbinvd_halt();
Ashok Raj76e4f662005-06-25 14:55:00 -0700103}
104#else
Alex Nixon93be71b2008-08-22 11:52:11 +0100105void native_play_dead(void)
Ashok Raj76e4f662005-06-25 14:55:00 -0700106{
107 BUG();
108}
109#endif /* CONFIG_HOTPLUG_CPU */
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * The idle thread. There's no useful work to be
113 * done, so just try to conserve power and have a
114 * low exit latency (ie sit in a loop waiting for
115 * somebody to say that they'd like to reschedule)
116 */
Pavel Machekb10db7f2008-01-30 13:30:00 +0100117void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Andi Kleen495ab9c2006-06-26 13:59:11 +0200119 current_thread_info()->status |= TS_POLLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* endless idle loop with no priority at all */
121 while (1) {
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +0200122 tick_nohz_stop_sched_tick(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 while (!need_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 rmb();
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200126
Ashok Raj76e4f662005-06-25 14:55:00 -0700127 if (cpu_is_offline(smp_processor_id()))
128 play_dead();
Venkatesh Pallipadid331e732006-12-07 02:14:13 +0100129 /*
130 * Idle routines should keep interrupts disabled
131 * from here on, until they go to idle.
132 * Otherwise, idle callbacks can misfire.
133 */
134 local_irq_disable();
Andi Kleen95833c82006-01-11 22:44:36 +0100135 enter_idle();
Steven Rostedt81d68a92008-05-12 21:20:42 +0200136 /* Don't trace irqs off for idle */
137 stop_critical_timings();
Thomas Gleixner6ddd2a22008-06-09 16:59:53 +0200138 pm_idle();
Steven Rostedt81d68a92008-05-12 21:20:42 +0200139 start_critical_timings();
Andi Kleena15da492006-09-26 10:52:40 +0200140 /* In many cases the interrupt that ended idle
141 has already called exit_idle. But some idle
142 loops can be woken up without interrupt. */
Andi Kleen95833c82006-01-11 22:44:36 +0100143 __exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145
Chris Wright02290682007-10-12 23:04:07 +0200146 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800147 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800149 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151}
152
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100153/* Prints also some state that isn't saved in the pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154void __show_regs(struct pt_regs * regs)
155{
156 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L, fs, gs, shadowgs;
Alan Sternbb1995d2007-07-21 17:10:42 +0200157 unsigned long d0, d1, d2, d3, d6, d7;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100158 unsigned int fsindex, gsindex;
159 unsigned int ds, cs, es;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 printk("\n");
162 print_modules();
Andi Kleen9acf23c2005-09-12 18:49:24 +0200163 printk("Pid: %d, comm: %.20s %s %s %.*s\n",
164 current->pid, current->comm, print_tainted(),
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700165 init_utsname()->release,
166 (int)strcspn(init_utsname()->version, " "),
167 init_utsname()->version);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100168 printk("RIP: %04lx:[<%016lx>] ", regs->cs & 0xffff, regs->ip);
Arjan van de Venaafbd7e2008-01-30 13:33:08 +0100169 printk_address(regs->ip, 1);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100170 printk("RSP: %04lx:%016lx EFLAGS: %08lx\n", regs->ss, regs->sp,
171 regs->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 printk("RAX: %016lx RBX: %016lx RCX: %016lx\n",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100173 regs->ax, regs->bx, regs->cx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 printk("RDX: %016lx RSI: %016lx RDI: %016lx\n",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100175 regs->dx, regs->si, regs->di);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 printk("RBP: %016lx R08: %016lx R09: %016lx\n",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100177 regs->bp, regs->r8, regs->r9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 printk("R10: %016lx R11: %016lx R12: %016lx\n",
179 regs->r10, regs->r11, regs->r12);
180 printk("R13: %016lx R14: %016lx R15: %016lx\n",
181 regs->r13, regs->r14, regs->r15);
182
183 asm("movl %%ds,%0" : "=r" (ds));
184 asm("movl %%cs,%0" : "=r" (cs));
185 asm("movl %%es,%0" : "=r" (es));
186 asm("movl %%fs,%0" : "=r" (fsindex));
187 asm("movl %%gs,%0" : "=r" (gsindex));
188
189 rdmsrl(MSR_FS_BASE, fs);
190 rdmsrl(MSR_GS_BASE, gs);
191 rdmsrl(MSR_KERNEL_GS_BASE, shadowgs);
192
Glauber de Oliveira Costaf51c9452007-07-22 11:12:29 +0200193 cr0 = read_cr0();
194 cr2 = read_cr2();
195 cr3 = read_cr3();
196 cr4 = read_cr4();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 printk("FS: %016lx(%04x) GS:%016lx(%04x) knlGS:%016lx\n",
199 fs,fsindex,gs,gsindex,shadowgs);
200 printk("CS: %04x DS: %04x ES: %04x CR0: %016lx\n", cs, ds, es, cr0);
201 printk("CR2: %016lx CR3: %016lx CR4: %016lx\n", cr2, cr3, cr4);
Alan Sternbb1995d2007-07-21 17:10:42 +0200202
203 get_debugreg(d0, 0);
204 get_debugreg(d1, 1);
205 get_debugreg(d2, 2);
206 printk("DR0: %016lx DR1: %016lx DR2: %016lx\n", d0, d1, d2);
207 get_debugreg(d3, 3);
208 get_debugreg(d6, 6);
209 get_debugreg(d7, 7);
210 printk("DR3: %016lx DR6: %016lx DR7: %016lx\n", d3, d6, d7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213void show_regs(struct pt_regs *regs)
214{
Zwane Mwaikamboc078d322005-09-06 15:16:16 -0700215 printk("CPU %d:", smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 __show_regs(regs);
Arjan van de Venbc850d62008-01-30 13:33:07 +0100217 show_trace(NULL, regs, (void *)(regs + 1), regs->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220/*
221 * Free current thread data structures etc..
222 */
223void exit_thread(void)
224{
225 struct task_struct *me = current;
226 struct thread_struct *t = &me->thread;
Rusty Lynch73649da2005-06-23 00:09:23 -0700227
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100228 if (me->thread.io_bitmap_ptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
230
231 kfree(t->io_bitmap_ptr);
232 t->io_bitmap_ptr = NULL;
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200233 clear_thread_flag(TIF_IO_BITMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
235 * Careful, clear this in the TSS too:
236 */
237 memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
238 t->io_bitmap_max = 0;
239 put_cpu();
240 }
241}
242
243void flush_thread(void)
244{
245 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Mathieu Desnoyers303cd152007-03-18 01:26:11 -0800247 if (test_tsk_thread_flag(tsk, TIF_ABI_PENDING)) {
248 clear_tsk_thread_flag(tsk, TIF_ABI_PENDING);
249 if (test_tsk_thread_flag(tsk, TIF_IA32)) {
250 clear_tsk_thread_flag(tsk, TIF_IA32);
251 } else {
252 set_tsk_thread_flag(tsk, TIF_IA32);
Andi Kleen4d9bc792006-06-26 13:57:19 +0200253 current_thread_info()->status |= TS_COMPAT;
Mathieu Desnoyers303cd152007-03-18 01:26:11 -0800254 }
Andi Kleen4d9bc792006-06-26 13:57:19 +0200255 }
Mathieu Desnoyers303cd152007-03-18 01:26:11 -0800256 clear_tsk_thread_flag(tsk, TIF_DEBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 tsk->thread.debugreg0 = 0;
259 tsk->thread.debugreg1 = 0;
260 tsk->thread.debugreg2 = 0;
261 tsk->thread.debugreg3 = 0;
262 tsk->thread.debugreg6 = 0;
263 tsk->thread.debugreg7 = 0;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100264 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*
266 * Forget coprocessor state..
267 */
Suresh Siddha75118a82008-06-13 15:47:12 -0700268 tsk->fpu_counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 clear_fpu(tsk);
270 clear_used_math();
271}
272
273void release_thread(struct task_struct *dead_task)
274{
275 if (dead_task->mm) {
276 if (dead_task->mm->context.size) {
277 printk("WARNING: dead process %8s still has LDT? <%p/%d>\n",
278 dead_task->comm,
279 dead_task->mm->context.ldt,
280 dead_task->mm->context.size);
281 BUG();
282 }
283 }
284}
285
286static inline void set_32bit_tls(struct task_struct *t, int tls, u32 addr)
287{
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100288 struct user_desc ud = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 .base_addr = addr,
290 .limit = 0xfffff,
291 .seg_32bit = 1,
292 .limit_in_pages = 1,
293 .useable = 1,
294 };
Jan Engelhardtade1af72008-01-30 13:33:23 +0100295 struct desc_struct *desc = t->thread.tls_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 desc += tls;
Glauber de Oliveira Costa80fbb692008-01-30 13:31:13 +0100297 fill_ldt(desc, &ud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300static inline u32 read_32bit_tls(struct task_struct *t, int tls)
301{
Roland McGrath91394eb2008-01-30 13:30:45 +0100302 return get_desc_base(&t->thread.tls_array[tls]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305/*
306 * This gets called before we allocate a new thread and copy
307 * the current task into it.
308 */
309void prepare_to_copy(struct task_struct *tsk)
310{
311 unlazy_fpu(tsk);
312}
313
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100314int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 unsigned long unused,
316 struct task_struct * p, struct pt_regs * regs)
317{
318 int err;
319 struct pt_regs * childregs;
320 struct task_struct *me = current;
321
Andi Kleena88cde12005-11-05 17:25:54 +0100322 childregs = ((struct pt_regs *)
Al Viro57eafdc2006-01-12 01:05:39 -0800323 (THREAD_SIZE + task_stack_page(p))) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 *childregs = *regs;
325
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100326 childregs->ax = 0;
327 childregs->sp = sp;
328 if (sp == ~0UL)
329 childregs->sp = (unsigned long)childregs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100331 p->thread.sp = (unsigned long) childregs;
332 p->thread.sp0 = (unsigned long) (childregs+1);
333 p->thread.usersp = me->thread.usersp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Al Viroe4f17c42006-01-12 01:05:38 -0800335 set_tsk_thread_flag(p, TIF_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 p->thread.fs = me->thread.fs;
338 p->thread.gs = me->thread.gs;
339
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400340 savesegment(gs, p->thread.gsindex);
341 savesegment(fs, p->thread.fsindex);
342 savesegment(es, p->thread.es);
343 savesegment(ds, p->thread.ds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200345 if (unlikely(test_tsk_thread_flag(me, TIF_IO_BITMAP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 p->thread.io_bitmap_ptr = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL);
347 if (!p->thread.io_bitmap_ptr) {
348 p->thread.io_bitmap_max = 0;
349 return -ENOMEM;
350 }
Andi Kleena88cde12005-11-05 17:25:54 +0100351 memcpy(p->thread.io_bitmap_ptr, me->thread.io_bitmap_ptr,
352 IO_BITMAP_BYTES);
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200353 set_tsk_thread_flag(p, TIF_IO_BITMAP);
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 /*
357 * Set a new TLS for the child thread?
358 */
359 if (clone_flags & CLONE_SETTLS) {
360#ifdef CONFIG_IA32_EMULATION
361 if (test_thread_flag(TIF_IA32))
Roland McGrathefd1ca52008-01-30 13:30:46 +0100362 err = do_set_thread_area(p, -1,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100363 (struct user_desc __user *)childregs->si, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 else
365#endif
366 err = do_arch_prctl(p, ARCH_SET_FS, childregs->r8);
367 if (err)
368 goto out;
369 }
370 err = 0;
371out:
372 if (err && p->thread.io_bitmap_ptr) {
373 kfree(p->thread.io_bitmap_ptr);
374 p->thread.io_bitmap_max = 0;
375 }
376 return err;
377}
378
Ingo Molnar513ad842008-02-21 05:18:40 +0100379void
380start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
381{
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400382 loadsegment(fs, 0);
383 loadsegment(es, 0);
384 loadsegment(ds, 0);
Ingo Molnar513ad842008-02-21 05:18:40 +0100385 load_gs_index(0);
386 regs->ip = new_ip;
387 regs->sp = new_sp;
388 write_pda(oldrsp, new_sp);
389 regs->cs = __USER_CS;
390 regs->ss = __USER_DS;
391 regs->flags = 0x200;
392 set_fs(USER_DS);
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700393 /*
394 * Free the old FP and other extended state
395 */
396 free_thread_xstate(current);
Ingo Molnar513ad842008-02-21 05:18:40 +0100397}
398EXPORT_SYMBOL_GPL(start_thread);
399
Erik Bosman529e25f2008-04-14 00:24:18 +0200400static void hard_disable_TSC(void)
401{
402 write_cr4(read_cr4() | X86_CR4_TSD);
403}
404
405void disable_TSC(void)
406{
407 preempt_disable();
408 if (!test_and_set_thread_flag(TIF_NOTSC))
409 /*
410 * Must flip the CPU state synchronously with
411 * TIF_NOTSC in the current running context.
412 */
413 hard_disable_TSC();
414 preempt_enable();
415}
416
417static void hard_enable_TSC(void)
418{
419 write_cr4(read_cr4() & ~X86_CR4_TSD);
420}
421
Ingo Molnara4928cf2008-04-23 13:20:56 +0200422static void enable_TSC(void)
Erik Bosman529e25f2008-04-14 00:24:18 +0200423{
424 preempt_disable();
425 if (test_and_clear_thread_flag(TIF_NOTSC))
426 /*
427 * Must flip the CPU state synchronously with
428 * TIF_NOTSC in the current running context.
429 */
430 hard_enable_TSC();
431 preempt_enable();
432}
433
434int get_tsc_mode(unsigned long adr)
435{
436 unsigned int val;
437
438 if (test_thread_flag(TIF_NOTSC))
439 val = PR_TSC_SIGSEGV;
440 else
441 val = PR_TSC_ENABLE;
442
443 return put_user(val, (unsigned int __user *)adr);
444}
445
446int set_tsc_mode(unsigned int val)
447{
448 if (val == PR_TSC_SIGSEGV)
449 disable_TSC();
450 else if (val == PR_TSC_ENABLE)
451 enable_TSC();
452 else
453 return -EINVAL;
454
455 return 0;
456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*
459 * This special macro can be used to load a debugging register
460 */
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100461#define loaddebug(thread, r) set_debugreg(thread->debugreg ## r, r)
462
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200463static inline void __switch_to_xtra(struct task_struct *prev_p,
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100464 struct task_struct *next_p,
465 struct tss_struct *tss)
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200466{
467 struct thread_struct *prev, *next;
Markus Metzgereee3af42008-01-30 13:31:09 +0100468 unsigned long debugctl;
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200469
470 prev = &prev_p->thread,
471 next = &next_p->thread;
472
Markus Metzgereee3af42008-01-30 13:31:09 +0100473 debugctl = prev->debugctlmsr;
474 if (next->ds_area_msr != prev->ds_area_msr) {
475 /* we clear debugctl to make sure DS
476 * is not in use when we change it */
477 debugctl = 0;
Jan Beulich5b0e5082008-03-10 13:11:17 +0000478 update_debugctlmsr(0);
Markus Metzgereee3af42008-01-30 13:31:09 +0100479 wrmsrl(MSR_IA32_DS_AREA, next->ds_area_msr);
480 }
481
482 if (next->debugctlmsr != debugctl)
Jan Beulich5b0e5082008-03-10 13:11:17 +0000483 update_debugctlmsr(next->debugctlmsr);
Roland McGrath7e991602008-01-30 13:30:54 +0100484
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200485 if (test_tsk_thread_flag(next_p, TIF_DEBUG)) {
486 loaddebug(next, 0);
487 loaddebug(next, 1);
488 loaddebug(next, 2);
489 loaddebug(next, 3);
490 /* no 4 and 5 */
491 loaddebug(next, 6);
492 loaddebug(next, 7);
493 }
494
Erik Bosman529e25f2008-04-14 00:24:18 +0200495 if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
496 test_tsk_thread_flag(next_p, TIF_NOTSC)) {
497 /* prev and next are different */
498 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
499 hard_disable_TSC();
500 else
501 hard_enable_TSC();
502 }
503
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200504 if (test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
505 /*
506 * Copy the relevant range of the IO bitmap.
507 * Normally this is 128 bytes or less:
508 */
509 memcpy(tss->io_bitmap, next->io_bitmap_ptr,
510 max(prev->io_bitmap_max, next->io_bitmap_max));
511 } else if (test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)) {
512 /*
513 * Clear any possible leftover bits:
514 */
515 memset(tss->io_bitmap, 0xff, prev->io_bitmap_max);
516 }
Markus Metzgereee3af42008-01-30 13:31:09 +0100517
Ingo Molnarb4ef95d2008-02-26 09:40:27 +0100518#ifdef X86_BTS
Markus Metzgereee3af42008-01-30 13:31:09 +0100519 if (test_tsk_thread_flag(prev_p, TIF_BTS_TRACE_TS))
520 ptrace_bts_take_timestamp(prev_p, BTS_TASK_DEPARTS);
521
522 if (test_tsk_thread_flag(next_p, TIF_BTS_TRACE_TS))
523 ptrace_bts_take_timestamp(next_p, BTS_TASK_ARRIVES);
Ingo Molnarb4ef95d2008-02-26 09:40:27 +0100524#endif
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527/*
528 * switch_to(x,y) should switch tasks from x to y.
529 *
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100530 * This could still be optimized:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * - fold all the options into a flag word and test it with a single test.
532 * - could test fs/gs bitsliced
Andi Kleen099f3182006-02-03 21:51:38 +0100533 *
534 * Kprobes not supported here. Set the probe on schedule instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Masami Hiramatsuf438d912007-10-16 01:27:49 -0700536struct task_struct *
Andi Kleena88cde12005-11-05 17:25:54 +0100537__switch_to(struct task_struct *prev_p, struct task_struct *next_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Jeremy Fitzhardinge87b935a2008-07-08 15:06:26 -0700539 struct thread_struct *prev = &prev_p->thread;
540 struct thread_struct *next = &next_p->thread;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100541 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct tss_struct *tss = &per_cpu(init_tss, cpu);
Jeremy Fitzhardinge478de5a2008-06-25 00:19:24 -0400543 unsigned fsindex, gsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Arjan van de Vene07e23e2006-09-26 10:52:36 +0200545 /* we're going to use this soon, after a few expensive things */
546 if (next_p->fpu_counter>5)
Suresh Siddha61c46282008-03-10 15:28:04 -0700547 prefetch(next->xstate);
Arjan van de Vene07e23e2006-09-26 10:52:36 +0200548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /*
550 * Reload esp0, LDT and the page table pointer:
551 */
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100552 load_sp0(tss, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 /*
555 * Switch DS and ES.
556 * This won't pick up thread selector changes, but I guess that is ok.
557 */
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400558 savesegment(es, prev->es);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (unlikely(next->es | prev->es))
560 loadsegment(es, next->es);
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400561
562 savesegment(ds, prev->ds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (unlikely(next->ds | prev->ds))
564 loadsegment(ds, next->ds);
565
Jeremy Fitzhardinge478de5a2008-06-25 00:19:24 -0400566
567 /* We must save %fs and %gs before load_TLS() because
568 * %fs and %gs may be cleared by load_TLS().
569 *
570 * (e.g. xen_load_tls())
571 */
572 savesegment(fs, fsindex);
573 savesegment(gs, gsindex);
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 load_TLS(next, cpu);
576
Jeremy Fitzhardinge3fe0a632008-06-25 00:19:23 -0400577 /*
578 * Leave lazy mode, flushing any hypercalls made here.
579 * This must be done before restoring TLS segments so
580 * the GDT and LDT are properly updated, and must be
581 * done before math_state_restore, so the TS bit is up
582 * to date.
583 */
584 arch_leave_lazy_cpu_mode();
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /*
587 * Switch FS and GS.
Jeremy Fitzhardinge87b935a2008-07-08 15:06:26 -0700588 *
589 * Segment register != 0 always requires a reload. Also
590 * reload when it has changed. When prev process used 64bit
591 * base always reload to avoid an information leak.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
Jeremy Fitzhardinge87b935a2008-07-08 15:06:26 -0700593 if (unlikely(fsindex | next->fsindex | prev->fs)) {
594 loadsegment(fs, next->fsindex);
595 /*
596 * Check if the user used a selector != 0; if yes
597 * clear 64bit base, since overloaded base is always
598 * mapped to the Null selector
599 */
600 if (fsindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 prev->fs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Jeremy Fitzhardinge87b935a2008-07-08 15:06:26 -0700603 /* when next process has a 64bit base use it */
604 if (next->fs)
605 wrmsrl(MSR_FS_BASE, next->fs);
606 prev->fsindex = fsindex;
607
608 if (unlikely(gsindex | next->gsindex | prev->gs)) {
609 load_gs_index(next->gsindex);
610 if (gsindex)
611 prev->gs = 0;
612 }
613 if (next->gs)
614 wrmsrl(MSR_KERNEL_GS_BASE, next->gs);
615 prev->gsindex = gsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Andi Kleen0a5ace22006-10-05 18:47:22 +0200617 /* Must be after DS reload */
618 unlazy_fpu(prev_p);
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /*
Jan Beulich45948d72006-03-25 16:29:25 +0100621 * Switch the PDA and FPU contexts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100623 prev->usersp = read_pda(oldrsp);
624 write_pda(oldrsp, next->usersp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 write_pda(pcurrent, next_p);
Andi Kleen18bd0572006-04-20 02:36:45 +0200626
Andi Kleena88cde12005-11-05 17:25:54 +0100627 write_pda(kernelstack,
Jeremy Fitzhardinge87b935a2008-07-08 15:06:26 -0700628 (unsigned long)task_stack_page(next_p) +
629 THREAD_SIZE - PDA_STACKOFFSET);
Arjan van de Ven0a425402006-09-26 10:52:38 +0200630#ifdef CONFIG_CC_STACKPROTECTOR
631 write_pda(stack_canary, next_p->stack_canary);
632 /*
633 * Build time only check to make sure the stack_canary is at
634 * offset 40 in the pda; this is a gcc ABI requirement
635 */
636 BUILD_BUG_ON(offsetof(struct x8664_pda, stack_canary) != 40);
637#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 /*
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200640 * Now maybe reload the debug registers and handle I/O bitmaps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
Markus Metzgereee3af42008-01-30 13:31:09 +0100642 if (unlikely(task_thread_info(next_p)->flags & _TIF_WORK_CTXSW_NEXT ||
643 task_thread_info(prev_p)->flags & _TIF_WORK_CTXSW_PREV))
Stephane Eraniand3a4f482006-09-26 10:52:28 +0200644 __switch_to_xtra(prev_p, next_p, tss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Arjan van de Vene07e23e2006-09-26 10:52:36 +0200646 /* If the task has used fpu the last 5 timeslices, just do a full
647 * restore of the math state immediately to avoid the trap; the
648 * chances of needing FPU soon are obviously high now
Suresh Siddha870568b2008-06-02 15:57:27 -0700649 *
650 * tsk_used_math() checks prevent calling math_state_restore(),
651 * which can sleep in the case of !tsk_used_math()
Arjan van de Vene07e23e2006-09-26 10:52:36 +0200652 */
Suresh Siddha870568b2008-06-02 15:57:27 -0700653 if (tsk_used_math(next_p) && next_p->fpu_counter > 5)
Arjan van de Vene07e23e2006-09-26 10:52:36 +0200654 math_state_restore();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return prev_p;
656}
657
658/*
659 * sys_execve() executes a new program.
660 */
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100661asmlinkage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662long sys_execve(char __user *name, char __user * __user *argv,
Ingo Molnar5d119b22008-02-26 12:55:57 +0100663 char __user * __user *envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 long error;
666 char * filename;
667
668 filename = getname(name);
669 error = PTR_ERR(filename);
Ingo Molnar5d119b22008-02-26 12:55:57 +0100670 if (IS_ERR(filename))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return error;
Ingo Molnar5d119b22008-02-26 12:55:57 +0100672 error = do_execve(filename, argv, envp, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 putname(filename);
674 return error;
675}
676
677void set_personality_64bit(void)
678{
679 /* inherit personality from parent */
680
681 /* Make sure to be in 64bit mode */
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100682 clear_thread_flag(TIF_IA32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* TBD: overwrites user setup. Should have two bits.
685 But 64bit processes have always behaved this way,
686 so it's not too bad. The main problem is just that
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100687 32bit childs are affected again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 current->personality &= ~READ_IMPLIES_EXEC;
689}
690
691asmlinkage long sys_fork(struct pt_regs *regs)
692{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100693 return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Andi Kleena88cde12005-11-05 17:25:54 +0100696asmlinkage long
697sys_clone(unsigned long clone_flags, unsigned long newsp,
698 void __user *parent_tid, void __user *child_tid, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 if (!newsp)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100701 newsp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
703}
704
705/*
706 * This is trivial, and on the face of it looks like it
707 * could equally well be done in user mode.
708 *
709 * Not so, for quite unobvious reasons - register pressure.
710 * In user mode vfork() cannot have a stack frame, and if
711 * done by calling the "clone()" system call directly, you
712 * do not have enough call-clobbered registers to hold all
713 * the information you need.
714 */
715asmlinkage long sys_vfork(struct pt_regs *regs)
716{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100717 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 NULL, NULL);
719}
720
721unsigned long get_wchan(struct task_struct *p)
722{
723 unsigned long stack;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100724 u64 fp,ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int count = 0;
726
727 if (!p || p == current || p->state==TASK_RUNNING)
728 return 0;
Al Viro57eafdc2006-01-12 01:05:39 -0800729 stack = (unsigned long)task_stack_page(p);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100730 if (p->thread.sp < stack || p->thread.sp > stack+THREAD_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 0;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100732 fp = *(u64 *)(p->thread.sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 do {
Andi Kleena88cde12005-11-05 17:25:54 +0100734 if (fp < (unsigned long)stack ||
735 fp > (unsigned long)stack+THREAD_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100737 ip = *(u64 *)(fp+8);
738 if (!in_sched_functions(ip))
739 return ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 fp = *(u64 *)fp;
741 } while (count++ < 16);
742 return 0;
743}
744
745long do_arch_prctl(struct task_struct *task, int code, unsigned long addr)
746{
747 int ret = 0;
748 int doit = task == current;
749 int cpu;
750
751 switch (code) {
752 case ARCH_SET_GS:
Suresh Siddha84929802005-06-21 17:14:32 -0700753 if (addr >= TASK_SIZE_OF(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return -EPERM;
755 cpu = get_cpu();
756 /* handle small bases via the GDT because that's faster to
757 switch. */
758 if (addr <= 0xffffffff) {
759 set_32bit_tls(task, GS_TLS, addr);
760 if (doit) {
761 load_TLS(&task->thread, cpu);
762 load_gs_index(GS_TLS_SEL);
763 }
764 task->thread.gsindex = GS_TLS_SEL;
765 task->thread.gs = 0;
766 } else {
767 task->thread.gsindex = 0;
768 task->thread.gs = addr;
769 if (doit) {
Andi Kleena88cde12005-11-05 17:25:54 +0100770 load_gs_index(0);
771 ret = checking_wrmsrl(MSR_KERNEL_GS_BASE, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 }
774 put_cpu();
775 break;
776 case ARCH_SET_FS:
777 /* Not strictly needed for fs, but do it for symmetry
778 with gs */
Suresh Siddha84929802005-06-21 17:14:32 -0700779 if (addr >= TASK_SIZE_OF(task))
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100780 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 cpu = get_cpu();
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100782 /* handle small bases via the GDT because that's faster to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 switch. */
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100784 if (addr <= 0xffffffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 set_32bit_tls(task, FS_TLS, addr);
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100786 if (doit) {
787 load_TLS(&task->thread, cpu);
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400788 loadsegment(fs, FS_TLS_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790 task->thread.fsindex = FS_TLS_SEL;
791 task->thread.fs = 0;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100792 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 task->thread.fsindex = 0;
794 task->thread.fs = addr;
795 if (doit) {
796 /* set the selector to 0 to not confuse
797 __switch_to */
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400798 loadsegment(fs, 0);
Andi Kleena88cde12005-11-05 17:25:54 +0100799 ret = checking_wrmsrl(MSR_FS_BASE, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801 }
802 put_cpu();
803 break;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100804 case ARCH_GET_FS: {
805 unsigned long base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (task->thread.fsindex == FS_TLS_SEL)
807 base = read_32bit_tls(task, FS_TLS);
Andi Kleena88cde12005-11-05 17:25:54 +0100808 else if (doit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 rdmsrl(MSR_FS_BASE, base);
Andi Kleena88cde12005-11-05 17:25:54 +0100810 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 base = task->thread.fs;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100812 ret = put_user(base, (unsigned long __user *)addr);
813 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100815 case ARCH_GET_GS: {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 unsigned long base;
John Blackwood97c28032006-04-07 19:50:25 +0200817 unsigned gsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (task->thread.gsindex == GS_TLS_SEL)
819 base = read_32bit_tls(task, GS_TLS);
John Blackwood97c28032006-04-07 19:50:25 +0200820 else if (doit) {
Jeremy Fitzhardingeada85702008-06-25 00:19:00 -0400821 savesegment(gs, gsindex);
John Blackwood97c28032006-04-07 19:50:25 +0200822 if (gsindex)
823 rdmsrl(MSR_KERNEL_GS_BASE, base);
824 else
825 base = task->thread.gs;
826 }
Andi Kleena88cde12005-11-05 17:25:54 +0100827 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 base = task->thread.gs;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100829 ret = put_user(base, (unsigned long __user *)addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 break;
831 }
832
833 default:
834 ret = -EINVAL;
835 break;
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Hiroshi Shimamoto66125382008-01-30 13:31:03 +0100838 return ret;
839}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841long sys_arch_prctl(int code, unsigned long addr)
842{
843 return do_arch_prctl(current, code, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846unsigned long arch_align_stack(unsigned long sp)
847{
Andi Kleenc16b63e2006-09-26 10:52:28 +0200848 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 sp -= get_random_int() % 8192;
850 return sp & ~0xf;
851}
Jiri Kosinac1d171a2008-01-30 13:30:40 +0100852
853unsigned long arch_randomize_brk(struct mm_struct *mm)
854{
855 unsigned long range_end = mm->brk + 0x02000000;
856 return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
857}