/* $OpenBSD: ld.script,v 1.10 2018/03/01 06:47:29 deraadt Exp $ */ /* * Copyright (c) 2009 Tobias Weingartner * * 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 . = ALIGN(__ALIGN_SIZE); __kernel_kutext_phys = (. - __kernel_virt_base) + 0x1000000; .kutext : AT (__kernel_kutext_phys) { __kutext_start = ABSOLUTE(.); *(.kutext) __kutext_end = ABSOLUTE(.); } :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(__ALIGN_SIZE); __kernel_kudata_phys = (. - __kernel_virt_base) + 0x1000000; .kudata : AT (__kernel_kudata_phys) { __kudata_start = ABSOLUTE(.); *(.kudata) __kudata_end = ABSOLUTE(.); } :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) } }