blob: b8f69e264ac4148afbdaeedc69e24132980117a9 [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 Lutomirski18d0a6f2014-05-05 12:19:35 -070021#include <asm/hpet.h>
Andy Lutomirskid4f829d2014-09-23 10:50:52 -070022#include <asm/desc.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{
H. J. Lu1a21d4e2012-02-19 11:38:06 -080030 int i;
Andy Lutomirski6f121e52014-05-05 12:19:34 -070031 int npages = (image->size) / PAGE_SIZE;
H. J. Lu1a21d4e2012-02-19 11:38:06 -080032
Andy Lutomirski6f121e52014-05-05 12:19:34 -070033 BUG_ON(image->size % PAGE_SIZE != 0);
34 for (i = 0; i < npages; i++)
Andy Lutomirskia62c34b2014-05-19 15:58:33 -070035 image->text_mapping.pages[i] =
36 virt_to_page(image->data + i*PAGE_SIZE);
H. J. Lu1a21d4e2012-02-19 11:38:06 -080037
Andy Lutomirski6f121e52014-05-05 12:19:34 -070038 apply_alternatives((struct alt_instr *)(image->data + image->alt),
39 (struct alt_instr *)(image->data + image->alt +
40 image->alt_len));
H. J. Lu1a21d4e2012-02-19 11:38:06 -080041}
Andy Lutomirski6f121e52014-05-05 12:19:34 -070042
Andi Kleen2aae9502007-07-21 17:10:01 +020043struct linux_binprm;
44
Andy Lutomirski394f56f2014-12-19 16:04:11 -080045/*
46 * Put the vdso above the (randomized) stack with another randomized
47 * offset. This way there is no hole in the middle of address space.
48 * To save memory make sure it is still in the same PTE as the stack
49 * top. This doesn't give that many random bits.
50 *
51 * Note that this algorithm is imperfect: the distribution of the vdso
52 * start address within a PMD is biased toward the end.
53 *
54 * Only used for the 64-bit and x32 vdsos.
55 */
Andi Kleen2aae9502007-07-21 17:10:01 +020056static unsigned long vdso_addr(unsigned long start, unsigned len)
57{
Jan Beulichd0936012014-07-03 15:35:07 +010058#ifdef CONFIG_X86_32
59 return 0;
60#else
Andi Kleen2aae9502007-07-21 17:10:01 +020061 unsigned long addr, end;
62 unsigned offset;
Andy Lutomirski394f56f2014-12-19 16:04:11 -080063
64 /*
65 * Round up the start address. It can start out unaligned as a result
66 * of stack start randomization.
67 */
68 start = PAGE_ALIGN(start);
69
70 /* Round the lowest possible end address up to a PMD boundary. */
71 end = (start + len + PMD_SIZE - 1) & PMD_MASK;
Ingo Molnard9517342009-02-20 23:32:28 +010072 if (end >= TASK_SIZE_MAX)
73 end = TASK_SIZE_MAX;
Andi Kleen2aae9502007-07-21 17:10:01 +020074 end -= len;
Andy Lutomirski394f56f2014-12-19 16:04:11 -080075
76 if (end > start) {
77 offset = get_random_int() % (((end - start) >> PAGE_SHIFT) + 1);
78 addr = start + (offset << PAGE_SHIFT);
79 } else {
80 addr = start;
81 }
Borislav Petkovdfb09f92011-08-05 15:15:08 +020082
83 /*
Andy Lutomirski394f56f2014-12-19 16:04:11 -080084 * Forcibly align the final address in case we have a hardware
85 * issue that requires alignment for performance reasons.
Borislav Petkovdfb09f92011-08-05 15:15:08 +020086 */
Michel Lespinassef99024722012-12-11 16:01:52 -080087 addr = align_vdso_addr(addr);
Borislav Petkovdfb09f92011-08-05 15:15:08 +020088
Andi Kleen2aae9502007-07-21 17:10:01 +020089 return addr;
Jan Beulichd0936012014-07-03 15:35:07 +010090#endif
Andi Kleen2aae9502007-07-21 17:10:01 +020091}
92
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -070093static int map_vdso(const struct vdso_image *image, bool calculate_addr)
Andi Kleen2aae9502007-07-21 17:10:01 +020094{
95 struct mm_struct *mm = current->mm;
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -070096 struct vm_area_struct *vma;
Andy Lutomirskie6577a72014-07-10 18:13:15 -070097 unsigned long addr, text_start;
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -070098 int ret = 0;
Andy Lutomirski1e844fb2014-05-19 15:58:31 -070099 static struct page *no_pages[] = {NULL};
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700100 static struct vm_special_mapping vvar_mapping = {
101 .name = "[vvar]",
102 .pages = no_pages,
103 };
Andy Lutomirskidac16fb2015-12-10 19:20:20 -0800104 struct pvclock_vsyscall_time_info *pvti;
Andi Kleen2aae9502007-07-21 17:10:01 +0200105
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700106 if (calculate_addr) {
107 addr = vdso_addr(current->mm->start_stack,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700108 image->size - image->sym_vvar_start);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700109 } else {
110 addr = 0;
111 }
Andi Kleen2aae9502007-07-21 17:10:01 +0200112
113 down_write(&mm->mmap_sem);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700114
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700115 addr = get_unmapped_area(NULL, addr,
116 image->size - image->sym_vvar_start, 0, 0);
Andi Kleen2aae9502007-07-21 17:10:01 +0200117 if (IS_ERR_VALUE(addr)) {
118 ret = addr;
119 goto up_fail;
120 }
121
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700122 text_start = addr - image->sym_vvar_start;
123 current->mm->context.vdso = (void __user *)text_start;
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200124
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700125 /*
126 * MAYWRITE to allow gdb to COW and set breakpoints
127 */
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700128 vma = _install_special_mapping(mm,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700129 text_start,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700130 image->size,
131 VM_READ|VM_EXEC|
132 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
133 &image->text_mapping);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700134
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700135 if (IS_ERR(vma)) {
136 ret = PTR_ERR(vma);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700137 goto up_fail;
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700138 }
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700139
140 vma = _install_special_mapping(mm,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700141 addr,
142 -image->sym_vvar_start,
Andy Lutomirskiac379832014-07-25 16:27:01 -0700143 VM_READ|VM_MAYREAD,
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700144 &vvar_mapping);
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700145
146 if (IS_ERR(vma)) {
147 ret = PTR_ERR(vma);
Andi Kleen2aae9502007-07-21 17:10:01 +0200148 goto up_fail;
Peter Zijlstraf7b6eb32009-06-05 14:04:51 +0200149 }
Andi Kleen2aae9502007-07-21 17:10:01 +0200150
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700151 if (image->sym_vvar_page)
152 ret = remap_pfn_range(vma,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700153 text_start + image->sym_vvar_page,
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700154 __pa_symbol(&__vvar_page) >> PAGE_SHIFT,
155 PAGE_SIZE,
156 PAGE_READONLY);
157
158 if (ret)
159 goto up_fail;
160
161#ifdef CONFIG_HPET_TIMER
162 if (hpet_address && image->sym_hpet_page) {
163 ret = io_remap_pfn_range(vma,
Andy Lutomirskie6577a72014-07-10 18:13:15 -0700164 text_start + image->sym_hpet_page,
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700165 hpet_address >> PAGE_SHIFT,
166 PAGE_SIZE,
167 pgprot_noncached(PAGE_READONLY));
168
169 if (ret)
170 goto up_fail;
171 }
172#endif
173
Andy Lutomirskidac16fb2015-12-10 19:20:20 -0800174 pvti = pvclock_pvti_cpu0_va();
175 if (pvti && image->sym_pvclock_page) {
176 ret = remap_pfn_range(vma,
177 text_start + image->sym_pvclock_page,
178 __pa(pvti) >> PAGE_SHIFT,
179 PAGE_SIZE,
180 PAGE_READONLY);
181
182 if (ret)
183 goto up_fail;
184 }
185
Andi Kleen2aae9502007-07-21 17:10:01 +0200186up_fail:
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700187 if (ret)
188 current->mm->context.vdso = NULL;
189
Andi Kleen2aae9502007-07-21 17:10:01 +0200190 up_write(&mm->mmap_sem);
191 return ret;
192}
193
Brian Gerstab8b82ee62015-06-22 07:55:15 -0400194#if defined(CONFIG_X86_32) || defined(CONFIG_IA32_EMULATION)
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700195static int load_vdso32(void)
H. J. Lu1a21d4e2012-02-19 11:38:06 -0800196{
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700197 if (vdso32_enabled != 1) /* Other values all mean "disabled" */
198 return 0;
199
Andy Lutomirski0a6d1fa2015-10-05 17:47:56 -0700200 return map_vdso(&vdso_image_32, false);
H. J. Lu1a21d4e2012-02-19 11:38:06 -0800201}
202#endif
203
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700204#ifdef CONFIG_X86_64
205int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
206{
207 if (!vdso64_enabled)
208 return 0;
209
210 return map_vdso(&vdso_image_64, true);
211}
212
213#ifdef CONFIG_COMPAT
214int compat_arch_setup_additional_pages(struct linux_binprm *bprm,
215 int uses_interp)
216{
217#ifdef CONFIG_X86_X32_ABI
218 if (test_thread_flag(TIF_X32)) {
219 if (!vdso64_enabled)
220 return 0;
221
222 return map_vdso(&vdso_image_x32, true);
223 }
224#endif
Brian Gerstab8b82ee62015-06-22 07:55:15 -0400225#ifdef CONFIG_IA32_EMULATION
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700226 return load_vdso32();
Brian Gerstab8b82ee62015-06-22 07:55:15 -0400227#else
228 return 0;
229#endif
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -0700230}
231#endif
232#else
233int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
234{
235 return load_vdso32();
236}
237#endif
238
239#ifdef CONFIG_X86_64
Andi Kleen2aae9502007-07-21 17:10:01 +0200240static __init int vdso_setup(char *s)
241{
Andy Lutomirski3d7ee962014-05-05 12:19:32 -0700242 vdso64_enabled = simple_strtoul(s, NULL, 0);
Andi Kleen2aae9502007-07-21 17:10:01 +0200243 return 0;
244}
245__setup("vdso=", vdso_setup);
Andy Lutomirskib4b541a2014-03-17 23:22:08 +0100246#endif
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700247
248#ifdef CONFIG_X86_64
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700249static void vgetcpu_cpu_init(void *arg)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700250{
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700251 int cpu = smp_processor_id();
Andrew Mortona92f1012014-11-01 21:18:26 +0100252 struct desc_struct d = { };
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700253 unsigned long node = 0;
254#ifdef CONFIG_NUMA
255 node = cpu_to_node(cpu);
256#endif
257 if (cpu_has(&cpu_data(cpu), X86_FEATURE_RDTSCP))
258 write_rdtscp_aux((node << 12) | cpu);
259
260 /*
Andy Lutomirski25880152014-09-23 10:50:53 -0700261 * Store cpu number in limit so that it can be loaded
262 * quickly in user space in vgetcpu. (12 bits for the CPU
263 * and 8 bits for the node)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700264 */
Andrew Mortona92f1012014-11-01 21:18:26 +0100265 d.limit0 = cpu | ((node & 0xf) << 12);
266 d.limit = node >> 4;
267 d.type = 5; /* RO data, expand down, accessed */
268 d.dpl = 3; /* Visible to user code */
269 d.s = 1; /* Not a system segment */
270 d.p = 1; /* Present */
271 d.d = 1; /* 32-bit */
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700272
273 write_gdt_entry(get_cpu_gdt_table(cpu), GDT_ENTRY_PER_CPU, &d, DESCTYPE_S);
274}
275
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700276static int
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700277vgetcpu_cpu_notifier(struct notifier_block *n, unsigned long action, void *arg)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700278{
279 long cpu = (long)arg;
280
281 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700282 smp_call_function_single(cpu, vgetcpu_cpu_init, NULL, 1);
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700283
284 return NOTIFY_DONE;
285}
286
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700287static int __init init_vdso(void)
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700288{
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700289 init_vdso_image(&vdso_image_64);
290
291#ifdef CONFIG_X86_X32_ABI
292 init_vdso_image(&vdso_image_x32);
293#endif
294
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700295 cpu_notifier_register_begin();
296
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700297 on_each_cpu(vgetcpu_cpu_init, NULL, 1);
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700298 /* notifier priority > KVM */
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700299 __hotcpu_notifier(vgetcpu_cpu_notifier, 30);
Andy Lutomirskid4f829d2014-09-23 10:50:52 -0700300
301 cpu_notifier_register_done();
302
303 return 0;
304}
Andy Lutomirski1c0c1b92014-09-23 10:50:57 -0700305subsys_initcall(init_vdso);
306#endif /* CONFIG_X86_64 */