moved stackoverflow checking out of mainline files
[linux-2.6.git] / arch / i386 / kernel / process.c
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
16 #include <linux/errno.h>
17 #include <linux/sched.h>
18 #include <linux/fs.h>
19 #include <linux/kernel.h>
20 #include <linux/mm.h>
21 #include <linux/elfcore.h>
22 #include <linux/smp.h>
23 #include <linux/smp_lock.h>
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>
30 #include <linux/config.h>
31 #include <linux/version.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/mman.h>
40 #include <linux/random.h>
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>
49 #include <asm/irq.h>
50 #include <asm/desc.h>
51 #ifdef CONFIG_MATH_EMULATION
52 #include <asm/math_emu.h>
53 #endif
54
55 #include <linux/irq.h>
56 #include <linux/err.h>
57
58 asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
59
60 int hlt_counter;
61
62 /*
63  * Return saved PC of a blocked thread.
64  */
65 unsigned long thread_saved_pc(struct task_struct *tsk)
66 {
67         return ((unsigned long *)tsk->thread.esp)[3];
68 }
69
70 /*
71  * Powermanagement idle function, if any..
72  */
73 void (*pm_idle)(void);
74
75 void disable_hlt(void)
76 {
77         hlt_counter++;
78 }
79
80 EXPORT_SYMBOL(disable_hlt);
81
82 void enable_hlt(void)
83 {
84         hlt_counter--;
85 }
86
87 EXPORT_SYMBOL(enable_hlt);
88
89 /*
90  * We use this if we don't have any better
91  * idle routine..
92  */
93 void default_idle(void)
94 {
95         if (!hlt_counter && current_cpu_data.hlt_works_ok) {
96                 local_irq_disable();
97                 if (!need_resched())
98                         safe_halt();
99                 else
100                         local_irq_enable();
101         }
102 }
103
104 /*
105  * On SMP it's slightly faster (but much more power-consuming!)
106  * to poll the ->work.need_resched flag instead of waiting for the
107  * cross-CPU IPI to arrive. Use this option with caution.
108  */
109 static void poll_idle (void)
110 {
111         int oldval;
112
113         local_irq_enable();
114
115         /*
116          * Deal with another CPU just having chosen a thread to
117          * run here:
118          */
119         oldval = test_and_clear_thread_flag(TIF_NEED_RESCHED);
120
121         if (!oldval) {
122                 set_thread_flag(TIF_POLLING_NRFLAG);
123                 asm volatile(
124                         "2:"
125                         "testl %0, %1;"
126                         "rep; nop;"
127                         "je 2b;"
128                         : : "i"(_TIF_NEED_RESCHED), "m" (current_thread_info()->flags));
129
130                 clear_thread_flag(TIF_POLLING_NRFLAG);
131         } else {
132                 set_need_resched();
133         }
134 }
135
136 /*
137  * The idle thread. There's no useful work to be
138  * done, so just try to conserve power and have a
139  * low exit latency (ie sit in a loop waiting for
140  * somebody to say that they'd like to reschedule)
141  */
142 void cpu_idle (void)
143 {
144         /* endless idle loop with no priority at all */
145         while (1) {
146                 while (!need_resched()) {
147                         void (*idle)(void);
148                         /*
149                          * Mark this as an RCU critical section so that
150                          * synchronize_kernel() in the unload path waits
151                          * for our completion.
152                          */
153                         rcu_read_lock();
154                         idle = pm_idle;
155
156                         if (!idle)
157                                 idle = default_idle;
158
159                         irq_stat[smp_processor_id()].idle_timestamp = jiffies;
160                         idle();
161                         rcu_read_unlock();
162                 }
163                 schedule();
164         }
165 }
166
167 /*
168  * This uses new MONITOR/MWAIT instructions on P4 processors with PNI,
169  * which can obviate IPI to trigger checking of need_resched.
170  * We execute MONITOR against need_resched and enter optimized wait state
171  * through MWAIT. Whenever someone changes need_resched, we would be woken
172  * up from MWAIT (without an IPI).
173  */
174 static void mwait_idle(void)
175 {
176         local_irq_enable();
177
178         if (!need_resched()) {
179                 set_thread_flag(TIF_POLLING_NRFLAG);
180                 do {
181                         __monitor((void *)&current_thread_info()->flags, 0, 0);
182                         if (need_resched())
183                                 break;
184                         __mwait(0, 0);
185                 } while (!need_resched());
186                 clear_thread_flag(TIF_POLLING_NRFLAG);
187         }
188 }
189
190 void __init select_idle_routine(const struct cpuinfo_x86 *c)
191 {
192         if (cpu_has(c, X86_FEATURE_MWAIT)) {
193                 printk("monitor/mwait feature present.\n");
194                 /*
195                  * Skip, if setup has overridden idle.
196                  * One CPU supports mwait => All CPUs supports mwait
197                  */
198                 if (!pm_idle) {
199                         printk("using mwait in idle threads.\n");
200                         pm_idle = mwait_idle;
201                 }
202         }
203 }
204
205 static int __init idle_setup (char *str)
206 {
207         if (!strncmp(str, "poll", 4)) {
208                 printk("using polling idle threads.\n");
209                 pm_idle = poll_idle;
210 #ifdef CONFIG_X86_SMP
211                 if (smp_num_siblings > 1)
212                         printk("WARNING: polling idle and HT enabled, performance may degrade.\n");
213 #endif
214         } else if (!strncmp(str, "halt", 4)) {
215                 printk("using halt in idle threads.\n");
216                 pm_idle = default_idle;
217         }
218
219         return 1;
220 }
221
222 __setup("idle=", idle_setup);
223
224 void show_regs(struct pt_regs * regs)
225 {
226         unsigned long cr0 = 0L, cr2 = 0L, cr3 = 0L, cr4 = 0L;
227
228         printk("\n");
229         printk("Pid: %d, comm: %20s\n", current->pid, current->comm);
230         printk("EIP: %04x:[<%08lx>] CPU: %d\n",0xffff & regs->xcs,regs->eip, smp_processor_id());
231         print_symbol("EIP is at %s\n", regs->eip);
232
233         if (regs->xcs & 3)
234                 printk(" ESP: %04x:%08lx",0xffff & regs->xss,regs->esp);
235         printk(" EFLAGS: %08lx    %s  (%s)\n",regs->eflags, print_tainted(),UTS_RELEASE);
236         printk("EAX: %08lx EBX: %08lx ECX: %08lx EDX: %08lx\n",
237                 regs->eax,regs->ebx,regs->ecx,regs->edx);
238         printk("ESI: %08lx EDI: %08lx EBP: %08lx",
239                 regs->esi, regs->edi, regs->ebp);
240         printk(" DS: %04x ES: %04x\n",
241                 0xffff & regs->xds,0xffff & regs->xes);
242
243         __asm__("movl %%cr0, %0": "=r" (cr0));
244         __asm__("movl %%cr2, %0": "=r" (cr2));
245         __asm__("movl %%cr3, %0": "=r" (cr3));
246         /* This could fault if %cr4 does not exist */
247         __asm__("1: movl %%cr4, %0              \n"
248                 "2:                             \n"
249                 ".section __ex_table,\"a\"      \n"
250                 ".long 1b,2b                    \n"
251                 ".previous                      \n"
252                 : "=r" (cr4): "0" (0));
253         printk("CR0: %08lx CR2: %08lx CR3: %08lx CR4: %08lx\n", cr0, cr2, cr3, cr4);
254         show_trace(NULL, &regs->esp);
255 }
256
257 /*
258  * This gets run with %ebx containing the
259  * function to call, and %edx containing
260  * the "args".
261  */
262 extern void kernel_thread_helper(void);
263 __asm__(".section .text\n"
264         ".align 4\n"
265         "kernel_thread_helper:\n\t"
266         "movl %edx,%eax\n\t"
267         "pushl %edx\n\t"
268         "call *%ebx\n\t"
269         "pushl %eax\n\t"
270         "call do_exit\n"
271         ".previous");
272
273 /*
274  * Create a kernel thread
275  */
276 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
277 {
278         struct pt_regs regs;
279
280         memset(&regs, 0, sizeof(regs));
281
282         regs.ebx = (unsigned long) fn;
283         regs.edx = (unsigned long) arg;
284
285         regs.xds = __USER_DS;
286         regs.xes = __USER_DS;
287         regs.orig_eax = -1;
288         regs.eip = (unsigned long) kernel_thread_helper;
289         regs.xcs = __KERNEL_CS;
290         regs.eflags = X86_EFLAGS_IF | X86_EFLAGS_SF | X86_EFLAGS_PF | 0x2;
291
292         /* Ok, create the new process.. */
293         return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
294 }
295
296 /*
297  * Free current thread data structures etc..
298  */
299 void exit_thread(void)
300 {
301         struct task_struct *tsk = current;
302         struct thread_struct *t = &tsk->thread;
303
304         /* The process may have allocated an io port bitmap... nuke it. */
305         if (unlikely(NULL != t->io_bitmap_ptr)) {
306                 int cpu = get_cpu();
307                 struct tss_struct *tss = &per_cpu(init_tss, cpu);
308
309                 kfree(t->io_bitmap_ptr);
310                 t->io_bitmap_ptr = NULL;
311                 /*
312                  * Careful, clear this in the TSS too:
313                  */
314                 memset(tss->io_bitmap, 0xff, tss->io_bitmap_max);
315                 t->io_bitmap_max = 0;
316                 tss->io_bitmap_owner = NULL;
317                 tss->io_bitmap_max = 0;
318                 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
319                 put_cpu();
320         }
321 }
322
323 void flush_thread(void)
324 {
325         struct task_struct *tsk = current;
326
327         memset(tsk->thread.debugreg, 0, sizeof(unsigned long)*8);
328         memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));        
329         /*
330          * Forget coprocessor state..
331          */
332         clear_fpu(tsk);
333         tsk->used_math = 0;
334 }
335
336 void release_thread(struct task_struct *dead_task)
337 {
338         if (dead_task->mm) {
339                 // temporary debugging check
340                 if (dead_task->mm->context.size) {
341                         printk("WARNING: dead process %8s still has LDT? <%p/%d>\n",
342                                         dead_task->comm,
343                                         dead_task->mm->context.ldt,
344                                         dead_task->mm->context.size);
345                         BUG();
346                 }
347         }
348
349         release_x86_irqs(dead_task);
350 }
351
352 /*
353  * This gets called before we allocate a new thread and copy
354  * the current task into it.
355  */
356 void prepare_to_copy(struct task_struct *tsk)
357 {
358         unlazy_fpu(tsk);
359 }
360
361 int copy_thread(int nr, unsigned long clone_flags, unsigned long esp,
362         unsigned long unused,
363         struct task_struct * p, struct pt_regs * regs)
364 {
365         struct pt_regs * childregs;
366         struct task_struct *tsk;
367         int err;
368
369         childregs = ((struct pt_regs *) (THREAD_SIZE + (unsigned long) p->thread_info)) - 1;
370         *childregs = *regs;
371         childregs->eax = 0;
372         childregs->esp = esp;
373         p->set_child_tid = p->clear_child_tid = NULL;
374
375         p->thread.esp = (unsigned long) childregs;
376         p->thread.esp0 = (unsigned long) (childregs+1);
377
378         p->thread.eip = (unsigned long) ret_from_fork;
379
380         savesegment(fs,p->thread.fs);
381         savesegment(gs,p->thread.gs);
382
383         tsk = current;
384         if (unlikely(NULL != tsk->thread.io_bitmap_ptr)) {
385                 p->thread.io_bitmap_ptr = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL);
386                 if (!p->thread.io_bitmap_ptr) {
387                         p->thread.io_bitmap_max = 0;
388                         return -ENOMEM;
389                 }
390                 memcpy(p->thread.io_bitmap_ptr, tsk->thread.io_bitmap_ptr,
391                         IO_BITMAP_BYTES);
392         }
393
394         /*
395          * Set a new TLS for the child thread?
396          */
397         if (clone_flags & CLONE_SETTLS) {
398                 struct desc_struct *desc;
399                 struct user_desc info;
400                 int idx;
401
402                 err = -EFAULT;
403                 if (copy_from_user(&info, (void __user *)childregs->esi, sizeof(info)))
404                         goto out;
405                 err = -EINVAL;
406                 if (LDT_empty(&info))
407                         goto out;
408
409                 idx = info.entry_number;
410                 if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
411                         goto out;
412
413                 desc = p->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
414                 desc->a = LDT_entry_a(&info);
415                 desc->b = LDT_entry_b(&info);
416         }
417
418         err = 0;
419  out:
420         if (err && p->thread.io_bitmap_ptr) {
421                 kfree(p->thread.io_bitmap_ptr);
422                 p->thread.io_bitmap_max = 0;
423         }
424         return err;
425 }
426
427 /*
428  * fill in the user structure for a core dump..
429  */
430 void dump_thread(struct pt_regs * regs, struct user * dump)
431 {
432         int i;
433
434 /* changed the size calculations - should hopefully work better. lbt */
435         dump->magic = CMAGIC;
436         dump->start_code = 0;
437         dump->start_stack = regs->esp & ~(PAGE_SIZE - 1);
438         dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
439         dump->u_dsize = ((unsigned long) (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
440         dump->u_dsize -= dump->u_tsize;
441         dump->u_ssize = 0;
442         for (i = 0; i < 8; i++)
443                 dump->u_debugreg[i] = current->thread.debugreg[i];  
444
445         if (dump->start_stack < TASK_SIZE)
446                 dump->u_ssize = ((unsigned long) (TASK_SIZE - dump->start_stack)) >> PAGE_SHIFT;
447
448         dump->regs.ebx = regs->ebx;
449         dump->regs.ecx = regs->ecx;
450         dump->regs.edx = regs->edx;
451         dump->regs.esi = regs->esi;
452         dump->regs.edi = regs->edi;
453         dump->regs.ebp = regs->ebp;
454         dump->regs.eax = regs->eax;
455         dump->regs.ds = regs->xds;
456         dump->regs.es = regs->xes;
457         savesegment(fs,dump->regs.fs);
458         savesegment(gs,dump->regs.gs);
459         dump->regs.orig_eax = regs->orig_eax;
460         dump->regs.eip = regs->eip;
461         dump->regs.cs = regs->xcs;
462         dump->regs.eflags = regs->eflags;
463         dump->regs.esp = regs->esp;
464         dump->regs.ss = regs->xss;
465
466         dump->u_fpvalid = dump_fpu (regs, &dump->i387);
467 }
468
469 /* 
470  * Capture the user space registers if the task is not running (in user space)
471  */
472 int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
473 {
474         struct pt_regs ptregs;
475         
476         ptregs = *(struct pt_regs *)
477                 ((unsigned long)tsk->thread_info+THREAD_SIZE - sizeof(ptregs));
478         ptregs.xcs &= 0xffff;
479         ptregs.xds &= 0xffff;
480         ptregs.xes &= 0xffff;
481         ptregs.xss &= 0xffff;
482
483         elf_core_copy_regs(regs, &ptregs);
484
485         return 1;
486 }
487
488 static inline void
489 handle_io_bitmap(struct thread_struct *next, struct tss_struct *tss)
490 {
491         if (!next->io_bitmap_ptr) {
492                 /*
493                  * Disable the bitmap via an invalid offset. We still cache
494                  * the previous bitmap owner and the IO bitmap contents:
495                  */
496                 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
497                 return;
498         }
499         if (likely(next == tss->io_bitmap_owner)) {
500                 /*
501                  * Previous owner of the bitmap (hence the bitmap content)
502                  * matches the next task, we dont have to do anything but
503                  * to set a valid offset in the TSS:
504                  */
505                 tss->io_bitmap_base = IO_BITMAP_OFFSET;
506                 return;
507         }
508         /*
509          * Lazy TSS's I/O bitmap copy. We set an invalid offset here
510          * and we let the task to get a GPF in case an I/O instruction
511          * is performed.  The handler of the GPF will verify that the
512          * faulting task has a valid I/O bitmap and, it true, does the
513          * real copy and restart the instruction.  This will save us
514          * redundant copies when the currently switched task does not
515          * perform any I/O during its timeslice.
516          */
517         tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
518 }
519 /*
520  * This special macro can be used to load a debugging register
521  */
522 #define loaddebug(thread,register) \
523                 __asm__("movl %0,%%db" #register  \
524                         : /* no output */ \
525                         :"r" (thread->debugreg[register]))
526
527 /*
528  *      switch_to(x,yn) should switch tasks from x to y.
529  *
530  * We fsave/fwait so that an exception goes off at the right time
531  * (as a call from the fsave or fwait in effect) rather than to
532  * the wrong process. Lazy FP saving no longer makes any sense
533  * with modern CPU's, and this simplifies a lot of things (SMP
534  * and UP become the same).
535  *
536  * NOTE! We used to use the x86 hardware context switching. The
537  * reason for not using it any more becomes apparent when you
538  * try to recover gracefully from saved state that is no longer
539  * valid (stale segment register values in particular). With the
540  * hardware task-switch, there is no way to fix up bad state in
541  * a reasonable manner.
542  *
543  * The fact that Intel documents the hardware task-switching to
544  * be slow is a fairly red herring - this code is not noticeably
545  * faster. However, there _is_ some room for improvement here,
546  * so the performance issues may eventually be a valid point.
547  * More important, however, is the fact that this allows us much
548  * more flexibility.
549  *
550  * The return value (in %eax) will be the "prev" task after
551  * the task-switch, and shows up in ret_from_fork in entry.S,
552  * for example.
553  */
554 struct task_struct fastcall * __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
555 {
556         struct thread_struct *prev = &prev_p->thread,
557                                  *next = &next_p->thread;
558         int cpu = smp_processor_id();
559         struct tss_struct *tss = &per_cpu(init_tss, cpu);
560
561         /* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
562
563         __unlazy_fpu(prev_p);
564         if (next_p->mm)
565                 load_user_cs_desc(cpu, next_p->mm);
566
567         /*
568          * Reload esp0, LDT and the page table pointer:
569          */
570         load_esp0(tss, next);
571
572         /*
573          * Load the per-thread Thread-Local Storage descriptor.
574          */
575         load_TLS(next, cpu);
576
577         /*
578          * Save away %fs and %gs. No need to save %es and %ds, as
579          * those are always kernel segments while inside the kernel.
580          */
581         asm volatile("movl %%fs,%0":"=m" (*(int *)&prev->fs));
582         asm volatile("movl %%gs,%0":"=m" (*(int *)&prev->gs));
583
584         /*
585          * Restore %fs and %gs if needed.
586          */
587         if (unlikely(prev->fs | prev->gs | next->fs | next->gs)) {
588                 loadsegment(fs, next->fs);
589                 loadsegment(gs, next->gs);
590         }
591
592         /*
593          * Now maybe reload the debug registers
594          */
595         if (unlikely(next->debugreg[7])) {
596                 loaddebug(next, 0);
597                 loaddebug(next, 1);
598                 loaddebug(next, 2);
599                 loaddebug(next, 3);
600                 /* no 4 and 5 */
601                 loaddebug(next, 6);
602                 loaddebug(next, 7);
603         }
604
605         if (unlikely(prev->io_bitmap_ptr || next->io_bitmap_ptr))
606                 handle_io_bitmap(next, tss);
607
608         return prev_p;
609 }
610
611 asmlinkage int sys_fork(struct pt_regs regs)
612 {
613         return do_fork(SIGCHLD, regs.esp, &regs, 0, NULL, NULL);
614 }
615
616 asmlinkage int sys_clone(struct pt_regs regs)
617 {
618         unsigned long clone_flags;
619         unsigned long newsp;
620         int __user *parent_tidptr, *child_tidptr;
621
622         clone_flags = regs.ebx;
623         newsp = regs.ecx;
624         parent_tidptr = (int __user *)regs.edx;
625         child_tidptr = (int __user *)regs.edi;
626         if (!newsp)
627                 newsp = regs.esp;
628         return do_fork(clone_flags, newsp, &regs, 0, parent_tidptr, child_tidptr);
629 }
630
631 /*
632  * This is trivial, and on the face of it looks like it
633  * could equally well be done in user mode.
634  *
635  * Not so, for quite unobvious reasons - register pressure.
636  * In user mode vfork() cannot have a stack frame, and if
637  * done by calling the "clone()" system call directly, you
638  * do not have enough call-clobbered registers to hold all
639  * the information you need.
640  */
641 asmlinkage int sys_vfork(struct pt_regs regs)
642 {
643         return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.esp, &regs, 0, NULL, NULL);
644 }
645
646 /*
647  * sys_execve() executes a new program.
648  */
649 asmlinkage int sys_execve(struct pt_regs regs)
650 {
651         int error;
652         char * filename;
653
654         filename = getname((char __user *) regs.ebx);
655         error = PTR_ERR(filename);
656         if (IS_ERR(filename))
657                 goto out;
658         error = do_execve(filename,
659                         (char __user * __user *) regs.ecx,
660                         (char __user * __user *) regs.edx,
661                         &regs);
662         if (error == 0) {
663                 current->ptrace &= ~PT_DTRACE;
664                 /* Make sure we don't return using sysenter.. */
665                 set_thread_flag(TIF_IRET);
666         }
667         putname(filename);
668 out:
669         return error;
670 }
671
672 #define top_esp                (THREAD_SIZE - sizeof(unsigned long))
673 #define top_ebp                (THREAD_SIZE - 2*sizeof(unsigned long))
674
675 unsigned long get_wchan(struct task_struct *p)
676 {
677         unsigned long ebp, esp, eip;
678         unsigned long stack_page;
679         int count = 0;
680         if (!p || p == current || p->state == TASK_RUNNING)
681                 return 0;
682         stack_page = (unsigned long)p->thread_info;
683         esp = p->thread.esp;
684         if (!stack_page || esp < stack_page || esp > top_esp+stack_page)
685                 return 0;
686         /* include/asm-i386/system.h:switch_to() pushes ebp last. */
687         ebp = *(unsigned long *) esp;
688         do {
689                 if (ebp < stack_page || ebp > top_ebp+stack_page)
690                         return 0;
691                 eip = *(unsigned long *) (ebp+4);
692                 if (!in_sched_functions(eip))
693                         return eip;
694                 ebp = *(unsigned long *) ebp;
695         } while (count++ < 16);
696         return 0;
697 }
698
699 /*
700  * sys_alloc_thread_area: get a yet unused TLS descriptor index.
701  */
702 static int get_free_idx(void)
703 {
704         struct thread_struct *t = &current->thread;
705         int idx;
706
707         for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++)
708                 if (desc_empty(t->tls_array + idx))
709                         return idx + GDT_ENTRY_TLS_MIN;
710         return -ESRCH;
711 }
712
713 /*
714  * Set a given TLS descriptor:
715  */
716 asmlinkage int sys_set_thread_area(struct user_desc __user *u_info)
717 {
718         struct thread_struct *t = &current->thread;
719         struct user_desc info;
720         struct desc_struct *desc;
721         int cpu, idx;
722
723         if (copy_from_user(&info, u_info, sizeof(info)))
724                 return -EFAULT;
725         idx = info.entry_number;
726
727         /*
728          * index -1 means the kernel should try to find and
729          * allocate an empty descriptor:
730          */
731         if (idx == -1) {
732                 idx = get_free_idx();
733                 if (idx < 0)
734                         return idx;
735                 if (put_user(idx, &u_info->entry_number))
736                         return -EFAULT;
737         }
738
739         if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
740                 return -EINVAL;
741
742         desc = t->tls_array + idx - GDT_ENTRY_TLS_MIN;
743
744         /*
745          * We must not get preempted while modifying the TLS.
746          */
747         cpu = get_cpu();
748
749         if (LDT_empty(&info)) {
750                 desc->a = 0;
751                 desc->b = 0;
752         } else {
753                 desc->a = LDT_entry_a(&info);
754                 desc->b = LDT_entry_b(&info);
755         }
756         load_TLS(t, cpu);
757
758         put_cpu();
759
760         return 0;
761 }
762
763 /*
764  * Get the current Thread-Local Storage area:
765  */
766
767 #define GET_BASE(desc) ( \
768         (((desc)->a >> 16) & 0x0000ffff) | \
769         (((desc)->b << 16) & 0x00ff0000) | \
770         ( (desc)->b        & 0xff000000)   )
771
772 #define GET_LIMIT(desc) ( \
773         ((desc)->a & 0x0ffff) | \
774          ((desc)->b & 0xf0000) )
775         
776 #define GET_32BIT(desc)         (((desc)->b >> 22) & 1)
777 #define GET_CONTENTS(desc)      (((desc)->b >> 10) & 3)
778 #define GET_WRITABLE(desc)      (((desc)->b >>  9) & 1)
779 #define GET_LIMIT_PAGES(desc)   (((desc)->b >> 23) & 1)
780 #define GET_PRESENT(desc)       (((desc)->b >> 15) & 1)
781 #define GET_USEABLE(desc)       (((desc)->b >> 20) & 1)
782
783 asmlinkage int sys_get_thread_area(struct user_desc __user *u_info)
784 {
785         struct user_desc info;
786         struct desc_struct *desc;
787         int idx;
788
789         if (get_user(idx, &u_info->entry_number))
790                 return -EFAULT;
791         if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
792                 return -EINVAL;
793
794         desc = current->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
795
796         info.entry_number = idx;
797         info.base_addr = GET_BASE(desc);
798         info.limit = GET_LIMIT(desc);
799         info.seg_32bit = GET_32BIT(desc);
800         info.contents = GET_CONTENTS(desc);
801         info.read_exec_only = !GET_WRITABLE(desc);
802         info.limit_in_pages = GET_LIMIT_PAGES(desc);
803         info.seg_not_present = !GET_PRESENT(desc);
804         info.useable = GET_USEABLE(desc);
805
806         if (copy_to_user(u_info, &info, sizeof(info)))
807                 return -EFAULT;
808         return 0;
809 }
810
811
812 unsigned long arch_align_stack(unsigned long sp)
813 {
814         if (current->flags & PF_RELOCEXEC)
815                 sp -= ((get_random_int() % 65536) << 4);
816         return sp & ~0xf;
817 }
818
819
820 void arch_add_exec_range(struct mm_struct *mm, unsigned long limit)
821 {
822         if (limit > mm->context.exec_limit) {
823                 mm->context.exec_limit = limit;
824                 set_user_cs(&mm->context.user_cs, limit);
825                 if (mm == current->mm)
826                         load_user_cs_desc(smp_processor_id(), mm);
827         }
828 }
829
830 void arch_remove_exec_range(struct mm_struct *mm, unsigned long old_end)
831 {
832         struct vm_area_struct *vma;
833         unsigned long limit = 0;
834
835         if (old_end == mm->context.exec_limit) {
836                 for (vma = mm->mmap; vma; vma = vma->vm_next)
837                         if ((vma->vm_flags & VM_EXEC) && (vma->vm_end > limit))
838                                 limit = vma->vm_end;
839
840                 mm->context.exec_limit = limit;
841                 set_user_cs(&mm->context.user_cs, limit);
842                 if (mm == current->mm)
843                         load_user_cs_desc(smp_processor_id(), mm);
844         }
845 }
846
847 void arch_flush_exec_range(struct mm_struct *mm)
848 {
849         mm->context.exec_limit = 0;
850         set_user_cs(&mm->context.user_cs, 0);
851 }
852
853 /*
854  * Generate random brk address between 128MB and 196MB. (if the layout
855  * allows it.)
856  */
857 void randomize_brk(unsigned long old_brk)
858 {
859         unsigned long new_brk, range_start, range_end;
860
861         range_start = 0x08000000;
862         if (current->mm->brk >= range_start)
863                 range_start = current->mm->brk;
864         range_end = range_start + 0x02000000;
865         new_brk = randomize_range(range_start, range_end, 0);
866         if (new_brk)
867                 current->mm->brk = new_brk;
868 }
869