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> |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #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 Kleen | c16b63e | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 40 | #include <linux/personality.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <asm/desc.h> |
Matt Mackall | 64ca900 | 2006-01-08 01:05:26 -0800 | [diff] [blame] | 50 | #include <asm/vm86.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #ifdef CONFIG_MATH_EMULATION |
| 52 | #include <asm/math_emu.h> |
| 53 | #endif |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <linux/err.h> |
| 56 | |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 57 | #include <asm/tlbflush.h> |
| 58 | #include <asm/cpu.h> |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 59 | #include <asm/pda.h> |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 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 | |
| 68 | /* |
| 69 | * Return saved PC of a blocked thread. |
| 70 | */ |
| 71 | unsigned 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 | */ |
| 79 | void (*pm_idle)(void); |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 80 | EXPORT_SYMBOL(pm_idle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | static DEFINE_PER_CPU(unsigned int, cpu_idle_state); |
| 82 | |
| 83 | void disable_hlt(void) |
| 84 | { |
| 85 | hlt_counter++; |
| 86 | } |
| 87 | |
| 88 | EXPORT_SYMBOL(disable_hlt); |
| 89 | |
| 90 | void enable_hlt(void) |
| 91 | { |
| 92 | hlt_counter--; |
| 93 | } |
| 94 | |
| 95 | EXPORT_SYMBOL(enable_hlt); |
| 96 | |
| 97 | /* |
| 98 | * We use this if we don't have any better |
| 99 | * idle routine.. |
| 100 | */ |
| 101 | void default_idle(void) |
| 102 | { |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 103 | local_irq_enable(); |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (!hlt_counter && boot_cpu_data.hlt_works_ok) { |
Andi Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 106 | current_thread_info()->status &= ~TS_POLLING; |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 107 | 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 Kleen | 495ab9c | 2006-06-26 13:59:11 +0200 | [diff] [blame] | 115 | current_thread_info()->status |= TS_POLLING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } else { |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 117 | while (!need_resched()) |
| 118 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 121 | #ifdef CONFIG_APM_MODULE |
| 122 | EXPORT_SYMBOL(default_idle); |
| 123 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 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 | */ |
| 130 | static void poll_idle (void) |
| 131 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | local_irq_enable(); |
| 133 | |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 134 | 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 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) { |
| 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 Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 194 | if (cpu_is_offline(cpu)) |
| 195 | play_dead(); |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | __get_cpu_var(irq_stat).idle_timestamp = jiffies; |
| 198 | idle(); |
| 199 | } |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 200 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | schedule(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 202 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | } |
| 205 | |
| 206 | void cpu_idle_wait(void) |
| 207 | { |
| 208 | unsigned int cpu, this_cpu = get_cpu(); |
Ingo Molnar | dc1829a | 2006-11-17 14:26:18 +0100 | [diff] [blame] | 209 | cpumask_t map, tmp = current->cpus_allowed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 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 Molnar | dc1829a | 2006-11-17 14:26:18 +0100 | [diff] [blame] | 231 | |
| 232 | set_cpus_allowed(current, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | EXPORT_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 Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 242 | * |
| 243 | * New with Core Duo processors, MWAIT can take some hints based on CPU |
| 244 | * capability. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | */ |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 246 | void mwait_idle_with_hints(unsigned long eax, unsigned long ecx) |
| 247 | { |
| 248 | if (!need_resched()) { |
| 249 | __monitor((void *)¤t_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | static void mwait_idle(void) |
| 258 | { |
| 259 | local_irq_enable(); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 260 | while (!need_resched()) |
| 261 | mwait_idle_with_hints(0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
| 263 | |
Li Shaohua | 0bb3184 | 2005-06-25 14:54:55 -0700 | [diff] [blame] | 264 | void __devinit select_idle_routine(const struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
| 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 | |
| 279 | static 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 | |
| 299 | void 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 Beulich | db753bd | 2006-03-23 02:59:46 -0800 | [diff] [blame] | 308 | if (user_mode_vm(regs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | printk(" ESP: %04x:%08lx",0xffff & regs->xss,regs->esp); |
Chuck Ebbert | b53e8f6 | 2006-02-04 23:28:04 -0800 | [diff] [blame] | 310 | printk(" EFLAGS: %08lx %s (%s %.*s)\n", |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 311 | regs->eflags, print_tainted(), init_utsname()->release, |
| 312 | (int)strcspn(init_utsname()->version, " "), |
| 313 | init_utsname()->version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | 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 Fitzhardinge | 66e10a4 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 318 | printk(" DS: %04x ES: %04x GS: %04x\n", |
| 319 | 0xffff & regs->xds,0xffff & regs->xes, 0xffff & regs->xgs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Zachary Amsden | 4bb0d3e | 2005-09-03 15:56:36 -0700 | [diff] [blame] | 321 | cr0 = read_cr0(); |
| 322 | cr2 = read_cr2(); |
| 323 | cr3 = read_cr3(); |
Zachary Amsden | ff6e8c0 | 2006-01-06 00:11:50 -0800 | [diff] [blame] | 324 | cr4 = read_cr4_safe(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | 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] | 326 | show_trace(NULL, regs, ®s->esp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | /* |
| 330 | * This gets run with %ebx containing the |
| 331 | * function to call, and %edx containing |
| 332 | * the "args". |
| 333 | */ |
| 334 | extern void kernel_thread_helper(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
| 336 | /* |
| 337 | * Create a kernel thread |
| 338 | */ |
| 339 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) |
| 340 | { |
| 341 | struct pt_regs regs; |
| 342 | |
| 343 | memset(®s, 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 Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 350 | regs.xgs = __KERNEL_PDA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | regs.orig_eax = -1; |
| 352 | regs.eip = (unsigned long) kernel_thread_helper; |
Rusty Russell | 78be370 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 353 | regs.xcs = __KERNEL_CS | get_kernel_rpl(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | regs.eflags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2; |
| 355 | |
| 356 | /* Ok, create the new process.. */ |
Andi Kleen | 8cf2c51 | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 357 | 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] | 358 | } |
Alexey Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 359 | EXPORT_SYMBOL(kernel_thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | /* |
| 362 | * Free current thread data structures etc.. |
| 363 | */ |
| 364 | void exit_thread(void) |
| 365 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | /* The process may have allocated an io port bitmap... nuke it. */ |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 367 | if (unlikely(test_thread_flag(TIF_IO_BITMAP))) { |
| 368 | struct task_struct *tsk = current; |
| 369 | struct thread_struct *t = &tsk->thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | 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 Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 375 | clear_thread_flag(TIF_IO_BITMAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | /* |
| 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 | |
| 388 | void 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 Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 394 | clear_tsk_thread_flag(tsk, TIF_DEBUG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | /* |
| 396 | * Forget coprocessor state.. |
| 397 | */ |
| 398 | clear_fpu(tsk); |
| 399 | clear_used_math(); |
| 400 | } |
| 401 | |
| 402 | void release_thread(struct task_struct *dead_task) |
| 403 | { |
Zachary Amsden | 2684927 | 2006-01-06 00:11:59 -0800 | [diff] [blame] | 404 | BUG_ON(dead_task->mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | 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 | */ |
| 412 | void prepare_to_copy(struct task_struct *tsk) |
| 413 | { |
| 414 | unlazy_fpu(tsk); |
| 415 | } |
| 416 | |
| 417 | int 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.org | 07b047f | 2006-01-12 01:05:41 -0800 | [diff] [blame] | 425 | childregs = task_pt_regs(p); |
Alexander Nyberg | f48d966 | 2005-05-05 16:15:03 -0700 | [diff] [blame] | 426 | *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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | p->thread.eip = (unsigned long) ret_from_fork; |
| 434 | |
| 435 | savesegment(fs,p->thread.fs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
| 437 | tsk = current; |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 438 | if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) { |
Alexey Dobriyan | 52978be | 2006-09-30 23:27:21 -0700 | [diff] [blame] | 439 | p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr, |
| 440 | IO_BITMAP_BYTES, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | if (!p->thread.io_bitmap_ptr) { |
| 442 | p->thread.io_bitmap_max = 0; |
| 443 | return -ENOMEM; |
| 444 | } |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 445 | set_tsk_thread_flag(p, TIF_IO_BITMAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | } |
| 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 | */ |
| 484 | void 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 Fitzhardinge | 66e10a4 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 512 | dump->regs.gs = regs->xgs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | 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 Dobriyan | 129f694 | 2005-06-23 00:08:33 -0700 | [diff] [blame] | 522 | EXPORT_SYMBOL(dump_thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
| 524 | /* |
| 525 | * Capture the user space registers if the task is not running (in user space) |
| 526 | */ |
| 527 | int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs) |
| 528 | { |
akpm@osdl.org | 07b047f | 2006-01-12 01:05:41 -0800 | [diff] [blame] | 529 | struct pt_regs ptregs = *task_pt_regs(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | 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 Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 540 | static noinline void __switch_to_xtra(struct task_struct *next_p, |
| 541 | struct tss_struct *tss) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 543 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | /* |
| 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 Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
| 587 | /* |
Andrea Arcangeli | ffaa8bd | 2005-06-27 14:36:36 -0700 | [diff] [blame] | 588 | * This function selects if the context switch from prev to next |
| 589 | * has to tweak the TSC disable bit in the cr4. |
| 590 | */ |
| 591 | static 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 Viro | 06b425d | 2006-01-12 01:05:40 -0800 | [diff] [blame] | 600 | prev = task_thread_info(prev_p); |
| 601 | next = task_thread_info(next_p); |
Andrea Arcangeli | ffaa8bd | 2005-06-27 14:36:36 -0700 | [diff] [blame] | 602 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | * 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 | */ |
| 641 | struct 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 Ebbert | acc2076 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 652 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | /* |
Zachary Amsden | e7a2ff5 | 2005-09-03 15:56:39 -0700 | [diff] [blame] | 658 | * Reload esp0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | */ |
| 660 | load_esp0(tss, next); |
| 661 | |
| 662 | /* |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 663 | * 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 Amsden | e7a2ff5 | 2005-09-03 15:56:39 -0700 | [diff] [blame] | 671 | */ |
| 672 | savesegment(fs, prev->fs); |
Zachary Amsden | e7a2ff5 | 2005-09-03 15:56:39 -0700 | [diff] [blame] | 673 | |
| 674 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | * Load the per-thread Thread-Local Storage descriptor. |
| 676 | */ |
| 677 | load_TLS(next, cpu); |
| 678 | |
| 679 | /* |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 680 | * Restore %fs if needed. |
Linus Torvalds | b339a18 | 2005-07-22 15:23:47 -0400 | [diff] [blame] | 681 | * |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 682 | * Glibc normally makes %fs be zero. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | */ |
Linus Torvalds | b339a18 | 2005-07-22 15:23:47 -0400 | [diff] [blame] | 684 | if (unlikely(prev->fs | next->fs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | loadsegment(fs, next->fs); |
Linus Torvalds | b339a18 | 2005-07-22 15:23:47 -0400 | [diff] [blame] | 686 | |
Jeremy Fitzhardinge | ec7fcaa | 2006-12-07 02:14:03 +0100 | [diff] [blame^] | 687 | write_pda(pcurrent, next_p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
| 689 | /* |
Zachary Amsden | a520112 | 2005-09-03 15:56:44 -0700 | [diff] [blame] | 690 | * Restore IOPL if needed. |
| 691 | */ |
| 692 | if (unlikely(prev->iopl != next->iopl)) |
| 693 | set_iopl_mask(next->iopl); |
| 694 | |
| 695 | /* |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 696 | * Now maybe handle debug registers and/or IO bitmaps |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | */ |
Chuck Ebbert | facf014 | 2006-07-25 16:15:16 -0400 | [diff] [blame] | 698 | if (unlikely((task_thread_info(next_p)->flags & _TIF_WORK_CTXSW) |
| 699 | || test_tsk_thread_flag(prev_p, TIF_IO_BITMAP))) |
Stephane Eranian | b3cf257 | 2006-07-09 21:12:39 -0400 | [diff] [blame] | 700 | __switch_to_xtra(next_p, tss); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Andrea Arcangeli | ffaa8bd | 2005-06-27 14:36:36 -0700 | [diff] [blame] | 702 | disable_tsc(prev_p, next_p); |
| 703 | |
Chuck Ebbert | acc2076 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 704 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | return prev_p; |
| 712 | } |
| 713 | |
| 714 | asmlinkage int sys_fork(struct pt_regs regs) |
| 715 | { |
| 716 | return do_fork(SIGCHLD, regs.esp, ®s, 0, NULL, NULL); |
| 717 | } |
| 718 | |
| 719 | asmlinkage 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, ®s, 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 | */ |
| 744 | asmlinkage int sys_vfork(struct pt_regs regs) |
| 745 | { |
| 746 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.esp, ®s, 0, NULL, NULL); |
| 747 | } |
| 748 | |
| 749 | /* |
| 750 | * sys_execve() executes a new program. |
| 751 | */ |
| 752 | asmlinkage 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 | ®s); |
| 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); |
| 773 | out: |
| 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 | |
| 780 | unsigned 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 Viro | 65e0fdf | 2006-01-12 01:05:41 -0800 | [diff] [blame] | 787 | stack_page = (unsigned long)task_stack_page(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
| 804 | /* |
| 805 | * sys_alloc_thread_area: get a yet unused TLS descriptor index. |
| 806 | */ |
| 807 | static int get_free_idx(void) |
| 808 | { |
| 809 | struct thread_struct *t = ¤t->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 | */ |
| 821 | asmlinkage int sys_set_thread_area(struct user_desc __user *u_info) |
| 822 | { |
| 823 | struct thread_struct *t = ¤t->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 | |
| 888 | asmlinkage 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 | |
Blaisorblade | 71ae18e | 2005-07-27 11:45:18 -0700 | [diff] [blame] | 899 | memset(&info, 0, sizeof(info)); |
| 900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | 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 | |
| 918 | unsigned long arch_align_stack(unsigned long sp) |
| 919 | { |
Andi Kleen | c16b63e | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 920 | if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | sp -= get_random_int() % 8192; |
| 922 | return sp & ~0xf; |
| 923 | } |