Merge branch 'x86/prototypes' into x86-v28-for-linus-phase1
[safe/jmp/linux-2.6] / arch / x86 / kernel / process_32.c
1 /*
2  *  Copyright (C) 1995  Linus Torvalds
3  *
4  *  Pentium III FXSR, SSE support
5  *      Gareth Hughes <gareth@valinux.com>, May 2000
6  */
7
8 /*
9  * This file handles the architecture-dependent parts of process handling..
10  */
11
12 #include <stdarg.h>
13
14 #include <linux/cpu.h>
15 #include <linux/errno.h>
16 #include <linux/sched.h>
17 #include <linux/fs.h>
18 #include <linux/kernel.h>
19 #include <linux/mm.h>
20 #include <linux/elfcore.h>
21 #include <linux/smp.h>
22 #include <linux/stddef.h>
23 #include <linux/slab.h>
24 #include <linux/vmalloc.h>
25 #include <linux/user.h>
26 #include <linux/interrupt.h>
27 #include <linux/utsname.h>
28 #include <linux/delay.h>
29 #include <linux/reboot.h>
30 #include <linux/init.h>
31 #include <linux/mc146818rtc.h>
32 #include <linux/module.h>
33 #include <linux/kallsyms.h>
34 #include <linux/ptrace.h>
35 #include <linux/random.h>
36 #include <linux/personality.h>
37 #include <linux/tick.h>
38 #include <linux/percpu.h>
39 #include <linux/prctl.h>
40
41 #include <asm/uaccess.h>
42 #include <asm/pgtable.h>
43 #include <asm/system.h>
44 #include <asm/io.h>
45 #include <asm/ldt.h>
46 #include <asm/processor.h>
47 #include <asm/i387.h>
48 #include <asm/desc.h>
49 #ifdef CONFIG_MATH_EMULATION
50 #include <asm/math_emu.h>
51 #endif
52
53 #include <linux/err.h>
54
55 #include <asm/tlbflush.h>
56 #include <asm/cpu.h>
57 #include <asm/kdebug.h>
58 #include <asm/idle.h>
59 #include <asm/syscalls.h>
60 #include <asm/smp.h>
61
62 asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
63
64 DEFINE_PER_CPU(struct task_struct *, current_task) = &init_task;
65 EXPORT_PER_CPU_SYMBOL(current_task);
66
67 DEFINE_PER_CPU(int, cpu_number);
68 EXPORT_PER_CPU_SYMBOL(cpu_number);
69
70 /*
71  * Return saved PC of a blocked thread.
72  */
73 unsigned long thread_saved_pc(struct task_struct *tsk)
74 {
75         return ((unsigned long *)tsk->thread.sp)[3];
76 }
77
78 #ifdef CONFIG_HOTPLUG_CPU
79 #include <asm/nmi.h>
80
81 static void cpu_exit_clear(void)
82 {
83         int cpu = raw_smp_processor_id();
84
85         idle_task_exit();
86
87         cpu_uninit();
88         irq_ctx_exit(cpu);
89
90         cpu_clear(cpu, cpu_callout_map);
91         cpu_clear(cpu, cpu_callin_map);
92
93         numa_remove_cpu(cpu);
94         c1e_remove_cpu(cpu);
95 }
96
97 /* We don't actually take CPU down, just spin without interrupts. */
98 static inline void play_dead(void)
99 {
100         /* This must be done before dead CPU ack */
101         cpu_exit_clear();
102         mb();
103         /* Ack it */
104         __get_cpu_var(cpu_state) = CPU_DEAD;
105
106         /*
107          * With physical CPU hotplug, we should halt the cpu
108          */
109         local_irq_disable();
110         /* mask all interrupts, flush any and all caches, and halt */
111         wbinvd_halt();
112 }
113 #else
114 static inline void play_dead(void)
115 {
116         BUG();
117 }
118 #endif /* CONFIG_HOTPLUG_CPU */
119
120 /*
121  * The idle thread. There's no useful work to be
122  * done, so just try to conserve power and have a
123  * low exit latency (ie sit in a loop waiting for
124  * somebody to say that they'd like to reschedule)
125  */
126 void cpu_idle(void)
127 {
128         int cpu = smp_processor_id();
129
130         current_thread_info()->status |= TS_POLLING;
131
132         /* endless idle loop with no priority at all */
133         while (1) {
134                 tick_nohz_stop_sched_tick(1);
135                 while (!need_resched()) {
136
137                         check_pgt_cache();
138                         rmb();
139
140                         if (rcu_pending(cpu))
141                                 rcu_check_callbacks(cpu, 0);
142
143                         if (cpu_is_offline(cpu))
144                                 play_dead();
145
146                         local_irq_disable();
147                         __get_cpu_var(irq_stat).idle_timestamp = jiffies;
148                         /* Don't trace irqs off for idle */
149                         stop_critical_timings();
150                         pm_idle();
151                         start_critical_timings();
152                 }
153                 tick_nohz_restart_sched_tick();
154                 preempt_enable_no_resched();
155                 schedule();
156                 preempt_disable();
157         }
158 }
159
160 void __show_registers(struct pt_regs *regs, int all)
161 {
162         unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
163         unsigned long d0, d1, d2, d3, d6, d7;
164         unsigned long sp;
165         unsigned short ss, gs;
166
167         if (user_mode_vm(regs)) {
168                 sp = regs->sp;
169                 ss = regs->ss & 0xffff;
170                 savesegment(gs, gs);
171         } else {
172                 sp = (unsigned long) (&regs->sp);
173                 savesegment(ss, ss);
174                 savesegment(gs, gs);
175         }
176
177         printk("\n");
178         printk("Pid: %d, comm: %s %s (%s %.*s)\n",
179                         task_pid_nr(current), current->comm,
180                         print_tainted(), init_utsname()->release,
181                         (int)strcspn(init_utsname()->version, " "),
182                         init_utsname()->version);
183
184         printk("EIP: %04x:[<%08lx>] EFLAGS: %08lx CPU: %d\n",
185                         (u16)regs->cs, regs->ip, regs->flags,
186                         smp_processor_id());
187         print_symbol("EIP is at %s\n", regs->ip);
188
189         printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
190                 regs->ax, regs->bx, regs->cx, regs->dx);
191         printk("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
192                 regs->si, regs->di, regs->bp, sp);
193         printk(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
194                (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss);
195
196         if (!all)
197                 return;
198
199         cr0 = read_cr0();
200         cr2 = read_cr2();
201         cr3 = read_cr3();
202         cr4 = read_cr4_safe();
203         printk("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n",
204                         cr0, cr2, cr3, cr4);
205
206         get_debugreg(d0, 0);
207         get_debugreg(d1, 1);
208         get_debugreg(d2, 2);
209         get_debugreg(d3, 3);
210         printk("DR0: %08lx DR1: %08lx DR2: %08lx DR3: %08lx\n",
211                         d0, d1, d2, d3);
212
213         get_debugreg(d6, 6);
214         get_debugreg(d7, 7);
215         printk("DR6: %08lx DR7: %08lx\n",
216                         d6, d7);
217 }
218
219 void show_regs(struct pt_regs *regs)
220 {
221         __show_registers(regs, 1);
222         show_trace(NULL, regs, &regs->sp, regs->bp);
223 }
224
225 /*
226  * This gets run with %bx containing the
227  * function to call, and %dx containing
228  * the "args".
229  */
230 extern void kernel_thread_helper(void);
231
232 /*
233  * Create a kernel thread
234  */
235 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
236 {
237         struct pt_regs regs;
238
239         memset(&regs, 0, sizeof(regs));
240
241         regs.bx = (unsigned long) fn;
242         regs.dx = (unsigned long) arg;
243
244         regs.ds = __USER_DS;
245         regs.es = __USER_DS;
246         regs.fs = __KERNEL_PERCPU;
247         regs.orig_ax = -1;
248         regs.ip = (unsigned long) kernel_thread_helper;
249         regs.cs = __KERNEL_CS | get_kernel_rpl();
250         regs.flags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2;
251
252         /* Ok, create the new process.. */
253         return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
254 }
255 EXPORT_SYMBOL(kernel_thread);
256
257 /*
258  * Free current thread data structures etc..
259  */
260 void exit_thread(void)
261 {
262         /* The process may have allocated an io port bitmap... nuke it. */
263         if (unlikely(test_thread_flag(TIF_IO_BITMAP))) {
264                 struct task_struct *tsk = current;
265                 struct thread_struct *t = &tsk->thread;
266                 int cpu = get_cpu();
267                 struct tss_struct *tss = &per_cpu(init_tss, cpu);
268
269                 kfree(t->io_bitmap_ptr);
270                 t->io_bitmap_ptr = NULL;
271                 clear_thread_flag(TIF_IO_BITMAP);
272                 /*
273                  * Careful, clear this in the TSS too:
274                  */
275                 memset(tss->io_bitmap, 0xff, tss->io_bitmap_max);
276                 t->io_bitmap_max = 0;
277                 tss->io_bitmap_owner = NULL;
278                 tss->io_bitmap_max = 0;
279                 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
280                 put_cpu();
281         }
282 #ifdef CONFIG_X86_DS
283         /* Free any DS contexts that have not been properly released. */
284         if (unlikely(current->thread.ds_ctx)) {
285                 /* we clear debugctl to make sure DS is not used. */
286                 update_debugctlmsr(0);
287                 ds_free(current->thread.ds_ctx);
288         }
289 #endif /* CONFIG_X86_DS */
290 }
291
292 void flush_thread(void)
293 {
294         struct task_struct *tsk = current;
295
296         tsk->thread.debugreg0 = 0;
297         tsk->thread.debugreg1 = 0;
298         tsk->thread.debugreg2 = 0;
299         tsk->thread.debugreg3 = 0;
300         tsk->thread.debugreg6 = 0;
301         tsk->thread.debugreg7 = 0;
302         memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));        
303         clear_tsk_thread_flag(tsk, TIF_DEBUG);
304         /*
305          * Forget coprocessor state..
306          */
307         tsk->fpu_counter = 0;
308         clear_fpu(tsk);
309         clear_used_math();
310 }
311
312 void release_thread(struct task_struct *dead_task)
313 {
314         BUG_ON(dead_task->mm);
315         release_vm86_irqs(dead_task);
316 }
317
318 /*
319  * This gets called before we allocate a new thread and copy
320  * the current task into it.
321  */
322 void prepare_to_copy(struct task_struct *tsk)
323 {
324         unlazy_fpu(tsk);
325 }
326
327 int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
328         unsigned long unused,
329         struct task_struct * p, struct pt_regs * regs)
330 {
331         struct pt_regs * childregs;
332         struct task_struct *tsk;
333         int err;
334
335         childregs = task_pt_regs(p);
336         *childregs = *regs;
337         childregs->ax = 0;
338         childregs->sp = sp;
339
340         p->thread.sp = (unsigned long) childregs;
341         p->thread.sp0 = (unsigned long) (childregs+1);
342
343         p->thread.ip = (unsigned long) ret_from_fork;
344
345         savesegment(gs, p->thread.gs);
346
347         tsk = current;
348         if (unlikely(test_tsk_thread_flag(tsk, TIF_IO_BITMAP))) {
349                 p->thread.io_bitmap_ptr = kmemdup(tsk->thread.io_bitmap_ptr,
350                                                 IO_BITMAP_BYTES, GFP_KERNEL);
351                 if (!p->thread.io_bitmap_ptr) {
352                         p->thread.io_bitmap_max = 0;
353                         return -ENOMEM;
354                 }
355                 set_tsk_thread_flag(p, TIF_IO_BITMAP);
356         }
357
358         err = 0;
359
360         /*
361          * Set a new TLS for the child thread?
362          */
363         if (clone_flags & CLONE_SETTLS)
364                 err = do_set_thread_area(p, -1,
365                         (struct user_desc __user *)childregs->si, 0);
366
367         if (err && p->thread.io_bitmap_ptr) {
368                 kfree(p->thread.io_bitmap_ptr);
369                 p->thread.io_bitmap_max = 0;
370         }
371         return err;
372 }
373
374 void
375 start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
376 {
377         __asm__("movl %0, %%gs" :: "r"(0));
378         regs->fs                = 0;
379         set_fs(USER_DS);
380         regs->ds                = __USER_DS;
381         regs->es                = __USER_DS;
382         regs->ss                = __USER_DS;
383         regs->cs                = __USER_CS;
384         regs->ip                = new_ip;
385         regs->sp                = new_sp;
386         /*
387          * Free the old FP and other extended state
388          */
389         free_thread_xstate(current);
390 }
391 EXPORT_SYMBOL_GPL(start_thread);
392
393 static void hard_disable_TSC(void)
394 {
395         write_cr4(read_cr4() | X86_CR4_TSD);
396 }
397
398 void disable_TSC(void)
399 {
400         preempt_disable();
401         if (!test_and_set_thread_flag(TIF_NOTSC))
402                 /*
403                  * Must flip the CPU state synchronously with
404                  * TIF_NOTSC in the current running context.
405                  */
406                 hard_disable_TSC();
407         preempt_enable();
408 }
409
410 static void hard_enable_TSC(void)
411 {
412         write_cr4(read_cr4() & ~X86_CR4_TSD);
413 }
414
415 static void enable_TSC(void)
416 {
417         preempt_disable();
418         if (test_and_clear_thread_flag(TIF_NOTSC))
419                 /*
420                  * Must flip the CPU state synchronously with
421                  * TIF_NOTSC in the current running context.
422                  */
423                 hard_enable_TSC();
424         preempt_enable();
425 }
426
427 int get_tsc_mode(unsigned long adr)
428 {
429         unsigned int val;
430
431         if (test_thread_flag(TIF_NOTSC))
432                 val = PR_TSC_SIGSEGV;
433         else
434                 val = PR_TSC_ENABLE;
435
436         return put_user(val, (unsigned int __user *)adr);
437 }
438
439 int set_tsc_mode(unsigned int val)
440 {
441         if (val == PR_TSC_SIGSEGV)
442                 disable_TSC();
443         else if (val == PR_TSC_ENABLE)
444                 enable_TSC();
445         else
446                 return -EINVAL;
447
448         return 0;
449 }
450
451 #ifdef CONFIG_X86_DS
452 static int update_debugctl(struct thread_struct *prev,
453                         struct thread_struct *next, unsigned long debugctl)
454 {
455         unsigned long ds_prev = 0;
456         unsigned long ds_next = 0;
457
458         if (prev->ds_ctx)
459                 ds_prev = (unsigned long)prev->ds_ctx->ds;
460         if (next->ds_ctx)
461                 ds_next = (unsigned long)next->ds_ctx->ds;
462
463         if (ds_next != ds_prev) {
464                 /* we clear debugctl to make sure DS
465                  * is not in use when we change it */
466                 debugctl = 0;
467                 update_debugctlmsr(0);
468                 wrmsr(MSR_IA32_DS_AREA, ds_next, 0);
469         }
470         return debugctl;
471 }
472 #else
473 static int update_debugctl(struct thread_struct *prev,
474                         struct thread_struct *next, unsigned long debugctl)
475 {
476         return debugctl;
477 }
478 #endif /* CONFIG_X86_DS */
479
480 static noinline void
481 __switch_to_xtra(struct task_struct *prev_p, struct task_struct *next_p,
482                  struct tss_struct *tss)
483 {
484         struct thread_struct *prev, *next;
485         unsigned long debugctl;
486
487         prev = &prev_p->thread;
488         next = &next_p->thread;
489
490         debugctl = update_debugctl(prev, next, prev->debugctlmsr);
491
492         if (next->debugctlmsr != debugctl)
493                 update_debugctlmsr(next->debugctlmsr);
494
495         if (test_tsk_thread_flag(next_p, TIF_DEBUG)) {
496                 set_debugreg(next->debugreg0, 0);
497                 set_debugreg(next->debugreg1, 1);
498                 set_debugreg(next->debugreg2, 2);
499                 set_debugreg(next->debugreg3, 3);
500                 /* no 4 and 5 */
501                 set_debugreg(next->debugreg6, 6);
502                 set_debugreg(next->debugreg7, 7);
503         }
504
505         if (test_tsk_thread_flag(prev_p, TIF_NOTSC) ^
506             test_tsk_thread_flag(next_p, TIF_NOTSC)) {
507                 /* prev and next are different */
508                 if (test_tsk_thread_flag(next_p, TIF_NOTSC))
509                         hard_disable_TSC();
510                 else
511                         hard_enable_TSC();
512         }
513
514 #ifdef CONFIG_X86_PTRACE_BTS
515         if (test_tsk_thread_flag(prev_p, TIF_BTS_TRACE_TS))
516                 ptrace_bts_take_timestamp(prev_p, BTS_TASK_DEPARTS);
517
518         if (test_tsk_thread_flag(next_p, TIF_BTS_TRACE_TS))
519                 ptrace_bts_take_timestamp(next_p, BTS_TASK_ARRIVES);
520 #endif /* CONFIG_X86_PTRACE_BTS */
521
522
523         if (!test_tsk_thread_flag(next_p, TIF_IO_BITMAP)) {
524                 /*
525                  * Disable the bitmap via an invalid offset. We still cache
526                  * the previous bitmap owner and the IO bitmap contents:
527                  */
528                 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
529                 return;
530         }
531
532         if (likely(next == tss->io_bitmap_owner)) {
533                 /*
534                  * Previous owner of the bitmap (hence the bitmap content)
535                  * matches the next task, we dont have to do anything but
536                  * to set a valid offset in the TSS:
537                  */
538                 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
539                 return;
540         }
541         /*
542          * Lazy TSS's I/O bitmap copy. We set an invalid offset here
543          * and we let the task to get a GPF in case an I/O instruction
544          * is performed.  The handler of the GPF will verify that the
545          * faulting task has a valid I/O bitmap and, it true, does the
546          * real copy and restart the instruction.  This will save us
547          * redundant copies when the currently switched task does not
548          * perform any I/O during its timeslice.
549          */
550         tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
551 }
552
553 /*
554  *      switch_to(x,yn) should switch tasks from x to y.
555  *
556  * We fsave/fwait so that an exception goes off at the right time
557  * (as a call from the fsave or fwait in effect) rather than to
558  * the wrong process. Lazy FP saving no longer makes any sense
559  * with modern CPU's, and this simplifies a lot of things (SMP
560  * and UP become the same).
561  *
562  * NOTE! We used to use the x86 hardware context switching. The
563  * reason for not using it any more becomes apparent when you
564  * try to recover gracefully from saved state that is no longer
565  * valid (stale segment register values in particular). With the
566  * hardware task-switch, there is no way to fix up bad state in
567  * a reasonable manner.
568  *
569  * The fact that Intel documents the hardware task-switching to
570  * be slow is a fairly red herring - this code is not noticeably
571  * faster. However, there _is_ some room for improvement here,
572  * so the performance issues may eventually be a valid point.
573  * More important, however, is the fact that this allows us much
574  * more flexibility.
575  *
576  * The return value (in %ax) will be the "prev" task after
577  * the task-switch, and shows up in ret_from_fork in entry.S,
578  * for example.
579  */
580 struct task_struct * __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
581 {
582         struct thread_struct *prev = &prev_p->thread,
583                                  *next = &next_p->thread;
584         int cpu = smp_processor_id();
585         struct tss_struct *tss = &per_cpu(init_tss, cpu);
586
587         /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
588
589         __unlazy_fpu(prev_p);
590
591
592         /* we're going to use this soon, after a few expensive things */
593         if (next_p->fpu_counter > 5)
594                 prefetch(next->xstate);
595
596         /*
597          * Reload esp0.
598          */
599         load_sp0(tss, next);
600
601         /*
602          * Save away %gs. No need to save %fs, as it was saved on the
603          * stack on entry.  No need to save %es and %ds, as those are
604          * always kernel segments while inside the kernel.  Doing this
605          * before setting the new TLS descriptors avoids the situation
606          * where we temporarily have non-reloadable segments in %fs
607          * and %gs.  This could be an issue if the NMI handler ever
608          * used %fs or %gs (it does not today), or if the kernel is
609          * running inside of a hypervisor layer.
610          */
611         savesegment(gs, prev->gs);
612
613         /*
614          * Load the per-thread Thread-Local Storage descriptor.
615          */
616         load_TLS(next, cpu);
617
618         /*
619          * Restore IOPL if needed.  In normal use, the flags restore
620          * in the switch assembly will handle this.  But if the kernel
621          * is running virtualized at a non-zero CPL, the popf will
622          * not restore flags, so it must be done in a separate step.
623          */
624         if (get_kernel_rpl() && unlikely(prev->iopl != next->iopl))
625                 set_iopl_mask(next->iopl);
626
627         /*
628          * Now maybe handle debug registers and/or IO bitmaps
629          */
630         if (unlikely(task_thread_info(prev_p)->flags & _TIF_WORK_CTXSW_PREV ||
631                      task_thread_info(next_p)->flags & _TIF_WORK_CTXSW_NEXT))
632                 __switch_to_xtra(prev_p, next_p, tss);
633
634         /*
635          * Leave lazy mode, flushing any hypercalls made here.
636          * This must be done before restoring TLS segments so
637          * the GDT and LDT are properly updated, and must be
638          * done before math_state_restore, so the TS bit is up
639          * to date.
640          */
641         arch_leave_lazy_cpu_mode();
642
643         /* If the task has used fpu the last 5 timeslices, just do a full
644          * restore of the math state immediately to avoid the trap; the
645          * chances of needing FPU soon are obviously high now
646          *
647          * tsk_used_math() checks prevent calling math_state_restore(),
648          * which can sleep in the case of !tsk_used_math()
649          */
650         if (tsk_used_math(next_p) && next_p->fpu_counter > 5)
651                 math_state_restore();
652
653         /*
654          * Restore %gs if needed (which is common)
655          */
656         if (prev->gs | next->gs)
657                 loadsegment(gs, next->gs);
658
659         x86_write_percpu(current_task, next_p);
660
661         return prev_p;
662 }
663
664 asmlinkage int sys_fork(struct pt_regs regs)
665 {
666         return do_fork(SIGCHLD, regs.sp, &regs, 0, NULL, NULL);
667 }
668
669 asmlinkage int sys_clone(struct pt_regs regs)
670 {
671         unsigned long clone_flags;
672         unsigned long newsp;
673         int __user *parent_tidptr, *child_tidptr;
674
675         clone_flags = regs.bx;
676         newsp = regs.cx;
677         parent_tidptr = (int __user *)regs.dx;
678         child_tidptr = (int __user *)regs.di;
679         if (!newsp)
680                 newsp = regs.sp;
681         return do_fork(clone_flags, newsp, &regs, 0, parent_tidptr, child_tidptr);
682 }
683
684 /*
685  * This is trivial, and on the face of it looks like it
686  * could equally well be done in user mode.
687  *
688  * Not so, for quite unobvious reasons - register pressure.
689  * In user mode vfork() cannot have a stack frame, and if
690  * done by calling the "clone()" system call directly, you
691  * do not have enough call-clobbered registers to hold all
692  * the information you need.
693  */
694 asmlinkage int sys_vfork(struct pt_regs regs)
695 {
696         return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.sp, &regs, 0, NULL, NULL);
697 }
698
699 /*
700  * sys_execve() executes a new program.
701  */
702 asmlinkage int sys_execve(struct pt_regs regs)
703 {
704         int error;
705         char * filename;
706
707         filename = getname((char __user *) regs.bx);
708         error = PTR_ERR(filename);
709         if (IS_ERR(filename))
710                 goto out;
711         error = do_execve(filename,
712                         (char __user * __user *) regs.cx,
713                         (char __user * __user *) regs.dx,
714                         &regs);
715         if (error == 0) {
716                 /* Make sure we don't return using sysenter.. */
717                 set_thread_flag(TIF_IRET);
718         }
719         putname(filename);
720 out:
721         return error;
722 }
723
724 #define top_esp                (THREAD_SIZE - sizeof(unsigned long))
725 #define top_ebp                (THREAD_SIZE - 2*sizeof(unsigned long))
726
727 unsigned long get_wchan(struct task_struct *p)
728 {
729         unsigned long bp, sp, ip;
730         unsigned long stack_page;
731         int count = 0;
732         if (!p || p == current || p->state == TASK_RUNNING)
733                 return 0;
734         stack_page = (unsigned long)task_stack_page(p);
735         sp = p->thread.sp;
736         if (!stack_page || sp < stack_page || sp > top_esp+stack_page)
737                 return 0;
738         /* include/asm-i386/system.h:switch_to() pushes bp last. */
739         bp = *(unsigned long *) sp;
740         do {
741                 if (bp < stack_page || bp > top_ebp+stack_page)
742                         return 0;
743                 ip = *(unsigned long *) (bp+4);
744                 if (!in_sched_functions(ip))
745                         return ip;
746                 bp = *(unsigned long *) bp;
747         } while (count++ < 16);
748         return 0;
749 }
750
751 unsigned long arch_align_stack(unsigned long sp)
752 {
753         if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
754                 sp -= get_random_int() % 8192;
755         return sp & ~0xf;
756 }
757
758 unsigned long arch_randomize_brk(struct mm_struct *mm)
759 {
760         unsigned long range_end = mm->brk + 0x02000000;
761         return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
762 }