Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 16 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/stddef.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/vmalloc.h> |
| 27 | #include <linux/user.h> |
| 28 | #include <linux/a.out.h> |
| 29 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/utsname.h> |
| 31 | #include <linux/delay.h> |
| 32 | #include <linux/reboot.h> |
| 33 | #include <linux/init.h> |
| 34 | #include <linux/mc146818rtc.h> |
| 35 | #include <linux/module.h> |
| 36 | #include <linux/kallsyms.h> |
| 37 | #include <linux/ptrace.h> |
| 38 | #include <linux/random.h> |
Andi Kleen | c16b63e | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 39 | #include <linux/personality.h> |
Ingo Molnar | 7416734 | 2007-02-16 01:28:07 -0800 | [diff] [blame] | 40 | #include <linux/tick.h> |
Jeremy Fitzhardinge | 7c3576d | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 41 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | #include <asm/uaccess.h> |
| 44 | #include <asm/pgtable.h> |
| 45 | #include <asm/system.h> |
| 46 | #include <asm/io.h> |
| 47 | #include <asm/ldt.h> |
| 48 | #include <asm/processor.h> |
| 49 | #include <asm/i387.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <asm/desc.h> |
Matt Mackall | 64ca900 | 2006-01-08 01:05:26 -0800 | [diff] [blame] | 51 | #include <asm/vm86.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #ifdef CONFIG_MATH_EMULATION |
| 53 | #include <asm/math_emu.h> |
| 54 | #endif |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <linux/err.h> |
| 57 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 58 | #include <asm/tlbflush.h> |
| 59 | #include <asm/cpu.h> |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | asmlinkage void ret_from_fork(void) __asm__("ret_from_fork"); |
| 62 | |
| 63 | static int hlt_counter; |
| 64 | |
| 65 | unsigned long boot_option_idle_override = 0; |
| 66 | EXPORT_SYMBOL(boot_option_idle_override); |
| 67 | |
Jeremy Fitzhardinge | 7c3576d | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 68 | DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task; |
| 69 | EXPORT_PER_CPU_SYMBOL(current_task); |
| 70 | |
| 71 | DEFINE_PER_CPU(int, cpu_number); |
| 72 | EXPORT_PER_CPU_SYMBOL(cpu_number); |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
| 75 | * Return saved PC of a blocked thread. |
| 76 | */ |
| 77 | unsigned long thread_saved_pc(struct task_struct *tsk) |
| 78 | { |
| 79 | return ((unsigned long *)tsk->thread.esp)[3]; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Powermanagement idle function, if any.. |
| 84 | */ |
| 85 | void (*pm_idle)(void); |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 86 | EXPORT_SYMBOL(pm_idle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | static DEFINE_PER_CPU(unsigned int, cpu_idle_state); |
| 88 | |
| 89 | void disable_hlt(void) |
| 90 | { |
| 91 | hlt_counter++; |
| 92 | } |
| 93 | |
| 94 | EXPORT_SYMBOL(disable_hlt); |
| 95 | |
| 96 | void enable_hlt(void) |
| 97 | { |
| 98 | hlt_counter--; |
| 99 | } |
| 100 | |
| 101 | EXPORT_SYMBOL(enable_hlt); |
| 102 | |
| 103 | /* |
| 104 | * We use this if we don't have any better |
| 105 | * idle routine.. |
| 106 | */ |
| 107 | void default_idle(void) |
| 108 | { |
| 109 | if (!hlt_counter && boot_cpu_data.hlt_works_ok) { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 110 | current_thread_info()->status &= ~TS_POLLING; |
Ingo Molnar | 0888f06 | 2006-12-22 01:11:56 -0800 | [diff] [blame] | 111 | /* |
| 112 | * TS_POLLING-cleared state must be visible before we |
| 113 | * test NEED_RESCHED: |
| 114 | */ |
| 115 | smp_mb(); |
| 116 | |
Andi Kleen | 72690a2 | 2006-12-07 02:14:03 +0100 | [diff] [blame] | 117 | local_irq_disable(); |
| 118 | if (!need_resched()) |
| 119 | safe_halt(); /* enables interrupts racelessly */ |
| 120 | else |
| 121 | local_irq_enable(); |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 122 | current_thread_info()->status |= TS_POLLING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | } else { |
Andi Kleen | 72690a2 | 2006-12-07 02:14:03 +0100 | [diff] [blame] | 124 | /* loop is done by the caller */ |
| 125 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 128 | #ifdef CONFIG_APM_MODULE |
| 129 | EXPORT_SYMBOL(default_idle); |
| 130 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | /* |
| 133 | * On SMP it's slightly faster (but much more power-consuming!) |
| 134 | * to poll the ->work.need_resched flag instead of waiting for the |
| 135 | * cross-CPU IPI to arrive. Use this option with caution. |
| 136 | */ |
| 137 | static void poll_idle (void) |
| 138 | { |
Andi Kleen | 72690a2 | 2006-12-07 02:14:03 +0100 | [diff] [blame] | 139 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 142 | #ifdef CONFIG_HOTPLUG_CPU |
| 143 | #include <asm/nmi.h> |
| 144 | /* We don't actually take CPU down, just spin without interrupts. */ |
| 145 | static inline void play_dead(void) |
| 146 | { |
Li Shaohua | e1367da | 2005-06-25 14:54:56 -0700 | [diff] [blame] | 147 | /* This must be done before dead CPU ack */ |
| 148 | cpu_exit_clear(); |
| 149 | wbinvd(); |
| 150 | mb(); |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 151 | /* Ack it */ |
| 152 | __get_cpu_var(cpu_state) = CPU_DEAD; |
| 153 | |
Li Shaohua | e1367da | 2005-06-25 14:54:56 -0700 | [diff] [blame] | 154 | /* |
| 155 | * With physical CPU hotplug, we should halt the cpu |
| 156 | */ |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 157 | local_irq_disable(); |
Li Shaohua | e1367da | 2005-06-25 14:54:56 -0700 | [diff] [blame] | 158 | while (1) |
Zachary Amsden | f2ab446 | 2005-09-03 15:56:42 -0700 | [diff] [blame] | 159 | halt(); |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 160 | } |
| 161 | #else |
| 162 | static inline void play_dead(void) |
| 163 | { |
| 164 | BUG(); |
| 165 | } |
| 166 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /* |
| 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 Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 174 | void cpu_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 176 | int cpu = smp_processor_id(); |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 177 | |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 178 | current_thread_info()->status |= TS_POLLING; |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | /* endless idle loop with no priority at all */ |
| 181 | while (1) { |
Ingo Molnar | 7416734 | 2007-02-16 01:28:07 -0800 | [diff] [blame] | 182 | tick_nohz_stop_sched_tick(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | while (!need_resched()) { |
| 184 | void (*idle)(void); |
| 185 | |
| 186 | if (__get_cpu_var(cpu_idle_state)) |
| 187 | __get_cpu_var(cpu_idle_state) = 0; |
| 188 | |
Christoph Lameter | f1d1a84 | 2007-05-12 11:15:24 -0700 | [diff] [blame] | 189 | check_pgt_cache(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | rmb(); |
| 191 | idle = pm_idle; |
| 192 | |
| 193 | if (!idle) |
| 194 | idle = default_idle; |
| 195 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 196 | if (cpu_is_offline(cpu)) |
| 197 | play_dead(); |
| 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | __get_cpu_var(irq_stat).idle_timestamp = jiffies; |
| 200 | idle(); |
| 201 | } |
Ingo Molnar | 7416734 | 2007-02-16 01:28:07 -0800 | [diff] [blame] | 202 | tick_nohz_restart_sched_tick(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 203 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | schedule(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 205 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
| 207 | } |
| 208 | |
| 209 | void cpu_idle_wait(void) |
| 210 | { |
| 211 | unsigned int cpu, this_cpu = get_cpu(); |
Ingo Molnar | dc1829a | 2006-11-17 14:26:18 +0100 | [diff] [blame] | 212 | cpumask_t map, tmp = current->cpus_allowed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | set_cpus_allowed(current, cpumask_of_cpu(this_cpu)); |
| 215 | put_cpu(); |
| 216 | |
| 217 | cpus_clear(map); |
| 218 | for_each_online_cpu(cpu) { |
| 219 | per_cpu(cpu_idle_state, cpu) = 1; |
| 220 | cpu_set(cpu, map); |
| 221 | } |
| 222 | |
| 223 | __get_cpu_var(cpu_idle_state) = 0; |
| 224 | |
| 225 | wmb(); |
| 226 | do { |
| 227 | ssleep(1); |
| 228 | for_each_online_cpu(cpu) { |
| 229 | if (cpu_isset(cpu, map) && !per_cpu(cpu_idle_state, cpu)) |
| 230 | cpu_clear(cpu, map); |
| 231 | } |
| 232 | cpus_and(map, map, cpu_online_map); |
| 233 | } while (!cpus_empty(map)); |
Ingo Molnar | dc1829a | 2006-11-17 14:26:18 +0100 | [diff] [blame] | 234 | |
| 235 | set_cpus_allowed(current, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | EXPORT_SYMBOL_GPL(cpu_idle_wait); |
| 238 | |
| 239 | /* |
| 240 | * This uses new MONITOR/MWAIT instructions on P4 processors with PNI, |
| 241 | * which can obviate IPI to trigger checking of need_resched. |
| 242 | * We execute MONITOR against need_resched and enter optimized wait state |
| 243 | * through MWAIT. Whenever someone changes need_resched, we would be woken |
| 244 | * up from MWAIT (without an IPI). |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 245 | * |
| 246 | * New with Core Duo processors, MWAIT can take some hints based on CPU |
| 247 | * capability. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | */ |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 249 | void mwait_idle_with_hints(unsigned long eax, unsigned long ecx) |
| 250 | { |
| 251 | if (!need_resched()) { |
| 252 | __monitor((void *)¤t_thread_info()->flags, 0, 0); |
| 253 | smp_mb(); |
| 254 | if (!need_resched()) |
Linus Torvalds | ea3d522 | 2007-02-26 09:21:46 -0800 | [diff] [blame] | 255 | __mwait(eax, ecx); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 256 | } |
| 257 | } |
| 258 | |
| 259 | /* Default MONITOR/MWAIT with no hints, used for default C1 state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | static void mwait_idle(void) |
| 261 | { |
| 262 | local_irq_enable(); |
Andi Kleen | 72690a2 | 2006-12-07 02:14:03 +0100 | [diff] [blame] | 263 | mwait_idle_with_hints(0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Li Shaohua | 0bb3184 | 2005-06-25 14:54:55 -0700 | [diff] [blame] | 266 | void __devinit select_idle_routine(const struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
| 268 | if (cpu_has(c, X86_FEATURE_MWAIT)) { |
| 269 | printk("monitor/mwait feature present.\n"); |
| 270 | /* |
| 271 | * Skip, if setup has overridden idle. |
| 272 | * One CPU supports mwait => All CPUs supports mwait |
| 273 | */ |
| 274 | if (!pm_idle) { |
| 275 | printk("using mwait in idle threads.\n"); |
| 276 | pm_idle = mwait_idle; |
| 277 | } |
| 278 | } |
| 279 | } |
| 280 | |
Andi Kleen | f039b75 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 281 | static int __init idle_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
Andi Kleen | f039b75 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 283 | if (!strcmp(str, "poll")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | printk("using polling idle threads.\n"); |
| 285 | pm_idle = poll_idle; |
| 286 | #ifdef CONFIG_X86_SMP |
| 287 | if (smp_num_siblings > 1) |
| 288 | printk("WARNING: polling idle and HT enabled, performance may degrade.\n"); |
| 289 | #endif |
Andi Kleen | f039b75 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 290 | } else if (!strcmp(str, "mwait")) |
| 291 | force_mwait = 1; |
| 292 | else |
| 293 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
| 295 | boot_option_idle_override = 1; |
Andi Kleen | f039b75 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 296 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
Andi Kleen | f039b75 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 298 | early_param("idle", idle_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
| 300 | void show_regs(struct pt_regs * regs) |
| 301 | { |
| 302 | unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L; |
| 303 | |
| 304 | printk("\n"); |
| 305 | printk("Pid: %d, comm: %20s\n", current->pid, current->comm); |
| 306 | printk("EIP: %04x:[<%08lx>] CPU: %d\n",0xffff & regs->xcs,regs->eip, smp_processor_id()); |
| 307 | print_symbol("EIP is at %s\n", regs->eip); |
| 308 | |
Jan Beulich | db753bd | 2006-03-23 02:59:46 -0800 | [diff] [blame] | 309 | if (user_mode_vm(regs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | printk(" ESP: %04x:%08lx",0xffff & regs->xss,regs->esp); |
Chuck Ebbert | b53e8f6 | 2006-02-04 23:28:04 -0800 | [diff] [blame] | 311 | printk(" EFLAGS: %08lx %s (%s %.*s)\n", |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 312 | regs->eflags, print_tainted(), init_utsname()->release, |
| 313 | (int)strcspn(init_utsname()->version, " "), |
| 314 | init_utsname()->version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n", |
| 316 | regs->eax,regs->ebx,regs->ecx,regs->edx); |
| 317 | printk("ESI: %08lx EDI: %08lx EBP: %08lx", |
| 318 | regs->esi, regs->edi, regs->ebp); |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 319 | printk(" DS: %04x ES: %04x FS: %04x\n", |
| 320 | 0xffff & regs->xds,0xffff & regs->xes, 0xffff & regs->xfs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
Zachary Amsden | 4bb0d3e | 2005-09-03 15:56:36 -0700 | [diff] [blame] | 322 | cr0 = read_cr0(); |
| 323 | cr2 = read_cr2(); |
| 324 | cr3 = read_cr3(); |
Zachary Amsden | ff6e8c0 | 2006-01-06 00:11:50 -0800 | [diff] [blame] | 325 | cr4 = read_cr4_safe(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | printk("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n", cr0, cr2, cr3, cr4); |
Jan Beulich | 176a271 | 2006-06-26 13:57:41 +0200 | [diff] [blame] | 327 | show_trace(NULL, regs, ®s->esp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | /* |
| 331 | * This gets run with %ebx containing the |
| 332 | * function to call, and %edx containing |
| 333 | * the "args". |
| 334 | */ |
| 335 | extern void kernel_thread_helper(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
| 337 | /* |
| 338 | * Create a kernel thread |
| 339 | */ |
| 340 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) |
| 341 | { |
| 342 | struct pt_regs regs; |
| 343 | |
| 344 | memset(®s, 0, sizeof(regs)); |
| 345 | |
| 346 | regs.ebx = (unsigned long) fn; |
| 347 | regs.edx = (unsigned long) arg; |
| 348 | |
| 349 | regs.xds = __USER_DS; |
| 350 | regs.xes = __USER_DS; |
Jeremy Fitzhardinge | 7c3576d | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 351 | regs.xfs = __KERNEL_PERCPU; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | regs.orig_eax = -1; |
| 353 | regs.eip = (unsigned long) kernel_thread_helper; |
Rusty Russell | 78be370 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 354 | regs.xcs = __KERNEL_CS | get_kernel_rpl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | regs.eflags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2; |
| 356 | |
| 357 | /* Ok, create the new process.. */ |
Andi Kleen | 8cf2c51 | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 358 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, ®s, 0, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 360 | EXPORT_SYMBOL(kernel_thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | /* |
| 363 | * Free current thread data structures etc.. |
| 364 | */ |
| 365 | void exit_thread(void) |
| 366 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | /* The process may have allocated an io port bitmap... nuke it. */ |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 368 | if (unlikely(test_thread_flag(TIF_IO_BITMAP))) { |
| 369 | struct task_struct *tsk = current; |
| 370 | struct thread_struct *t = &tsk->thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | int cpu = get_cpu(); |
| 372 | struct tss_struct *tss = &per_cpu(init_tss, cpu); |
| 373 | |
| 374 | kfree(t->io_bitmap_ptr); |
| 375 | t->io_bitmap_ptr = NULL; |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 376 | clear_thread_flag(TIF_IO_BITMAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | /* |
| 378 | * Careful, clear this in the TSS too: |
| 379 | */ |
| 380 | memset(tss->io_bitmap, 0xff, tss->io_bitmap_max); |
| 381 | t->io_bitmap_max = 0; |
| 382 | tss->io_bitmap_owner = NULL; |
| 383 | tss->io_bitmap_max = 0; |
Rusty Russell | a75c54f | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 384 | tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | put_cpu(); |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | void flush_thread(void) |
| 390 | { |
| 391 | struct task_struct *tsk = current; |
| 392 | |
| 393 | memset(tsk->thread.debugreg, 0, sizeof(unsigned long)*8); |
| 394 | memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array)); |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 395 | clear_tsk_thread_flag(tsk, TIF_DEBUG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | /* |
| 397 | * Forget coprocessor state.. |
| 398 | */ |
| 399 | clear_fpu(tsk); |
| 400 | clear_used_math(); |
| 401 | } |
| 402 | |
| 403 | void release_thread(struct task_struct *dead_task) |
| 404 | { |
Zachary Amsden | 2684927 | 2006-01-06 00:11:59 -0800 | [diff] [blame] | 405 | BUG_ON(dead_task->mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | release_vm86_irqs(dead_task); |
| 407 | } |
| 408 | |
| 409 | /* |
| 410 | * This gets called before we allocate a new thread and copy |
| 411 | * the current task into it. |
| 412 | */ |
| 413 | void prepare_to_copy(struct task_struct *tsk) |
| 414 | { |
| 415 | unlazy_fpu(tsk); |
| 416 | } |
| 417 | |
| 418 | int copy_thread(int nr, unsigned long clone_flags, unsigned long esp, |
| 419 | unsigned long unused, |
| 420 | struct task_struct * p, struct pt_regs * regs) |
| 421 | { |
| 422 | struct pt_regs * childregs; |
| 423 | struct task_struct *tsk; |
| 424 | int err; |
| 425 | |
akpm@osdl.org | 07b047f | 2006-01-12 01:05:41 -0800 | [diff] [blame] | 426 | childregs = task_pt_regs(p); |
Alexander Nyberg | f48d966 | 2005-05-05 16:15:03 -0700 | [diff] [blame] | 427 | *childregs = *regs; |
| 428 | childregs->eax = 0; |
| 429 | childregs->esp = esp; |
| 430 | |
| 431 | p->thread.esp = (unsigned long) childregs; |
| 432 | p->thread.esp0 = (unsigned long) (childregs+1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
| 434 | p->thread.eip = (unsigned long) ret_from_fork; |
| 435 | |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 436 | savesegment(gs,p->thread.gs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | tsk = current; |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 439 | if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) { |
Alexey Dobriyan | 52978be | 2006-09-30 23:27:21 -0700 | [diff] [blame] | 440 | p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr, |
| 441 | IO_BITMAP_BYTES, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | if (!p->thread.io_bitmap_ptr) { |
| 443 | p->thread.io_bitmap_max = 0; |
| 444 | return -ENOMEM; |
| 445 | } |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 446 | set_tsk_thread_flag(p, TIF_IO_BITMAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /* |
| 450 | * Set a new TLS for the child thread? |
| 451 | */ |
| 452 | if (clone_flags & CLONE_SETTLS) { |
| 453 | struct desc_struct *desc; |
| 454 | struct user_desc info; |
| 455 | int idx; |
| 456 | |
| 457 | err = -EFAULT; |
| 458 | if (copy_from_user(&info, (void __user *)childregs->esi, sizeof(info))) |
| 459 | goto out; |
| 460 | err = -EINVAL; |
| 461 | if (LDT_empty(&info)) |
| 462 | goto out; |
| 463 | |
| 464 | idx = info.entry_number; |
| 465 | if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX) |
| 466 | goto out; |
| 467 | |
| 468 | desc = p->thread.tls_array + idx - GDT_ENTRY_TLS_MIN; |
| 469 | desc->a = LDT_entry_a(&info); |
| 470 | desc->b = LDT_entry_b(&info); |
| 471 | } |
| 472 | |
| 473 | err = 0; |
| 474 | out: |
| 475 | if (err && p->thread.io_bitmap_ptr) { |
| 476 | kfree(p->thread.io_bitmap_ptr); |
| 477 | p->thread.io_bitmap_max = 0; |
| 478 | } |
| 479 | return err; |
| 480 | } |
| 481 | |
| 482 | /* |
| 483 | * fill in the user structure for a core dump.. |
| 484 | */ |
| 485 | void dump_thread(struct pt_regs * regs, struct user * dump) |
| 486 | { |
| 487 | int i; |
| 488 | |
| 489 | /* changed the size calculations - should hopefully work better. lbt */ |
| 490 | dump->magic = CMAGIC; |
| 491 | dump->start_code = 0; |
| 492 | dump->start_stack = regs->esp & ~(PAGE_SIZE - 1); |
| 493 | dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT; |
| 494 | dump->u_dsize = ((unsigned long) (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT; |
| 495 | dump->u_dsize -= dump->u_tsize; |
| 496 | dump->u_ssize = 0; |
| 497 | for (i = 0; i < 8; i++) |
| 498 | dump->u_debugreg[i] = current->thread.debugreg[i]; |
| 499 | |
| 500 | if (dump->start_stack < TASK_SIZE) |
| 501 | dump->u_ssize = ((unsigned long) (TASK_SIZE - dump->start_stack)) >> PAGE_SHIFT; |
| 502 | |
| 503 | dump->regs.ebx = regs->ebx; |
| 504 | dump->regs.ecx = regs->ecx; |
| 505 | dump->regs.edx = regs->edx; |
| 506 | dump->regs.esi = regs->esi; |
| 507 | dump->regs.edi = regs->edi; |
| 508 | dump->regs.ebp = regs->ebp; |
| 509 | dump->regs.eax = regs->eax; |
| 510 | dump->regs.ds = regs->xds; |
| 511 | dump->regs.es = regs->xes; |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 512 | dump->regs.fs = regs->xfs; |
| 513 | savesegment(gs,dump->regs.gs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | dump->regs.orig_eax = regs->orig_eax; |
| 515 | dump->regs.eip = regs->eip; |
| 516 | dump->regs.cs = regs->xcs; |
| 517 | dump->regs.eflags = regs->eflags; |
| 518 | dump->regs.esp = regs->esp; |
| 519 | dump->regs.ss = regs->xss; |
| 520 | |
| 521 | dump->u_fpvalid = dump_fpu (regs, &dump->i387); |
| 522 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 523 | EXPORT_SYMBOL(dump_thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | /* |
| 526 | * Capture the user space registers if the task is not running (in user space) |
| 527 | */ |
| 528 | int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs) |
| 529 | { |
akpm@osdl.org | 07b047f | 2006-01-12 01:05:41 -0800 | [diff] [blame] | 530 | struct pt_regs ptregs = *task_pt_regs(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | ptregs.xcs &= 0xffff; |
| 532 | ptregs.xds &= 0xffff; |
| 533 | ptregs.xes &= 0xffff; |
| 534 | ptregs.xss &= 0xffff; |
| 535 | |
| 536 | elf_core_copy_regs(regs, &ptregs); |
| 537 | |
| 538 | return 1; |
| 539 | } |
| 540 | |
Andrea Arcangeli | cf99aba | 2007-07-15 23:41:33 -0700 | [diff] [blame] | 541 | #ifdef CONFIG_SECCOMP |
| 542 | void hard_disable_TSC(void) |
| 543 | { |
| 544 | write_cr4(read_cr4() | X86_CR4_TSD); |
| 545 | } |
| 546 | void disable_TSC(void) |
| 547 | { |
| 548 | preempt_disable(); |
| 549 | if (!test_and_set_thread_flag(TIF_NOTSC)) |
| 550 | /* |
| 551 | * Must flip the CPU state synchronously with |
| 552 | * TIF_NOTSC in the current running context. |
| 553 | */ |
| 554 | hard_disable_TSC(); |
| 555 | preempt_enable(); |
| 556 | } |
| 557 | void hard_enable_TSC(void) |
| 558 | { |
| 559 | write_cr4(read_cr4() & ~X86_CR4_TSD); |
| 560 | } |
| 561 | #endif /* CONFIG_SECCOMP */ |
| 562 | |
| 563 | static noinline void |
| 564 | __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p, |
| 565 | struct tss_struct *tss) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | { |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 567 | struct thread_struct *next; |
| 568 | |
| 569 | next = &next_p->thread; |
| 570 | |
| 571 | if (test_tsk_thread_flag(next_p, TIF_DEBUG)) { |
| 572 | set_debugreg(next->debugreg[0], 0); |
| 573 | set_debugreg(next->debugreg[1], 1); |
| 574 | set_debugreg(next->debugreg[2], 2); |
| 575 | set_debugreg(next->debugreg[3], 3); |
| 576 | /* no 4 and 5 */ |
| 577 | set_debugreg(next->debugreg[6], 6); |
| 578 | set_debugreg(next->debugreg[7], 7); |
| 579 | } |
| 580 | |
Andrea Arcangeli | cf99aba | 2007-07-15 23:41:33 -0700 | [diff] [blame] | 581 | #ifdef CONFIG_SECCOMP |
| 582 | if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^ |
| 583 | test_tsk_thread_flag(next_p, TIF_NOTSC)) { |
| 584 | /* prev and next are different */ |
| 585 | if (test_tsk_thread_flag(next_p, TIF_NOTSC)) |
| 586 | hard_disable_TSC(); |
| 587 | else |
| 588 | hard_enable_TSC(); |
| 589 | } |
| 590 | #endif |
| 591 | |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 592 | if (!test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | /* |
| 594 | * Disable the bitmap via an invalid offset. We still cache |
| 595 | * the previous bitmap owner and the IO bitmap contents: |
| 596 | */ |
Rusty Russell | a75c54f | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 597 | tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | return; |
| 599 | } |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | if (likely(next == tss->io_bitmap_owner)) { |
| 602 | /* |
| 603 | * Previous owner of the bitmap (hence the bitmap content) |
| 604 | * matches the next task, we dont have to do anything but |
| 605 | * to set a valid offset in the TSS: |
| 606 | */ |
Rusty Russell | a75c54f | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 607 | tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | return; |
| 609 | } |
| 610 | /* |
| 611 | * Lazy TSS's I/O bitmap copy. We set an invalid offset here |
| 612 | * and we let the task to get a GPF in case an I/O instruction |
| 613 | * is performed. The handler of the GPF will verify that the |
| 614 | * faulting task has a valid I/O bitmap and, it true, does the |
| 615 | * real copy and restart the instruction. This will save us |
| 616 | * redundant copies when the currently switched task does not |
| 617 | * perform any I/O during its timeslice. |
| 618 | */ |
Rusty Russell | a75c54f | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 619 | tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
| 622 | /* |
| 623 | * switch_to(x,yn) should switch tasks from x to y. |
| 624 | * |
| 625 | * We fsave/fwait so that an exception goes off at the right time |
| 626 | * (as a call from the fsave or fwait in effect) rather than to |
| 627 | * the wrong process. Lazy FP saving no longer makes any sense |
| 628 | * with modern CPU's, and this simplifies a lot of things (SMP |
| 629 | * and UP become the same). |
| 630 | * |
| 631 | * NOTE! We used to use the x86 hardware context switching. The |
| 632 | * reason for not using it any more becomes apparent when you |
| 633 | * try to recover gracefully from saved state that is no longer |
| 634 | * valid (stale segment register values in particular). With the |
| 635 | * hardware task-switch, there is no way to fix up bad state in |
| 636 | * a reasonable manner. |
| 637 | * |
| 638 | * The fact that Intel documents the hardware task-switching to |
| 639 | * be slow is a fairly red herring - this code is not noticeably |
| 640 | * faster. However, there _is_ some room for improvement here, |
| 641 | * so the performance issues may eventually be a valid point. |
| 642 | * More important, however, is the fact that this allows us much |
| 643 | * more flexibility. |
| 644 | * |
| 645 | * The return value (in %eax) will be the "prev" task after |
| 646 | * the task-switch, and shows up in ret_from_fork in entry.S, |
| 647 | * for example. |
| 648 | */ |
| 649 | struct task_struct fastcall * __switch_to(struct task_struct *prev_p, struct task_struct *next_p) |
| 650 | { |
| 651 | struct thread_struct *prev = &prev_p->thread, |
| 652 | *next = &next_p->thread; |
| 653 | int cpu = smp_processor_id(); |
| 654 | struct tss_struct *tss = &per_cpu(init_tss, cpu); |
| 655 | |
| 656 | /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */ |
| 657 | |
| 658 | __unlazy_fpu(prev_p); |
| 659 | |
Chuck Ebbert | acc2076 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 660 | |
| 661 | /* we're going to use this soon, after a few expensive things */ |
| 662 | if (next_p->fpu_counter > 5) |
| 663 | prefetch(&next->i387.fxsave); |
| 664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | /* |
Zachary Amsden | e7a2ff5 | 2005-09-03 15:56:39 -0700 | [diff] [blame] | 666 | * Reload esp0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | */ |
| 668 | load_esp0(tss, next); |
| 669 | |
| 670 | /* |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 671 | * Save away %gs. No need to save %fs, as it was saved on the |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 672 | * stack on entry. No need to save %es and %ds, as those are |
| 673 | * always kernel segments while inside the kernel. Doing this |
| 674 | * before setting the new TLS descriptors avoids the situation |
| 675 | * where we temporarily have non-reloadable segments in %fs |
| 676 | * and %gs. This could be an issue if the NMI handler ever |
| 677 | * used %fs or %gs (it does not today), or if the kernel is |
| 678 | * running inside of a hypervisor layer. |
Zachary Amsden | e7a2ff5 | 2005-09-03 15:56:39 -0700 | [diff] [blame] | 679 | */ |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 680 | savesegment(gs, prev->gs); |
Zachary Amsden | e7a2ff5 | 2005-09-03 15:56:39 -0700 | [diff] [blame] | 681 | |
| 682 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | * Load the per-thread Thread-Local Storage descriptor. |
| 684 | */ |
| 685 | load_TLS(next, cpu); |
| 686 | |
| 687 | /* |
Zachary Amsden | 8b15114 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 688 | * Restore IOPL if needed. In normal use, the flags restore |
| 689 | * in the switch assembly will handle this. But if the kernel |
| 690 | * is running virtualized at a non-zero CPL, the popf will |
| 691 | * not restore flags, so it must be done in a separate step. |
| 692 | */ |
| 693 | if (get_kernel_rpl() && unlikely(prev->iopl != next->iopl)) |
| 694 | set_iopl_mask(next->iopl); |
| 695 | |
| 696 | /* |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 697 | * Now maybe handle debug registers and/or IO bitmaps |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | */ |
Andrea Arcangeli | cf99aba | 2007-07-15 23:41:33 -0700 | [diff] [blame] | 699 | if (unlikely(task_thread_info(prev_p)->flags & _TIF_WORK_CTXSW_PREV || |
| 700 | task_thread_info(next_p)->flags & _TIF_WORK_CTXSW_NEXT)) |
| 701 | __switch_to_xtra(prev_p, next_p, tss); |
Andrea Arcangeli | ffaa8bd | 2005-06-27 14:36:36 -0700 | [diff] [blame] | 702 | |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 703 | /* |
| 704 | * Leave lazy mode, flushing any hypercalls made here. |
| 705 | * This must be done before restoring TLS segments so |
| 706 | * the GDT and LDT are properly updated, and must be |
| 707 | * done before math_state_restore, so the TS bit is up |
| 708 | * to date. |
| 709 | */ |
| 710 | arch_leave_lazy_cpu_mode(); |
| 711 | |
Chuck Ebbert | acc2076 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 712 | /* If the task has used fpu the last 5 timeslices, just do a full |
| 713 | * restore of the math state immediately to avoid the trap; the |
| 714 | * chances of needing FPU soon are obviously high now |
| 715 | */ |
| 716 | if (next_p->fpu_counter > 5) |
| 717 | math_state_restore(); |
| 718 | |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 719 | /* |
| 720 | * Restore %gs if needed (which is common) |
| 721 | */ |
| 722 | if (prev->gs | next->gs) |
| 723 | loadsegment(gs, next->gs); |
| 724 | |
Jeremy Fitzhardinge | 7c3576d | 2007-05-02 19:27:16 +0200 | [diff] [blame] | 725 | x86_write_percpu(current_task, next_p); |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | return prev_p; |
| 728 | } |
| 729 | |
| 730 | asmlinkage int sys_fork(struct pt_regs regs) |
| 731 | { |
| 732 | return do_fork(SIGCHLD, regs.esp, ®s, 0, NULL, NULL); |
| 733 | } |
| 734 | |
| 735 | asmlinkage int sys_clone(struct pt_regs regs) |
| 736 | { |
| 737 | unsigned long clone_flags; |
| 738 | unsigned long newsp; |
| 739 | int __user *parent_tidptr, *child_tidptr; |
| 740 | |
| 741 | clone_flags = regs.ebx; |
| 742 | newsp = regs.ecx; |
| 743 | parent_tidptr = (int __user *)regs.edx; |
| 744 | child_tidptr = (int __user *)regs.edi; |
| 745 | if (!newsp) |
| 746 | newsp = regs.esp; |
| 747 | return do_fork(clone_flags, newsp, ®s, 0, parent_tidptr, child_tidptr); |
| 748 | } |
| 749 | |
| 750 | /* |
| 751 | * This is trivial, and on the face of it looks like it |
| 752 | * could equally well be done in user mode. |
| 753 | * |
| 754 | * Not so, for quite unobvious reasons - register pressure. |
| 755 | * In user mode vfork() cannot have a stack frame, and if |
| 756 | * done by calling the "clone()" system call directly, you |
| 757 | * do not have enough call-clobbered registers to hold all |
| 758 | * the information you need. |
| 759 | */ |
| 760 | asmlinkage int sys_vfork(struct pt_regs regs) |
| 761 | { |
| 762 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.esp, ®s, 0, NULL, NULL); |
| 763 | } |
| 764 | |
| 765 | /* |
| 766 | * sys_execve() executes a new program. |
| 767 | */ |
| 768 | asmlinkage int sys_execve(struct pt_regs regs) |
| 769 | { |
| 770 | int error; |
| 771 | char * filename; |
| 772 | |
| 773 | filename = getname((char __user *) regs.ebx); |
| 774 | error = PTR_ERR(filename); |
| 775 | if (IS_ERR(filename)) |
| 776 | goto out; |
| 777 | error = do_execve(filename, |
| 778 | (char __user * __user *) regs.ecx, |
| 779 | (char __user * __user *) regs.edx, |
| 780 | ®s); |
| 781 | if (error == 0) { |
| 782 | task_lock(current); |
| 783 | current->ptrace &= ~PT_DTRACE; |
| 784 | task_unlock(current); |
| 785 | /* Make sure we don't return using sysenter.. */ |
| 786 | set_thread_flag(TIF_IRET); |
| 787 | } |
| 788 | putname(filename); |
| 789 | out: |
| 790 | return error; |
| 791 | } |
| 792 | |
| 793 | #define top_esp (THREAD_SIZE - sizeof(unsigned long)) |
| 794 | #define top_ebp (THREAD_SIZE - 2*sizeof(unsigned long)) |
| 795 | |
| 796 | unsigned long get_wchan(struct task_struct *p) |
| 797 | { |
| 798 | unsigned long ebp, esp, eip; |
| 799 | unsigned long stack_page; |
| 800 | int count = 0; |
| 801 | if (!p || p == current || p->state == TASK_RUNNING) |
| 802 | return 0; |
Al Viro | 65e0fdf | 2006-01-12 01:05:41 -0800 | [diff] [blame] | 803 | stack_page = (unsigned long)task_stack_page(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | esp = p->thread.esp; |
| 805 | if (!stack_page || esp < stack_page || esp > top_esp+stack_page) |
| 806 | return 0; |
| 807 | /* include/asm-i386/system.h:switch_to() pushes ebp last. */ |
| 808 | ebp = *(unsigned long *) esp; |
| 809 | do { |
| 810 | if (ebp < stack_page || ebp > top_ebp+stack_page) |
| 811 | return 0; |
| 812 | eip = *(unsigned long *) (ebp+4); |
| 813 | if (!in_sched_functions(eip)) |
| 814 | return eip; |
| 815 | ebp = *(unsigned long *) ebp; |
| 816 | } while (count++ < 16); |
| 817 | return 0; |
| 818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | /* |
| 821 | * sys_alloc_thread_area: get a yet unused TLS descriptor index. |
| 822 | */ |
| 823 | static int get_free_idx(void) |
| 824 | { |
| 825 | struct thread_struct *t = ¤t->thread; |
| 826 | int idx; |
| 827 | |
| 828 | for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++) |
| 829 | if (desc_empty(t->tls_array + idx)) |
| 830 | return idx + GDT_ENTRY_TLS_MIN; |
| 831 | return -ESRCH; |
| 832 | } |
| 833 | |
| 834 | /* |
| 835 | * Set a given TLS descriptor: |
| 836 | */ |
| 837 | asmlinkage int sys_set_thread_area(struct user_desc __user *u_info) |
| 838 | { |
| 839 | struct thread_struct *t = ¤t->thread; |
| 840 | struct user_desc info; |
| 841 | struct desc_struct *desc; |
| 842 | int cpu, idx; |
| 843 | |
| 844 | if (copy_from_user(&info, u_info, sizeof(info))) |
| 845 | return -EFAULT; |
| 846 | idx = info.entry_number; |
| 847 | |
| 848 | /* |
| 849 | * index -1 means the kernel should try to find and |
| 850 | * allocate an empty descriptor: |
| 851 | */ |
| 852 | if (idx == -1) { |
| 853 | idx = get_free_idx(); |
| 854 | if (idx < 0) |
| 855 | return idx; |
| 856 | if (put_user(idx, &u_info->entry_number)) |
| 857 | return -EFAULT; |
| 858 | } |
| 859 | |
| 860 | if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX) |
| 861 | return -EINVAL; |
| 862 | |
| 863 | desc = t->tls_array + idx - GDT_ENTRY_TLS_MIN; |
| 864 | |
| 865 | /* |
| 866 | * We must not get preempted while modifying the TLS. |
| 867 | */ |
| 868 | cpu = get_cpu(); |
| 869 | |
| 870 | if (LDT_empty(&info)) { |
| 871 | desc->a = 0; |
| 872 | desc->b = 0; |
| 873 | } else { |
| 874 | desc->a = LDT_entry_a(&info); |
| 875 | desc->b = LDT_entry_b(&info); |
| 876 | } |
| 877 | load_TLS(t, cpu); |
| 878 | |
| 879 | put_cpu(); |
| 880 | |
| 881 | return 0; |
| 882 | } |
| 883 | |
| 884 | /* |
| 885 | * Get the current Thread-Local Storage area: |
| 886 | */ |
| 887 | |
| 888 | #define GET_BASE(desc) ( \ |
| 889 | (((desc)->a >> 16) & 0x0000ffff) | \ |
| 890 | (((desc)->b << 16) & 0x00ff0000) | \ |
| 891 | ( (desc)->b & 0xff000000) ) |
| 892 | |
| 893 | #define GET_LIMIT(desc) ( \ |
| 894 | ((desc)->a & 0x0ffff) | \ |
| 895 | ((desc)->b & 0xf0000) ) |
| 896 | |
| 897 | #define GET_32BIT(desc) (((desc)->b >> 22) & 1) |
| 898 | #define GET_CONTENTS(desc) (((desc)->b >> 10) & 3) |
| 899 | #define GET_WRITABLE(desc) (((desc)->b >> 9) & 1) |
| 900 | #define GET_LIMIT_PAGES(desc) (((desc)->b >> 23) & 1) |
| 901 | #define GET_PRESENT(desc) (((desc)->b >> 15) & 1) |
| 902 | #define GET_USEABLE(desc) (((desc)->b >> 20) & 1) |
| 903 | |
| 904 | asmlinkage int sys_get_thread_area(struct user_desc __user *u_info) |
| 905 | { |
| 906 | struct user_desc info; |
| 907 | struct desc_struct *desc; |
| 908 | int idx; |
| 909 | |
| 910 | if (get_user(idx, &u_info->entry_number)) |
| 911 | return -EFAULT; |
| 912 | if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX) |
| 913 | return -EINVAL; |
| 914 | |
Blaisorblade | 71ae18e | 2005-07-27 11:45:18 -0700 | [diff] [blame] | 915 | memset(&info, 0, sizeof(info)); |
| 916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | desc = current->thread.tls_array + idx - GDT_ENTRY_TLS_MIN; |
| 918 | |
| 919 | info.entry_number = idx; |
| 920 | info.base_addr = GET_BASE(desc); |
| 921 | info.limit = GET_LIMIT(desc); |
| 922 | info.seg_32bit = GET_32BIT(desc); |
| 923 | info.contents = GET_CONTENTS(desc); |
| 924 | info.read_exec_only = !GET_WRITABLE(desc); |
| 925 | info.limit_in_pages = GET_LIMIT_PAGES(desc); |
| 926 | info.seg_not_present = !GET_PRESENT(desc); |
| 927 | info.useable = GET_USEABLE(desc); |
| 928 | |
| 929 | if (copy_to_user(u_info, &info, sizeof(info))) |
| 930 | return -EFAULT; |
| 931 | return 0; |
| 932 | } |
| 933 | |
| 934 | unsigned long arch_align_stack(unsigned long sp) |
| 935 | { |
Andi Kleen | c16b63e | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 936 | if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | sp -= get_random_int() % 8192; |
| 938 | return sp & ~0xf; |
| 939 | } |