1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * GNU linker script for the VDSO library.
5 * Copyright (C) 2012 ARM Limited
7 * Author: Will Deacon <will.deacon@arm.com>
8 * Heavily based on the vDSO linker scripts for other archs.
11 #include <linux/const.h>
14 #include <asm/vdso/vsyscall.h>
15 #include <asm-generic/vmlinux.lds.h>
16 #include <vdso/datapage.h>
18 OUTPUT_FORMAT("elf64-littleaarch64", "elf64-bigaarch64", "elf64-littleaarch64")
23 PROVIDE(_vdso_data = . - __VVAR_PAGES * PAGE_SIZE);
24 PROVIDE(_vdso_rng_data = _vdso_data + __VDSO_RND_DATA_OFFSET);
26 PROVIDE(_timens_data = _vdso_data + PAGE_SIZE);
28 . = VDSO_LBASE + SIZEOF_HEADERS;
30 .hash : { *(.hash) } :text
31 .gnu.hash : { *(.gnu.hash) }
32 .dynsym : { *(.dynsym) }
33 .dynstr : { *(.dynstr) }
34 .gnu.version : { *(.gnu.version) }
35 .gnu.version_d : { *(.gnu.version_d) }
36 .gnu.version_r : { *(.gnu.version_r) }
39 * Discard .note.gnu.property sections which are unused and have
40 * different alignment requirement from vDSO note sections.
43 *(.note.GNU-stack .note.gnu.property)
45 .note : { *(.note.*) } :text :note
49 .text : { *(.text*) } :text =0xd503201f
50 PROVIDE (__etext = .);
59 .dynamic : { *(.dynamic) } :text :dynamic
61 .rela.dyn : ALIGN(8) { *(.rela .rela*) }
80 *(.data .data.* .gnu.linkonce.d.* .sdata*)
81 *(.bss .sbss .dynbss .dynsbss)
82 *(.eh_frame .eh_frame_hdr)
87 * We must supply the ELF program headers explicitly to get just one
88 * PT_LOAD segment, and set the flags explicitly to make segments read-only.
92 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
93 dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
94 note PT_NOTE FLAGS(4); /* PF_R */
98 * This controls what symbols we export from the DSO.
104 __kernel_rt_sigreturn;
105 __kernel_gettimeofday;
106 __kernel_clock_gettime;
107 __kernel_clock_getres;
114 * Make the sigreturn code visible to the kernel.
116 VDSO_sigtramp = __kernel_rt_sigreturn;