1 // SPDX-License-Identifier: GPL-2.0-or-later 2 3 /* 4 * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp. 5 * <benh@kernel.crashing.org> 6 */ 7 8 #include <linux/errno.h> 9 #include <linux/sched.h> 10 #include <linux/kernel.h> 11 #include <linux/mm.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/memblock.h> 20 #include <linux/syscalls.h> 21 #include <linux/time_namespace.h> 22 #include <vdso/datapage.h> 23 24 #include <asm/syscall.h> 25 #include <asm/processor.h> 26 #include <asm/mmu.h> 27 #include <asm/mmu_context.h> 28 #include <asm/machdep.h> 29 #include <asm/cputable.h> 30 #include <asm/sections.h> 31 #include <asm/firmware.h> 32 #include <asm/vdso.h> 33 #include <asm/vdso_datapage.h> 34 #include <asm/setup.h> 35 36 /* The alignment of the vDSO */ 37 #define VDSO_ALIGNMENT (1 << 16) 38 39 extern char vdso32_start, vdso32_end; 40 extern char vdso64_start, vdso64_end; 41 42 long sys_ni_syscall(void); 43 44 /* 45 * The vdso data page (aka. systemcfg for old ppc64 fans) is here. 46 * Once the early boot kernel code no longer needs to muck around 47 * with it, it will become dynamically allocated 48 */ 49 static union { 50 struct vdso_arch_data data; 51 u8 page[2 * PAGE_SIZE]; 52 } vdso_data_store __page_aligned_data; 53 struct vdso_arch_data *vdso_data = &vdso_data_store.data; 54 55 enum vvar_pages { 56 VVAR_BASE_PAGE_OFFSET, 57 VVAR_TIME_PAGE_OFFSET, 58 VVAR_TIMENS_PAGE_OFFSET, 59 VVAR_NR_PAGES, 60 }; 61 62 static int vdso_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma, 63 unsigned long text_size) 64 { 65 unsigned long new_size = new_vma->vm_end - new_vma->vm_start; 66 67 if (new_size != text_size) 68 return -EINVAL; 69 70 current->mm->context.vdso = (void __user *)new_vma->vm_start; 71 72 return 0; 73 } 74 75 static int vdso32_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma) 76 { 77 return vdso_mremap(sm, new_vma, &vdso32_end - &vdso32_start); 78 } 79 80 static int vdso64_mremap(const struct vm_special_mapping *sm, struct vm_area_struct *new_vma) 81 { 82 return vdso_mremap(sm, new_vma, &vdso64_end - &vdso64_start); 83 } 84 85 static void vdso_close(const struct vm_special_mapping *sm, struct vm_area_struct *vma) 86 { 87 struct mm_struct *mm = vma->vm_mm; 88 89 /* 90 * close() is called for munmap() but also for mremap(). In the mremap() 91 * case the vdso pointer has already been updated by the mremap() hook 92 * above, so it must not be set to NULL here. 93 */ 94 if (vma->vm_start != (unsigned long)mm->context.vdso) 95 return; 96 97 mm->context.vdso = NULL; 98 } 99 100 static vm_fault_t vvar_fault(const struct vm_special_mapping *sm, 101 struct vm_area_struct *vma, struct vm_fault *vmf); 102 103 static struct vm_special_mapping vvar_spec __ro_after_init = { 104 .name = "[vvar]", 105 .fault = vvar_fault, 106 }; 107 108 static struct vm_special_mapping vdso32_spec __ro_after_init = { 109 .name = "[vdso]", 110 .mremap = vdso32_mremap, 111 .close = vdso_close, 112 }; 113 114 static struct vm_special_mapping vdso64_spec __ro_after_init = { 115 .name = "[vdso]", 116 .mremap = vdso64_mremap, 117 .close = vdso_close, 118 }; 119 120 #ifdef CONFIG_TIME_NS 121 struct vdso_data *arch_get_vdso_data(void *vvar_page) 122 { 123 return vvar_page; 124 } 125 126 /* 127 * The vvar mapping contains data for a specific time namespace, so when a task 128 * changes namespace we must unmap its vvar data for the old namespace. 129 * Subsequent faults will map in data for the new namespace. 130 * 131 * For more details see timens_setup_vdso_data(). 132 */ 133 int vdso_join_timens(struct task_struct *task, struct time_namespace *ns) 134 { 135 struct mm_struct *mm = task->mm; 136 VMA_ITERATOR(vmi, mm, 0); 137 struct vm_area_struct *vma; 138 139 mmap_read_lock(mm); 140 for_each_vma(vmi, vma) { 141 if (vma_is_special_mapping(vma, &vvar_spec)) 142 zap_vma_pages(vma); 143 } 144 mmap_read_unlock(mm); 145 146 return 0; 147 } 148 #endif 149 150 static vm_fault_t vvar_fault(const struct vm_special_mapping *sm, 151 struct vm_area_struct *vma, struct vm_fault *vmf) 152 { 153 struct page *timens_page = find_timens_vvar_page(vma); 154 unsigned long pfn; 155 156 switch (vmf->pgoff) { 157 case VVAR_BASE_PAGE_OFFSET: 158 pfn = virt_to_pfn(vdso_data); 159 break; 160 case VVAR_TIME_PAGE_OFFSET: 161 if (timens_page) 162 pfn = page_to_pfn(timens_page); 163 else 164 pfn = virt_to_pfn(vdso_data->data); 165 break; 166 #ifdef CONFIG_TIME_NS 167 case VVAR_TIMENS_PAGE_OFFSET: 168 /* 169 * If a task belongs to a time namespace then a namespace 170 * specific VVAR is mapped with the VVAR_DATA_PAGE_OFFSET and 171 * the real VVAR page is mapped with the VVAR_TIMENS_PAGE_OFFSET 172 * offset. 173 * See also the comment near timens_setup_vdso_data(). 174 */ 175 if (!timens_page) 176 return VM_FAULT_SIGBUS; 177 pfn = virt_to_pfn(vdso_data->data); 178 break; 179 #endif /* CONFIG_TIME_NS */ 180 default: 181 return VM_FAULT_SIGBUS; 182 } 183 184 return vmf_insert_pfn(vma, vmf->address, pfn); 185 } 186 187 /* 188 * This is called from binfmt_elf, we create the special vma for the 189 * vDSO and insert it into the mm struct tree 190 */ 191 static int __arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp) 192 { 193 unsigned long vdso_size, vdso_base, mappings_size; 194 struct vm_special_mapping *vdso_spec; 195 unsigned long vvar_size = VVAR_NR_PAGES * PAGE_SIZE; 196 struct mm_struct *mm = current->mm; 197 struct vm_area_struct *vma; 198 199 if (is_32bit_task()) { 200 vdso_spec = &vdso32_spec; 201 vdso_size = &vdso32_end - &vdso32_start; 202 } else { 203 vdso_spec = &vdso64_spec; 204 vdso_size = &vdso64_end - &vdso64_start; 205 } 206 207 mappings_size = vdso_size + vvar_size; 208 mappings_size += (VDSO_ALIGNMENT - 1) & PAGE_MASK; 209 210 /* 211 * Pick a base address for the vDSO in process space. 212 * Add enough to the size so that the result can be aligned. 213 */ 214 vdso_base = get_unmapped_area(NULL, 0, mappings_size, 0, 0); 215 if (IS_ERR_VALUE(vdso_base)) 216 return vdso_base; 217 218 /* Add required alignment. */ 219 vdso_base = ALIGN(vdso_base, VDSO_ALIGNMENT); 220 221 vma = _install_special_mapping(mm, vdso_base, vvar_size, 222 VM_READ | VM_MAYREAD | VM_IO | 223 VM_DONTDUMP | VM_PFNMAP, &vvar_spec); 224 if (IS_ERR(vma)) 225 return PTR_ERR(vma); 226 227 /* 228 * our vma flags don't have VM_WRITE so by default, the process isn't 229 * allowed to write those pages. 230 * gdb can break that with ptrace interface, and thus trigger COW on 231 * those pages but it's then your responsibility to never do that on 232 * the "data" page of the vDSO or you'll stop getting kernel updates 233 * and your nice userland gettimeofday will be totally dead. 234 * It's fine to use that for setting breakpoints in the vDSO code 235 * pages though. 236 */ 237 vma = _install_special_mapping(mm, vdso_base + vvar_size, vdso_size, 238 VM_READ | VM_EXEC | VM_MAYREAD | 239 VM_MAYWRITE | VM_MAYEXEC, vdso_spec); 240 if (IS_ERR(vma)) { 241 do_munmap(mm, vdso_base, vvar_size, NULL); 242 return PTR_ERR(vma); 243 } 244 245 // Now that the mappings are in place, set the mm VDSO pointer 246 mm->context.vdso = (void __user *)vdso_base + vvar_size; 247 248 return 0; 249 } 250 251 int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp) 252 { 253 struct mm_struct *mm = current->mm; 254 int rc; 255 256 mm->context.vdso = NULL; 257 258 if (mmap_write_lock_killable(mm)) 259 return -EINTR; 260 261 rc = __arch_setup_additional_pages(bprm, uses_interp); 262 263 mmap_write_unlock(mm); 264 return rc; 265 } 266 267 #define VDSO_DO_FIXUPS(type, value, bits, sec) do { \ 268 void *__start = (void *)VDSO##bits##_SYMBOL(&vdso##bits##_start, sec##_start); \ 269 void *__end = (void *)VDSO##bits##_SYMBOL(&vdso##bits##_start, sec##_end); \ 270 \ 271 do_##type##_fixups((value), __start, __end); \ 272 } while (0) 273 274 static void __init vdso_fixup_features(void) 275 { 276 #ifdef CONFIG_PPC64 277 VDSO_DO_FIXUPS(feature, cur_cpu_spec->cpu_features, 64, ftr_fixup); 278 VDSO_DO_FIXUPS(feature, cur_cpu_spec->mmu_features, 64, mmu_ftr_fixup); 279 VDSO_DO_FIXUPS(feature, powerpc_firmware_features, 64, fw_ftr_fixup); 280 VDSO_DO_FIXUPS(lwsync, cur_cpu_spec->cpu_features, 64, lwsync_fixup); 281 #endif /* CONFIG_PPC64 */ 282 283 #ifdef CONFIG_VDSO32 284 VDSO_DO_FIXUPS(feature, cur_cpu_spec->cpu_features, 32, ftr_fixup); 285 VDSO_DO_FIXUPS(feature, cur_cpu_spec->mmu_features, 32, mmu_ftr_fixup); 286 #ifdef CONFIG_PPC64 287 VDSO_DO_FIXUPS(feature, powerpc_firmware_features, 32, fw_ftr_fixup); 288 #endif /* CONFIG_PPC64 */ 289 VDSO_DO_FIXUPS(lwsync, cur_cpu_spec->cpu_features, 32, lwsync_fixup); 290 #endif 291 } 292 293 /* 294 * Called from setup_arch to initialize the bitmap of available 295 * syscalls in the systemcfg page 296 */ 297 static void __init vdso_setup_syscall_map(void) 298 { 299 unsigned int i; 300 301 for (i = 0; i < NR_syscalls; i++) { 302 if (sys_call_table[i] != (void *)&sys_ni_syscall) 303 vdso_data->syscall_map[i >> 5] |= 0x80000000UL >> (i & 0x1f); 304 if (IS_ENABLED(CONFIG_COMPAT) && 305 compat_sys_call_table[i] != (void *)&sys_ni_syscall) 306 vdso_data->compat_syscall_map[i >> 5] |= 0x80000000UL >> (i & 0x1f); 307 } 308 } 309 310 #ifdef CONFIG_PPC64 311 int vdso_getcpu_init(void) 312 { 313 unsigned long cpu, node, val; 314 315 /* 316 * SPRG_VDSO contains the CPU in the bottom 16 bits and the NUMA node 317 * in the next 16 bits. The VDSO uses this to implement getcpu(). 318 */ 319 cpu = get_cpu(); 320 WARN_ON_ONCE(cpu > 0xffff); 321 322 node = cpu_to_node(cpu); 323 WARN_ON_ONCE(node > 0xffff); 324 325 val = (cpu & 0xffff) | ((node & 0xffff) << 16); 326 mtspr(SPRN_SPRG_VDSO_WRITE, val); 327 get_paca()->sprg_vdso = val; 328 329 put_cpu(); 330 331 return 0; 332 } 333 /* We need to call this before SMP init */ 334 early_initcall(vdso_getcpu_init); 335 #endif 336 337 static struct page ** __init vdso_setup_pages(void *start, void *end) 338 { 339 int i; 340 struct page **pagelist; 341 int pages = (end - start) >> PAGE_SHIFT; 342 343 pagelist = kcalloc(pages + 1, sizeof(struct page *), GFP_KERNEL); 344 if (!pagelist) 345 panic("%s: Cannot allocate page list for VDSO", __func__); 346 347 for (i = 0; i < pages; i++) 348 pagelist[i] = virt_to_page(start + i * PAGE_SIZE); 349 350 return pagelist; 351 } 352 353 static int __init vdso_init(void) 354 { 355 #ifdef CONFIG_PPC64 356 /* 357 * Fill up the "systemcfg" stuff for backward compatibility 358 */ 359 strcpy((char *)vdso_data->eye_catcher, "SYSTEMCFG:PPC64"); 360 vdso_data->version.major = SYSTEMCFG_MAJOR; 361 vdso_data->version.minor = SYSTEMCFG_MINOR; 362 vdso_data->processor = mfspr(SPRN_PVR); 363 /* 364 * Fake the old platform number for pSeries and add 365 * in LPAR bit if necessary 366 */ 367 vdso_data->platform = 0x100; 368 if (firmware_has_feature(FW_FEATURE_LPAR)) 369 vdso_data->platform |= 1; 370 vdso_data->physicalMemorySize = memblock_phys_mem_size(); 371 vdso_data->dcache_size = ppc64_caches.l1d.size; 372 vdso_data->dcache_line_size = ppc64_caches.l1d.line_size; 373 vdso_data->icache_size = ppc64_caches.l1i.size; 374 vdso_data->icache_line_size = ppc64_caches.l1i.line_size; 375 vdso_data->dcache_block_size = ppc64_caches.l1d.block_size; 376 vdso_data->icache_block_size = ppc64_caches.l1i.block_size; 377 vdso_data->dcache_log_block_size = ppc64_caches.l1d.log_block_size; 378 vdso_data->icache_log_block_size = ppc64_caches.l1i.log_block_size; 379 #endif /* CONFIG_PPC64 */ 380 381 vdso_setup_syscall_map(); 382 383 vdso_fixup_features(); 384 385 if (IS_ENABLED(CONFIG_VDSO32)) 386 vdso32_spec.pages = vdso_setup_pages(&vdso32_start, &vdso32_end); 387 388 if (IS_ENABLED(CONFIG_PPC64)) 389 vdso64_spec.pages = vdso_setup_pages(&vdso64_start, &vdso64_end); 390 391 smp_wmb(); 392 393 return 0; 394 } 395 arch_initcall(vdso_init); 396