blob: 8749b10d38058d8e6716d904fab51d95f747e662 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/i386/kernel/process.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 *
6 * Pentium III FXSR, SSE support
7 * Gareth Hughes <gareth@valinux.com>, May 2000
8 */
9
10/*
11 * This file handles the architecture-dependent parts of process handling..
12 */
13
14#include <stdarg.h>
15
Zwane Mwaikambof3705132005-06-25 14:54:50 -070016#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/fs.h>
20#include <linux/kernel.h>
21#include <linux/mm.h>
22#include <linux/elfcore.h>
23#include <linux/smp.h>
24#include <linux/smp_lock.h>
25#include <linux/stddef.h>
26#include <linux/slab.h>
27#include <linux/vmalloc.h>
28#include <linux/user.h>
29#include <linux/a.out.h>
30#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/utsname.h>
32#include <linux/delay.h>
33#include <linux/reboot.h>
34#include <linux/init.h>
35#include <linux/mc146818rtc.h>
36#include <linux/module.h>
37#include <linux/kallsyms.h>
38#include <linux/ptrace.h>
39#include <linux/random.h>
Andi Kleenc16b63e2006-09-26 10:52:28 +020040#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/uaccess.h>
43#include <asm/pgtable.h>
44#include <asm/system.h>
45#include <asm/io.h>
46#include <asm/ldt.h>
47#include <asm/processor.h>
48#include <asm/i387.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/desc.h>
Matt Mackall64ca9002006-01-08 01:05:26 -080050#include <asm/vm86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#ifdef CONFIG_MATH_EMULATION
52#include <asm/math_emu.h>
53#endif
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/err.h>
56
Zwane Mwaikambof3705132005-06-25 14:54:50 -070057#include <asm/tlbflush.h>
58#include <asm/cpu.h>
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +010059#include <asm/pda.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
62
63static int hlt_counter;
64
65unsigned long boot_option_idle_override = 0;
66EXPORT_SYMBOL(boot_option_idle_override);
67
68/*
69 * Return saved PC of a blocked thread.
70 */
71unsigned long thread_saved_pc(struct task_struct *tsk)
72{
73 return ((unsigned long *)tsk->thread.esp)[3];
74}
75
76/*
77 * Powermanagement idle function, if any..
78 */
79void (*pm_idle)(void);
Alexey Dobriyan129f6942005-06-23 00:08:33 -070080EXPORT_SYMBOL(pm_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static DEFINE_PER_CPU(unsigned int, cpu_idle_state);
82
83void disable_hlt(void)
84{
85 hlt_counter++;
86}
87
88EXPORT_SYMBOL(disable_hlt);
89
90void enable_hlt(void)
91{
92 hlt_counter--;
93}
94
95EXPORT_SYMBOL(enable_hlt);
96
97/*
98 * We use this if we don't have any better
99 * idle routine..
100 */
101void default_idle(void)
102{
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800103 local_irq_enable();
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!hlt_counter && boot_cpu_data.hlt_works_ok) {
Andi Kleen495ab9c2006-06-26 13:59:11 +0200106 current_thread_info()->status &= ~TS_POLLING;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800107 smp_mb__after_clear_bit();
108 while (!need_resched()) {
109 local_irq_disable();
110 if (!need_resched())
111 safe_halt();
112 else
113 local_irq_enable();
114 }
Andi Kleen495ab9c2006-06-26 13:59:11 +0200115 current_thread_info()->status |= TS_POLLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 } else {
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800117 while (!need_resched())
118 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700121#ifdef CONFIG_APM_MODULE
122EXPORT_SYMBOL(default_idle);
123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * On SMP it's slightly faster (but much more power-consuming!)
127 * to poll the ->work.need_resched flag instead of waiting for the
128 * cross-CPU IPI to arrive. Use this option with caution.
129 */
130static void poll_idle (void)
131{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 local_irq_enable();
133
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800134 asm volatile(
135 "2:"
136 "testl %0, %1;"
137 "rep; nop;"
138 "je 2b;"
139 : : "i"(_TIF_NEED_RESCHED), "m" (current_thread_info()->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700142#ifdef CONFIG_HOTPLUG_CPU
143#include <asm/nmi.h>
144/* We don't actually take CPU down, just spin without interrupts. */
145static inline void play_dead(void)
146{
Li Shaohuae1367da2005-06-25 14:54:56 -0700147 /* This must be done before dead CPU ack */
148 cpu_exit_clear();
149 wbinvd();
150 mb();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700151 /* Ack it */
152 __get_cpu_var(cpu_state) = CPU_DEAD;
153
Li Shaohuae1367da2005-06-25 14:54:56 -0700154 /*
155 * With physical CPU hotplug, we should halt the cpu
156 */
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700157 local_irq_disable();
Li Shaohuae1367da2005-06-25 14:54:56 -0700158 while (1)
Zachary Amsdenf2ab4462005-09-03 15:56:42 -0700159 halt();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700160}
161#else
162static inline void play_dead(void)
163{
164 BUG();
165}
166#endif /* CONFIG_HOTPLUG_CPU */
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
169 * The idle thread. There's no useful work to be
170 * done, so just try to conserve power and have a
171 * low exit latency (ie sit in a loop waiting for
172 * somebody to say that they'd like to reschedule)
173 */
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700174void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800176 int cpu = smp_processor_id();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700177
Andi Kleen495ab9c2006-06-26 13:59:11 +0200178 current_thread_info()->status |= TS_POLLING;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* endless idle loop with no priority at all */
181 while (1) {
182 while (!need_resched()) {
183 void (*idle)(void);
184
185 if (__get_cpu_var(cpu_idle_state))
186 __get_cpu_var(cpu_idle_state) = 0;
187
188 rmb();
189 idle = pm_idle;
190
191 if (!idle)
192 idle = default_idle;
193
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700194 if (cpu_is_offline(cpu))
195 play_dead();
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 __get_cpu_var(irq_stat).idle_timestamp = jiffies;
198 idle();
199 }
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800200 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800202 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
204}
205
206void cpu_idle_wait(void)
207{
208 unsigned int cpu, this_cpu = get_cpu();
Ingo Molnardc1829a2006-11-17 14:26:18 +0100209 cpumask_t map, tmp = current->cpus_allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 set_cpus_allowed(current, cpumask_of_cpu(this_cpu));
212 put_cpu();
213
214 cpus_clear(map);
215 for_each_online_cpu(cpu) {
216 per_cpu(cpu_idle_state, cpu) = 1;
217 cpu_set(cpu, map);
218 }
219
220 __get_cpu_var(cpu_idle_state) = 0;
221
222 wmb();
223 do {
224 ssleep(1);
225 for_each_online_cpu(cpu) {
226 if (cpu_isset(cpu, map) && !per_cpu(cpu_idle_state, cpu))
227 cpu_clear(cpu, map);
228 }
229 cpus_and(map, map, cpu_online_map);
230 } while (!cpus_empty(map));
Ingo Molnardc1829a2006-11-17 14:26:18 +0100231
232 set_cpus_allowed(current, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234EXPORT_SYMBOL_GPL(cpu_idle_wait);
235
236/*
237 * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
238 * which can obviate IPI to trigger checking of need_resched.
239 * We execute MONITOR against need_resched and enter optimized wait state
240 * through MWAIT. Whenever someone changes need_resched, we would be woken
241 * up from MWAIT (without an IPI).
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700242 *
243 * New with Core Duo processors, MWAIT can take some hints based on CPU
244 * capability.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700246void mwait_idle_with_hints(unsigned long eax, unsigned long ecx)
247{
248 if (!need_resched()) {
249 __monitor((void *)&current_thread_info()->flags, 0, 0);
250 smp_mb();
251 if (!need_resched())
252 __mwait(eax, ecx);
253 }
254}
255
256/* Default MONITOR/MWAIT with no hints, used for default C1 state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257static void mwait_idle(void)
258{
259 local_irq_enable();
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700260 while (!need_resched())
261 mwait_idle_with_hints(0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Li Shaohua0bb31842005-06-25 14:54:55 -0700264void __devinit select_idle_routine(const struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 if (cpu_has(c, X86_FEATURE_MWAIT)) {
267 printk("monitor/mwait feature present.\n");
268 /*
269 * Skip, if setup has overridden idle.
270 * One CPU supports mwait => All CPUs supports mwait
271 */
272 if (!pm_idle) {
273 printk("using mwait in idle threads.\n");
274 pm_idle = mwait_idle;
275 }
276 }
277}
278
279static int __init idle_setup (char *str)
280{
281 if (!strncmp(str, "poll", 4)) {
282 printk("using polling idle threads.\n");
283 pm_idle = poll_idle;
284#ifdef CONFIG_X86_SMP
285 if (smp_num_siblings > 1)
286 printk("WARNING: polling idle and HT enabled, performance may degrade.\n");
287#endif
288 } else if (!strncmp(str, "halt", 4)) {
289 printk("using halt in idle threads.\n");
290 pm_idle = default_idle;
291 }
292
293 boot_option_idle_override = 1;
294 return 1;
295}
296
297__setup("idle=", idle_setup);
298
299void show_regs(struct pt_regs * regs)
300{
301 unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
302
303 printk("\n");
304 printk("Pid: %d, comm: %20s\n", current->pid, current->comm);
305 printk("EIP: %04x:[<%08lx>] CPU: %d\n",0xffff & regs->xcs,regs->eip, smp_processor_id());
306 print_symbol("EIP is at %s\n", regs->eip);
307
Jan Beulichdb753bd2006-03-23 02:59:46 -0800308 if (user_mode_vm(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 printk(" ESP: %04x:%08lx",0xffff & regs->xss,regs->esp);
Chuck Ebbertb53e8f62006-02-04 23:28:04 -0800310 printk(" EFLAGS: %08lx %s (%s %.*s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700311 regs->eflags, print_tainted(), init_utsname()->release,
312 (int)strcspn(init_utsname()->version, " "),
313 init_utsname()->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
315 regs->eax,regs->ebx,regs->ecx,regs->edx);
316 printk("ESI: %08lx EDI: %08lx EBP: %08lx",
317 regs->esi, regs->edi, regs->ebp);
Jeremy Fitzhardinge66e10a42006-12-07 02:14:02 +0100318 printk(" DS: %04x ES: %04x GS: %04x\n",
319 0xffff & regs->xds,0xffff & regs->xes, 0xffff & regs->xgs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Zachary Amsden4bb0d3e2005-09-03 15:56:36 -0700321 cr0 = read_cr0();
322 cr2 = read_cr2();
323 cr3 = read_cr3();
Zachary Amsdenff6e8c02006-01-06 00:11:50 -0800324 cr4 = read_cr4_safe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 printk("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n", cr0, cr2, cr3, cr4);
Jan Beulich176a2712006-06-26 13:57:41 +0200326 show_trace(NULL, regs, &regs->esp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329/*
330 * This gets run with %ebx containing the
331 * function to call, and %edx containing
332 * the "args".
333 */
334extern void kernel_thread_helper(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336/*
337 * Create a kernel thread
338 */
339int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
340{
341 struct pt_regs regs;
342
343 memset(&regs, 0, sizeof(regs));
344
345 regs.ebx = (unsigned long) fn;
346 regs.edx = (unsigned long) arg;
347
348 regs.xds = __USER_DS;
349 regs.xes = __USER_DS;
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100350 regs.xgs = __KERNEL_PDA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 regs.orig_eax = -1;
352 regs.eip = (unsigned long) kernel_thread_helper;
Rusty Russell78be3702006-09-26 10:52:39 +0200353 regs.xcs = __KERNEL_CS | get_kernel_rpl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 regs.eflags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2;
355
356 /* Ok, create the new process.. */
Andi Kleen8cf2c512006-10-21 18:37:02 +0200357 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700359EXPORT_SYMBOL(kernel_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361/*
362 * Free current thread data structures etc..
363 */
364void exit_thread(void)
365{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* The process may have allocated an io port bitmap... nuke it. */
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400367 if (unlikely(test_thread_flag(TIF_IO_BITMAP))) {
368 struct task_struct *tsk = current;
369 struct thread_struct *t = &tsk->thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 int cpu = get_cpu();
371 struct tss_struct *tss = &per_cpu(init_tss, cpu);
372
373 kfree(t->io_bitmap_ptr);
374 t->io_bitmap_ptr = NULL;
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400375 clear_thread_flag(TIF_IO_BITMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /*
377 * Careful, clear this in the TSS too:
378 */
379 memset(tss->io_bitmap, 0xff, tss->io_bitmap_max);
380 t->io_bitmap_max = 0;
381 tss->io_bitmap_owner = NULL;
382 tss->io_bitmap_max = 0;
383 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
384 put_cpu();
385 }
386}
387
388void flush_thread(void)
389{
390 struct task_struct *tsk = current;
391
392 memset(tsk->thread.debugreg, 0, sizeof(unsigned long)*8);
393 memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400394 clear_tsk_thread_flag(tsk, TIF_DEBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /*
396 * Forget coprocessor state..
397 */
398 clear_fpu(tsk);
399 clear_used_math();
400}
401
402void release_thread(struct task_struct *dead_task)
403{
Zachary Amsden26849272006-01-06 00:11:59 -0800404 BUG_ON(dead_task->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 release_vm86_irqs(dead_task);
406}
407
408/*
409 * This gets called before we allocate a new thread and copy
410 * the current task into it.
411 */
412void prepare_to_copy(struct task_struct *tsk)
413{
414 unlazy_fpu(tsk);
415}
416
417int copy_thread(int nr, unsigned long clone_flags, unsigned long esp,
418 unsigned long unused,
419 struct task_struct * p, struct pt_regs * regs)
420{
421 struct pt_regs * childregs;
422 struct task_struct *tsk;
423 int err;
424
akpm@osdl.org07b047f2006-01-12 01:05:41 -0800425 childregs = task_pt_regs(p);
Alexander Nybergf48d9662005-05-05 16:15:03 -0700426 *childregs = *regs;
427 childregs->eax = 0;
428 childregs->esp = esp;
429
430 p->thread.esp = (unsigned long) childregs;
431 p->thread.esp0 = (unsigned long) (childregs+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 p->thread.eip = (unsigned long) ret_from_fork;
434
435 savesegment(fs,p->thread.fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 tsk = current;
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400438 if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) {
Alexey Dobriyan52978be2006-09-30 23:27:21 -0700439 p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr,
440 IO_BITMAP_BYTES, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (!p->thread.io_bitmap_ptr) {
442 p->thread.io_bitmap_max = 0;
443 return -ENOMEM;
444 }
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400445 set_tsk_thread_flag(p, TIF_IO_BITMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
448 /*
449 * Set a new TLS for the child thread?
450 */
451 if (clone_flags & CLONE_SETTLS) {
452 struct desc_struct *desc;
453 struct user_desc info;
454 int idx;
455
456 err = -EFAULT;
457 if (copy_from_user(&info, (void __user *)childregs->esi, sizeof(info)))
458 goto out;
459 err = -EINVAL;
460 if (LDT_empty(&info))
461 goto out;
462
463 idx = info.entry_number;
464 if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
465 goto out;
466
467 desc = p->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
468 desc->a = LDT_entry_a(&info);
469 desc->b = LDT_entry_b(&info);
470 }
471
472 err = 0;
473 out:
474 if (err && p->thread.io_bitmap_ptr) {
475 kfree(p->thread.io_bitmap_ptr);
476 p->thread.io_bitmap_max = 0;
477 }
478 return err;
479}
480
481/*
482 * fill in the user structure for a core dump..
483 */
484void dump_thread(struct pt_regs * regs, struct user * dump)
485{
486 int i;
487
488/* changed the size calculations - should hopefully work better. lbt */
489 dump->magic = CMAGIC;
490 dump->start_code = 0;
491 dump->start_stack = regs->esp & ~(PAGE_SIZE - 1);
492 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
493 dump->u_dsize = ((unsigned long) (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
494 dump->u_dsize -= dump->u_tsize;
495 dump->u_ssize = 0;
496 for (i = 0; i < 8; i++)
497 dump->u_debugreg[i] = current->thread.debugreg[i];
498
499 if (dump->start_stack < TASK_SIZE)
500 dump->u_ssize = ((unsigned long) (TASK_SIZE - dump->start_stack)) >> PAGE_SHIFT;
501
502 dump->regs.ebx = regs->ebx;
503 dump->regs.ecx = regs->ecx;
504 dump->regs.edx = regs->edx;
505 dump->regs.esi = regs->esi;
506 dump->regs.edi = regs->edi;
507 dump->regs.ebp = regs->ebp;
508 dump->regs.eax = regs->eax;
509 dump->regs.ds = regs->xds;
510 dump->regs.es = regs->xes;
511 savesegment(fs,dump->regs.fs);
Jeremy Fitzhardinge66e10a42006-12-07 02:14:02 +0100512 dump->regs.gs = regs->xgs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 dump->regs.orig_eax = regs->orig_eax;
514 dump->regs.eip = regs->eip;
515 dump->regs.cs = regs->xcs;
516 dump->regs.eflags = regs->eflags;
517 dump->regs.esp = regs->esp;
518 dump->regs.ss = regs->xss;
519
520 dump->u_fpvalid = dump_fpu (regs, &dump->i387);
521}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700522EXPORT_SYMBOL(dump_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524/*
525 * Capture the user space registers if the task is not running (in user space)
526 */
527int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
528{
akpm@osdl.org07b047f2006-01-12 01:05:41 -0800529 struct pt_regs ptregs = *task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 ptregs.xcs &= 0xffff;
531 ptregs.xds &= 0xffff;
532 ptregs.xes &= 0xffff;
533 ptregs.xss &= 0xffff;
534
535 elf_core_copy_regs(regs, &ptregs);
536
537 return 1;
538}
539
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400540static noinline void __switch_to_xtra(struct task_struct *next_p,
541 struct tss_struct *tss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400543 struct thread_struct *next;
544
545 next = &next_p->thread;
546
547 if (test_tsk_thread_flag(next_p, TIF_DEBUG)) {
548 set_debugreg(next->debugreg[0], 0);
549 set_debugreg(next->debugreg[1], 1);
550 set_debugreg(next->debugreg[2], 2);
551 set_debugreg(next->debugreg[3], 3);
552 /* no 4 and 5 */
553 set_debugreg(next->debugreg[6], 6);
554 set_debugreg(next->debugreg[7], 7);
555 }
556
557 if (!test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /*
559 * Disable the bitmap via an invalid offset. We still cache
560 * the previous bitmap owner and the IO bitmap contents:
561 */
562 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
563 return;
564 }
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (likely(next == tss->io_bitmap_owner)) {
567 /*
568 * Previous owner of the bitmap (hence the bitmap content)
569 * matches the next task, we dont have to do anything but
570 * to set a valid offset in the TSS:
571 */
572 tss->io_bitmap_base = IO_BITMAP_OFFSET;
573 return;
574 }
575 /*
576 * Lazy TSS's I/O bitmap copy. We set an invalid offset here
577 * and we let the task to get a GPF in case an I/O instruction
578 * is performed. The handler of the GPF will verify that the
579 * faulting task has a valid I/O bitmap and, it true, does the
580 * real copy and restart the instruction. This will save us
581 * redundant copies when the currently switched task does not
582 * perform any I/O during its timeslice.
583 */
584 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
585}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587/*
Andrea Arcangeliffaa8bd2005-06-27 14:36:36 -0700588 * This function selects if the context switch from prev to next
589 * has to tweak the TSC disable bit in the cr4.
590 */
591static inline void disable_tsc(struct task_struct *prev_p,
592 struct task_struct *next_p)
593{
594 struct thread_info *prev, *next;
595
596 /*
597 * gcc should eliminate the ->thread_info dereference if
598 * has_secure_computing returns 0 at compile time (SECCOMP=n).
599 */
Al Viro06b425d2006-01-12 01:05:40 -0800600 prev = task_thread_info(prev_p);
601 next = task_thread_info(next_p);
Andrea Arcangeliffaa8bd2005-06-27 14:36:36 -0700602
603 if (has_secure_computing(prev) || has_secure_computing(next)) {
604 /* slow path here */
605 if (has_secure_computing(prev) &&
606 !has_secure_computing(next)) {
607 write_cr4(read_cr4() & ~X86_CR4_TSD);
608 } else if (!has_secure_computing(prev) &&
609 has_secure_computing(next))
610 write_cr4(read_cr4() | X86_CR4_TSD);
611 }
612}
613
614/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * switch_to(x,yn) should switch tasks from x to y.
616 *
617 * We fsave/fwait so that an exception goes off at the right time
618 * (as a call from the fsave or fwait in effect) rather than to
619 * the wrong process. Lazy FP saving no longer makes any sense
620 * with modern CPU's, and this simplifies a lot of things (SMP
621 * and UP become the same).
622 *
623 * NOTE! We used to use the x86 hardware context switching. The
624 * reason for not using it any more becomes apparent when you
625 * try to recover gracefully from saved state that is no longer
626 * valid (stale segment register values in particular). With the
627 * hardware task-switch, there is no way to fix up bad state in
628 * a reasonable manner.
629 *
630 * The fact that Intel documents the hardware task-switching to
631 * be slow is a fairly red herring - this code is not noticeably
632 * faster. However, there _is_ some room for improvement here,
633 * so the performance issues may eventually be a valid point.
634 * More important, however, is the fact that this allows us much
635 * more flexibility.
636 *
637 * The return value (in %eax) will be the "prev" task after
638 * the task-switch, and shows up in ret_from_fork in entry.S,
639 * for example.
640 */
641struct task_struct fastcall * __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
642{
643 struct thread_struct *prev = &prev_p->thread,
644 *next = &next_p->thread;
645 int cpu = smp_processor_id();
646 struct tss_struct *tss = &per_cpu(init_tss, cpu);
647
648 /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
649
650 __unlazy_fpu(prev_p);
651
Chuck Ebbertacc20762006-12-07 02:14:01 +0100652
653 /* we're going to use this soon, after a few expensive things */
654 if (next_p->fpu_counter > 5)
655 prefetch(&next->i387.fxsave);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
Zachary Amsdene7a2ff52005-09-03 15:56:39 -0700658 * Reload esp0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 */
660 load_esp0(tss, next);
661
662 /*
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100663 * Save away %fs. No need to save %gs, as it was saved on the
664 * stack on entry. No need to save %es and %ds, as those are
665 * always kernel segments while inside the kernel. Doing this
666 * before setting the new TLS descriptors avoids the situation
667 * where we temporarily have non-reloadable segments in %fs
668 * and %gs. This could be an issue if the NMI handler ever
669 * used %fs or %gs (it does not today), or if the kernel is
670 * running inside of a hypervisor layer.
Zachary Amsdene7a2ff52005-09-03 15:56:39 -0700671 */
672 savesegment(fs, prev->fs);
Zachary Amsdene7a2ff52005-09-03 15:56:39 -0700673
674 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * Load the per-thread Thread-Local Storage descriptor.
676 */
677 load_TLS(next, cpu);
678
679 /*
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100680 * Restore %fs if needed.
Linus Torvaldsb339a182005-07-22 15:23:47 -0400681 *
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100682 * Glibc normally makes %fs be zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
Linus Torvaldsb339a182005-07-22 15:23:47 -0400684 if (unlikely(prev->fs | next->fs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 loadsegment(fs, next->fs);
Linus Torvaldsb339a182005-07-22 15:23:47 -0400686
Jeremy Fitzhardingeec7fcaa2006-12-07 02:14:03 +0100687 write_pda(pcurrent, next_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 /*
Zachary Amsdena5201122005-09-03 15:56:44 -0700690 * Restore IOPL if needed.
691 */
692 if (unlikely(prev->iopl != next->iopl))
693 set_iopl_mask(next->iopl);
694
695 /*
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400696 * Now maybe handle debug registers and/or IO bitmaps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
Chuck Ebbertfacf0142006-07-25 16:15:16 -0400698 if (unlikely((task_thread_info(next_p)->flags & _TIF_WORK_CTXSW)
699 || test_tsk_thread_flag(prev_p, TIF_IO_BITMAP)))
Stephane Eranianb3cf2572006-07-09 21:12:39 -0400700 __switch_to_xtra(next_p, tss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Andrea Arcangeliffaa8bd2005-06-27 14:36:36 -0700702 disable_tsc(prev_p, next_p);
703
Chuck Ebbertacc20762006-12-07 02:14:01 +0100704 /* If the task has used fpu the last 5 timeslices, just do a full
705 * restore of the math state immediately to avoid the trap; the
706 * chances of needing FPU soon are obviously high now
707 */
708 if (next_p->fpu_counter > 5)
709 math_state_restore();
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return prev_p;
712}
713
714asmlinkage int sys_fork(struct pt_regs regs)
715{
716 return do_fork(SIGCHLD, regs.esp, &regs, 0, NULL, NULL);
717}
718
719asmlinkage int sys_clone(struct pt_regs regs)
720{
721 unsigned long clone_flags;
722 unsigned long newsp;
723 int __user *parent_tidptr, *child_tidptr;
724
725 clone_flags = regs.ebx;
726 newsp = regs.ecx;
727 parent_tidptr = (int __user *)regs.edx;
728 child_tidptr = (int __user *)regs.edi;
729 if (!newsp)
730 newsp = regs.esp;
731 return do_fork(clone_flags, newsp, &regs, 0, parent_tidptr, child_tidptr);
732}
733
734/*
735 * This is trivial, and on the face of it looks like it
736 * could equally well be done in user mode.
737 *
738 * Not so, for quite unobvious reasons - register pressure.
739 * In user mode vfork() cannot have a stack frame, and if
740 * done by calling the "clone()" system call directly, you
741 * do not have enough call-clobbered registers to hold all
742 * the information you need.
743 */
744asmlinkage int sys_vfork(struct pt_regs regs)
745{
746 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.esp, &regs, 0, NULL, NULL);
747}
748
749/*
750 * sys_execve() executes a new program.
751 */
752asmlinkage int sys_execve(struct pt_regs regs)
753{
754 int error;
755 char * filename;
756
757 filename = getname((char __user *) regs.ebx);
758 error = PTR_ERR(filename);
759 if (IS_ERR(filename))
760 goto out;
761 error = do_execve(filename,
762 (char __user * __user *) regs.ecx,
763 (char __user * __user *) regs.edx,
764 &regs);
765 if (error == 0) {
766 task_lock(current);
767 current->ptrace &= ~PT_DTRACE;
768 task_unlock(current);
769 /* Make sure we don't return using sysenter.. */
770 set_thread_flag(TIF_IRET);
771 }
772 putname(filename);
773out:
774 return error;
775}
776
777#define top_esp (THREAD_SIZE - sizeof(unsigned long))
778#define top_ebp (THREAD_SIZE - 2*sizeof(unsigned long))
779
780unsigned long get_wchan(struct task_struct *p)
781{
782 unsigned long ebp, esp, eip;
783 unsigned long stack_page;
784 int count = 0;
785 if (!p || p == current || p->state == TASK_RUNNING)
786 return 0;
Al Viro65e0fdf2006-01-12 01:05:41 -0800787 stack_page = (unsigned long)task_stack_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 esp = p->thread.esp;
789 if (!stack_page || esp < stack_page || esp > top_esp+stack_page)
790 return 0;
791 /* include/asm-i386/system.h:switch_to() pushes ebp last. */
792 ebp = *(unsigned long *) esp;
793 do {
794 if (ebp < stack_page || ebp > top_ebp+stack_page)
795 return 0;
796 eip = *(unsigned long *) (ebp+4);
797 if (!in_sched_functions(eip))
798 return eip;
799 ebp = *(unsigned long *) ebp;
800 } while (count++ < 16);
801 return 0;
802}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804/*
805 * sys_alloc_thread_area: get a yet unused TLS descriptor index.
806 */
807static int get_free_idx(void)
808{
809 struct thread_struct *t = &current->thread;
810 int idx;
811
812 for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++)
813 if (desc_empty(t->tls_array + idx))
814 return idx + GDT_ENTRY_TLS_MIN;
815 return -ESRCH;
816}
817
818/*
819 * Set a given TLS descriptor:
820 */
821asmlinkage int sys_set_thread_area(struct user_desc __user *u_info)
822{
823 struct thread_struct *t = &current->thread;
824 struct user_desc info;
825 struct desc_struct *desc;
826 int cpu, idx;
827
828 if (copy_from_user(&info, u_info, sizeof(info)))
829 return -EFAULT;
830 idx = info.entry_number;
831
832 /*
833 * index -1 means the kernel should try to find and
834 * allocate an empty descriptor:
835 */
836 if (idx == -1) {
837 idx = get_free_idx();
838 if (idx < 0)
839 return idx;
840 if (put_user(idx, &u_info->entry_number))
841 return -EFAULT;
842 }
843
844 if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
845 return -EINVAL;
846
847 desc = t->tls_array + idx - GDT_ENTRY_TLS_MIN;
848
849 /*
850 * We must not get preempted while modifying the TLS.
851 */
852 cpu = get_cpu();
853
854 if (LDT_empty(&info)) {
855 desc->a = 0;
856 desc->b = 0;
857 } else {
858 desc->a = LDT_entry_a(&info);
859 desc->b = LDT_entry_b(&info);
860 }
861 load_TLS(t, cpu);
862
863 put_cpu();
864
865 return 0;
866}
867
868/*
869 * Get the current Thread-Local Storage area:
870 */
871
872#define GET_BASE(desc) ( \
873 (((desc)->a >> 16) & 0x0000ffff) | \
874 (((desc)->b << 16) & 0x00ff0000) | \
875 ( (desc)->b & 0xff000000) )
876
877#define GET_LIMIT(desc) ( \
878 ((desc)->a & 0x0ffff) | \
879 ((desc)->b & 0xf0000) )
880
881#define GET_32BIT(desc) (((desc)->b >> 22) & 1)
882#define GET_CONTENTS(desc) (((desc)->b >> 10) & 3)
883#define GET_WRITABLE(desc) (((desc)->b >> 9) & 1)
884#define GET_LIMIT_PAGES(desc) (((desc)->b >> 23) & 1)
885#define GET_PRESENT(desc) (((desc)->b >> 15) & 1)
886#define GET_USEABLE(desc) (((desc)->b >> 20) & 1)
887
888asmlinkage int sys_get_thread_area(struct user_desc __user *u_info)
889{
890 struct user_desc info;
891 struct desc_struct *desc;
892 int idx;
893
894 if (get_user(idx, &u_info->entry_number))
895 return -EFAULT;
896 if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
897 return -EINVAL;
898
Blaisorblade71ae18e2005-07-27 11:45:18 -0700899 memset(&info, 0, sizeof(info));
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 desc = current->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
902
903 info.entry_number = idx;
904 info.base_addr = GET_BASE(desc);
905 info.limit = GET_LIMIT(desc);
906 info.seg_32bit = GET_32BIT(desc);
907 info.contents = GET_CONTENTS(desc);
908 info.read_exec_only = !GET_WRITABLE(desc);
909 info.limit_in_pages = GET_LIMIT_PAGES(desc);
910 info.seg_not_present = !GET_PRESENT(desc);
911 info.useable = GET_USEABLE(desc);
912
913 if (copy_to_user(u_info, &info, sizeof(info)))
914 return -EFAULT;
915 return 0;
916}
917
918unsigned long arch_align_stack(unsigned long sp)
919{
Andi Kleenc16b63e2006-09-26 10:52:28 +0200920 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 sp -= get_random_int() % 8192;
922 return sp & ~0xf;
923}