2 * Set up the VMAs to tell the VM about the vDSO.
3 * Copyright 2007 Andi Kleen, SUSE Labs.
4 * Subject to the GPL, v.2
8 #include <linux/sched.h>
9 #include <linux/slab.h>
10 #include <linux/init.h>
11 #include <linux/random.h>
12 #include <linux/elf.h>
13 #include <asm/vsyscall.h>
14 #include <asm/vgtod.h>
15 #include <asm/proto.h>
18 unsigned int __read_mostly vdso_enabled
= 1;
20 extern char vdso_start
[], vdso_end
[];
21 extern unsigned short vdso_sync_cpuid
;
23 static struct page
**vdso_pages
;
24 static unsigned vdso_size
;
26 static int __init
init_vdso_vars(void)
28 int npages
= (vdso_end
- vdso_start
+ PAGE_SIZE
- 1) / PAGE_SIZE
;
31 vdso_size
= npages
<< PAGE_SHIFT
;
32 vdso_pages
= kmalloc(sizeof(struct page
*) * npages
, GFP_KERNEL
);
35 for (i
= 0; i
< npages
; i
++) {
37 p
= alloc_page(GFP_KERNEL
);
41 copy_page(page_address(p
), vdso_start
+ i
*PAGE_SIZE
);
47 printk("Cannot allocate vdso\n");
51 subsys_initcall(init_vdso_vars
);
55 /* Put the vdso above the (randomized) stack with another randomized offset.
56 This way there is no hole in the middle of address space.
57 To save memory make sure it is still in the same PTE as the stack top.
58 This doesn't give that many random bits */
59 static unsigned long vdso_addr(unsigned long start
, unsigned len
)
61 unsigned long addr
, end
;
63 end
= (start
+ PMD_SIZE
- 1) & PMD_MASK
;
64 if (end
>= TASK_SIZE_MAX
)
67 /* This loses some more bits than a modulo, but is cheaper */
68 offset
= get_random_int() & (PTRS_PER_PTE
- 1);
69 addr
= start
+ (offset
<< PAGE_SHIFT
);
75 /* Setup a VMA at program startup for the vsyscall page.
76 Not called for compat tasks */
77 int arch_setup_additional_pages(struct linux_binprm
*bprm
, int uses_interp
)
79 struct mm_struct
*mm
= current
->mm
;
86 down_write(&mm
->mmap_sem
);
87 addr
= vdso_addr(mm
->start_stack
, vdso_size
);
88 addr
= get_unmapped_area(NULL
, addr
, vdso_size
, 0, 0);
89 if (IS_ERR_VALUE(addr
)) {
94 current
->mm
->context
.vdso
= (void *)addr
;
96 ret
= install_special_mapping(mm
, addr
, vdso_size
,
98 VM_MAYREAD
|VM_MAYWRITE
|VM_MAYEXEC
|
102 current
->mm
->context
.vdso
= NULL
;
107 up_write(&mm
->mmap_sem
);
111 static __init
int vdso_setup(char *s
)
113 vdso_enabled
= simple_strtoul(s
, NULL
, 0);
116 __setup("vdso=", vdso_setup
);