blob: 9197544eea9a19758f81044674da6ade504e5d41 [file] [log] [blame]
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -07001#include <asm/vdso.h>
2
Roland McGrathf6b46eb2008-01-30 13:30:41 +01003/*
4 * Linker script for vDSO. This is an ELF shared object prelinked to
5 * its virtual address, and with only one read-only segment.
6 * This script controls its layout.
7 */
8
Andy Lutomirskibfad3812014-06-18 15:59:48 -07009#if defined(BUILD_VDSO64)
10# define SHDR_SIZE 64
11#elif defined(BUILD_VDSO32) || defined(BUILD_VDSOX32)
12# define SHDR_SIZE 40
13#else
14# error unknown VDSO target
15#endif
16
Andy Lutomirski0e3727a2014-06-18 15:59:49 -070017#define NUM_FAKE_SHDRS 13
Andy Lutomirskibfad3812014-06-18 15:59:48 -070018
Roland McGrathf6b46eb2008-01-30 13:30:41 +010019SECTIONS
20{
Andy Lutomirskib0b49f22014-03-13 16:01:26 -070021 . = SIZEOF_HEADERS;
Roland McGrathf6b46eb2008-01-30 13:30:41 +010022
23 .hash : { *(.hash) } :text
24 .gnu.hash : { *(.gnu.hash) }
25 .dynsym : { *(.dynsym) }
26 .dynstr : { *(.dynstr) }
27 .gnu.version : { *(.gnu.version) }
28 .gnu.version_d : { *(.gnu.version_d) }
29 .gnu.version_r : { *(.gnu.version_r) }
30
Roland McGrathf6b46eb2008-01-30 13:30:41 +010031 .dynamic : { *(.dynamic) } :text :dynamic
32
Andy Lutomirskibfad3812014-06-18 15:59:48 -070033 .rodata : {
34 *(.rodata*)
Andy Lutomirski0e3727a2014-06-18 15:59:49 -070035 *(.data*)
36 *(.sdata*)
37 *(.got.plt) *(.got)
38 *(.gnu.linkonce.d.*)
39 *(.bss*)
40 *(.dynbss*)
41 *(.gnu.linkonce.b.*)
Andy Lutomirskibfad3812014-06-18 15:59:48 -070042
43 /*
44 * Ideally this would live in a C file, but that won't
45 * work cleanly for x32 until we start building the x32
46 * C code using an x32 toolchain.
47 */
48 VDSO_FAKE_SECTION_TABLE_START = .;
49 . = . + NUM_FAKE_SHDRS * SHDR_SIZE;
50 VDSO_FAKE_SECTION_TABLE_END = .;
51 } :text
52
53 .fake_shstrtab : { *(.fake_shstrtab) } :text
54
Roland McGrathf6b46eb2008-01-30 13:30:41 +010055
Andy Lutomirski0e3727a2014-06-18 15:59:49 -070056 .note : { *(.note.*) } :text :note
57
58 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
59 .eh_frame : { KEEP (*(.eh_frame)) } :text
60
Roland McGrathf6b46eb2008-01-30 13:30:41 +010061
62 /*
Andy Lutomirski0e3727a2014-06-18 15:59:49 -070063 * Text is well-separated from actual data: there's plenty of
64 * stuff that isn't used at runtime in between.
Roland McGrathf6b46eb2008-01-30 13:30:41 +010065 */
Roland McGrathf6b46eb2008-01-30 13:30:41 +010066
Andy Lutomirski378ed3c2014-04-03 10:53:43 -070067 .text : { *(.text*) } :text =0x90909090,
68
69 /*
Andy Lutomirski0e3727a2014-06-18 15:59:49 -070070 * At the end so that eu-elflint stays happy when vdso2c strips
71 * these. A better implementation would avoid allocating space
72 * for these.
73 */
74 .altinstructions : { *(.altinstructions) } :text
75 .altinstr_replacement : { *(.altinstr_replacement) } :text
76
77 /*
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -070078 * The remainder of the vDSO consists of special pages that are
79 * shared between the kernel and userspace. It needs to be at the
80 * end so that it doesn't overlap the mapping of the actual
81 * vDSO image.
Andy Lutomirski378ed3c2014-04-03 10:53:43 -070082 */
H. Peter Anvin26f5ef22014-03-25 13:41:36 -070083
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -070084 . = ALIGN(PAGE_SIZE);
85 vvar_page = .;
86
87 /* Place all vvars at the offsets in asm/vvar.h. */
88#define EMIT_VVAR(name, offset) vvar_ ## name = vvar_page + offset;
89#define __VVAR_KERNEL_LDS
90#include <asm/vvar.h>
91#undef __VVAR_KERNEL_LDS
92#undef EMIT_VVAR
93
94 . = vvar_page + PAGE_SIZE;
95
96 hpet_page = .;
97 . = . + PAGE_SIZE;
Andy Lutomirski18d0a6f2014-05-05 12:19:35 -070098
99 . = ALIGN(PAGE_SIZE);
100 end_mapping = .;
101
H. Peter Anvin26f5ef22014-03-25 13:41:36 -0700102 /DISCARD/ : {
103 *(.discard)
104 *(.discard.*)
Andy Lutomirski5f56e712014-06-18 15:59:46 -0700105 *(__bug_table)
H. Peter Anvin26f5ef22014-03-25 13:41:36 -0700106 }
Roland McGrathf6b46eb2008-01-30 13:30:41 +0100107}
108
109/*
110 * Very old versions of ld do not recognize this name token; use the constant.
111 */
112#define PT_GNU_EH_FRAME 0x6474e550
113
114/*
115 * We must supply the ELF program headers explicitly to get just one
116 * PT_LOAD segment, and set the flags explicitly to make segments read-only.
117 */
118PHDRS
119{
120 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
121 dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
122 note PT_NOTE FLAGS(4); /* PF_R */
123 eh_frame_hdr PT_GNU_EH_FRAME;
Roland McGrathf6b46eb2008-01-30 13:30:41 +0100124}