2 * Linker script for vDSO. This is an ELF shared object prelinked to
3 * its virtual address, and with only one read-only segment.
4 * This script controls its layout.
7 #if defined(BUILD_VDSO64)
9 #elif defined(BUILD_VDSO32)
12 # error unknown VDSO target
15 #define NUM_FAKE_SHDRS 7
20 * User/kernel shared data is before the vDSO. This may be a little
21 * uglier than putting it after the vDSO, but it avoids issues with
22 * non-allocatable things that dangle past the end of the PT_LOAD
23 * segment. Page size is 8192 for both 64-bit and 32-bit vdso binaries
27 vvar_data = vvar_start;
31 .hash : { *(.hash) } :text
32 .gnu.hash : { *(.gnu.hash) }
33 .dynsym : { *(.dynsym) }
34 .dynstr : { *(.dynstr) }
35 .gnu.version : { *(.gnu.version) }
36 .gnu.version_d : { *(.gnu.version_d) }
37 .gnu.version_r : { *(.gnu.version_r) }
39 .dynamic : { *(.dynamic) } :text :dynamic
52 * Ideally this would live in a C file: kept in here for
53 * compatibility with x86-64.
55 VDSO_FAKE_SECTION_TABLE_START = .;
56 . = . + NUM_FAKE_SHDRS * SHDR_SIZE;
57 VDSO_FAKE_SECTION_TABLE_END = .;
60 .fake_shstrtab : { *(.fake_shstrtab) } :text
63 .note : { *(.note.*) } :text :note
65 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
66 .eh_frame : { KEEP (*(.eh_frame)) } :text
70 * Text is well-separated from actual data: there's plenty of
71 * stuff that isn't used at runtime in between.
74 .text : { *(.text*) } :text =0x90909090,
84 * Very old versions of ld do not recognize this name token; use the constant.
86 #define PT_GNU_EH_FRAME 0x6474e550
89 * We must supply the ELF program headers explicitly to get just one
90 * PT_LOAD segment, and set the flags explicitly to make segments read-only.
94 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
95 dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
96 note PT_NOTE FLAGS(4); /* PF_R */
97 eh_frame_hdr PT_GNU_EH_FRAME;