| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  |  * Linker script for gate DSO.  The gate pages are an ELF shared object | 
					
						
							|  |  |  |  * prelinked to its virtual address, with only one read-only segment and | 
					
						
							|  |  |  |  * one execute-only segment (both fit in one page).  This script controls | 
					
						
							|  |  |  |  * its layout. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-28 18:30:02 +01:00
										 |  |  | #include <asm/page.h> | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | #include "paravirt_patchlist.h" | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | SECTIONS | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	. = GATE_ADDR + SIZEOF_HEADERS;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.hash			: { *(.hash) }		:readable | 
					
						
							|  |  |  | 	.gnu.hash		: { *(.gnu.hash) } | 
					
						
							|  |  |  | 	.dynsym			: { *(.dynsym) } | 
					
						
							|  |  |  | 	.dynstr			: { *(.dynstr) } | 
					
						
							|  |  |  | 	.gnu.version		: { *(.gnu.version) } | 
					
						
							|  |  |  | 	.gnu.version_d		: { *(.gnu.version_d) } | 
					
						
							|  |  |  | 	.gnu.version_r		: { *(.gnu.version_r) } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 15:11:08 -07:00
										 |  |  | 	.note			: { *(.note*) }		:readable	:note | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	.dynamic		: { *(.dynamic) }	:readable	:dynamic | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	 * This linker script is used both with -r and with -shared.  For | 
					
						
							|  |  |  | 	 * the layouts to match, we need to skip more than enough space for | 
					
						
							|  |  |  | 	 * the dynamic symbol table et al.  If this amount is insufficient, | 
					
						
							|  |  |  | 	 * ld -shared will barf.  Just increase it here. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-12-05 14:32:13 -08:00
										 |  |  | 	. = GATE_ADDR + 0x600;
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-20 01:03:42 +01:00
										 |  |  | 	.data..patch		: { | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_start_gate_mckinley_e9_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 01:03:42 +01:00
										 |  |  | 		*(.data..patch.mckinley_e9) | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_end_gate_mckinley_e9_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_start_gate_vtop_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 01:03:42 +01:00
										 |  |  | 		*(.data..patch.vtop) | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_end_gate_vtop_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_start_gate_fsyscall_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 01:03:42 +01:00
										 |  |  | 		*(.data..patch.fsyscall_table) | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_end_gate_fsyscall_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_start_gate_brl_fsys_bubble_down_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2010-02-20 01:03:42 +01:00
										 |  |  | 		*(.data..patch.brl_fsys_bubble_down) | 
					
						
							| 
									
										
										
										
											2009-03-04 21:05:42 +09:00
										 |  |  | 		__paravirt_end_gate_brl_fsys_bubble_down_patchlist = .;
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	}						:readable | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.IA_64.unwind_info	: { *(.IA_64.unwind_info*) } | 
					
						
							|  |  |  | 	.IA_64.unwind		: { *(.IA_64.unwind*) }	:readable	:unwind | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifdef HAVE_BUGGY_SEGREL | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	.text (GATE_ADDR + PAGE_SIZE) : { *(.text) *(.text.*) }	:readable | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #else | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	. = ALIGN(PERCPU_PAGE_SIZE) + (. & (PERCPU_PAGE_SIZE - 1));
 | 
					
						
							|  |  |  | 	.text			: { *(.text) *(.text.*) }	:epc | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	/DISCARD/		: { | 
					
						
							|  |  |  | 		*(.got.plt) *(.got) | 
					
						
							|  |  |  | 		*(.data .data.* .gnu.linkonce.d.*) | 
					
						
							|  |  |  | 		*(.dynbss) | 
					
						
							|  |  |  | 		*(.bss .bss.* .gnu.linkonce.b.*) | 
					
						
							|  |  |  | 		*(__ex_table) | 
					
						
							|  |  |  | 		*(__mca_table) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | /* | 
					
						
							|  |  |  |  * ld does not recognize this name token; use the constant.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define	PT_IA_64_UNWIND	0x70000001 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* | 
					
						
							|  |  |  |  * We must supply the ELF program headers explicitly to get just one | 
					
						
							|  |  |  |  * PT_LOAD segment, and set the flags explicitly to make segments read-only. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | PHDRS | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	readable	PT_LOAD	FILEHDR	PHDRS	FLAGS(4);	/* PF_R */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifndef HAVE_BUGGY_SEGREL | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	epc		PT_LOAD	FILEHDR PHDRS	FLAGS(1);	/* PF_X */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	dynamic		PT_DYNAMIC		FLAGS(4);	/* PF_R */
 | 
					
						
							| 
									
										
										
										
											2007-10-18 15:11:08 -07:00
										 |  |  | 	note		PT_NOTE			FLAGS(4);	/* PF_R */
 | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	unwind		PT_IA_64_UNWIND;
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * This controls what symbols we export from the DSO. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | VERSION | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-15 20:40:29 -07:00
										 |  |  | 	LINUX_2.5 { | 
					
						
							|  |  |  | 	global: | 
					
						
							|  |  |  | 		__kernel_syscall_via_break;
 | 
					
						
							|  |  |  | 		__kernel_syscall_via_epc;
 | 
					
						
							|  |  |  | 		__kernel_sigtramp;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	local: *;
 | 
					
						
							|  |  |  | 	};
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The ELF entry point can be used to set the AT_SYSINFO value.  */ | 
					
						
							|  |  |  | ENTRY(__kernel_syscall_via_epc) |