Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / arch / um / kernel / skas / mmu.c
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/sched.h"
7 #include "linux/list.h"
8 #include "linux/spinlock.h"
9 #include "linux/slab.h"
10 #include "linux/errno.h"
11 #include "linux/mm.h"
12 #include "asm/current.h"
13 #include "asm/segment.h"
14 #include "asm/mmu.h"
15 #include "asm/pgalloc.h"
16 #include "asm/pgtable.h"
17 #include "asm/ldt.h"
18 #include "os.h"
19 #include "skas.h"
20
21 extern int __syscall_stub_start;
22
23 static int init_stub_pte(struct mm_struct *mm, unsigned long proc,
24                          unsigned long kernel)
25 {
26         pgd_t *pgd;
27         pud_t *pud;
28         pmd_t *pmd;
29         pte_t *pte;
30
31         pgd = pgd_offset(mm, proc);
32         pud = pud_alloc(mm, pgd, proc);
33         if (!pud)
34                 goto out;
35
36         pmd = pmd_alloc(mm, pud, proc);
37         if (!pmd)
38                 goto out_pmd;
39
40         pte = pte_alloc_map(mm, pmd, proc);
41         if (!pte)
42                 goto out_pte;
43
44         /* There's an interaction between the skas0 stub pages, stack
45          * randomization, and the BUG at the end of exit_mmap.  exit_mmap
46          * checks that the number of page tables freed is the same as had
47          * been allocated.  If the stack is on the last page table page,
48          * then the stack pte page will be freed, and if not, it won't.  To
49          * avoid having to know where the stack is, or if the process mapped
50          * something at the top of its address space for some other reason,
51          * we set TASK_SIZE to end at the start of the last page table.
52          * This keeps exit_mmap off the last page, but introduces a leak
53          * of that page.  So, we hang onto it here and free it in
54          * destroy_context_skas.
55          */
56
57         mm->context.skas.last_page_table = pmd_page_kernel(*pmd);
58 #ifdef CONFIG_3_LEVEL_PGTABLES
59         mm->context.skas.last_pmd = (unsigned long) __va(pud_val(*pud));
60 #endif
61
62         *pte = mk_pte(virt_to_page(kernel), __pgprot(_PAGE_PRESENT));
63         *pte = pte_mkexec(*pte);
64         *pte = pte_wrprotect(*pte);
65         return(0);
66
67  out_pmd:
68         pud_free(pud);
69  out_pte:
70         pmd_free(pmd);
71  out:
72         return(-ENOMEM);
73 }
74
75 int init_new_context_skas(struct task_struct *task, struct mm_struct *mm)
76 {
77         struct mmu_context_skas *from_mm = NULL;
78         struct mmu_context_skas *to_mm = &mm->context.skas;
79         unsigned long stack = 0;
80         int ret = -ENOMEM;
81
82         if(skas_needs_stub){
83                 stack = get_zeroed_page(GFP_KERNEL);
84                 if(stack == 0)
85                         goto out;
86
87                 /* This zeros the entry that pgd_alloc didn't, needed since
88                  * we are about to reinitialize it, and want mm.nr_ptes to
89                  * be accurate.
90                  */
91                 mm->pgd[USER_PTRS_PER_PGD] = __pgd(0);
92
93                 ret = init_stub_pte(mm, CONFIG_STUB_CODE,
94                                     (unsigned long) &__syscall_stub_start);
95                 if(ret)
96                         goto out_free;
97
98                 ret = init_stub_pte(mm, CONFIG_STUB_DATA, stack);
99                 if(ret)
100                         goto out_free;
101
102                 mm->nr_ptes--;
103         }
104
105         to_mm->id.stack = stack;
106         if(current->mm != NULL && current->mm != &init_mm)
107                 from_mm = &current->mm->context.skas;
108
109         if(proc_mm){
110                 ret = new_mm(stack);
111                 if(ret < 0){
112                         printk("init_new_context_skas - new_mm failed, "
113                                "errno = %d\n", ret);
114                         goto out_free;
115                 }
116                 to_mm->id.u.mm_fd = ret;
117         }
118         else {
119                 if(from_mm)
120                         to_mm->id.u.pid = copy_context_skas0(stack,
121                                                              from_mm->id.u.pid);
122                 else to_mm->id.u.pid = start_userspace(stack);
123         }
124
125         ret = init_new_ldt(to_mm, from_mm);
126         if(ret < 0){
127                 printk("init_new_context_skas - init_ldt"
128                        " failed, errno = %d\n", ret);
129                 goto out_free;
130         }
131
132         return 0;
133
134  out_free:
135         if(to_mm->id.stack != 0)
136                 free_page(to_mm->id.stack);
137  out:
138         return ret;
139 }
140
141 void destroy_context_skas(struct mm_struct *mm)
142 {
143         struct mmu_context_skas *mmu = &mm->context.skas;
144
145         if(proc_mm)
146                 os_close_file(mmu->id.u.mm_fd);
147         else
148                 os_kill_ptraced_process(mmu->id.u.pid, 1);
149
150         if(!proc_mm || !ptrace_faultinfo){
151                 free_page(mmu->id.stack);
152                 pte_lock_deinit(virt_to_page(mmu->last_page_table));
153                 pte_free_kernel((pte_t *) mmu->last_page_table);
154                 dec_zone_page_state(virt_to_page(mmu->last_page_table), NR_PAGETABLE);
155 #ifdef CONFIG_3_LEVEL_PGTABLES
156                 pmd_free((pmd_t *) mmu->last_pmd);
157 #endif
158         }
159 }