blob: b3cf81333a54edf146c26a747db201111b7863d3 [file] [log] [blame]
Andi Kleen2aae9502007-07-21 17:10:01 +02001/*
Andi Kleen2aae9502007-07-21 17:10:01 +02002 * Copyright 2007 Andi Kleen, SUSE Labs.
3 * Subject to the GPL, v.2
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -07004 *
5 * This contains most of the x86 vDSO kernel-side code.
Andi Kleen2aae9502007-07-21 17:10:01 +02006 */
7#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04008#include <linux/err.h>
Andi Kleen2aae9502007-07-21 17:10:01 +02009#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020011#include <linux/init.h>
12#include <linux/random.h>
Jaswinder Singh Rajput3fa89ca2009-04-12 20:37:25 +053013#include <linux/elf.h>
Andy Lutomirskid4f829d2014-09-23 10:50:52 -070014#include <linux/cpu.h>
Andy Lutomirskicc1e24f2015-12-10 19:20:21 -080015#include <asm/pvclock.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020016#include <asm/vgtod.h>
17#include <asm/proto.h>
Roland McGrath7f3646a2008-01-30 13:30:41 +010018#include <asm/vdso.h>
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -070019#include <asm/vvar.h>
Andy Lutomirskiaafade22011-07-21 15:47:10 -040020#include <asm/page.h>
Andy Lutomirskid4f829d2014-09-23 10:50:52 -070021#include <asm/desc.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010022#include <asm/cpufeature.h>
Roland McGrath7f3646a2008-01-30 13:30:41 +010023
Andy Lutomirskib4b541a2014-03-17 23:22:08 +010024#if defined(CONFIG_X86_64)
Andy Lutomirski3d7ee962014-05-05 12:19:32 -070025unsigned int __read_mostly vdso64_enabled = 1;
Andy Lutomirskib4b541a2014-03-17 23:22:08 +010026#endif
H. J. Lu1a21d4e2012-02-19 11:38:06 -080027
Andy Lutomirski6f121e52014-05-05 12:19:34 -070028void __init init_vdso_image(const struct vdso_image *image)
H. J. Lu1a21d4e2012-02-19 11:38:06 -080029{
Andy Lutomirski6f121e52014-05-05 12:19:34 -070030 BUG_ON(image->size % PAGE_SIZE != 0);
H. J. Lu1a21d4e2012-02-19 11:38:06 -080031
Andy Lutomirski6f121e52014-05-05 12:19:34 -070032 apply_alternatives((struct alt_instr *)(image->data + image->alt),
33 (struct alt_instr *)(image->data + image->alt +
34 image->alt_len));
H. J. Lu1a21d4e2012-02-19 11:38:06 -080035}
Andy Lutomirski6f121e52014-05-05 12:19:34 -070036
Andi Kleen2aae9502007-07-21 17:10:01 +020037struct linux_binprm;
38
Andy Lutomirski394f56f2014-12-19 16:04:11 -080039/*
40 * Put the vdso above the (randomized) stack with another randomized
41 * offset. This way there is no hole in the middle of address space.
42 * To save memory make sure it is still in the same PTE as the stack
43 * top. This doesn't give that many random bits.
44 *
45 * Note that this algorithm is imperfect: the distribution of the vdso
46 * start address within a PMD is biased toward the end.
47 *
48 * Only used for the 64-bit and x32 vdsos.
49 */
Andi Kleen2aae9502007-07-21 17:10:01 +020050static unsigned long vdso_addr(unsigned long start, unsigned len)
51{
Jan Beulichd0936012014-07-03 15:35:07 +010052#ifdef CONFIG_X86_32
53 return 0;
54#else
Andi Kleen2aae9502007-07-21 17:10:01 +020055 unsigned long addr, end;
56 unsigned offset;
Andy Lutomirski394f56f2014-12-19 16:04:11 -080057
58 /*
59 * Round up the start address. It can start out unaligned as a result
60 * of stack start randomization.
61 */
62 start = PAGE_ALIGN(start);
63
64 /* Round the lowest possible end address up to a PMD boundary. */
65 end = (start + len + PMD_SIZE - 1) & PMD_MASK;
Ingo Molnard9517342009-02-20 23:32:28 +010066 if (end >= TASK_SIZE_MAX)
67 end = TASK_SIZE_MAX;
Andi Kleen2aae9502007-07-21 17:10:01 +020068 end -= len;
Andy Lutomirski394f56f2014-12-19 16:04:11 -080069
70 if (end > start) {
71 offset = get_random_int() % (((end - start) >> PAGE_SHIFT) + 1);
72 addr = start + (offset << PAGE_SHIFT);
73 } else {
74 addr = start;
75 }
Borislav Petkovdfb09f92011-08-05 15:15:08 +020076
77 /*
Andy Lutomirski394f56f2014-12-19 16:04:11 -080078 * Forcibly align the final address in case we have a hardware
79 * issue that requires alignment for performance reasons.
Borislav Petkovdfb09f92011-08-05 15:15:08 +020080 */
Michel Lespinassef99024722012-12-11 16:01:52 -080081 addr = align_vdso_addr(addr);
Borislav Petkovdfb09f92011-08-05 15:15:08 +020082
Andi Kleen2aae9502007-07-21 17:10:01 +020083 return addr;
Jan Beulichd0936012014-07-03 15:35:07 +010084#endif
Andi Kleen2aae9502007-07-21 17:10:01 +020085}
86
Andy Lutomirski05ef76b2015-12-29 20:12:22 -080087static int vdso_fault(const struct vm_special_mapping *sm,
88 struct vm_area_struct *vma, struct vm_fault *vmf)
89{
90 const struct vdso_image *image = vma->vm_mm->context.vdso_image;
91
92 if (!image || (vmf->pgoff << PAGE_SHIFT) >= image->size)
93 return VM_FAULT_SIGBUS;
94
95 vmf->page = virt_to_page(image->data + (vmf->pgoff << PAGE_SHIFT));
96 get_page(vmf->page);
97 return 0;
98}
99
100static const struct vm_special_mapping text_mapping = {
101 .name = "[vdso]",
102 .fault = vdso_fault,
103};
104
Andy Lutomirskia48a7042015-12-29 20:12:23 -0800105static int vvar_fault(const struct vm_special_mapping *sm,
106 struct vm_area_struct *vma, struct vm_fault *vmf)
107{
108 const struct vdso_image *image = vma->vm_mm->context.vdso_image;
109 long sym_offset;
110 int ret = -EFAULT;
111
112 if (!image)
113 return VM_FAULT_SIGBUS;
114
115 sym_offset = (long)(vmf->pgoff << PAGE_SHIFT) +
116 image->sym_vvar_start;
117
118 /*
119 * Sanity check: a symbol offset of zero means that the page
120 * does not exist for this vdso image, not that the page is at
121 * offset zero relative to the text mapping. This should be
122 * impossible here, because sym_offset should only be zero for
123 * the page past the end of the vvar mapping.
124 */
125 if (sym_offset == 0)
126 return VM_FAULT_SIGBUS;
127
128 if (sym_offset == image->sym_vvar_page) {
129 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address,
130 __pa_symbol(&__vvar_page) >> PAGE_SHIFT);
Andy Lutomirskia48a7042015-12-29 20:12:23 -0800131 } else if (sym_offset == image->sym_pvclock_page) {
132 struct pvclock_vsyscall_time_info *pvti =
133 pvclock_pvti_cpu0_va();
Andy Lutomirskibd902c52015-12-29 20:12:24 -0800134 if (pvti && vclock_was_used(VCLOCK_PVCLOCK)) {
Andy Lutomirskia48a7042015-12-29 20:12:23 -0800135 ret = vm_insert_pfn(
136 vma,
137 (unsigned long)vmf->virtual_address,
138 __pa(pvti) >> PAGE_SHIFT);
139 }
140 }
141
142 if (ret == 0 || ret == -EBUSY)
143 return VM_FAULT_NOPAGE;
144
145 return VM_FAULT_SIGBUS;
146}
147
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700148static int map_vdso(const struct vdso_image *image, bool calculate_addr)
Andi Kleen2aae9502007-07-21 17:10:01 +0200149{
150 struct mm_struct *mm = current->mm;
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700151 struct vm_area_struct *vma;
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700152 unsigned long addr, text_start;
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700153 int ret = 0;
Andy Lutomirskia48a7042015-12-29 20:12:23 -0800154 static const struct vm_special_mapping vvar_mapping = {
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700155 .name = "[vvar]",
Andy Lutomirskia48a7042015-12-29 20:12:23 -0800156 .fault = vvar_fault,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700157 };
Andi Kleen2aae9502007-07-21 17:10:01 +0200158
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700159 if (calculate_addr) {
160 addr = vdso_addr(current->mm->start_stack,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700161 image->size - image->sym_vvar_start);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700162 } else {
163 addr = 0;
164 }
Andi Kleen2aae9502007-07-21 17:10:01 +0200165
166 down_write(&mm->mmap_sem);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700167
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700168 addr = get_unmapped_area(NULL, addr,
169 image->size - image->sym_vvar_start, 0, 0);
Andi Kleen2aae9502007-07-21 17:10:01 +0200170 if (IS_ERR_VALUE(addr)) {
171 ret = addr;
172 goto up_fail;
173 }
174
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700175 text_start = addr - image->sym_vvar_start;
176 current->mm->context.vdso = (void __user *)text_start;
Andy Lutomirski352b78c2015-12-29 20:12:21 -0800177 current->mm->context.vdso_image = image;
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200178
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700179 /*
180 * MAYWRITE to allow gdb to COW and set breakpoints
181 */
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700182 vma = _install_special_mapping(mm,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700183 text_start,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700184 image->size,
185 VM_READ|VM_EXEC|
186 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
Andy Lutomirski05ef76b2015-12-29 20:12:22 -0800187 &text_mapping);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700188
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700189 if (IS_ERR(vma)) {
190 ret = PTR_ERR(vma);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700191 goto up_fail;
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700192 }
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700193
194 vma = _install_special_mapping(mm,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700195 addr,
196 -image->sym_vvar_start,
Andy Lutomirskia48a7042015-12-29 20:12:23 -0800197 VM_READ|VM_MAYREAD|VM_IO|VM_DONTDUMP|
198 VM_PFNMAP,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700199 &vvar_mapping);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700200
201 if (IS_ERR(vma)) {
202 ret = PTR_ERR(vma);
Andi Kleen2aae9502007-07-21 17:10:01 +0200203 goto up_fail;
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200204 }
Andi Kleen2aae9502007-07-21 17:10:01 +0200205
Andi Kleen2aae9502007-07-21 17:10:01 +0200206up_fail:
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700207 if (ret)
208 current->mm->context.vdso = NULL;
209
Andi Kleen2aae9502007-07-21 17:10:01 +0200210 up_write(&mm->mmap_sem);
211 return ret;
212}
213
Brian Gerstab8b82ee62015-06-22 07:55:15 -0400214#if defined(CONFIG_X86_32) || defined(CONFIG_IA32_EMULATION)
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700215static int load_vdso32(void)
H. J. Lu1a21d4e2012-02-19 11:38:06 -0800216{
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700217 if (vdso32_enabled != 1) /* Other values all mean "disabled" */
218 return 0;
219
Andy Lutomirski0a6d1fa2015-10-05 17:47:56 -0700220 return map_vdso(&vdso_image_32, false);
H. J. Lu1a21d4e2012-02-19 11:38:06 -0800221}
222#endif
223
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700224#ifdef CONFIG_X86_64
225int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
226{
227 if (!vdso64_enabled)
228 return 0;
229
230 return map_vdso(&vdso_image_64, true);
231}
232
233#ifdef CONFIG_COMPAT
234int compat_arch_setup_additional_pages(struct linux_binprm *bprm,
235 int uses_interp)
236{
237#ifdef CONFIG_X86_X32_ABI
238 if (test_thread_flag(TIF_X32)) {
239 if (!vdso64_enabled)
240 return 0;
241
242 return map_vdso(&vdso_image_x32, true);
243 }
244#endif
Brian Gerstab8b82ee62015-06-22 07:55:15 -0400245#ifdef CONFIG_IA32_EMULATION
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700246 return load_vdso32();
Brian Gerstab8b82ee62015-06-22 07:55:15 -0400247#else
248 return 0;
249#endif
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700250}
251#endif
252#else
253int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
254{
255 return load_vdso32();
256}
257#endif
258
259#ifdef CONFIG_X86_64
Andi Kleen2aae9502007-07-21 17:10:01 +0200260static __init int vdso_setup(char *s)
261{
Andy Lutomirski3d7ee962014-05-05 12:19:32 -0700262 vdso64_enabled = simple_strtoul(s, NULL, 0);
Andi Kleen2aae9502007-07-21 17:10:01 +0200263 return 0;
264}
265__setup("vdso=", vdso_setup);
Andy Lutomirskib4b541a2014-03-17 23:22:08 +0100266#endif
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700267
268#ifdef CONFIG_X86_64
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700269static void vgetcpu_cpu_init(void *arg)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700270{
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700271 int cpu = smp_processor_id();
Andrew Mortona92f1012014-11-01 21:18:26 +0100272 struct desc_struct d = { };
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700273 unsigned long node = 0;
274#ifdef CONFIG_NUMA
275 node = cpu_to_node(cpu);
276#endif
Borislav Petkov8c725302016-01-26 22:12:09 +0100277 if (static_cpu_has(X86_FEATURE_RDTSCP))
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700278 write_rdtscp_aux((node << 12) | cpu);
279
280 /*
Andy Lutomirski25880152014-09-23 10:50:53 -0700281 * Store cpu number in limit so that it can be loaded
282 * quickly in user space in vgetcpu. (12 bits for the CPU
283 * and 8 bits for the node)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700284 */
Andrew Mortona92f1012014-11-01 21:18:26 +0100285 d.limit0 = cpu | ((node & 0xf) << 12);
286 d.limit = node >> 4;
287 d.type = 5; /* RO data, expand down, accessed */
288 d.dpl = 3; /* Visible to user code */
289 d.s = 1; /* Not a system segment */
290 d.p = 1; /* Present */
291 d.d = 1; /* 32-bit */
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700292
293 write_gdt_entry(get_cpu_gdt_table(cpu), GDT_ENTRY_PER_CPU, &d, DESCTYPE_S);
294}
295
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700296static int
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700297vgetcpu_cpu_notifier(struct notifier_block *n, unsigned long action, void *arg)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700298{
299 long cpu = (long)arg;
300
301 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700302 smp_call_function_single(cpu, vgetcpu_cpu_init, NULL, 1);
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700303
304 return NOTIFY_DONE;
305}
306
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700307static int __init init_vdso(void)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700308{
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700309 init_vdso_image(&vdso_image_64);
310
311#ifdef CONFIG_X86_X32_ABI
312 init_vdso_image(&vdso_image_x32);
313#endif
314
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700315 cpu_notifier_register_begin();
316
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700317 on_each_cpu(vgetcpu_cpu_init, NULL, 1);
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700318 /* notifier priority > KVM */
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700319 __hotcpu_notifier(vgetcpu_cpu_notifier, 30);
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700320
321 cpu_notifier_register_done();
322
323 return 0;
324}
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700325subsys_initcall(init_vdso);
326#endif /* CONFIG_X86_64 */