1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
8 #include <linux/errno.h>
9 #include <linux/sched.h>
10 #include <linux/kernel.h>
12 #include <linux/smp.h>
13 #include <linux/stddef.h>
14 #include <linux/unistd.h>
15 #include <linux/slab.h>
16 #include <linux/user.h>
17 #include <linux/elf.h>
18 #include <linux/security.h>
19 #include <linux/syscalls.h>
20 #include <linux/time_namespace.h>
21 #include <vdso/datapage.h>
23 #include <asm/syscall.h>
24 #include <asm/processor.h>
26 #include <asm/mmu_context.h>
27 #include <asm/machdep.h>
28 #include <asm/cputable.h>
29 #include <asm/sections.h>
30 #include <asm/firmware.h>
32 #include <asm/vdso_datapage.h>
33 #include <asm/setup.h>
35 /* The alignment of the vDSO */
36 #define VDSO_ALIGNMENT (1 << 16)
38 extern char vdso32_start, vdso32_end;
39 extern char vdso64_start, vdso64_end;
41 long sys_ni_syscall(void);
44 * The vdso data page (aka. systemcfg for old ppc64 fans) is here.
45 * Once the early boot kernel code no longer needs to muck around
46 * with it, it will become dynamically allocated
49 struct vdso_arch_data data;
50 u8 page[2 * PAGE_SIZE];
51 } vdso_data_store __page_aligned_data;
52 struct vdso_arch_data *vdso_data = &vdso_data_store.data;
55 VVAR_BASE_PAGE_OFFSET,
56 VVAR_TIME_PAGE_OFFSET,
57 VVAR_TIMENS_PAGE_OFFSET,
61 static int vdso_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma,
62 unsigned long text_size)
64 unsigned long new_size = new_vma->vm_end - new_vma->vm_start;
66 if (new_size != text_size)
69 current->mm->context.vdso = (void __user *)new_vma->vm_start;
74 static int vdso32_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma)
76 return vdso_mremap(sm, new_vma, &vdso32_end - &vdso32_start);
79 static int vdso64_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma)
81 return vdso_mremap(sm, new_vma, &vdso64_end - &vdso64_start);
84 static void vdso_close(const struct vm_special_mapping *sm, struct vm_area_struct *vma)
86 struct mm_struct *mm = vma->vm_mm;
89 * close() is called for munmap() but also for mremap(). In the mremap()
90 * case the vdso pointer has already been updated by the mremap() hook
91 * above, so it must not be set to NULL here.
93 if (vma->vm_start != (unsigned long)mm->context.vdso)
96 mm->context.vdso = NULL;
99 static vm_fault_t vvar_fault(const struct vm_special_mapping *sm,
100 struct vm_area_struct *vma, struct vm_fault *vmf);
102 static struct vm_special_mapping vvar_spec __ro_after_init = {
107 static struct vm_special_mapping vdso32_spec __ro_after_init = {
109 .mremap = vdso32_mremap,
113 static struct vm_special_mapping vdso64_spec __ro_after_init = {
115 .mremap = vdso64_mremap,
119 #ifdef CONFIG_TIME_NS
120 struct vdso_data *arch_get_vdso_data(void *vvar_page)
126 * The vvar mapping contains data for a specific time namespace, so when a task
127 * changes namespace we must unmap its vvar data for the old namespace.
128 * Subsequent faults will map in data for the new namespace.
130 * For more details see timens_setup_vdso_data().
132 int vdso_join_timens(struct task_struct *task, struct time_namespace *ns)
134 struct mm_struct *mm = task->mm;
135 VMA_ITERATOR(vmi, mm, 0);
136 struct vm_area_struct *vma;
139 for_each_vma(vmi, vma) {
140 if (vma_is_special_mapping(vma, &vvar_spec))
143 mmap_read_unlock(mm);
149 static vm_fault_t vvar_fault(const struct vm_special_mapping *sm,
150 struct vm_area_struct *vma, struct vm_fault *vmf)
152 struct page *timens_page = find_timens_vvar_page(vma);
155 switch (vmf->pgoff) {
156 case VVAR_BASE_PAGE_OFFSET:
157 pfn = virt_to_pfn(vdso_data);
159 case VVAR_TIME_PAGE_OFFSET:
161 pfn = page_to_pfn(timens_page);
163 pfn = virt_to_pfn(vdso_data->data);
165 #ifdef CONFIG_TIME_NS
166 case VVAR_TIMENS_PAGE_OFFSET:
168 * If a task belongs to a time namespace then a namespace
169 * specific VVAR is mapped with the VVAR_DATA_PAGE_OFFSET and
170 * the real VVAR page is mapped with the VVAR_TIMENS_PAGE_OFFSET
172 * See also the comment near timens_setup_vdso_data().
175 return VM_FAULT_SIGBUS;
176 pfn = virt_to_pfn(vdso_data->data);
178 #endif /* CONFIG_TIME_NS */
180 return VM_FAULT_SIGBUS;
183 return vmf_insert_pfn(vma, vmf->address, pfn);
187 * This is called from binfmt_elf, we create the special vma for the
188 * vDSO and insert it into the mm struct tree
190 static int __arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
192 unsigned long vdso_size, vdso_base, mappings_size;
193 struct vm_special_mapping *vdso_spec;
194 unsigned long vvar_size = VVAR_NR_PAGES * PAGE_SIZE;
195 struct mm_struct *mm = current->mm;
196 struct vm_area_struct *vma;
198 if (is_32bit_task()) {
199 vdso_spec = &vdso32_spec;
200 vdso_size = &vdso32_end - &vdso32_start;
202 vdso_spec = &vdso64_spec;
203 vdso_size = &vdso64_end - &vdso64_start;
206 mappings_size = vdso_size + vvar_size;
207 mappings_size += (VDSO_ALIGNMENT - 1) & PAGE_MASK;
210 * Pick a base address for the vDSO in process space.
211 * Add enough to the size so that the result can be aligned.
213 vdso_base = get_unmapped_area(NULL, 0, mappings_size, 0, 0);
214 if (IS_ERR_VALUE(vdso_base))
217 /* Add required alignment. */
218 vdso_base = ALIGN(vdso_base, VDSO_ALIGNMENT);
220 vma = _install_special_mapping(mm, vdso_base, vvar_size,
221 VM_READ | VM_MAYREAD | VM_IO |
222 VM_DONTDUMP | VM_PFNMAP, &vvar_spec);
227 * our vma flags don't have VM_WRITE so by default, the process isn't
228 * allowed to write those pages.
229 * gdb can break that with ptrace interface, and thus trigger COW on
230 * those pages but it's then your responsibility to never do that on
231 * the "data" page of the vDSO or you'll stop getting kernel updates
232 * and your nice userland gettimeofday will be totally dead.
233 * It's fine to use that for setting breakpoints in the vDSO code
236 vma = _install_special_mapping(mm, vdso_base + vvar_size, vdso_size,
237 VM_READ | VM_EXEC | VM_MAYREAD |
238 VM_MAYWRITE | VM_MAYEXEC, vdso_spec);
240 do_munmap(mm, vdso_base, vvar_size, NULL);
244 // Now that the mappings are in place, set the mm VDSO pointer
245 mm->context.vdso = (void __user *)vdso_base + vvar_size;
250 int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
252 struct mm_struct *mm = current->mm;
255 mm->context.vdso = NULL;
257 if (mmap_write_lock_killable(mm))
260 rc = __arch_setup_additional_pages(bprm, uses_interp);
262 mmap_write_unlock(mm);
266 #define VDSO_DO_FIXUPS(type, value, bits, sec) do { \
267 void *__start = (void *)VDSO##bits##_SYMBOL(&vdso##bits##_start, sec##_start); \
268 void *__end = (void *)VDSO##bits##_SYMBOL(&vdso##bits##_start, sec##_end); \
270 do_##type##_fixups((value), __start, __end); \
273 static void __init vdso_fixup_features(void)
276 VDSO_DO_FIXUPS(feature, cur_cpu_spec->cpu_features, 64, ftr_fixup);
277 VDSO_DO_FIXUPS(feature, cur_cpu_spec->mmu_features, 64, mmu_ftr_fixup);
278 VDSO_DO_FIXUPS(feature, powerpc_firmware_features, 64, fw_ftr_fixup);
279 VDSO_DO_FIXUPS(lwsync, cur_cpu_spec->cpu_features, 64, lwsync_fixup);
280 #endif /* CONFIG_PPC64 */
283 VDSO_DO_FIXUPS(feature, cur_cpu_spec->cpu_features, 32, ftr_fixup);
284 VDSO_DO_FIXUPS(feature, cur_cpu_spec->mmu_features, 32, mmu_ftr_fixup);
286 VDSO_DO_FIXUPS(feature, powerpc_firmware_features, 32, fw_ftr_fixup);
287 #endif /* CONFIG_PPC64 */
288 VDSO_DO_FIXUPS(lwsync, cur_cpu_spec->cpu_features, 32, lwsync_fixup);
293 * Called from setup_arch to initialize the bitmap of available
294 * syscalls in the systemcfg page
296 static void __init vdso_setup_syscall_map(void)
300 for (i = 0; i < NR_syscalls; i++) {
301 if (sys_call_table[i] != (void *)&sys_ni_syscall)
302 vdso_data->syscall_map[i >> 5] |= 0x80000000UL >> (i & 0x1f);
303 if (IS_ENABLED(CONFIG_COMPAT) &&
304 compat_sys_call_table[i] != (void *)&sys_ni_syscall)
305 vdso_data->compat_syscall_map[i >> 5] |= 0x80000000UL >> (i & 0x1f);
310 int vdso_getcpu_init(void)
312 unsigned long cpu, node, val;
315 * SPRG_VDSO contains the CPU in the bottom 16 bits and the NUMA node
316 * in the next 16 bits. The VDSO uses this to implement getcpu().
319 WARN_ON_ONCE(cpu > 0xffff);
321 node = cpu_to_node(cpu);
322 WARN_ON_ONCE(node > 0xffff);
324 val = (cpu & 0xffff) | ((node & 0xffff) << 16);
325 mtspr(SPRN_SPRG_VDSO_WRITE, val);
326 get_paca()->sprg_vdso = val;
332 /* We need to call this before SMP init */
333 early_initcall(vdso_getcpu_init);
336 static struct page ** __init vdso_setup_pages(void *start, void *end)
339 struct page **pagelist;
340 int pages = (end - start) >> PAGE_SHIFT;
342 pagelist = kcalloc(pages + 1, sizeof(struct page *), GFP_KERNEL);
344 panic("%s: Cannot allocate page list for VDSO", __func__);
346 for (i = 0; i < pages; i++)
347 pagelist[i] = virt_to_page(start + i * PAGE_SIZE);
352 static int __init vdso_init(void)
355 vdso_data->dcache_block_size = ppc64_caches.l1d.block_size;
356 vdso_data->icache_block_size = ppc64_caches.l1i.block_size;
357 vdso_data->dcache_log_block_size = ppc64_caches.l1d.log_block_size;
358 vdso_data->icache_log_block_size = ppc64_caches.l1i.log_block_size;
359 #endif /* CONFIG_PPC64 */
361 vdso_setup_syscall_map();
363 vdso_fixup_features();
365 if (IS_ENABLED(CONFIG_VDSO32))
366 vdso32_spec.pages = vdso_setup_pages(&vdso32_start, &vdso32_end);
368 if (IS_ENABLED(CONFIG_PPC64))
369 vdso64_spec.pages = vdso_setup_pages(&vdso64_start, &vdso64_end);
375 arch_initcall(vdso_init);