blob: d60598113a9f3d1275d2aed42a3e58478433b8c6 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Tim Abbottabe1ee32009-09-20 18:14:15 -04002
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +11003/*
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +11004 * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
5 * <benh@kernel.crashing.org>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +11006 */
7
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +11008#include <linux/errno.h>
9#include <linux/sched.h>
10#include <linux/kernel.h>
11#include <linux/mm.h>
12#include <linux/smp.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110013#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>
Yinghai Lu95f72d12010-07-12 14:36:09 +100019#include <linux/memblock.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110020
21#include <asm/pgtable.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110022#include <asm/processor.h>
23#include <asm/mmu.h>
24#include <asm/mmu_context.h>
David S. Millerd9b2b2a2008-02-13 16:56:49 -080025#include <asm/prom.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110026#include <asm/machdep.h>
27#include <asm/cputable.h>
28#include <asm/sections.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110029#include <asm/firmware.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110030#include <asm/vdso.h>
31#include <asm/vdso_datapage.h>
Robert Jenningsb88c4762013-10-28 09:20:51 -050032#include <asm/setup.h>
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +100033
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110034#undef DEBUG
35
36#ifdef DEBUG
37#define DBG(fmt...) printk(fmt)
38#else
39#define DBG(fmt...)
40#endif
41
42/* Max supported size for symbol names */
43#define MAX_SYMNAME 64
44
Andreas Schwab348aa302009-10-04 02:35:41 +000045/* The alignment of the vDSO */
46#define VDSO_ALIGNMENT (1 << 16)
47
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +110048static unsigned int vdso32_pages;
Michael Ellermane0d00592015-05-11 20:01:02 +100049static void *vdso32_kbase;
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +110050static struct page **vdso32_pagelist;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110051unsigned long vdso32_sigtramp;
52unsigned long vdso32_rt_sigtramp;
53
Michael Ellermane0d00592015-05-11 20:01:02 +100054#ifdef CONFIG_VDSO32
55extern char vdso32_start, vdso32_end;
56#endif
57
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110058#ifdef CONFIG_PPC64
59extern char vdso64_start, vdso64_end;
60static void *vdso64_kbase = &vdso64_start;
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +110061static unsigned int vdso64_pages;
62static struct page **vdso64_pagelist;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110063unsigned long vdso64_rt_sigtramp;
64#endif /* CONFIG_PPC64 */
65
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +110066static int vdso_ready;
67
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110068/*
69 * The vdso data page (aka. systemcfg for old ppc64 fans) is here.
70 * Once the early boot kernel code no longer needs to muck around
71 * with it, it will become dynamically allocated
72 */
73static union {
74 struct vdso_data data;
75 u8 page[PAGE_SIZE];
Tim Abbottabe1ee32009-09-20 18:14:15 -040076} vdso_data_store __page_aligned_data;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110077struct vdso_data *vdso_data = &vdso_data_store.data;
78
79/* Format of the patch table */
80struct vdso_patch_def
81{
82 unsigned long ftr_mask, ftr_value;
83 const char *gen_name;
84 const char *fix_name;
85};
86
87/* Table of functions to patch based on the CPU type/revision
88 *
89 * Currently, we only change sync_dicache to do nothing on processors
90 * with a coherent icache
91 */
92static struct vdso_patch_def vdso_patches[] = {
93 {
94 CPU_FTR_COHERENT_ICACHE, CPU_FTR_COHERENT_ICACHE,
95 "__kernel_sync_dicache", "__kernel_sync_dicache_p5"
96 },
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +110097#ifdef CONFIG_PPC32
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110098 {
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +110099 CPU_FTR_USE_RTC, CPU_FTR_USE_RTC,
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100100 "__kernel_gettimeofday", NULL
101 },
Benjamin Herrenschmidt7b5acba2007-09-19 14:21:56 +1000102 {
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100103 CPU_FTR_USE_RTC, CPU_FTR_USE_RTC,
Benjamin Herrenschmidt7b5acba2007-09-19 14:21:56 +1000104 "__kernel_clock_gettime", NULL
105 },
106 {
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100107 CPU_FTR_USE_RTC, CPU_FTR_USE_RTC,
Benjamin Herrenschmidt7b5acba2007-09-19 14:21:56 +1000108 "__kernel_clock_getres", NULL
109 },
110 {
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100111 CPU_FTR_USE_RTC, CPU_FTR_USE_RTC,
Benjamin Herrenschmidt7b5acba2007-09-19 14:21:56 +1000112 "__kernel_get_tbfreq", NULL
113 },
Adhemerval Zanellafcb41a22013-04-22 09:29:33 +0000114 {
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100115 CPU_FTR_USE_RTC, CPU_FTR_USE_RTC,
Adhemerval Zanellafcb41a22013-04-22 09:29:33 +0000116 "__kernel_time", NULL
117 },
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100118#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100119};
120
121/*
122 * Some infos carried around for each of them during parsing at
123 * boot time.
124 */
125struct lib32_elfinfo
126{
127 Elf32_Ehdr *hdr; /* ptr to ELF */
128 Elf32_Sym *dynsym; /* ptr to .dynsym section */
129 unsigned long dynsymsize; /* size of .dynsym section */
130 char *dynstr; /* ptr to .dynstr section */
131 unsigned long text; /* offset of .text section in .so */
132};
133
134struct lib64_elfinfo
135{
136 Elf64_Ehdr *hdr;
137 Elf64_Sym *dynsym;
138 unsigned long dynsymsize;
139 char *dynstr;
140 unsigned long text;
141};
142
143
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100144/*
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100145 * This is called from binfmt_elf, we create the special vma for the
146 * vDSO and insert it into the mm struct tree
147 */
Martin Schwidefskyfc5243d2008-12-25 13:38:35 +0100148int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100149{
150 struct mm_struct *mm = current->mm;
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800151 struct page **vdso_pagelist;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100152 unsigned long vdso_pages;
153 unsigned long vdso_base;
Benjamin Herrenschmidta5bba932006-05-30 13:51:37 +1000154 int rc;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100155
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100156 if (!vdso_ready)
157 return 0;
158
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100159#ifdef CONFIG_PPC64
Denis Kirjanovcab175f92010-08-27 03:49:11 +0000160 if (is_32bit_task()) {
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800161 vdso_pagelist = vdso32_pagelist;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100162 vdso_pages = vdso32_pages;
163 vdso_base = VDSO32_MBASE;
164 } else {
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800165 vdso_pagelist = vdso64_pagelist;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100166 vdso_pages = vdso64_pages;
Anton Blanchard30d0b362009-07-13 20:53:51 +0000167 /*
168 * On 64bit we don't have a preferred map address. This
169 * allows get_unmapped_area to find an area near other mmaps
170 * and most likely share a SLB entry.
171 */
172 vdso_base = 0;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100173 }
174#else
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800175 vdso_pagelist = vdso32_pagelist;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100176 vdso_pages = vdso32_pages;
177 vdso_base = VDSO32_MBASE;
178#endif
179
Benjamin Herrenschmidta5bba932006-05-30 13:51:37 +1000180 current->mm->context.vdso_base = 0;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100181
182 /* vDSO has a problem and was disabled, just don't "enable" it for the
183 * process
184 */
185 if (vdso_pages == 0)
186 return 0;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100187 /* Add a page to the vdso size for the data page */
188 vdso_pages ++;
189
190 /*
191 * pick a base address for the vDSO in process space. We try to put it
192 * at vdso_base which is the "natural" base for it, but we might fail
193 * and end up putting it elsewhere.
Andreas Schwab348aa302009-10-04 02:35:41 +0000194 * Add enough to the size so that the result can be aligned.
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100195 */
Michal Hocko69048172016-05-23 16:25:54 -0700196 if (down_write_killable(&mm->mmap_sem))
197 return -EINTR;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100198 vdso_base = get_unmapped_area(NULL, vdso_base,
Andreas Schwab348aa302009-10-04 02:35:41 +0000199 (vdso_pages << PAGE_SHIFT) +
200 ((VDSO_ALIGNMENT - 1) & PAGE_MASK),
201 0, 0);
Benjamin Herrenschmidta5bba932006-05-30 13:51:37 +1000202 if (IS_ERR_VALUE(vdso_base)) {
203 rc = vdso_base;
204 goto fail_mmapsem;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100205 }
206
Andreas Schwab348aa302009-10-04 02:35:41 +0000207 /* Add required alignment. */
208 vdso_base = ALIGN(vdso_base, VDSO_ALIGNMENT);
209
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100210 /*
Anton Blanchardf2053f12009-09-21 16:57:40 +0000211 * Put vDSO base into mm struct. We need to do this before calling
212 * install_special_mapping or the perf counter mmap tracking code
213 * will fail to recognise it as a vDSO (since arch_vma_name fails).
214 */
215 current->mm->context.vdso_base = vdso_base;
216
217 /*
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100218 * our vma flags don't have VM_WRITE so by default, the process isn't
219 * allowed to write those pages.
220 * gdb can break that with ptrace interface, and thus trigger COW on
221 * those pages but it's then your responsibility to never do that on
222 * the "data" page of the vDSO or you'll stop getting kernel updates
223 * and your nice userland gettimeofday will be totally dead.
224 * It's fine to use that for setting breakpoints in the vDSO code
Jason Baron909af762012-03-23 15:02:51 -0700225 * pages though.
Roland McGrath3a0cfad2007-01-26 00:56:51 -0800226 */
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800227 rc = install_special_mapping(mm, vdso_base, vdso_pages << PAGE_SHIFT,
228 VM_READ|VM_EXEC|
Jason Baron909af762012-03-23 15:02:51 -0700229 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800230 vdso_pagelist);
Anton Blanchardf2053f12009-09-21 16:57:40 +0000231 if (rc) {
232 current->mm->context.vdso_base = 0;
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800233 goto fail_mmapsem;
Anton Blanchardf2053f12009-09-21 16:57:40 +0000234 }
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800235
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100236 up_write(&mm->mmap_sem);
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100237 return 0;
Benjamin Herrenschmidta5bba932006-05-30 13:51:37 +1000238
Benjamin Herrenschmidta5bba932006-05-30 13:51:37 +1000239 fail_mmapsem:
240 up_write(&mm->mmap_sem);
241 return rc;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100242}
243
Benjamin Herrenschmidta5bba932006-05-30 13:51:37 +1000244const char *arch_vma_name(struct vm_area_struct *vma)
245{
246 if (vma->vm_mm && vma->vm_start == vma->vm_mm->context.vdso_base)
247 return "[vdso]";
248 return NULL;
249}
250
251
252
Michael Ellermane0d00592015-05-11 20:01:02 +1000253#ifdef CONFIG_VDSO32
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100254static void * __init find_section32(Elf32_Ehdr *ehdr, const char *secname,
255 unsigned long *size)
256{
257 Elf32_Shdr *sechdrs;
258 unsigned int i;
259 char *secnames;
260
261 /* Grab section headers and strings so we can tell who is who */
262 sechdrs = (void *)ehdr + ehdr->e_shoff;
263 secnames = (void *)ehdr + sechdrs[ehdr->e_shstrndx].sh_offset;
264
265 /* Find the section they want */
266 for (i = 1; i < ehdr->e_shnum; i++) {
267 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) {
268 if (size)
269 *size = sechdrs[i].sh_size;
270 return (void *)ehdr + sechdrs[i].sh_offset;
271 }
272 }
273 *size = 0;
274 return NULL;
275}
276
277static Elf32_Sym * __init find_symbol32(struct lib32_elfinfo *lib,
278 const char *symname)
279{
280 unsigned int i;
281 char name[MAX_SYMNAME], *c;
282
283 for (i = 0; i < (lib->dynsymsize / sizeof(Elf32_Sym)); i++) {
284 if (lib->dynsym[i].st_name == 0)
285 continue;
286 strlcpy(name, lib->dynstr + lib->dynsym[i].st_name,
287 MAX_SYMNAME);
288 c = strchr(name, '@');
289 if (c)
290 *c = 0;
291 if (strcmp(symname, name) == 0)
292 return &lib->dynsym[i];
293 }
294 return NULL;
295}
296
297/* Note that we assume the section is .text and the symbol is relative to
298 * the library base
299 */
300static unsigned long __init find_function32(struct lib32_elfinfo *lib,
301 const char *symname)
302{
303 Elf32_Sym *sym = find_symbol32(lib, symname);
304
305 if (sym == NULL) {
306 printk(KERN_WARNING "vDSO32: function %s not found !\n",
307 symname);
308 return 0;
309 }
310 return sym->st_value - VDSO32_LBASE;
311}
312
Adrian Bunkcf8918f2008-02-14 08:30:52 +1100313static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32,
314 struct lib64_elfinfo *v64,
315 const char *orig, const char *fix)
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100316{
317 Elf32_Sym *sym32_gen, *sym32_fix;
318
319 sym32_gen = find_symbol32(v32, orig);
320 if (sym32_gen == NULL) {
321 printk(KERN_ERR "vDSO32: Can't find symbol %s !\n", orig);
322 return -1;
323 }
324 if (fix == NULL) {
325 sym32_gen->st_name = 0;
326 return 0;
327 }
328 sym32_fix = find_symbol32(v32, fix);
329 if (sym32_fix == NULL) {
330 printk(KERN_ERR "vDSO32: Can't find symbol %s !\n", fix);
331 return -1;
332 }
333 sym32_gen->st_value = sym32_fix->st_value;
334 sym32_gen->st_size = sym32_fix->st_size;
335 sym32_gen->st_info = sym32_fix->st_info;
336 sym32_gen->st_other = sym32_fix->st_other;
337 sym32_gen->st_shndx = sym32_fix->st_shndx;
338
339 return 0;
340}
Michael Ellermane0d00592015-05-11 20:01:02 +1000341#else /* !CONFIG_VDSO32 */
342static unsigned long __init find_function32(struct lib32_elfinfo *lib,
343 const char *symname)
344{
345 return 0;
346}
347
348static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32,
349 struct lib64_elfinfo *v64,
350 const char *orig, const char *fix)
351{
352 return 0;
353}
354#endif /* CONFIG_VDSO32 */
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100355
356
357#ifdef CONFIG_PPC64
358
359static void * __init find_section64(Elf64_Ehdr *ehdr, const char *secname,
360 unsigned long *size)
361{
362 Elf64_Shdr *sechdrs;
363 unsigned int i;
364 char *secnames;
365
366 /* Grab section headers and strings so we can tell who is who */
367 sechdrs = (void *)ehdr + ehdr->e_shoff;
368 secnames = (void *)ehdr + sechdrs[ehdr->e_shstrndx].sh_offset;
369
370 /* Find the section they want */
371 for (i = 1; i < ehdr->e_shnum; i++) {
372 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) {
373 if (size)
374 *size = sechdrs[i].sh_size;
375 return (void *)ehdr + sechdrs[i].sh_offset;
376 }
377 }
378 if (size)
379 *size = 0;
380 return NULL;
381}
382
383static Elf64_Sym * __init find_symbol64(struct lib64_elfinfo *lib,
384 const char *symname)
385{
386 unsigned int i;
387 char name[MAX_SYMNAME], *c;
388
389 for (i = 0; i < (lib->dynsymsize / sizeof(Elf64_Sym)); i++) {
390 if (lib->dynsym[i].st_name == 0)
391 continue;
392 strlcpy(name, lib->dynstr + lib->dynsym[i].st_name,
393 MAX_SYMNAME);
394 c = strchr(name, '@');
395 if (c)
396 *c = 0;
397 if (strcmp(symname, name) == 0)
398 return &lib->dynsym[i];
399 }
400 return NULL;
401}
402
403/* Note that we assume the section is .text and the symbol is relative to
404 * the library base
405 */
406static unsigned long __init find_function64(struct lib64_elfinfo *lib,
407 const char *symname)
408{
409 Elf64_Sym *sym = find_symbol64(lib, symname);
410
411 if (sym == NULL) {
412 printk(KERN_WARNING "vDSO64: function %s not found !\n",
413 symname);
414 return 0;
415 }
416#ifdef VDS64_HAS_DESCRIPTORS
417 return *((u64 *)(vdso64_kbase + sym->st_value - VDSO64_LBASE)) -
418 VDSO64_LBASE;
419#else
420 return sym->st_value - VDSO64_LBASE;
421#endif
422}
423
Adrian Bunkcf8918f2008-02-14 08:30:52 +1100424static int __init vdso_do_func_patch64(struct lib32_elfinfo *v32,
425 struct lib64_elfinfo *v64,
426 const char *orig, const char *fix)
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100427{
428 Elf64_Sym *sym64_gen, *sym64_fix;
429
430 sym64_gen = find_symbol64(v64, orig);
431 if (sym64_gen == NULL) {
432 printk(KERN_ERR "vDSO64: Can't find symbol %s !\n", orig);
433 return -1;
434 }
435 if (fix == NULL) {
436 sym64_gen->st_name = 0;
437 return 0;
438 }
439 sym64_fix = find_symbol64(v64, fix);
440 if (sym64_fix == NULL) {
441 printk(KERN_ERR "vDSO64: Can't find symbol %s !\n", fix);
442 return -1;
443 }
444 sym64_gen->st_value = sym64_fix->st_value;
445 sym64_gen->st_size = sym64_fix->st_size;
446 sym64_gen->st_info = sym64_fix->st_info;
447 sym64_gen->st_other = sym64_fix->st_other;
448 sym64_gen->st_shndx = sym64_fix->st_shndx;
449
450 return 0;
451}
452
453#endif /* CONFIG_PPC64 */
454
455
456static __init int vdso_do_find_sections(struct lib32_elfinfo *v32,
457 struct lib64_elfinfo *v64)
458{
459 void *sect;
460
461 /*
462 * Locate symbol tables & text section
463 */
464
Michael Ellermane0d00592015-05-11 20:01:02 +1000465#ifdef CONFIG_VDSO32
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100466 v32->dynsym = find_section32(v32->hdr, ".dynsym", &v32->dynsymsize);
467 v32->dynstr = find_section32(v32->hdr, ".dynstr", NULL);
468 if (v32->dynsym == NULL || v32->dynstr == NULL) {
469 printk(KERN_ERR "vDSO32: required symbol section not found\n");
470 return -1;
471 }
472 sect = find_section32(v32->hdr, ".text", NULL);
473 if (sect == NULL) {
474 printk(KERN_ERR "vDSO32: the .text section was not found\n");
475 return -1;
476 }
477 v32->text = sect - vdso32_kbase;
Michael Ellermane0d00592015-05-11 20:01:02 +1000478#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100479
480#ifdef CONFIG_PPC64
481 v64->dynsym = find_section64(v64->hdr, ".dynsym", &v64->dynsymsize);
482 v64->dynstr = find_section64(v64->hdr, ".dynstr", NULL);
483 if (v64->dynsym == NULL || v64->dynstr == NULL) {
484 printk(KERN_ERR "vDSO64: required symbol section not found\n");
485 return -1;
486 }
487 sect = find_section64(v64->hdr, ".text", NULL);
488 if (sect == NULL) {
489 printk(KERN_ERR "vDSO64: the .text section was not found\n");
490 return -1;
491 }
492 v64->text = sect - vdso64_kbase;
493#endif /* CONFIG_PPC64 */
494
495 return 0;
496}
497
498static __init void vdso_setup_trampolines(struct lib32_elfinfo *v32,
499 struct lib64_elfinfo *v64)
500{
501 /*
502 * Find signal trampolines
503 */
504
505#ifdef CONFIG_PPC64
506 vdso64_rt_sigtramp = find_function64(v64, "__kernel_sigtramp_rt64");
507#endif
508 vdso32_sigtramp = find_function32(v32, "__kernel_sigtramp32");
509 vdso32_rt_sigtramp = find_function32(v32, "__kernel_sigtramp_rt32");
510}
511
512static __init int vdso_fixup_datapage(struct lib32_elfinfo *v32,
513 struct lib64_elfinfo *v64)
514{
Michael Ellermane0d00592015-05-11 20:01:02 +1000515#ifdef CONFIG_VDSO32
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100516 Elf32_Sym *sym32;
Michael Ellermane0d00592015-05-11 20:01:02 +1000517#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100518#ifdef CONFIG_PPC64
519 Elf64_Sym *sym64;
520
521 sym64 = find_symbol64(v64, "__kernel_datapage_offset");
522 if (sym64 == NULL) {
523 printk(KERN_ERR "vDSO64: Can't find symbol "
524 "__kernel_datapage_offset !\n");
525 return -1;
526 }
527 *((int *)(vdso64_kbase + sym64->st_value - VDSO64_LBASE)) =
528 (vdso64_pages << PAGE_SHIFT) -
529 (sym64->st_value - VDSO64_LBASE);
530#endif /* CONFIG_PPC64 */
531
Michael Ellermane0d00592015-05-11 20:01:02 +1000532#ifdef CONFIG_VDSO32
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100533 sym32 = find_symbol32(v32, "__kernel_datapage_offset");
534 if (sym32 == NULL) {
535 printk(KERN_ERR "vDSO32: Can't find symbol "
536 "__kernel_datapage_offset !\n");
537 return -1;
538 }
539 *((int *)(vdso32_kbase + (sym32->st_value - VDSO32_LBASE))) =
540 (vdso32_pages << PAGE_SHIFT) -
541 (sym32->st_value - VDSO32_LBASE);
Michael Ellermane0d00592015-05-11 20:01:02 +1000542#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100543
544 return 0;
545}
546
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000547
548static __init int vdso_fixup_features(struct lib32_elfinfo *v32,
549 struct lib64_elfinfo *v64)
550{
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000551 unsigned long size;
552 void *start;
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000553
554#ifdef CONFIG_PPC64
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000555 start = find_section64(v64->hdr, "__ftr_fixup", &size);
556 if (start)
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000557 do_feature_fixups(cur_cpu_spec->cpu_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000558 start, start + size);
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000559
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000560 start = find_section64(v64->hdr, "__mmu_ftr_fixup", &size);
561 if (start)
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000562 do_feature_fixups(cur_cpu_spec->mmu_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000563 start, start + size);
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000564
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000565 start = find_section64(v64->hdr, "__fw_ftr_fixup", &size);
566 if (start)
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000567 do_feature_fixups(powerpc_firmware_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000568 start, start + size);
Kumar Gala2d1b2022008-07-02 01:16:40 +1000569
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000570 start = find_section64(v64->hdr, "__lwsync_fixup", &size);
571 if (start)
Kumar Gala2d1b2022008-07-02 01:16:40 +1000572 do_lwsync_fixups(cur_cpu_spec->cpu_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000573 start, start + size);
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000574#endif /* CONFIG_PPC64 */
575
Michael Ellermane0d00592015-05-11 20:01:02 +1000576#ifdef CONFIG_VDSO32
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000577 start = find_section32(v32->hdr, "__ftr_fixup", &size);
578 if (start)
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000579 do_feature_fixups(cur_cpu_spec->cpu_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000580 start, start + size);
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000581
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000582 start = find_section32(v32->hdr, "__mmu_ftr_fixup", &size);
583 if (start)
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000584 do_feature_fixups(cur_cpu_spec->mmu_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000585 start, start + size);
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000586
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000587#ifdef CONFIG_PPC64
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000588 start = find_section32(v32->hdr, "__fw_ftr_fixup", &size);
589 if (start)
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000590 do_feature_fixups(powerpc_firmware_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000591 start, start + size);
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000592#endif /* CONFIG_PPC64 */
593
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000594 start = find_section32(v32->hdr, "__lwsync_fixup", &size);
595 if (start)
Kumar Gala2d1b2022008-07-02 01:16:40 +1000596 do_lwsync_fixups(cur_cpu_spec->cpu_features,
Michael Ellerman6e5c0772015-04-22 15:40:35 +1000597 start, start + size);
Michael Ellermane0d00592015-05-11 20:01:02 +1000598#endif
Kumar Gala2d1b2022008-07-02 01:16:40 +1000599
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000600 return 0;
601}
602
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100603static __init int vdso_fixup_alt_funcs(struct lib32_elfinfo *v32,
604 struct lib64_elfinfo *v64)
605{
606 int i;
607
608 for (i = 0; i < ARRAY_SIZE(vdso_patches); i++) {
609 struct vdso_patch_def *patch = &vdso_patches[i];
610 int match = (cur_cpu_spec->cpu_features & patch->ftr_mask)
611 == patch->ftr_value;
612 if (!match)
613 continue;
614
615 DBG("replacing %s with %s...\n", patch->gen_name,
616 patch->fix_name ? "NONE" : patch->fix_name);
617
618 /*
619 * Patch the 32 bits and 64 bits symbols. Note that we do not
620 * patch the "." symbol on 64 bits.
621 * It would be easy to do, but doesn't seem to be necessary,
622 * patching the OPD symbol is enough.
623 */
624 vdso_do_func_patch32(v32, v64, patch->gen_name,
625 patch->fix_name);
626#ifdef CONFIG_PPC64
627 vdso_do_func_patch64(v32, v64, patch->gen_name,
628 patch->fix_name);
629#endif /* CONFIG_PPC64 */
630 }
631
632 return 0;
633}
634
635
636static __init int vdso_setup(void)
637{
638 struct lib32_elfinfo v32;
639 struct lib64_elfinfo v64;
640
641 v32.hdr = vdso32_kbase;
642#ifdef CONFIG_PPC64
643 v64.hdr = vdso64_kbase;
644#endif
645 if (vdso_do_find_sections(&v32, &v64))
646 return -1;
647
648 if (vdso_fixup_datapage(&v32, &v64))
649 return -1;
650
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000651 if (vdso_fixup_features(&v32, &v64))
652 return -1;
653
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100654 if (vdso_fixup_alt_funcs(&v32, &v64))
655 return -1;
656
657 vdso_setup_trampolines(&v32, &v64);
658
659 return 0;
660}
661
662/*
663 * Called from setup_arch to initialize the bitmap of available
664 * syscalls in the systemcfg page
665 */
666static void __init vdso_setup_syscall_map(void)
667{
668 unsigned int i;
669 extern unsigned long *sys_call_table;
Firoz Khanfbf508d2018-12-17 16:10:35 +0530670#ifdef CONFIG_PPC64
671 extern unsigned long *compat_sys_call_table;
672#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100673 extern unsigned long sys_ni_syscall;
674
675
Rashmica Guptaf43194e2015-11-19 17:04:53 +1100676 for (i = 0; i < NR_syscalls; i++) {
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100677#ifdef CONFIG_PPC64
Firoz Khanfbf508d2018-12-17 16:10:35 +0530678 if (sys_call_table[i] != sys_ni_syscall)
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100679 vdso_data->syscall_map_64[i >> 5] |=
680 0x80000000UL >> (i & 0x1f);
Firoz Khanfbf508d2018-12-17 16:10:35 +0530681 if (compat_sys_call_table[i] != sys_ni_syscall)
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100682 vdso_data->syscall_map_32[i >> 5] |=
683 0x80000000UL >> (i & 0x1f);
684#else /* CONFIG_PPC64 */
685 if (sys_call_table[i] != sys_ni_syscall)
686 vdso_data->syscall_map_32[i >> 5] |=
687 0x80000000UL >> (i & 0x1f);
688#endif /* CONFIG_PPC64 */
689 }
690}
691
Anton Blanchard18ad51d2012-07-04 20:37:11 +0000692#ifdef CONFIG_PPC64
Paul Gortmaker061d19f2013-06-24 15:30:09 -0400693int vdso_getcpu_init(void)
Anton Blanchard18ad51d2012-07-04 20:37:11 +0000694{
695 unsigned long cpu, node, val;
696
697 /*
Scott Wood9d378df2014-03-10 17:29:38 -0500698 * SPRG_VDSO contains the CPU in the bottom 16 bits and the NUMA node
699 * in the next 16 bits. The VDSO uses this to implement getcpu().
Anton Blanchard18ad51d2012-07-04 20:37:11 +0000700 */
701 cpu = get_cpu();
702 WARN_ON_ONCE(cpu > 0xffff);
703
704 node = cpu_to_node(cpu);
705 WARN_ON_ONCE(node > 0xffff);
706
707 val = (cpu & 0xfff) | ((node & 0xffff) << 16);
Scott Wood9d378df2014-03-10 17:29:38 -0500708 mtspr(SPRN_SPRG_VDSO_WRITE, val);
709 get_paca()->sprg_vdso = val;
Anton Blanchard18ad51d2012-07-04 20:37:11 +0000710
711 put_cpu();
712
713 return 0;
714}
715/* We need to call this before SMP init */
716early_initcall(vdso_getcpu_init);
717#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100718
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100719static int __init vdso_init(void)
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100720{
721 int i;
722
723#ifdef CONFIG_PPC64
724 /*
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -0400725 * Fill up the "systemcfg" stuff for backward compatibility
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100726 */
Segher Boessenkool31fe5bf2007-05-17 01:12:16 +1000727 strcpy((char *)vdso_data->eye_catcher, "SYSTEMCFG:PPC64");
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100728 vdso_data->version.major = SYSTEMCFG_MAJOR;
729 vdso_data->version.minor = SYSTEMCFG_MINOR;
730 vdso_data->processor = mfspr(SPRN_PVR);
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100731 /*
Stephen Rothwell1d9a4732012-03-21 18:23:27 +0000732 * Fake the old platform number for pSeries and add
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100733 * in LPAR bit if necessary
734 */
Stephen Rothwell1d9a4732012-03-21 18:23:27 +0000735 vdso_data->platform = 0x100;
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100736 if (firmware_has_feature(FW_FEATURE_LPAR))
737 vdso_data->platform |= 1;
Yinghai Lu95f72d12010-07-12 14:36:09 +1000738 vdso_data->physicalMemorySize = memblock_phys_mem_size();
Benjamin Herrenschmidte2827fe2017-01-08 17:31:47 -0600739 vdso_data->dcache_size = ppc64_caches.l1d.size;
740 vdso_data->dcache_line_size = ppc64_caches.l1d.line_size;
741 vdso_data->icache_size = ppc64_caches.l1i.size;
742 vdso_data->icache_line_size = ppc64_caches.l1i.line_size;
743 vdso_data->dcache_block_size = ppc64_caches.l1d.block_size;
744 vdso_data->icache_block_size = ppc64_caches.l1i.block_size;
745 vdso_data->dcache_log_block_size = ppc64_caches.l1d.log_block_size;
746 vdso_data->icache_log_block_size = ppc64_caches.l1i.log_block_size;
Olof Johanssonfbe48172007-11-20 12:24:45 +1100747
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100748 /*
749 * Calculate the size of the 64 bits vDSO
750 */
751 vdso64_pages = (&vdso64_end - &vdso64_start) >> PAGE_SHIFT;
752 DBG("vdso64_kbase: %p, 0x%x pages\n", vdso64_kbase, vdso64_pages);
Olof Johanssonfbe48172007-11-20 12:24:45 +1100753#else
754 vdso_data->dcache_block_size = L1_CACHE_BYTES;
755 vdso_data->dcache_log_block_size = L1_CACHE_SHIFT;
756 vdso_data->icache_block_size = L1_CACHE_BYTES;
757 vdso_data->icache_log_block_size = L1_CACHE_SHIFT;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100758#endif /* CONFIG_PPC64 */
759
760
Michael Ellermane0d00592015-05-11 20:01:02 +1000761#ifdef CONFIG_VDSO32
762 vdso32_kbase = &vdso32_start;
763
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100764 /*
765 * Calculate the size of the 32 bits vDSO
766 */
767 vdso32_pages = (&vdso32_end - &vdso32_start) >> PAGE_SHIFT;
768 DBG("vdso32_kbase: %p, 0x%x pages\n", vdso32_kbase, vdso32_pages);
Michael Ellermane0d00592015-05-11 20:01:02 +1000769#endif
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100770
771
772 /*
773 * Setup the syscall map in the vDOS
774 */
775 vdso_setup_syscall_map();
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000776
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100777 /*
778 * Initialize the vDSO images in memory, that is do necessary
779 * fixups of vDSO symbols, locate trampolines, etc...
780 */
781 if (vdso_setup()) {
782 printk(KERN_ERR "vDSO setup failure, not enabled !\n");
783 vdso32_pages = 0;
784#ifdef CONFIG_PPC64
785 vdso64_pages = 0;
786#endif
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100787 return 0;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100788 }
789
Michael Ellermane0d00592015-05-11 20:01:02 +1000790#ifdef CONFIG_VDSO32
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100791 /* Make sure pages are in the correct state */
Kees Cook6396bb22018-06-12 14:03:40 -0700792 vdso32_pagelist = kcalloc(vdso32_pages + 2, sizeof(struct page *),
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100793 GFP_KERNEL);
794 BUG_ON(vdso32_pagelist == NULL);
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100795 for (i = 0; i < vdso32_pages; i++) {
796 struct page *pg = virt_to_page(vdso32_kbase + i*PAGE_SIZE);
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100797 get_page(pg);
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800798 vdso32_pagelist[i] = pg;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100799 }
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800800 vdso32_pagelist[i++] = virt_to_page(vdso_data);
801 vdso32_pagelist[i] = NULL;
Michael Ellermane0d00592015-05-11 20:01:02 +1000802#endif
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800803
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100804#ifdef CONFIG_PPC64
Kees Cook6396bb22018-06-12 14:03:40 -0700805 vdso64_pagelist = kcalloc(vdso64_pages + 2, sizeof(struct page *),
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100806 GFP_KERNEL);
807 BUG_ON(vdso64_pagelist == NULL);
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100808 for (i = 0; i < vdso64_pages; i++) {
809 struct page *pg = virt_to_page(vdso64_kbase + i*PAGE_SIZE);
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100810 get_page(pg);
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800811 vdso64_pagelist[i] = pg;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100812 }
Roland McGrathc13e4ca2007-02-08 14:20:43 -0800813 vdso64_pagelist[i++] = virt_to_page(vdso_data);
814 vdso64_pagelist[i] = NULL;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100815#endif /* CONFIG_PPC64 */
816
817 get_page(virt_to_page(vdso_data));
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100818
819 smp_wmb();
820 vdso_ready = 1;
821
822 return 0;
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100823}
Benjamin Herrenschmidt7ac9a132007-02-12 13:31:08 +1100824arch_initcall(vdso_init);