| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 2 |  * Linker script for gate DSO.  The gate pages are an ELF shared object | 
 | 3 |  * prelinked to its virtual address, with only one read-only segment and | 
 | 4 |  * one execute-only segment (both fit in one page).  This script controls | 
 | 5 |  * its layout. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 |  */ | 
 | 7 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 |  | 
 | 9 | #include <asm/system.h> | 
 | 10 |  | 
 | 11 | SECTIONS | 
 | 12 | { | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 13 | 	. = GATE_ADDR + SIZEOF_HEADERS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 15 | 	.hash			: { *(.hash) }		:readable | 
 | 16 | 	.gnu.hash		: { *(.gnu.hash) } | 
 | 17 | 	.dynsym			: { *(.dynsym) } | 
 | 18 | 	.dynstr			: { *(.dynstr) } | 
 | 19 | 	.gnu.version		: { *(.gnu.version) } | 
 | 20 | 	.gnu.version_d		: { *(.gnu.version_d) } | 
 | 21 | 	.gnu.version_r		: { *(.gnu.version_r) } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 |  | 
| Roland McGrath | 172c510 | 2007-10-18 15:11:08 -0700 | [diff] [blame] | 23 | 	.note			: { *(.note*) }		:readable	:note | 
 | 24 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 25 | 	.dynamic		: { *(.dynamic) }	:readable	:dynamic | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 27 | 	/* | 
 | 28 | 	 * This linker script is used both with -r and with -shared.  For | 
 | 29 | 	 * the layouts to match, we need to skip more than enough space for | 
 | 30 | 	 * the dynamic symbol table et al.  If this amount is insufficient, | 
 | 31 | 	 * ld -shared will barf.  Just increase it here. | 
 | 32 | 	 */ | 
| Andrew Morton | 1f0abae | 2007-12-05 14:32:13 -0800 | [diff] [blame] | 33 | 	. = GATE_ADDR + 0x600; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 35 | 	.data.patch		: { | 
 | 36 | 		__start_gate_mckinley_e9_patchlist = .; | 
 | 37 | 		*(.data.patch.mckinley_e9) | 
 | 38 | 		__end_gate_mckinley_e9_patchlist = .; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 40 | 		__start_gate_vtop_patchlist = .; | 
 | 41 | 		*(.data.patch.vtop) | 
 | 42 | 		__end_gate_vtop_patchlist = .; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 44 | 		__start_gate_fsyscall_patchlist = .; | 
 | 45 | 		*(.data.patch.fsyscall_table) | 
 | 46 | 		__end_gate_fsyscall_patchlist = .; | 
 | 47 |  | 
 | 48 | 		__start_gate_brl_fsys_bubble_down_patchlist = .; | 
 | 49 | 		*(.data.patch.brl_fsys_bubble_down) | 
 | 50 | 		__end_gate_brl_fsys_bubble_down_patchlist = .; | 
 | 51 | 	}						:readable | 
 | 52 |  | 
 | 53 | 	.IA_64.unwind_info	: { *(.IA_64.unwind_info*) } | 
 | 54 | 	.IA_64.unwind		: { *(.IA_64.unwind*) }	:readable	:unwind | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #ifdef HAVE_BUGGY_SEGREL | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 56 | 	.text (GATE_ADDR + PAGE_SIZE) : { *(.text) *(.text.*) }	:readable | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #else | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 58 | 	. = ALIGN(PERCPU_PAGE_SIZE) + (. & (PERCPU_PAGE_SIZE - 1)); | 
 | 59 | 	.text			: { *(.text) *(.text.*) }	:epc | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #endif | 
 | 61 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 62 | 	/DISCARD/		: { | 
 | 63 | 		*(.got.plt) *(.got) | 
 | 64 | 		*(.data .data.* .gnu.linkonce.d.*) | 
 | 65 | 		*(.dynbss) | 
 | 66 | 		*(.bss .bss.* .gnu.linkonce.b.*) | 
 | 67 | 		*(__ex_table) | 
 | 68 | 		*(__mca_table) | 
 | 69 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } | 
 | 71 |  | 
 | 72 | /* | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 73 |  * ld does not recognize this name token; use the constant. | 
 | 74 |  */ | 
 | 75 | #define	PT_IA_64_UNWIND	0x70000001 | 
 | 76 |  | 
 | 77 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 |  * We must supply the ELF program headers explicitly to get just one | 
 | 79 |  * PT_LOAD segment, and set the flags explicitly to make segments read-only. | 
 | 80 |  */ | 
 | 81 | PHDRS | 
 | 82 | { | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 83 | 	readable	PT_LOAD	FILEHDR	PHDRS	FLAGS(4);	/* PF_R */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #ifndef HAVE_BUGGY_SEGREL | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 85 | 	epc		PT_LOAD	FILEHDR PHDRS	FLAGS(1);	/* PF_X */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #endif | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 87 | 	dynamic		PT_DYNAMIC		FLAGS(4);	/* PF_R */ | 
| Roland McGrath | 172c510 | 2007-10-18 15:11:08 -0700 | [diff] [blame] | 88 | 	note		PT_NOTE			FLAGS(4);	/* PF_R */ | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 89 | 	unwind		PT_IA_64_UNWIND; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } | 
 | 91 |  | 
 | 92 | /* | 
 | 93 |  * This controls what symbols we export from the DSO. | 
 | 94 |  */ | 
 | 95 | VERSION | 
 | 96 | { | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 97 | 	LINUX_2.5 { | 
 | 98 | 	global: | 
 | 99 | 		__kernel_syscall_via_break; | 
 | 100 | 		__kernel_syscall_via_epc; | 
 | 101 | 		__kernel_sigtramp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 |  | 
| Roland McGrath | 1a43be7 | 2007-10-15 20:40:29 -0700 | [diff] [blame] | 103 | 	local: *; | 
 | 104 | 	}; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } | 
 | 106 |  | 
 | 107 | /* The ELF entry point can be used to set the AT_SYSINFO value.  */ | 
 | 108 | ENTRY(__kernel_syscall_via_epc) |