1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* $OpenBSD: ld.script,v 1.8 2017/10/24 20:06:54 guenther Exp $ */
/*
* Copyright (c) 2009 Tobias Weingartner <weingart@tepid.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64", "elf64-x86-64")
OUTPUT_ARCH(i386:x86-64)
/* Define how we want out ELF binary to look like. */
PHDRS
{
text PT_LOAD FILEHDR PHDRS;
rodata PT_LOAD FLAGS (4);
data PT_LOAD;
bss PT_LOAD;
openbsd_randomize PT_OPENBSD_RANDOMIZE;
}
/*
* If we want the text/rodata/data sections aligned on 2M boundaries,
* we could use the following instead. Note, file size would increase
* due to necessary padding.
*
*__ALIGN_SIZE = 0x200000;
*/
__ALIGN_SIZE = 0x1000;
__kernel_base = 0xffffffff80000000;
__kernel_virt_base = __kernel_base + 0x1000000;
__kernel_phys_base = 0x1000000;
__kernel_base_phys = __kernel_phys_base + SIZEOF_HEADERS;
ENTRY(start)
SECTIONS
{
.text (__kernel_virt_base + SIZEOF_HEADERS) : AT (__kernel_base_phys)
{
start = .;
locore0.o(.text)
*(.text .text.*)
} :text =0xcccccccc
PROVIDE (etext = .);
_etext = .;
/* Move rodata to the next page, so we can nuke X and W bit on them */
. = ALIGN(__ALIGN_SIZE);
__kernel_rodata_phys = (. - __kernel_virt_base) + 0x1000000;
.rodata : AT (__kernel_rodata_phys)
{
__rodata_start = ABSOLUTE(.);
*(.rodata .rodata.*)
*(.codepatch)
*(.codepatchend)
} :rodata =0xcccccccc
. = ALIGN(0x1000);
__kernel_randomdata_phys = (. - __kernel_virt_base) + 0x1000000;
.openbsd.randomdata : AT (__kernel_randomdata_phys)
{
*(.openbsd.randomdata)
} :rodata :openbsd_randomize =0xcccccccc
. = ALIGN(0x1000);
PROVIDE (erodata = .);
_erodata = .;
/* Move data to the next page, so we can add W bit on them */
. = ALIGN(__ALIGN_SIZE);
__kernel_data_phys = (. - __kernel_virt_base) + 0x1000000;
.data : AT (__kernel_data_phys)
{
__data_start = ABSOLUTE(.);
*(.data .data.*)
} :data =0xcccccccc
. = ALIGN(0x1000);
PROVIDE (edata = .);
_edata = .;
/* BSS starts right after padded data */
__kernel_bss_phys = (. - __kernel_virt_base) + 0x1000000;
.bss : AT (__kernel_bss_phys)
{
*(.bss .bss.*)
*(COMMON)
/* Align after .bss to ensure correct alignment even if the
* .bss section disappears because there are no input sections.
*/
. = ALIGN(0x1000);
} :bss
__kernel_bss_end = .;
. = ALIGN(0x200000);
_end = .;
PROVIDE (end = .);
__kernel_end_phys = (. - __kernel_virt_base) + 0x1000000;
/* XXX - hack alert, since we are not C++, nuke these */
/DISCARD/ :
{
*(.note.GNU-stack)
*(.eh_frame)
}
}
|