blob: e2af8eee80e35b2915c461b469be6c0a4eb0f804 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright 2002 Linus Torvalds
Ingo Molnare6e54942006-06-27 02:53:50 -07003 * Portions based on the vdso-randomization code from exec-shield:
4 * Copyright(C) 2005-2006, Red Hat, Inc., Ingo Molnar
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This file contains the needed initializations to support sysenter.
7 */
8
9#include <linux/init.h>
10#include <linux/smp.h>
11#include <linux/thread_info.h>
12#include <linux/sched.h>
13#include <linux/gfp.h>
14#include <linux/string.h>
15#include <linux/elf.h>
Ingo Molnare6e54942006-06-27 02:53:50 -070016#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040017#include <linux/err.h>
Ingo Molnare6e54942006-06-27 02:53:50 -070018#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/cpufeature.h>
21#include <asm/msr.h>
22#include <asm/pgtable.h>
23#include <asm/unistd.h>
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +020024#include <asm/elf.h>
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +020025#include <asm/tlbflush.h>
Roland McGrath6c3652e2008-01-30 13:30:42 +010026#include <asm/vdso.h>
Roland McGrathaf65d642008-01-30 13:30:43 +010027#include <asm/proto.h>
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +020028
29enum {
30 VDSO_DISABLED = 0,
31 VDSO_ENABLED = 1,
32 VDSO_COMPAT = 2,
33};
34
35#ifdef CONFIG_COMPAT_VDSO
36#define VDSO_DEFAULT VDSO_COMPAT
37#else
38#define VDSO_DEFAULT VDSO_ENABLED
39#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Roland McGrathaf65d642008-01-30 13:30:43 +010041#ifdef CONFIG_X86_64
42#define vdso_enabled sysctl_vsyscall32
43#define arch_setup_additional_pages syscall32_setup_pages
44#endif
45
46/*
47 * This is the difference between the prelinked addresses in the vDSO images
48 * and the VDSO_HIGH_BASE address where CONFIG_COMPAT_VDSO places the vDSO
49 * in the user address space.
50 */
51#define VDSO_ADDR_ADJUST (VDSO_HIGH_BASE - (unsigned long)VDSO32_PRELINK)
52
Ingo Molnare6e54942006-06-27 02:53:50 -070053/*
54 * Should the kernel map a VDSO page into processes and pass its
55 * address down to glibc upon exec()?
56 */
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +020057unsigned int __read_mostly vdso_enabled = VDSO_DEFAULT;
Ingo Molnare6e54942006-06-27 02:53:50 -070058
Ingo Molnare6e54942006-06-27 02:53:50 -070059static int __init vdso_setup(char *s)
60{
61 vdso_enabled = simple_strtoul(s, NULL, 0);
62
63 return 1;
64}
65
Roland McGrathaf65d642008-01-30 13:30:43 +010066/*
67 * For consistency, the argument vdso32=[012] affects the 32-bit vDSO
68 * behavior on both 64-bit and 32-bit kernels.
69 * On 32-bit kernels, vdso=[012] means the same thing.
70 */
71__setup("vdso32=", vdso_setup);
Ingo Molnare6e54942006-06-27 02:53:50 -070072
Roland McGrathaf65d642008-01-30 13:30:43 +010073#ifdef CONFIG_X86_32
74__setup_param("vdso=", vdso32_setup, vdso_setup, 0);
75
76EXPORT_SYMBOL_GPL(vdso_enabled);
77#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +020079static __init void reloc_symtab(Elf32_Ehdr *ehdr,
80 unsigned offset, unsigned size)
81{
82 Elf32_Sym *sym = (void *)ehdr + offset;
83 unsigned nsym = size / sizeof(*sym);
84 unsigned i;
85
86 for(i = 0; i < nsym; i++, sym++) {
87 if (sym->st_shndx == SHN_UNDEF ||
88 sym->st_shndx == SHN_ABS)
89 continue; /* skip */
90
91 if (sym->st_shndx > SHN_LORESERVE) {
92 printk(KERN_INFO "VDSO: unexpected st_shndx %x\n",
93 sym->st_shndx);
94 continue;
95 }
96
97 switch(ELF_ST_TYPE(sym->st_info)) {
98 case STT_OBJECT:
99 case STT_FUNC:
100 case STT_SECTION:
101 case STT_FILE:
Roland McGrathaf65d642008-01-30 13:30:43 +0100102 sym->st_value += VDSO_ADDR_ADJUST;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200103 }
104 }
105}
106
107static __init void reloc_dyn(Elf32_Ehdr *ehdr, unsigned offset)
108{
109 Elf32_Dyn *dyn = (void *)ehdr + offset;
110
111 for(; dyn->d_tag != DT_NULL; dyn++)
112 switch(dyn->d_tag) {
113 case DT_PLTGOT:
114 case DT_HASH:
115 case DT_STRTAB:
116 case DT_SYMTAB:
117 case DT_RELA:
118 case DT_INIT:
119 case DT_FINI:
120 case DT_REL:
121 case DT_DEBUG:
122 case DT_JMPREL:
123 case DT_VERSYM:
124 case DT_VERDEF:
125 case DT_VERNEED:
126 case DT_ADDRRNGLO ... DT_ADDRRNGHI:
127 /* definitely pointers needing relocation */
Roland McGrathaf65d642008-01-30 13:30:43 +0100128 dyn->d_un.d_ptr += VDSO_ADDR_ADJUST;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200129 break;
130
131 case DT_ENCODING ... OLD_DT_LOOS-1:
132 case DT_LOOS ... DT_HIOS-1:
133 /* Tags above DT_ENCODING are pointers if
134 they're even */
135 if (dyn->d_tag >= DT_ENCODING &&
136 (dyn->d_tag & 1) == 0)
Roland McGrathaf65d642008-01-30 13:30:43 +0100137 dyn->d_un.d_ptr += VDSO_ADDR_ADJUST;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200138 break;
139
140 case DT_VERDEFNUM:
141 case DT_VERNEEDNUM:
142 case DT_FLAGS_1:
143 case DT_RELACOUNT:
144 case DT_RELCOUNT:
145 case DT_VALRNGLO ... DT_VALRNGHI:
146 /* definitely not pointers */
147 break;
148
149 case OLD_DT_LOOS ... DT_LOOS-1:
150 case DT_HIOS ... DT_VALRNGLO-1:
151 default:
152 if (dyn->d_tag > DT_ENCODING)
153 printk(KERN_INFO "VDSO: unexpected DT_tag %x\n",
154 dyn->d_tag);
155 break;
156 }
157}
158
159static __init void relocate_vdso(Elf32_Ehdr *ehdr)
160{
161 Elf32_Phdr *phdr;
162 Elf32_Shdr *shdr;
163 int i;
164
165 BUG_ON(memcmp(ehdr->e_ident, ELFMAG, 4) != 0 ||
Roland McGrathaf65d642008-01-30 13:30:43 +0100166 !elf_check_arch_ia32(ehdr) ||
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200167 ehdr->e_type != ET_DYN);
168
Roland McGrathaf65d642008-01-30 13:30:43 +0100169 ehdr->e_entry += VDSO_ADDR_ADJUST;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200170
171 /* rebase phdrs */
172 phdr = (void *)ehdr + ehdr->e_phoff;
173 for (i = 0; i < ehdr->e_phnum; i++) {
Roland McGrathaf65d642008-01-30 13:30:43 +0100174 phdr[i].p_vaddr += VDSO_ADDR_ADJUST;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200175
176 /* relocate dynamic stuff */
177 if (phdr[i].p_type == PT_DYNAMIC)
178 reloc_dyn(ehdr, phdr[i].p_offset);
179 }
180
181 /* rebase sections */
182 shdr = (void *)ehdr + ehdr->e_shoff;
183 for(i = 0; i < ehdr->e_shnum; i++) {
184 if (!(shdr[i].sh_flags & SHF_ALLOC))
185 continue;
186
Roland McGrathaf65d642008-01-30 13:30:43 +0100187 shdr[i].sh_addr += VDSO_ADDR_ADJUST;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200188
189 if (shdr[i].sh_type == SHT_SYMTAB ||
190 shdr[i].sh_type == SHT_DYNSYM)
191 reloc_symtab(ehdr, shdr[i].sh_offset,
192 shdr[i].sh_size);
193 }
194}
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200195
Roland McGrathaf65d642008-01-30 13:30:43 +0100196/*
197 * These symbols are defined by vdso32.S to mark the bounds
198 * of the ELF DSO images included therein.
199 */
200extern const char vdso32_default_start, vdso32_default_end;
201extern const char vdso32_sysenter_start, vdso32_sysenter_end;
202static struct page *vdso32_pages[1];
203
204#ifdef CONFIG_X86_64
205
206static int use_sysenter __read_mostly = -1;
207
208#define vdso32_sysenter() (use_sysenter > 0)
209
210/* May not be __init: called during resume */
211void syscall32_cpu_init(void)
212{
Dave Jones0e03eb82008-03-26 12:09:16 -0400213 if (use_sysenter < 0) {
214 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
215 use_sysenter = 1;
216 if (boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR)
217 use_sysenter = 1;
218 }
Roland McGrathaf65d642008-01-30 13:30:43 +0100219
220 /* Load these always in case some future AMD CPU supports
221 SYSENTER from compat mode too. */
222 checking_wrmsrl(MSR_IA32_SYSENTER_CS, (u64)__KERNEL_CS);
223 checking_wrmsrl(MSR_IA32_SYSENTER_ESP, 0ULL);
224 checking_wrmsrl(MSR_IA32_SYSENTER_EIP, (u64)ia32_sysenter_target);
225
226 wrmsrl(MSR_CSTAR, ia32_cstar_target);
227}
228
229#define compat_uses_vma 1
230
231static inline void map_compat_vdso(int map)
232{
233}
234
235#else /* CONFIG_X86_32 */
236
237#define vdso32_sysenter() (boot_cpu_has(X86_FEATURE_SEP))
238
Li Shaohua6fe940d2005-06-25 14:54:53 -0700239void enable_sep_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 int cpu = get_cpu();
242 struct tss_struct *tss = &per_cpu(init_tss, cpu);
243
Li Shaohua6fe940d2005-06-25 14:54:53 -0700244 if (!boot_cpu_has(X86_FEATURE_SEP)) {
245 put_cpu();
246 return;
247 }
248
Rusty Russella75c54f2007-05-02 19:27:13 +0200249 tss->x86_tss.ss1 = __KERNEL_CS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100250 tss->x86_tss.sp1 = sizeof(struct tss_struct) + (unsigned long) tss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 wrmsr(MSR_IA32_SYSENTER_CS, __KERNEL_CS, 0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100252 wrmsr(MSR_IA32_SYSENTER_ESP, tss->x86_tss.sp1, 0);
Roland McGrath0aa97fb222008-01-30 13:30:43 +0100253 wrmsr(MSR_IA32_SYSENTER_EIP, (unsigned long) ia32_sysenter_target, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 put_cpu();
255}
256
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200257static struct vm_area_struct gate_vma;
258
259static int __init gate_vma_init(void)
260{
261 gate_vma.vm_mm = NULL;
262 gate_vma.vm_start = FIXADDR_USER_START;
263 gate_vma.vm_end = FIXADDR_USER_END;
264 gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC;
265 gate_vma.vm_page_prot = __P101;
266 /*
267 * Make sure the vDSO gets into every core dump.
268 * Dumping its contents makes post-mortem fully interpretable later
269 * without matching up the same kernel and hardware config to see
270 * what PC values meant.
271 */
272 gate_vma.vm_flags |= VM_ALWAYSDUMP;
273 return 0;
274}
275
Roland McGrathaf65d642008-01-30 13:30:43 +0100276#define compat_uses_vma 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200278static void map_compat_vdso(int map)
279{
280 static int vdso_mapped;
281
282 if (map == vdso_mapped)
283 return;
284
285 vdso_mapped = map;
286
Roland McGrathaf65d642008-01-30 13:30:43 +0100287 __set_fixmap(FIX_VDSO, page_to_pfn(vdso32_pages[0]) << PAGE_SHIFT,
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200288 map ? PAGE_READONLY_EXEC : PAGE_NONE);
289
290 /* flush stray tlbs */
291 flush_tlb_all();
292}
293
Roland McGrathaf65d642008-01-30 13:30:43 +0100294#endif /* CONFIG_X86_64 */
295
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200296int __init sysenter_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Roland McGrath7d91d532007-02-08 14:20:42 -0800298 void *syscall_page = (void *)get_zeroed_page(GFP_ATOMIC);
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200299 const void *vsyscall;
300 size_t vsyscall_len;
301
Roland McGrathaf65d642008-01-30 13:30:43 +0100302 vdso32_pages[0] = virt_to_page(syscall_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Roland McGrathaf65d642008-01-30 13:30:43 +0100304#ifdef CONFIG_X86_32
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200305 gate_vma_init();
306
Ingo Molnare6e54942006-06-27 02:53:50 -0700307 printk("Compat vDSO mapped to %08lx.\n", __fix_to_virt(FIX_VDSO));
Roland McGrathaf65d642008-01-30 13:30:43 +0100308#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Roland McGrathaf65d642008-01-30 13:30:43 +0100310 if (!vdso32_sysenter()) {
311 vsyscall = &vdso32_default_start;
312 vsyscall_len = &vdso32_default_end - &vdso32_default_start;
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200313 } else {
Roland McGrathaf65d642008-01-30 13:30:43 +0100314 vsyscall = &vdso32_sysenter_start;
315 vsyscall_len = &vdso32_sysenter_end - &vdso32_sysenter_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
Jeremy Fitzhardinged4f7a2c2007-05-02 19:27:12 +0200318 memcpy(syscall_page, vsyscall, vsyscall_len);
319 relocate_vdso(syscall_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
322}
Ingo Molnare6e54942006-06-27 02:53:50 -0700323
Ingo Molnare6e54942006-06-27 02:53:50 -0700324/* Setup a VMA at program startup for the vsyscall page */
325int arch_setup_additional_pages(struct linux_binprm *bprm, int exstack)
326{
Ingo Molnare6e54942006-06-27 02:53:50 -0700327 struct mm_struct *mm = current->mm;
328 unsigned long addr;
Zachary Amsden752783c2007-05-02 19:27:16 +0200329 int ret = 0;
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200330 bool compat;
Ingo Molnare6e54942006-06-27 02:53:50 -0700331
Roland McGrath5de253c2008-04-09 01:30:06 -0700332 if (vdso_enabled == VDSO_DISABLED)
333 return 0;
334
Ingo Molnare6e54942006-06-27 02:53:50 -0700335 down_write(&mm->mmap_sem);
Ingo Molnare6e54942006-06-27 02:53:50 -0700336
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200337 /* Test compat mode once here, in case someone
338 changes it via sysctl */
339 compat = (vdso_enabled == VDSO_COMPAT);
340
341 map_compat_vdso(compat);
342
343 if (compat)
344 addr = VDSO_HIGH_BASE;
345 else {
346 addr = get_unmapped_area(NULL, 0, PAGE_SIZE, 0, 0);
347 if (IS_ERR_VALUE(addr)) {
348 ret = addr;
349 goto up_fail;
350 }
Roland McGrathaf65d642008-01-30 13:30:43 +0100351 }
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200352
Roland McGrathaf65d642008-01-30 13:30:43 +0100353 if (compat_uses_vma || !compat) {
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200354 /*
355 * MAYWRITE to allow gdb to COW and set breakpoints
356 *
357 * Make sure the vDSO gets into every core dump.
358 * Dumping its contents makes post-mortem fully
359 * interpretable later without matching up the same
360 * kernel and hardware config to see what PC values
361 * meant.
362 */
363 ret = install_special_mapping(mm, addr, PAGE_SIZE,
364 VM_READ|VM_EXEC|
365 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC|
366 VM_ALWAYSDUMP,
Roland McGrathaf65d642008-01-30 13:30:43 +0100367 vdso32_pages);
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200368
369 if (ret)
370 goto up_fail;
371 }
Ingo Molnare6e54942006-06-27 02:53:50 -0700372
373 current->mm->context.vdso = (void *)addr;
374 current_thread_info()->sysenter_return =
Roland McGrath6c3652e2008-01-30 13:30:42 +0100375 VDSO32_SYMBOL(addr, SYSENTER_RETURN);
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200376
377 up_fail:
Ingo Molnare6e54942006-06-27 02:53:50 -0700378 up_write(&mm->mmap_sem);
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200379
Ingo Molnare6e54942006-06-27 02:53:50 -0700380 return ret;
Ingo Molnare6e54942006-06-27 02:53:50 -0700381}
382
Roland McGrathaf65d642008-01-30 13:30:43 +0100383#ifdef CONFIG_X86_64
384
385__initcall(sysenter_setup);
386
Roland McGratha97f52e2008-01-30 13:31:55 +0100387#ifdef CONFIG_SYSCTL
388/* Register vsyscall32 into the ABI table */
389#include <linux/sysctl.h>
390
391static ctl_table abi_table2[] = {
392 {
393 .procname = "vsyscall32",
394 .data = &sysctl_vsyscall32,
395 .maxlen = sizeof(int),
396 .mode = 0644,
397 .proc_handler = proc_dointvec
398 },
399 {}
400};
401
402static ctl_table abi_root_table2[] = {
403 {
404 .ctl_name = CTL_ABI,
405 .procname = "abi",
406 .mode = 0555,
407 .child = abi_table2
408 },
409 {}
410};
411
412static __init int ia32_binfmt_init(void)
413{
414 register_sysctl_table(abi_root_table2);
415 return 0;
416}
417__initcall(ia32_binfmt_init);
418#endif
419
Roland McGrathaf65d642008-01-30 13:30:43 +0100420#else /* CONFIG_X86_32 */
421
Ingo Molnare6e54942006-06-27 02:53:50 -0700422const char *arch_vma_name(struct vm_area_struct *vma)
423{
424 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
425 return "[vdso]";
426 return NULL;
427}
428
429struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
430{
Jeremy Fitzhardinge1dbf527c2007-05-02 19:27:12 +0200431 struct mm_struct *mm = tsk->mm;
432
433 /* Check to see if this task was created in compat vdso mode */
434 if (mm && mm->context.vdso == (void *)VDSO_HIGH_BASE)
435 return &gate_vma;
Ingo Molnare6e54942006-06-27 02:53:50 -0700436 return NULL;
437}
438
439int in_gate_area(struct task_struct *task, unsigned long addr)
440{
Jan Beulich2f30c002007-07-21 17:10:21 +0200441 const struct vm_area_struct *vma = get_gate_vma(task);
442
443 return vma && addr >= vma->vm_start && addr < vma->vm_end;
Ingo Molnare6e54942006-06-27 02:53:50 -0700444}
445
446int in_gate_area_no_task(unsigned long addr)
447{
448 return 0;
449}
Roland McGrathaf65d642008-01-30 13:30:43 +0100450
451#endif /* CONFIG_X86_64 */