blob: c39938d1332f1f4756379e0e1f72bebb8a87c8b8 [file] [log] [blame]
Andi Kleen2aae9502007-07-21 17:10:01 +02001/*
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
5 */
6#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04007#include <linux/err.h>
Andi Kleen2aae9502007-07-21 17:10:01 +02008#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020010#include <linux/init.h>
11#include <linux/random.h>
Jaswinder Singh Rajput3fa89ca2009-04-12 20:37:25 +053012#include <linux/elf.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020013#include <asm/vsyscall.h>
14#include <asm/vgtod.h>
15#include <asm/proto.h>
Roland McGrath7f3646a2008-01-30 13:30:41 +010016#include <asm/vdso.h>
17
OGAWA Hirofumie6b0ede2008-05-12 15:43:38 +020018unsigned int __read_mostly vdso_enabled = 1;
Andi Kleen2aae9502007-07-21 17:10:01 +020019
Roland McGrath7f3646a2008-01-30 13:30:41 +010020extern char vdso_start[], vdso_end[];
Andi Kleen2aae9502007-07-21 17:10:01 +020021extern unsigned short vdso_sync_cpuid;
22
Jan Beulich369c9922008-07-18 13:37:53 +010023static struct page **vdso_pages;
24static unsigned vdso_size;
Andi Kleen2aae9502007-07-21 17:10:01 +020025
Andy Lutomirski1b3f2a72011-07-13 09:24:11 -040026static void __init patch_vdso(void *vdso, size_t len)
27{
28 Elf64_Ehdr *hdr = vdso;
29 Elf64_Shdr *sechdrs, *alt_sec = 0;
30 char *secstrings;
31 void *alt_data;
32 int i;
33
34 BUG_ON(len < sizeof(Elf64_Ehdr));
35 BUG_ON(memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0);
36
37 sechdrs = (void *)hdr + hdr->e_shoff;
38 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
39
40 for (i = 1; i < hdr->e_shnum; i++) {
41 Elf64_Shdr *shdr = &sechdrs[i];
42 if (!strcmp(secstrings + shdr->sh_name, ".altinstructions")) {
43 alt_sec = shdr;
44 goto found;
45 }
46 }
47
48 /* If we get here, it's probably a bug. */
49 pr_warning("patch_vdso: .altinstructions not found\n");
50 return; /* nothing to patch */
51
52found:
53 alt_data = (void *)hdr + alt_sec->sh_offset;
54 apply_alternatives(alt_data, alt_data + alt_sec->sh_size);
55}
56
Andi Kleen2aae9502007-07-21 17:10:01 +020057static int __init init_vdso_vars(void)
58{
59 int npages = (vdso_end - vdso_start + PAGE_SIZE - 1) / PAGE_SIZE;
60 int i;
Andi Kleen2aae9502007-07-21 17:10:01 +020061
Andy Lutomirski1b3f2a72011-07-13 09:24:11 -040062 patch_vdso(vdso_start, vdso_end - vdso_start);
63
Jan Beulich369c9922008-07-18 13:37:53 +010064 vdso_size = npages << PAGE_SHIFT;
Andi Kleen2aae9502007-07-21 17:10:01 +020065 vdso_pages = kmalloc(sizeof(struct page *) * npages, GFP_KERNEL);
66 if (!vdso_pages)
67 goto oom;
68 for (i = 0; i < npages; i++) {
69 struct page *p;
70 p = alloc_page(GFP_KERNEL);
71 if (!p)
72 goto oom;
73 vdso_pages[i] = p;
74 copy_page(page_address(p), vdso_start + i*PAGE_SIZE);
75 }
76
Andi Kleen2aae9502007-07-21 17:10:01 +020077 return 0;
78
79 oom:
80 printk("Cannot allocate vdso\n");
81 vdso_enabled = 0;
82 return -ENOMEM;
83}
Jiri Slabyd7a03802010-06-16 22:30:42 +020084subsys_initcall(init_vdso_vars);
Andi Kleen2aae9502007-07-21 17:10:01 +020085
86struct linux_binprm;
87
88/* Put the vdso above the (randomized) stack with another randomized offset.
89 This way there is no hole in the middle of address space.
90 To save memory make sure it is still in the same PTE as the stack top.
91 This doesn't give that many random bits */
92static unsigned long vdso_addr(unsigned long start, unsigned len)
93{
94 unsigned long addr, end;
95 unsigned offset;
96 end = (start + PMD_SIZE - 1) & PMD_MASK;
Ingo Molnard9517342009-02-20 23:32:28 +010097 if (end >= TASK_SIZE_MAX)
98 end = TASK_SIZE_MAX;
Andi Kleen2aae9502007-07-21 17:10:01 +020099 end -= len;
100 /* This loses some more bits than a modulo, but is cheaper */
101 offset = get_random_int() & (PTRS_PER_PTE - 1);
102 addr = start + (offset << PAGE_SHIFT);
103 if (addr >= end)
104 addr = end;
105 return addr;
106}
107
108/* Setup a VMA at program startup for the vsyscall page.
109 Not called for compat tasks */
Martin Schwidefskyfc5243d2008-12-25 13:38:35 +0100110int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
Andi Kleen2aae9502007-07-21 17:10:01 +0200111{
112 struct mm_struct *mm = current->mm;
113 unsigned long addr;
114 int ret;
Andi Kleen2aae9502007-07-21 17:10:01 +0200115
116 if (!vdso_enabled)
117 return 0;
118
119 down_write(&mm->mmap_sem);
Jan Beulich369c9922008-07-18 13:37:53 +0100120 addr = vdso_addr(mm->start_stack, vdso_size);
121 addr = get_unmapped_area(NULL, addr, vdso_size, 0, 0);
Andi Kleen2aae9502007-07-21 17:10:01 +0200122 if (IS_ERR_VALUE(addr)) {
123 ret = addr;
124 goto up_fail;
125 }
126
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200127 current->mm->context.vdso = (void *)addr;
128
Jan Beulich369c9922008-07-18 13:37:53 +0100129 ret = install_special_mapping(mm, addr, vdso_size,
Andi Kleen2aae9502007-07-21 17:10:01 +0200130 VM_READ|VM_EXEC|
131 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC|
132 VM_ALWAYSDUMP,
133 vdso_pages);
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200134 if (ret) {
135 current->mm->context.vdso = NULL;
Andi Kleen2aae9502007-07-21 17:10:01 +0200136 goto up_fail;
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200137 }
Andi Kleen2aae9502007-07-21 17:10:01 +0200138
Andi Kleen2aae9502007-07-21 17:10:01 +0200139up_fail:
140 up_write(&mm->mmap_sem);
141 return ret;
142}
143
144static __init int vdso_setup(char *s)
145{
146 vdso_enabled = simple_strtoul(s, NULL, 0);
147 return 0;
148}
149__setup("vdso=", vdso_setup);