vsyscall.lds 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Linker script for vsyscall DSO. The vsyscall page is an ELF shared
  3. * object prelinked to its virtual address. This script controls its layout.
  4. */
  5. /* This must match <asm/fixmap.h>. */
  6. VSYSCALL_BASE = 0xffffe000;
  7. SECTIONS
  8. {
  9. . = VSYSCALL_BASE + SIZEOF_HEADERS;
  10. .hash : { *(.hash) } :text
  11. .dynsym : { *(.dynsym) }
  12. .dynstr : { *(.dynstr) }
  13. .gnu.version : { *(.gnu.version) }
  14. .gnu.version_d : { *(.gnu.version_d) }
  15. .gnu.version_r : { *(.gnu.version_r) }
  16. /* This linker script is used both with -r and with -shared.
  17. For the layouts to match, we need to skip more than enough
  18. space for the dynamic symbol table et al. If this amount
  19. is insufficient, ld -shared will barf. Just increase it here. */
  20. . = VSYSCALL_BASE + 0x400;
  21. .text.vsyscall : { *(.text.vsyscall) } :text =0x90909090
  22. /* This is an 32bit object and we cannot easily get the offsets
  23. into the 64bit kernel. Just hardcode them here. This assumes
  24. that all the stubs don't need more than 0x100 bytes. */
  25. . = VSYSCALL_BASE + 0x500;
  26. .text.sigreturn : { *(.text.sigreturn) } :text =0x90909090
  27. . = VSYSCALL_BASE + 0x600;
  28. .text.rtsigreturn : { *(.text.rtsigreturn) } :text =0x90909090
  29. .note : { *(.note.*) } :text :note
  30. .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
  31. .eh_frame : { KEEP (*(.eh_frame)) } :text
  32. .dynamic : { *(.dynamic) } :text :dynamic
  33. .useless : {
  34. *(.got.plt) *(.got)
  35. *(.data .data.* .gnu.linkonce.d.*)
  36. *(.dynbss)
  37. *(.bss .bss.* .gnu.linkonce.b.*)
  38. } :text
  39. }
  40. /*
  41. * We must supply the ELF program headers explicitly to get just one
  42. * PT_LOAD segment, and set the flags explicitly to make segments read-only.
  43. */
  44. PHDRS
  45. {
  46. text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */
  47. dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
  48. note PT_NOTE FLAGS(4); /* PF_R */
  49. eh_frame_hdr 0x6474e550; /* PT_GNU_EH_FRAME, but ld doesn't match the name */
  50. }
  51. /*
  52. * This controls what symbols we export from the DSO.
  53. */
  54. VERSION
  55. {
  56. LINUX_2.5 {
  57. global:
  58. __kernel_vsyscall;
  59. __kernel_sigreturn;
  60. __kernel_rt_sigreturn;
  61. local: *;
  62. };
  63. }
  64. /* The ELF entry point can be used to set the AT_SYSINFO value. */
  65. ENTRY(__kernel_vsyscall);