vsyscall.lds.S 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Linker script for vsyscall DSO. The vsyscall page is an ELF shared
  3. * object prelinked to its virtual address, and with only one read-only
  4. * segment (that fits in one page). This script controls its layout.
  5. */
  6. #include <asm/asm_offsets.h>
  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 : { *(.text) } :text =0x90909090
  22. .note : { *(.note.*) } :text :note
  23. .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
  24. .eh_frame : { KEEP (*(.eh_frame)) } :text
  25. .dynamic : { *(.dynamic) } :text :dynamic
  26. .useless : {
  27. *(.got.plt) *(.got)
  28. *(.data .data.* .gnu.linkonce.d.*)
  29. *(.dynbss)
  30. *(.bss .bss.* .gnu.linkonce.b.*)
  31. } :text
  32. }
  33. /*
  34. * We must supply the ELF program headers explicitly to get just one
  35. * PT_LOAD segment, and set the flags explicitly to make segments read-only.
  36. */
  37. PHDRS
  38. {
  39. text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */
  40. dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
  41. note PT_NOTE FLAGS(4); /* PF_R */
  42. eh_frame_hdr 0x6474e550; /* PT_GNU_EH_FRAME, but ld doesn't match the name */
  43. }
  44. /*
  45. * This controls what symbols we export from the DSO.
  46. */
  47. VERSION
  48. {
  49. LINUX_2.5 {
  50. global:
  51. __kernel_vsyscall;
  52. __kernel_sigreturn;
  53. __kernel_rt_sigreturn;
  54. local: *;
  55. };
  56. }
  57. /* The ELF entry point can be used to set the AT_SYSINFO value. */
  58. ENTRY(__kernel_vsyscall);