2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
7 #include "linux/sched.h"
8 #include "asm/pgalloc.h"
9 #include "asm/pgtable.h"
13 extern int __syscall_stub_start
;
15 static int init_stub_pte(struct mm_struct
*mm
, unsigned long proc
,
23 pgd
= pgd_offset(mm
, proc
);
24 pud
= pud_alloc(mm
, pgd
, proc
);
28 pmd
= pmd_alloc(mm
, pud
, proc
);
32 pte
= pte_alloc_map(mm
, pmd
, proc
);
37 * There's an interaction between the skas0 stub pages, stack
38 * randomization, and the BUG at the end of exit_mmap. exit_mmap
39 * checks that the number of page tables freed is the same as had
40 * been allocated. If the stack is on the last page table page,
41 * then the stack pte page will be freed, and if not, it won't. To
42 * avoid having to know where the stack is, or if the process mapped
43 * something at the top of its address space for some other reason,
44 * we set TASK_SIZE to end at the start of the last page table.
45 * This keeps exit_mmap off the last page, but introduces a leak
46 * of that page. So, we hang onto it here and free it in
47 * destroy_context_skas.
50 mm
->context
.last_page_table
= pmd_page_vaddr(*pmd
);
51 #ifdef CONFIG_3_LEVEL_PGTABLES
52 mm
->context
.last_pmd
= (unsigned long) __va(pud_val(*pud
));
55 *pte
= mk_pte(virt_to_page(kernel
), __pgprot(_PAGE_PRESENT
));
56 *pte
= pte_mkread(*pte
);
67 int init_new_context(struct task_struct
*task
, struct mm_struct
*mm
)
69 struct mm_context
*from_mm
= NULL
;
70 struct mm_context
*to_mm
= &mm
->context
;
71 unsigned long stack
= 0;
74 if (skas_needs_stub
) {
75 stack
= get_zeroed_page(GFP_KERNEL
);
80 * This zeros the entry that pgd_alloc didn't, needed since
81 * we are about to reinitialize it, and want mm.nr_ptes to
84 mm
->pgd
[USER_PTRS_PER_PGD
] = __pgd(0);
86 ret
= init_stub_pte(mm
, CONFIG_STUB_CODE
,
87 (unsigned long) &__syscall_stub_start
);
91 ret
= init_stub_pte(mm
, CONFIG_STUB_DATA
, stack
);
98 to_mm
->id
.stack
= stack
;
99 if (current
->mm
!= NULL
&& current
->mm
!= &init_mm
)
100 from_mm
= ¤t
->mm
->context
;
105 printk(KERN_ERR
"init_new_context_skas - "
106 "new_mm failed, errno = %d\n", ret
);
109 to_mm
->id
.u
.mm_fd
= ret
;
113 to_mm
->id
.u
.pid
= copy_context_skas0(stack
,
115 else to_mm
->id
.u
.pid
= start_userspace(stack
);
118 ret
= init_new_ldt(to_mm
, from_mm
);
120 printk(KERN_ERR
"init_new_context_skas - init_ldt"
121 " failed, errno = %d\n", ret
);
128 if (to_mm
->id
.stack
!= 0)
129 free_page(to_mm
->id
.stack
);
134 void destroy_context(struct mm_struct
*mm
)
136 struct mm_context
*mmu
= &mm
->context
;
139 os_close_file(mmu
->id
.u
.mm_fd
);
141 os_kill_ptraced_process(mmu
->id
.u
.pid
, 1);
143 if (!proc_mm
|| !ptrace_faultinfo
) {
144 free_page(mmu
->id
.stack
);
145 pte_lock_deinit(virt_to_page(mmu
->last_page_table
));
146 pte_free_kernel((pte_t
*) mmu
->last_page_table
);
147 dec_zone_page_state(virt_to_page(mmu
->last_page_table
), NR_PAGETABLE
);
148 #ifdef CONFIG_3_LEVEL_PGTABLES
149 pmd_free((pmd_t
*) mmu
->last_pmd
);