1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
5 * Copyright (C) 2012 ARM Limited
6 * Copyright (C) 2015 Regents of the University of California
11 #include <linux/slab.h>
12 #include <linux/binfmts.h>
13 #include <linux/err.h>
15 #ifdef GENERIC_TIME_VSYSCALL
16 #include <vdso/datapage.h>
21 extern char vdso_start[], vdso_end[];
23 static unsigned int vdso_pages;
24 static struct page **vdso_pagelist;
30 struct vdso_data data;
32 } vdso_data_store __page_aligned_data;
33 struct vdso_data *vdso_data = &vdso_data_store.data;
35 static int __init vdso_init(void)
39 vdso_pages = (vdso_end - vdso_start) >> PAGE_SHIFT;
41 kcalloc(vdso_pages + 1, sizeof(struct page *), GFP_KERNEL);
42 if (unlikely(vdso_pagelist == NULL)) {
43 pr_err("vdso: pagelist allocation failed\n");
47 for (i = 0; i < vdso_pages; i++) {
50 pg = virt_to_page(vdso_start + (i << PAGE_SHIFT));
51 vdso_pagelist[i] = pg;
53 vdso_pagelist[i] = virt_to_page(vdso_data);
57 arch_initcall(vdso_init);
59 int arch_setup_additional_pages(struct linux_binprm *bprm,
62 struct mm_struct *mm = current->mm;
63 unsigned long vdso_base, vdso_len;
66 vdso_len = (vdso_pages + 1) << PAGE_SHIFT;
69 vdso_base = get_unmapped_area(NULL, 0, vdso_len, 0, 0);
70 if (IS_ERR_VALUE(vdso_base)) {
76 * Put vDSO base into mm struct. We need to do this before calling
77 * install_special_mapping or the perf counter mmap tracking code
78 * will fail to recognise it as a vDSO (since arch_vma_name fails).
80 mm->context.vdso = (void *)vdso_base;
83 install_special_mapping(mm, vdso_base, vdso_pages << PAGE_SHIFT,
84 (VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC),
88 mm->context.vdso = NULL;
92 vdso_base += (vdso_pages << PAGE_SHIFT);
93 ret = install_special_mapping(mm, vdso_base, PAGE_SIZE,
94 (VM_READ | VM_MAYREAD), &vdso_pagelist[vdso_pages]);
97 mm->context.vdso = NULL;
99 mmap_write_unlock(mm);
103 const char *arch_vma_name(struct vm_area_struct *vma)
105 if (vma->vm_mm && (vma->vm_start == (long)vma->vm_mm->context.vdso))
107 if (vma->vm_mm && (vma->vm_start ==
108 (long)vma->vm_mm->context.vdso + PAGE_SIZE))
109 return "[vdso_data]";