blob: 95f4de0800ec71ceaf167d7801168d5011d95d4e [file] [log] [blame]
Paul Mundt19f9a342006-09-27 18:33:49 +09001/*
Uwe Kleine-König58862692007-05-09 07:51:49 +02002 * arch/sh/kernel/vsyscall/vsyscall.c
Paul Mundt19f9a342006-09-27 18:33:49 +09003 *
4 * Copyright (C) 2006 Paul Mundt
5 *
6 * vDSO randomization
7 * Copyright(C) 2005-2006, Red Hat, Inc., Ingo Molnar
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
13#include <linux/mm.h>
14#include <linux/slab.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/gfp.h>
18#include <linux/module.h>
19#include <linux/elf.h>
Manuel Laussf75522c2007-05-31 13:44:55 +090020#include <linux/sched.h>
Paul Mundte06c4e52007-07-31 13:01:43 +090021#include <linux/err.h>
Paul Mundt19f9a342006-09-27 18:33:49 +090022
23/*
24 * Should the kernel map a VDSO page into processes and pass its
25 * address down to glibc upon exec()?
26 */
27unsigned int __read_mostly vdso_enabled = 1;
28EXPORT_SYMBOL_GPL(vdso_enabled);
29
30static int __init vdso_setup(char *s)
31{
32 vdso_enabled = simple_strtoul(s, NULL, 0);
33 return 1;
34}
35__setup("vdso=", vdso_setup);
36
37/*
38 * These symbols are defined by vsyscall.o to mark the bounds
39 * of the ELF DSO images included therein.
40 */
41extern const char vsyscall_trapa_start, vsyscall_trapa_end;
Paul Mundt2affc852007-02-08 14:20:44 -080042static struct page *syscall_pages[1];
Paul Mundt19f9a342006-09-27 18:33:49 +090043
44int __init vsyscall_init(void)
45{
Paul Mundt2affc852007-02-08 14:20:44 -080046 void *syscall_page = (void *)get_zeroed_page(GFP_ATOMIC);
47 syscall_pages[0] = virt_to_page(syscall_page);
Paul Mundt19f9a342006-09-27 18:33:49 +090048
49 /*
50 * XXX: Map this page to a fixmap entry if we get around
51 * to adding the page to ELF core dumps
52 */
53
54 memcpy(syscall_page,
55 &vsyscall_trapa_start,
56 &vsyscall_trapa_end - &vsyscall_trapa_start);
57
58 return 0;
59}
60
Paul Mundt19f9a342006-09-27 18:33:49 +090061/* Setup a VMA at program startup for the vsyscall page */
62int arch_setup_additional_pages(struct linux_binprm *bprm,
63 int executable_stack)
64{
Paul Mundt19f9a342006-09-27 18:33:49 +090065 struct mm_struct *mm = current->mm;
66 unsigned long addr;
67 int ret;
68
69 down_write(&mm->mmap_sem);
70 addr = get_unmapped_area(NULL, 0, PAGE_SIZE, 0, 0);
71 if (IS_ERR_VALUE(addr)) {
72 ret = addr;
73 goto up_fail;
74 }
75
Paul Mundt2affc852007-02-08 14:20:44 -080076 ret = install_special_mapping(mm, addr, PAGE_SIZE,
77 VM_READ | VM_EXEC |
78 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC |
79 VM_ALWAYSDUMP,
80 syscall_pages);
81 if (unlikely(ret))
Paul Mundt19f9a342006-09-27 18:33:49 +090082 goto up_fail;
Paul Mundt19f9a342006-09-27 18:33:49 +090083
84 current->mm->context.vdso = (void *)addr;
85
Paul Mundt19f9a342006-09-27 18:33:49 +090086up_fail:
87 up_write(&mm->mmap_sem);
88 return ret;
89}
90
91const char *arch_vma_name(struct vm_area_struct *vma)
92{
93 if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
94 return "[vdso]";
95
96 return NULL;
97}
98
99struct vm_area_struct *get_gate_vma(struct task_struct *task)
100{
101 return NULL;
102}
103
104int in_gate_area(struct task_struct *task, unsigned long address)
105{
106 return 0;
107}
108
109int in_gate_area_no_task(unsigned long address)
110{
111 return 0;
112}