Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[linux-2.6.git] / arch / x86_64 / ia32 / syscall32.c
1 /* Copyright 2002,2003 Andi Kleen, SuSE Labs */
2
3 /* vsyscall handling for 32bit processes. Map a stub page into it 
4    on demand because 32bit cannot reach the kernel's fixmaps */
5
6 #include <linux/mm.h>
7 #include <linux/string.h>
8 #include <linux/kernel.h>
9 #include <linux/gfp.h>
10 #include <linux/init.h>
11 #include <linux/stringify.h>
12 #include <linux/security.h>
13 #include <linux/vs_memory.h>
14 #include <asm/proto.h>
15 #include <asm/tlbflush.h>
16 #include <asm/ia32_unistd.h>
17
18 extern unsigned char syscall32_syscall[], syscall32_syscall_end[];
19 extern unsigned char syscall32_sysenter[], syscall32_sysenter_end[];
20 extern int sysctl_vsyscall32;
21
22 char *syscall32_page; 
23 static int use_sysenter = -1;
24
25 static struct page *
26 syscall32_nopage(struct vm_area_struct *vma, unsigned long adr, int *type)
27 {
28         struct page *p = virt_to_page(adr - vma->vm_start + syscall32_page);
29         get_page(p);
30         return p;
31 }
32
33 /* Prevent VMA merging */
34 static void syscall32_vma_close(struct vm_area_struct *vma)
35 {
36 }
37
38 static struct vm_operations_struct syscall32_vm_ops = {
39         .close = syscall32_vma_close,
40         .nopage = syscall32_nopage,
41 };
42
43 struct linux_binprm;
44
45 /* Setup a VMA at program startup for the vsyscall page */
46 int syscall32_setup_pages(struct linux_binprm *bprm, int exstack,
47                           unsigned long start_code,
48                           unsigned long interp_map_address)
49 {
50         int npages = (VSYSCALL32_END - VSYSCALL32_BASE) >> PAGE_SHIFT;
51         struct vm_area_struct *vma;
52         struct mm_struct *mm = current->mm;
53         int ret;
54
55         vma = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
56         if (!vma)
57                 return -ENOMEM;
58
59         memset(vma, 0, sizeof(struct vm_area_struct));
60         /* Could randomize here */
61         vma->vm_start = VSYSCALL32_BASE;
62         vma->vm_end = VSYSCALL32_END;
63         /* MAYWRITE to allow gdb to COW and set breakpoints */
64         vma->vm_flags = VM_READ|VM_EXEC|VM_MAYREAD|VM_MAYEXEC|VM_MAYWRITE;
65         vma->vm_flags |= mm->def_flags;
66         vma->vm_page_prot = protection_map[vma->vm_flags & 7];
67         vma->vm_ops = &syscall32_vm_ops;
68         vma->vm_mm = mm;
69
70         down_write(&mm->mmap_sem);
71         if ((ret = insert_vm_struct(mm, vma))) {
72                 up_write(&mm->mmap_sem);
73                 kmem_cache_free(vm_area_cachep, vma);
74                 return ret;
75         }
76         vx_vmpages_add(mm, npages);
77         up_write(&mm->mmap_sem);
78         return 0;
79 }
80
81 static int __init init_syscall32(void)
82
83         syscall32_page = (void *)get_zeroed_page(GFP_KERNEL); 
84         if (!syscall32_page) 
85                 panic("Cannot allocate syscall32 page"); 
86         if (use_sysenter > 0) {
87                 memcpy(syscall32_page, syscall32_sysenter,
88                        syscall32_sysenter_end - syscall32_sysenter);
89         } else {
90                 memcpy(syscall32_page, syscall32_syscall,
91                        syscall32_syscall_end - syscall32_syscall);
92         }       
93         return 0;
94
95         
96 __initcall(init_syscall32); 
97
98 /* May not be __init: called during resume */
99 void syscall32_cpu_init(void)
100 {
101         if (use_sysenter < 0)
102                 use_sysenter = (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL);
103
104         /* Load these always in case some future AMD CPU supports
105            SYSENTER from compat mode too. */
106         checking_wrmsrl(MSR_IA32_SYSENTER_CS, (u64)__KERNEL_CS);
107         checking_wrmsrl(MSR_IA32_SYSENTER_ESP, 0ULL);
108         checking_wrmsrl(MSR_IA32_SYSENTER_EIP, (u64)ia32_sysenter_target);
109
110         wrmsrl(MSR_CSTAR, ia32_cstar_target);
111 }