1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
7 #include <linux/binfmts.h>
10 #include <linux/init.h>
11 #include <linux/ioport.h>
12 #include <linux/kernel.h>
14 #include <linux/random.h>
15 #include <linux/sched.h>
16 #include <linux/slab.h>
17 #include <linux/time_namespace.h>
21 #include <vdso/helpers.h>
22 #include <vdso/vsyscall.h>
23 #include <vdso/datapage.h>
24 #include <generated/vdso-offsets.h>
26 extern char vdso_start[], vdso_end[];
28 /* Kernel-provided data used by the VDSO. */
29 static union vdso_data_store generic_vdso_data __page_aligned_data;
32 u8 page[LOONGARCH_VDSO_DATA_SIZE];
33 struct loongarch_vdso_data vdata;
34 } loongarch_vdso_data __page_aligned_data;
36 struct vdso_data *vdso_data = generic_vdso_data.data;
37 struct vdso_pcpu_data *vdso_pdata = loongarch_vdso_data.vdata.pdata;
38 struct vdso_rng_data *vdso_rng_data = &loongarch_vdso_data.vdata.rng_data;
40 static int vdso_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma)
42 current->mm->context.vdso = (void *)(new_vma->vm_start);
47 static vm_fault_t vvar_fault(const struct vm_special_mapping *sm,
48 struct vm_area_struct *vma, struct vm_fault *vmf)
51 struct page *timens_page = find_timens_vvar_page(vma);
54 case VVAR_GENERIC_PAGE_OFFSET:
56 pfn = sym_to_pfn(vdso_data);
58 pfn = page_to_pfn(timens_page);
61 case VVAR_TIMENS_PAGE_OFFSET:
63 * If a task belongs to a time namespace then a namespace specific
64 * VVAR is mapped with the VVAR_GENERIC_PAGE_OFFSET and the real
65 * VVAR page is mapped with the VVAR_TIMENS_PAGE_OFFSET offset.
66 * See also the comment near timens_setup_vdso_data().
69 return VM_FAULT_SIGBUS;
71 pfn = sym_to_pfn(vdso_data);
73 #endif /* CONFIG_TIME_NS */
74 case VVAR_LOONGARCH_PAGES_START ... VVAR_LOONGARCH_PAGES_END:
75 pfn = sym_to_pfn(&loongarch_vdso_data) + vmf->pgoff - VVAR_LOONGARCH_PAGES_START;
78 return VM_FAULT_SIGBUS;
81 return vmf_insert_pfn(vma, vmf->address, pfn);
84 struct loongarch_vdso_info vdso_info = {
88 .mremap = vdso_mremap,
94 .offset_sigreturn = vdso_offset_sigreturn,
97 static int __init init_vdso(void)
99 unsigned long i, cpu, pfn;
101 BUG_ON(!PAGE_ALIGNED(vdso_info.vdso));
103 for_each_possible_cpu(cpu)
104 vdso_pdata[cpu].node = cpu_to_node(cpu);
106 vdso_info.size = PAGE_ALIGN(vdso_end - vdso_start);
107 vdso_info.code_mapping.pages =
108 kcalloc(vdso_info.size / PAGE_SIZE, sizeof(struct page *), GFP_KERNEL);
110 pfn = __phys_to_pfn(__pa_symbol(vdso_info.vdso));
111 for (i = 0; i < vdso_info.size / PAGE_SIZE; i++)
112 vdso_info.code_mapping.pages[i] = pfn_to_page(pfn + i);
116 subsys_initcall(init_vdso);
118 #ifdef CONFIG_TIME_NS
119 struct vdso_data *arch_get_vdso_data(void *vvar_page)
121 return (struct vdso_data *)(vvar_page);
125 * The vvar mapping contains data for a specific time namespace, so when a
126 * task changes namespace we must unmap its vvar data for the old namespace.
127 * Subsequent faults will map in data for the new namespace.
129 * For more details see timens_setup_vdso_data().
131 int vdso_join_timens(struct task_struct *task, struct time_namespace *ns)
133 struct mm_struct *mm = task->mm;
134 struct vm_area_struct *vma;
136 VMA_ITERATOR(vmi, mm, 0);
139 for_each_vma(vmi, vma) {
140 if (vma_is_special_mapping(vma, &vdso_info.data_mapping))
143 mmap_read_unlock(mm);
149 static unsigned long vdso_base(void)
151 unsigned long base = STACK_TOP;
153 if (current->flags & PF_RANDOMIZE) {
154 base += get_random_u32_below(VDSO_RANDOMIZE_SIZE);
155 base = PAGE_ALIGN(base);
161 int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
164 unsigned long size, data_addr, vdso_addr;
165 struct mm_struct *mm = current->mm;
166 struct vm_area_struct *vma;
167 struct loongarch_vdso_info *info = current->thread.vdso;
169 if (mmap_write_lock_killable(mm))
173 * Determine total area size. This includes the VDSO data itself
174 * and the data pages.
176 size = VVAR_SIZE + info->size;
178 data_addr = get_unmapped_area(NULL, vdso_base(), size, 0, 0);
179 if (IS_ERR_VALUE(data_addr)) {
184 vma = _install_special_mapping(mm, data_addr, VVAR_SIZE,
185 VM_READ | VM_MAYREAD | VM_PFNMAP,
186 &info->data_mapping);
192 vdso_addr = data_addr + VVAR_SIZE;
193 vma = _install_special_mapping(mm, vdso_addr, info->size,
194 VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC,
195 &info->code_mapping);
201 mm->context.vdso = (void *)vdso_addr;
205 mmap_write_unlock(mm);