powerpc: Explicit alignment for .data.cacheline_aligned
[deliverable/linux.git] / arch / powerpc / kernel / vdso.c
CommitLineData
a7f290da 1/*
a7f290da
BH
2 * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
3 * <benh@kernel.crashing.org>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
10
a7f290da
BH
11#include <linux/module.h>
12#include <linux/errno.h>
13#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/mm.h>
16#include <linux/smp.h>
a7f290da
BH
17#include <linux/stddef.h>
18#include <linux/unistd.h>
19#include <linux/slab.h>
20#include <linux/user.h>
21#include <linux/elf.h>
22#include <linux/security.h>
23#include <linux/bootmem.h>
d9b2b2a2 24#include <linux/lmb.h>
a7f290da
BH
25
26#include <asm/pgtable.h>
27#include <asm/system.h>
28#include <asm/processor.h>
29#include <asm/mmu.h>
30#include <asm/mmu_context.h>
d9b2b2a2 31#include <asm/prom.h>
a7f290da
BH
32#include <asm/machdep.h>
33#include <asm/cputable.h>
34#include <asm/sections.h>
e8222502 35#include <asm/firmware.h>
a7f290da
BH
36#include <asm/vdso.h>
37#include <asm/vdso_datapage.h>
38
0909c8c2
BH
39#include "setup.h"
40
a7f290da
BH
41#undef DEBUG
42
43#ifdef DEBUG
44#define DBG(fmt...) printk(fmt)
45#else
46#define DBG(fmt...)
47#endif
48
49/* Max supported size for symbol names */
50#define MAX_SYMNAME 64
51
52extern char vdso32_start, vdso32_end;
53static void *vdso32_kbase = &vdso32_start;
7ac9a137
BH
54static unsigned int vdso32_pages;
55static struct page **vdso32_pagelist;
a7f290da
BH
56unsigned long vdso32_sigtramp;
57unsigned long vdso32_rt_sigtramp;
58
59#ifdef CONFIG_PPC64
60extern char vdso64_start, vdso64_end;
61static void *vdso64_kbase = &vdso64_start;
7ac9a137
BH
62static unsigned int vdso64_pages;
63static struct page **vdso64_pagelist;
a7f290da
BH
64unsigned long vdso64_rt_sigtramp;
65#endif /* CONFIG_PPC64 */
66
7ac9a137
BH
67static int vdso_ready;
68
a7f290da
BH
69/*
70 * The vdso data page (aka. systemcfg for old ppc64 fans) is here.
71 * Once the early boot kernel code no longer needs to muck around
72 * with it, it will become dynamically allocated
73 */
74static union {
75 struct vdso_data data;
76 u8 page[PAGE_SIZE];
77} vdso_data_store __attribute__((__section__(".data.page_aligned")));
78struct vdso_data *vdso_data = &vdso_data_store.data;
79
80/* Format of the patch table */
81struct vdso_patch_def
82{
83 unsigned long ftr_mask, ftr_value;
84 const char *gen_name;
85 const char *fix_name;
86};
87
88/* Table of functions to patch based on the CPU type/revision
89 *
90 * Currently, we only change sync_dicache to do nothing on processors
91 * with a coherent icache
92 */
93static struct vdso_patch_def vdso_patches[] = {
94 {
95 CPU_FTR_COHERENT_ICACHE, CPU_FTR_COHERENT_ICACHE,
96 "__kernel_sync_dicache", "__kernel_sync_dicache_p5"
97 },
98 {
99 CPU_FTR_USE_TB, 0,
100 "__kernel_gettimeofday", NULL
101 },
7b5acbaa
BH
102 {
103 CPU_FTR_USE_TB, 0,
104 "__kernel_clock_gettime", NULL
105 },
106 {
107 CPU_FTR_USE_TB, 0,
108 "__kernel_clock_getres", NULL
109 },
110 {
111 CPU_FTR_USE_TB, 0,
112 "__kernel_get_tbfreq", NULL
113 },
a7f290da
BH
114};
115
116/*
117 * Some infos carried around for each of them during parsing at
118 * boot time.
119 */
120struct lib32_elfinfo
121{
122 Elf32_Ehdr *hdr; /* ptr to ELF */
123 Elf32_Sym *dynsym; /* ptr to .dynsym section */
124 unsigned long dynsymsize; /* size of .dynsym section */
125 char *dynstr; /* ptr to .dynstr section */
126 unsigned long text; /* offset of .text section in .so */
127};
128
129struct lib64_elfinfo
130{
131 Elf64_Ehdr *hdr;
132 Elf64_Sym *dynsym;
133 unsigned long dynsymsize;
134 char *dynstr;
135 unsigned long text;
136};
137
138
139#ifdef __DEBUG
140static void dump_one_vdso_page(struct page *pg, struct page *upg)
141{
142 printk("kpg: %p (c:%d,f:%08lx)", __va(page_to_pfn(pg) << PAGE_SHIFT),
143 page_count(pg),
144 pg->flags);
89f5b7da 145 if (upg && !IS_ERR(upg) /* && pg != upg*/) {
a7f290da
BH
146 printk(" upg: %p (c:%d,f:%08lx)", __va(page_to_pfn(upg)
147 << PAGE_SHIFT),
148 page_count(upg),
149 upg->flags);
150 }
151 printk("\n");
152}
153
154static void dump_vdso_pages(struct vm_area_struct * vma)
155{
156 int i;
157
158 if (!vma || test_thread_flag(TIF_32BIT)) {
159 printk("vDSO32 @ %016lx:\n", (unsigned long)vdso32_kbase);
160 for (i=0; i<vdso32_pages; i++) {
161 struct page *pg = virt_to_page(vdso32_kbase +
162 i*PAGE_SIZE);
163 struct page *upg = (vma && vma->vm_mm) ?
6aab341e 164 follow_page(vma, vma->vm_start + i*PAGE_SIZE, 0)
a7f290da
BH
165 : NULL;
166 dump_one_vdso_page(pg, upg);
167 }
168 }
169 if (!vma || !test_thread_flag(TIF_32BIT)) {
170 printk("vDSO64 @ %016lx:\n", (unsigned long)vdso64_kbase);
171 for (i=0; i<vdso64_pages; i++) {
172 struct page *pg = virt_to_page(vdso64_kbase +
173 i*PAGE_SIZE);
174 struct page *upg = (vma && vma->vm_mm) ?
6aab341e 175 follow_page(vma, vma->vm_start + i*PAGE_SIZE, 0)
a7f290da
BH
176 : NULL;
177 dump_one_vdso_page(pg, upg);
178 }
179 }
180}
181#endif /* DEBUG */
182
a7f290da
BH
183/*
184 * This is called from binfmt_elf, we create the special vma for the
185 * vDSO and insert it into the mm struct tree
186 */
fc5243d9 187int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
a7f290da
BH
188{
189 struct mm_struct *mm = current->mm;
c13e4ca2 190 struct page **vdso_pagelist;
a7f290da
BH
191 unsigned long vdso_pages;
192 unsigned long vdso_base;
a5bba930 193 int rc;
a7f290da 194
7ac9a137
BH
195 if (!vdso_ready)
196 return 0;
197
a7f290da
BH
198#ifdef CONFIG_PPC64
199 if (test_thread_flag(TIF_32BIT)) {
c13e4ca2 200 vdso_pagelist = vdso32_pagelist;
a7f290da
BH
201 vdso_pages = vdso32_pages;
202 vdso_base = VDSO32_MBASE;
203 } else {
c13e4ca2 204 vdso_pagelist = vdso64_pagelist;
a7f290da
BH
205 vdso_pages = vdso64_pages;
206 vdso_base = VDSO64_MBASE;
207 }
208#else
c13e4ca2 209 vdso_pagelist = vdso32_pagelist;
a7f290da
BH
210 vdso_pages = vdso32_pages;
211 vdso_base = VDSO32_MBASE;
212#endif
213
a5bba930 214 current->mm->context.vdso_base = 0;
a7f290da
BH
215
216 /* vDSO has a problem and was disabled, just don't "enable" it for the
217 * process
218 */
219 if (vdso_pages == 0)
220 return 0;
a7f290da
BH
221 /* Add a page to the vdso size for the data page */
222 vdso_pages ++;
223
224 /*
225 * pick a base address for the vDSO in process space. We try to put it
226 * at vdso_base which is the "natural" base for it, but we might fail
227 * and end up putting it elsewhere.
228 */
a5bba930 229 down_write(&mm->mmap_sem);
a7f290da
BH
230 vdso_base = get_unmapped_area(NULL, vdso_base,
231 vdso_pages << PAGE_SHIFT, 0, 0);
a5bba930
BH
232 if (IS_ERR_VALUE(vdso_base)) {
233 rc = vdso_base;
234 goto fail_mmapsem;
a7f290da
BH
235 }
236
a7f290da
BH
237 /*
238 * our vma flags don't have VM_WRITE so by default, the process isn't
239 * allowed to write those pages.
240 * gdb can break that with ptrace interface, and thus trigger COW on
241 * those pages but it's then your responsibility to never do that on
242 * the "data" page of the vDSO or you'll stop getting kernel updates
243 * and your nice userland gettimeofday will be totally dead.
244 * It's fine to use that for setting breakpoints in the vDSO code
245 * pages though
c13e4ca2 246 *
3a0cfadb
RM
247 * Make sure the vDSO gets into every core dump.
248 * Dumping its contents makes post-mortem fully interpretable later
249 * without matching up the same kernel and hardware config to see
250 * what PC values meant.
251 */
c13e4ca2
RM
252 rc = install_special_mapping(mm, vdso_base, vdso_pages << PAGE_SHIFT,
253 VM_READ|VM_EXEC|
254 VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC|
255 VM_ALWAYSDUMP,
256 vdso_pagelist);
a5bba930 257 if (rc)
c13e4ca2 258 goto fail_mmapsem;
a5bba930 259
c13e4ca2 260 /* Put vDSO base into mm struct */
a5bba930 261 current->mm->context.vdso_base = vdso_base;
c13e4ca2 262
a7f290da 263 up_write(&mm->mmap_sem);
a7f290da 264 return 0;
a5bba930 265
a5bba930
BH
266 fail_mmapsem:
267 up_write(&mm->mmap_sem);
268 return rc;
269}
270
271const char *arch_vma_name(struct vm_area_struct *vma)
272{
273 if (vma->vm_mm && vma->vm_start == vma->vm_mm->context.vdso_base)
274 return "[vdso]";
275 return NULL;
a7f290da
BH
276}
277
a5bba930
BH
278
279
a7f290da
BH
280static void * __init find_section32(Elf32_Ehdr *ehdr, const char *secname,
281 unsigned long *size)
282{
283 Elf32_Shdr *sechdrs;
284 unsigned int i;
285 char *secnames;
286
287 /* Grab section headers and strings so we can tell who is who */
288 sechdrs = (void *)ehdr + ehdr->e_shoff;
289 secnames = (void *)ehdr + sechdrs[ehdr->e_shstrndx].sh_offset;
290
291 /* Find the section they want */
292 for (i = 1; i < ehdr->e_shnum; i++) {
293 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) {
294 if (size)
295 *size = sechdrs[i].sh_size;
296 return (void *)ehdr + sechdrs[i].sh_offset;
297 }
298 }
299 *size = 0;
300 return NULL;
301}
302
303static Elf32_Sym * __init find_symbol32(struct lib32_elfinfo *lib,
304 const char *symname)
305{
306 unsigned int i;
307 char name[MAX_SYMNAME], *c;
308
309 for (i = 0; i < (lib->dynsymsize / sizeof(Elf32_Sym)); i++) {
310 if (lib->dynsym[i].st_name == 0)
311 continue;
312 strlcpy(name, lib->dynstr + lib->dynsym[i].st_name,
313 MAX_SYMNAME);
314 c = strchr(name, '@');
315 if (c)
316 *c = 0;
317 if (strcmp(symname, name) == 0)
318 return &lib->dynsym[i];
319 }
320 return NULL;
321}
322
323/* Note that we assume the section is .text and the symbol is relative to
324 * the library base
325 */
326static unsigned long __init find_function32(struct lib32_elfinfo *lib,
327 const char *symname)
328{
329 Elf32_Sym *sym = find_symbol32(lib, symname);
330
331 if (sym == NULL) {
332 printk(KERN_WARNING "vDSO32: function %s not found !\n",
333 symname);
334 return 0;
335 }
336 return sym->st_value - VDSO32_LBASE;
337}
338
cf8918fe
AB
339static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32,
340 struct lib64_elfinfo *v64,
341 const char *orig, const char *fix)
a7f290da
BH
342{
343 Elf32_Sym *sym32_gen, *sym32_fix;
344
345 sym32_gen = find_symbol32(v32, orig);
346 if (sym32_gen == NULL) {
347 printk(KERN_ERR "vDSO32: Can't find symbol %s !\n", orig);
348 return -1;
349 }
350 if (fix == NULL) {
351 sym32_gen->st_name = 0;
352 return 0;
353 }
354 sym32_fix = find_symbol32(v32, fix);
355 if (sym32_fix == NULL) {
356 printk(KERN_ERR "vDSO32: Can't find symbol %s !\n", fix);
357 return -1;
358 }
359 sym32_gen->st_value = sym32_fix->st_value;
360 sym32_gen->st_size = sym32_fix->st_size;
361 sym32_gen->st_info = sym32_fix->st_info;
362 sym32_gen->st_other = sym32_fix->st_other;
363 sym32_gen->st_shndx = sym32_fix->st_shndx;
364
365 return 0;
366}
367
368
369#ifdef CONFIG_PPC64
370
371static void * __init find_section64(Elf64_Ehdr *ehdr, const char *secname,
372 unsigned long *size)
373{
374 Elf64_Shdr *sechdrs;
375 unsigned int i;
376 char *secnames;
377
378 /* Grab section headers and strings so we can tell who is who */
379 sechdrs = (void *)ehdr + ehdr->e_shoff;
380 secnames = (void *)ehdr + sechdrs[ehdr->e_shstrndx].sh_offset;
381
382 /* Find the section they want */
383 for (i = 1; i < ehdr->e_shnum; i++) {
384 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) {
385 if (size)
386 *size = sechdrs[i].sh_size;
387 return (void *)ehdr + sechdrs[i].sh_offset;
388 }
389 }
390 if (size)
391 *size = 0;
392 return NULL;
393}
394
395static Elf64_Sym * __init find_symbol64(struct lib64_elfinfo *lib,
396 const char *symname)
397{
398 unsigned int i;
399 char name[MAX_SYMNAME], *c;
400
401 for (i = 0; i < (lib->dynsymsize / sizeof(Elf64_Sym)); i++) {
402 if (lib->dynsym[i].st_name == 0)
403 continue;
404 strlcpy(name, lib->dynstr + lib->dynsym[i].st_name,
405 MAX_SYMNAME);
406 c = strchr(name, '@');
407 if (c)
408 *c = 0;
409 if (strcmp(symname, name) == 0)
410 return &lib->dynsym[i];
411 }
412 return NULL;
413}
414
415/* Note that we assume the section is .text and the symbol is relative to
416 * the library base
417 */
418static unsigned long __init find_function64(struct lib64_elfinfo *lib,
419 const char *symname)
420{
421 Elf64_Sym *sym = find_symbol64(lib, symname);
422
423 if (sym == NULL) {
424 printk(KERN_WARNING "vDSO64: function %s not found !\n",
425 symname);
426 return 0;
427 }
428#ifdef VDS64_HAS_DESCRIPTORS
429 return *((u64 *)(vdso64_kbase + sym->st_value - VDSO64_LBASE)) -
430 VDSO64_LBASE;
431#else
432 return sym->st_value - VDSO64_LBASE;
433#endif
434}
435
cf8918fe
AB
436static int __init vdso_do_func_patch64(struct lib32_elfinfo *v32,
437 struct lib64_elfinfo *v64,
438 const char *orig, const char *fix)
a7f290da
BH
439{
440 Elf64_Sym *sym64_gen, *sym64_fix;
441
442 sym64_gen = find_symbol64(v64, orig);
443 if (sym64_gen == NULL) {
444 printk(KERN_ERR "vDSO64: Can't find symbol %s !\n", orig);
445 return -1;
446 }
447 if (fix == NULL) {
448 sym64_gen->st_name = 0;
449 return 0;
450 }
451 sym64_fix = find_symbol64(v64, fix);
452 if (sym64_fix == NULL) {
453 printk(KERN_ERR "vDSO64: Can't find symbol %s !\n", fix);
454 return -1;
455 }
456 sym64_gen->st_value = sym64_fix->st_value;
457 sym64_gen->st_size = sym64_fix->st_size;
458 sym64_gen->st_info = sym64_fix->st_info;
459 sym64_gen->st_other = sym64_fix->st_other;
460 sym64_gen->st_shndx = sym64_fix->st_shndx;
461
462 return 0;
463}
464
465#endif /* CONFIG_PPC64 */
466
467
468static __init int vdso_do_find_sections(struct lib32_elfinfo *v32,
469 struct lib64_elfinfo *v64)
470{
471 void *sect;
472
473 /*
474 * Locate symbol tables & text section
475 */
476
477 v32->dynsym = find_section32(v32->hdr, ".dynsym", &v32->dynsymsize);
478 v32->dynstr = find_section32(v32->hdr, ".dynstr", NULL);
479 if (v32->dynsym == NULL || v32->dynstr == NULL) {
480 printk(KERN_ERR "vDSO32: required symbol section not found\n");
481 return -1;
482 }
483 sect = find_section32(v32->hdr, ".text", NULL);
484 if (sect == NULL) {
485 printk(KERN_ERR "vDSO32: the .text section was not found\n");
486 return -1;
487 }
488 v32->text = sect - vdso32_kbase;
489
490#ifdef CONFIG_PPC64
491 v64->dynsym = find_section64(v64->hdr, ".dynsym", &v64->dynsymsize);
492 v64->dynstr = find_section64(v64->hdr, ".dynstr", NULL);
493 if (v64->dynsym == NULL || v64->dynstr == NULL) {
494 printk(KERN_ERR "vDSO64: required symbol section not found\n");
495 return -1;
496 }
497 sect = find_section64(v64->hdr, ".text", NULL);
498 if (sect == NULL) {
499 printk(KERN_ERR "vDSO64: the .text section was not found\n");
500 return -1;
501 }
502 v64->text = sect - vdso64_kbase;
503#endif /* CONFIG_PPC64 */
504
505 return 0;
506}
507
508static __init void vdso_setup_trampolines(struct lib32_elfinfo *v32,
509 struct lib64_elfinfo *v64)
510{
511 /*
512 * Find signal trampolines
513 */
514
515#ifdef CONFIG_PPC64
516 vdso64_rt_sigtramp = find_function64(v64, "__kernel_sigtramp_rt64");
517#endif
518 vdso32_sigtramp = find_function32(v32, "__kernel_sigtramp32");
519 vdso32_rt_sigtramp = find_function32(v32, "__kernel_sigtramp_rt32");
520}
521
522static __init int vdso_fixup_datapage(struct lib32_elfinfo *v32,
523 struct lib64_elfinfo *v64)
524{
525 Elf32_Sym *sym32;
526#ifdef CONFIG_PPC64
527 Elf64_Sym *sym64;
528
529 sym64 = find_symbol64(v64, "__kernel_datapage_offset");
530 if (sym64 == NULL) {
531 printk(KERN_ERR "vDSO64: Can't find symbol "
532 "__kernel_datapage_offset !\n");
533 return -1;
534 }
535 *((int *)(vdso64_kbase + sym64->st_value - VDSO64_LBASE)) =
536 (vdso64_pages << PAGE_SHIFT) -
537 (sym64->st_value - VDSO64_LBASE);
538#endif /* CONFIG_PPC64 */
539
540 sym32 = find_symbol32(v32, "__kernel_datapage_offset");
541 if (sym32 == NULL) {
542 printk(KERN_ERR "vDSO32: Can't find symbol "
543 "__kernel_datapage_offset !\n");
544 return -1;
545 }
546 *((int *)(vdso32_kbase + (sym32->st_value - VDSO32_LBASE))) =
547 (vdso32_pages << PAGE_SHIFT) -
548 (sym32->st_value - VDSO32_LBASE);
549
550 return 0;
551}
552
0909c8c2
BH
553
554static __init int vdso_fixup_features(struct lib32_elfinfo *v32,
555 struct lib64_elfinfo *v64)
556{
557 void *start32;
558 unsigned long size32;
559
560#ifdef CONFIG_PPC64
561 void *start64;
562 unsigned long size64;
563
564 start64 = find_section64(v64->hdr, "__ftr_fixup", &size64);
565 if (start64)
566 do_feature_fixups(cur_cpu_spec->cpu_features,
567 start64, start64 + size64);
568
7c03d653
BH
569 start64 = find_section64(v64->hdr, "__mmu_ftr_fixup", &size64);
570 if (start64)
571 do_feature_fixups(cur_cpu_spec->mmu_features,
572 start64, start64 + size64);
573
0909c8c2
BH
574 start64 = find_section64(v64->hdr, "__fw_ftr_fixup", &size64);
575 if (start64)
576 do_feature_fixups(powerpc_firmware_features,
577 start64, start64 + size64);
2d1b2027
KG
578
579 start64 = find_section64(v64->hdr, "__lwsync_fixup", &size64);
580 if (start64)
581 do_lwsync_fixups(cur_cpu_spec->cpu_features,
582 start64, start64 + size64);
0909c8c2
BH
583#endif /* CONFIG_PPC64 */
584
585 start32 = find_section32(v32->hdr, "__ftr_fixup", &size32);
586 if (start32)
587 do_feature_fixups(cur_cpu_spec->cpu_features,
588 start32, start32 + size32);
589
7c03d653
BH
590 start32 = find_section32(v32->hdr, "__mmu_ftr_fixup", &size32);
591 if (start32)
592 do_feature_fixups(cur_cpu_spec->mmu_features,
593 start32, start32 + size32);
594
0909c8c2
BH
595#ifdef CONFIG_PPC64
596 start32 = find_section32(v32->hdr, "__fw_ftr_fixup", &size32);
597 if (start32)
598 do_feature_fixups(powerpc_firmware_features,
599 start32, start32 + size32);
600#endif /* CONFIG_PPC64 */
601
2d1b2027
KG
602 start32 = find_section32(v32->hdr, "__lwsync_fixup", &size32);
603 if (start32)
604 do_lwsync_fixups(cur_cpu_spec->cpu_features,
605 start32, start32 + size32);
606
0909c8c2
BH
607 return 0;
608}
609
a7f290da
BH
610static __init int vdso_fixup_alt_funcs(struct lib32_elfinfo *v32,
611 struct lib64_elfinfo *v64)
612{
613 int i;
614
615 for (i = 0; i < ARRAY_SIZE(vdso_patches); i++) {
616 struct vdso_patch_def *patch = &vdso_patches[i];
617 int match = (cur_cpu_spec->cpu_features & patch->ftr_mask)
618 == patch->ftr_value;
619 if (!match)
620 continue;
621
622 DBG("replacing %s with %s...\n", patch->gen_name,
623 patch->fix_name ? "NONE" : patch->fix_name);
624
625 /*
626 * Patch the 32 bits and 64 bits symbols. Note that we do not
627 * patch the "." symbol on 64 bits.
628 * It would be easy to do, but doesn't seem to be necessary,
629 * patching the OPD symbol is enough.
630 */
631 vdso_do_func_patch32(v32, v64, patch->gen_name,
632 patch->fix_name);
633#ifdef CONFIG_PPC64
634 vdso_do_func_patch64(v32, v64, patch->gen_name,
635 patch->fix_name);
636#endif /* CONFIG_PPC64 */
637 }
638
639 return 0;
640}
641
642
643static __init int vdso_setup(void)
644{
645 struct lib32_elfinfo v32;
646 struct lib64_elfinfo v64;
647
648 v32.hdr = vdso32_kbase;
649#ifdef CONFIG_PPC64
650 v64.hdr = vdso64_kbase;
651#endif
652 if (vdso_do_find_sections(&v32, &v64))
653 return -1;
654
655 if (vdso_fixup_datapage(&v32, &v64))
656 return -1;
657
0909c8c2
BH
658 if (vdso_fixup_features(&v32, &v64))
659 return -1;
660
a7f290da
BH
661 if (vdso_fixup_alt_funcs(&v32, &v64))
662 return -1;
663
664 vdso_setup_trampolines(&v32, &v64);
665
666 return 0;
667}
668
669/*
670 * Called from setup_arch to initialize the bitmap of available
671 * syscalls in the systemcfg page
672 */
673static void __init vdso_setup_syscall_map(void)
674{
675 unsigned int i;
676 extern unsigned long *sys_call_table;
677 extern unsigned long sys_ni_syscall;
678
679
680 for (i = 0; i < __NR_syscalls; i++) {
681#ifdef CONFIG_PPC64
682 if (sys_call_table[i*2] != sys_ni_syscall)
683 vdso_data->syscall_map_64[i >> 5] |=
684 0x80000000UL >> (i & 0x1f);
685 if (sys_call_table[i*2+1] != sys_ni_syscall)
686 vdso_data->syscall_map_32[i >> 5] |=
687 0x80000000UL >> (i & 0x1f);
688#else /* CONFIG_PPC64 */
689 if (sys_call_table[i] != sys_ni_syscall)
690 vdso_data->syscall_map_32[i >> 5] |=
691 0x80000000UL >> (i & 0x1f);
692#endif /* CONFIG_PPC64 */
693 }
694}
695
696
7ac9a137 697static int __init vdso_init(void)
a7f290da
BH
698{
699 int i;
700
701#ifdef CONFIG_PPC64
702 /*
703 * Fill up the "systemcfg" stuff for backward compatiblity
704 */
31fe5bf6 705 strcpy((char *)vdso_data->eye_catcher, "SYSTEMCFG:PPC64");
a7f290da
BH
706 vdso_data->version.major = SYSTEMCFG_MAJOR;
707 vdso_data->version.minor = SYSTEMCFG_MINOR;
708 vdso_data->processor = mfspr(SPRN_PVR);
e8222502
BH
709 /*
710 * Fake the old platform number for pSeries and iSeries and add
711 * in LPAR bit if necessary
712 */
713 vdso_data->platform = machine_is(iseries) ? 0x200 : 0x100;
714 if (firmware_has_feature(FW_FEATURE_LPAR))
715 vdso_data->platform |= 1;
a7f290da
BH
716 vdso_data->physicalMemorySize = lmb_phys_mem_size();
717 vdso_data->dcache_size = ppc64_caches.dsize;
718 vdso_data->dcache_line_size = ppc64_caches.dline_size;
719 vdso_data->icache_size = ppc64_caches.isize;
720 vdso_data->icache_line_size = ppc64_caches.iline_size;
721
fbe48175
OJ
722 /* XXXOJN: Blocks should be added to ppc64_caches and used instead */
723 vdso_data->dcache_block_size = ppc64_caches.dline_size;
724 vdso_data->icache_block_size = ppc64_caches.iline_size;
725 vdso_data->dcache_log_block_size = ppc64_caches.log_dline_size;
726 vdso_data->icache_log_block_size = ppc64_caches.log_iline_size;
727
a7f290da
BH
728 /*
729 * Calculate the size of the 64 bits vDSO
730 */
731 vdso64_pages = (&vdso64_end - &vdso64_start) >> PAGE_SHIFT;
732 DBG("vdso64_kbase: %p, 0x%x pages\n", vdso64_kbase, vdso64_pages);
fbe48175
OJ
733#else
734 vdso_data->dcache_block_size = L1_CACHE_BYTES;
735 vdso_data->dcache_log_block_size = L1_CACHE_SHIFT;
736 vdso_data->icache_block_size = L1_CACHE_BYTES;
737 vdso_data->icache_log_block_size = L1_CACHE_SHIFT;
a7f290da
BH
738#endif /* CONFIG_PPC64 */
739
740
741 /*
742 * Calculate the size of the 32 bits vDSO
743 */
744 vdso32_pages = (&vdso32_end - &vdso32_start) >> PAGE_SHIFT;
745 DBG("vdso32_kbase: %p, 0x%x pages\n", vdso32_kbase, vdso32_pages);
746
747
748 /*
749 * Setup the syscall map in the vDOS
750 */
751 vdso_setup_syscall_map();
0909c8c2 752
a7f290da
BH
753 /*
754 * Initialize the vDSO images in memory, that is do necessary
755 * fixups of vDSO symbols, locate trampolines, etc...
756 */
757 if (vdso_setup()) {
758 printk(KERN_ERR "vDSO setup failure, not enabled !\n");
759 vdso32_pages = 0;
760#ifdef CONFIG_PPC64
761 vdso64_pages = 0;
762#endif
7ac9a137 763 return 0;
a7f290da
BH
764 }
765
766 /* Make sure pages are in the correct state */
7ac9a137
BH
767 vdso32_pagelist = kzalloc(sizeof(struct page *) * (vdso32_pages + 2),
768 GFP_KERNEL);
769 BUG_ON(vdso32_pagelist == NULL);
a7f290da
BH
770 for (i = 0; i < vdso32_pages; i++) {
771 struct page *pg = virt_to_page(vdso32_kbase + i*PAGE_SIZE);
772 ClearPageReserved(pg);
773 get_page(pg);
c13e4ca2 774 vdso32_pagelist[i] = pg;
a7f290da 775 }
c13e4ca2
RM
776 vdso32_pagelist[i++] = virt_to_page(vdso_data);
777 vdso32_pagelist[i] = NULL;
778
a7f290da 779#ifdef CONFIG_PPC64
7ac9a137
BH
780 vdso64_pagelist = kzalloc(sizeof(struct page *) * (vdso64_pages + 2),
781 GFP_KERNEL);
782 BUG_ON(vdso64_pagelist == NULL);
a7f290da
BH
783 for (i = 0; i < vdso64_pages; i++) {
784 struct page *pg = virt_to_page(vdso64_kbase + i*PAGE_SIZE);
785 ClearPageReserved(pg);
786 get_page(pg);
c13e4ca2 787 vdso64_pagelist[i] = pg;
a7f290da 788 }
c13e4ca2
RM
789 vdso64_pagelist[i++] = virt_to_page(vdso_data);
790 vdso64_pagelist[i] = NULL;
a7f290da
BH
791#endif /* CONFIG_PPC64 */
792
793 get_page(virt_to_page(vdso_data));
7ac9a137
BH
794
795 smp_wmb();
796 vdso_ready = 1;
797
798 return 0;
a7f290da 799}
7ac9a137 800arch_initcall(vdso_init);
a7f290da
BH
801
802int in_gate_area_no_task(unsigned long addr)
803{
804 return 0;
805}
806
807int in_gate_area(struct task_struct *task, unsigned long addr)
808{
809 return 0;
810}
811
812struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
813{
814 return NULL;
815}
816
This page took 0.460475 seconds and 5 git commands to generate.