elf.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. #ifndef _ASM_X86_ELF_H
  2. #define _ASM_X86_ELF_H
  3. /*
  4. * ELF register definitions..
  5. */
  6. #include <asm/ptrace.h>
  7. #include <asm/user.h>
  8. #include <asm/auxvec.h>
  9. typedef unsigned long elf_greg_t;
  10. #define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
  11. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  12. typedef struct user_i387_struct elf_fpregset_t;
  13. #ifdef __i386__
  14. typedef struct user_fxsr_struct elf_fpxregset_t;
  15. #define R_386_NONE 0
  16. #define R_386_32 1
  17. #define R_386_PC32 2
  18. #define R_386_GOT32 3
  19. #define R_386_PLT32 4
  20. #define R_386_COPY 5
  21. #define R_386_GLOB_DAT 6
  22. #define R_386_JMP_SLOT 7
  23. #define R_386_RELATIVE 8
  24. #define R_386_GOTOFF 9
  25. #define R_386_GOTPC 10
  26. #define R_386_NUM 11
  27. /*
  28. * These are used to set parameters in the core dumps.
  29. */
  30. #define ELF_CLASS ELFCLASS32
  31. #define ELF_DATA ELFDATA2LSB
  32. #define ELF_ARCH EM_386
  33. #else
  34. /* x86-64 relocation types */
  35. #define R_X86_64_NONE 0 /* No reloc */
  36. #define R_X86_64_64 1 /* Direct 64 bit */
  37. #define R_X86_64_PC32 2 /* PC relative 32 bit signed */
  38. #define R_X86_64_GOT32 3 /* 32 bit GOT entry */
  39. #define R_X86_64_PLT32 4 /* 32 bit PLT address */
  40. #define R_X86_64_COPY 5 /* Copy symbol at runtime */
  41. #define R_X86_64_GLOB_DAT 6 /* Create GOT entry */
  42. #define R_X86_64_JUMP_SLOT 7 /* Create PLT entry */
  43. #define R_X86_64_RELATIVE 8 /* Adjust by program base */
  44. #define R_X86_64_GOTPCREL 9 /* 32 bit signed pc relative
  45. offset to GOT */
  46. #define R_X86_64_32 10 /* Direct 32 bit zero extended */
  47. #define R_X86_64_32S 11 /* Direct 32 bit sign extended */
  48. #define R_X86_64_16 12 /* Direct 16 bit zero extended */
  49. #define R_X86_64_PC16 13 /* 16 bit sign extended pc relative */
  50. #define R_X86_64_8 14 /* Direct 8 bit sign extended */
  51. #define R_X86_64_PC8 15 /* 8 bit sign extended pc relative */
  52. #define R_X86_64_NUM 16
  53. /*
  54. * These are used to set parameters in the core dumps.
  55. */
  56. #define ELF_CLASS ELFCLASS64
  57. #define ELF_DATA ELFDATA2LSB
  58. #define ELF_ARCH EM_X86_64
  59. #endif
  60. #ifdef __KERNEL__
  61. /*
  62. * This is used to ensure we don't load something for the wrong architecture.
  63. */
  64. #define elf_check_arch_ia32(x) \
  65. (((x)->e_machine == EM_386) || ((x)->e_machine == EM_486))
  66. #ifdef CONFIG_X86_32
  67. #include <asm/processor.h>
  68. #include <asm/system.h> /* for savesegment */
  69. #include <asm/desc.h>
  70. #include <asm/vdso.h>
  71. #define elf_check_arch(x) elf_check_arch_ia32(x)
  72. /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx
  73. contains a pointer to a function which might be registered using `atexit'.
  74. This provides a mean for the dynamic linker to call DT_FINI functions for
  75. shared libraries that have been loaded before the code runs.
  76. A value of 0 tells we have no such handler.
  77. We might as well make sure everything else is cleared too (except for %esp),
  78. just to make things more deterministic.
  79. */
  80. #define ELF_PLAT_INIT(_r, load_addr) do { \
  81. _r->bx = 0; _r->cx = 0; _r->dx = 0; \
  82. _r->si = 0; _r->di = 0; _r->bp = 0; \
  83. _r->ax = 0; \
  84. } while (0)
  85. #define ELF_PLATFORM (utsname()->machine)
  86. #define set_personality_64bit() do { } while (0)
  87. extern unsigned int vdso_enabled;
  88. #else /* CONFIG_X86_32 */
  89. #include <asm/processor.h>
  90. /*
  91. * This is used to ensure we don't load something for the wrong architecture.
  92. */
  93. #define elf_check_arch(x) \
  94. ((x)->e_machine == EM_X86_64)
  95. #define ELF_PLAT_INIT(_r, load_addr) do { \
  96. struct task_struct *cur = current; \
  97. (_r)->bx = 0; (_r)->cx = 0; (_r)->dx = 0; \
  98. (_r)->si = 0; (_r)->di = 0; (_r)->bp = 0; \
  99. (_r)->ax = 0; \
  100. (_r)->r8 = 0; \
  101. (_r)->r9 = 0; \
  102. (_r)->r10 = 0; \
  103. (_r)->r11 = 0; \
  104. (_r)->r12 = 0; \
  105. (_r)->r13 = 0; \
  106. (_r)->r14 = 0; \
  107. (_r)->r15 = 0; \
  108. cur->thread.fs = 0; cur->thread.gs = 0; \
  109. cur->thread.fsindex = 0; cur->thread.gsindex = 0; \
  110. cur->thread.ds = 0; cur->thread.es = 0; \
  111. clear_thread_flag(TIF_IA32); \
  112. } while (0)
  113. /* I'm not sure if we can use '-' here */
  114. #define ELF_PLATFORM ("x86_64")
  115. extern void set_personality_64bit(void);
  116. extern int vdso_enabled;
  117. #endif /* !CONFIG_X86_32 */
  118. #define CORE_DUMP_USE_REGSET
  119. #define USE_ELF_CORE_DUMP
  120. #define ELF_EXEC_PAGESIZE 4096
  121. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  122. use of this is to invoke "./ld.so someprog" to test out a new version of
  123. the loader. We need to make sure that it is out of the way of the program
  124. that it will "exec", and that there is sufficient room for the brk. */
  125. #define ELF_ET_DYN_BASE (TASK_SIZE / 3 * 2)
  126. /* This yields a mask that user programs can use to figure out what
  127. instruction set this CPU supports. This could be done in user space,
  128. but it's not easy, and we've already done it here. */
  129. #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
  130. /* This yields a string that ld.so will use to load implementation
  131. specific libraries for optimization. This is more specific in
  132. intent than poking at uname or /proc/cpuinfo.
  133. For the moment, we have only optimizations for the Intel generations,
  134. but that could change... */
  135. #define SET_PERSONALITY(ex, ibcs2) set_personality_64bit()
  136. /*
  137. * An executable for which elf_read_implies_exec() returns TRUE will
  138. * have the READ_IMPLIES_EXEC personality flag set automatically.
  139. */
  140. #define elf_read_implies_exec(ex, executable_stack) \
  141. (executable_stack != EXSTACK_DISABLE_X)
  142. struct task_struct;
  143. #ifdef CONFIG_X86_32
  144. #define VDSO_HIGH_BASE (__fix_to_virt(FIX_VDSO))
  145. /* update AT_VECTOR_SIZE_ARCH if the number of NEW_AUX_ENT entries changes */
  146. #define ARCH_DLINFO \
  147. do if (vdso_enabled) { \
  148. NEW_AUX_ENT(AT_SYSINFO, VDSO_ENTRY); \
  149. NEW_AUX_ENT(AT_SYSINFO_EHDR, VDSO_CURRENT_BASE); \
  150. } while (0)
  151. #else /* CONFIG_X86_32 */
  152. #define VDSO_HIGH_BASE 0xffffe000U /* CONFIG_COMPAT_VDSO address */
  153. /* 1GB for 64bit, 8MB for 32bit */
  154. #define STACK_RND_MASK (test_thread_flag(TIF_IA32) ? 0x7ff : 0x3fffff)
  155. #define ARCH_DLINFO \
  156. do if (vdso_enabled) { \
  157. NEW_AUX_ENT(AT_SYSINFO_EHDR,(unsigned long)current->mm->context.vdso);\
  158. } while (0)
  159. #endif /* !CONFIG_X86_32 */
  160. #define VDSO_CURRENT_BASE ((unsigned long)current->mm->context.vdso)
  161. #define VDSO_ENTRY \
  162. ((unsigned long) VDSO32_SYMBOL(VDSO_CURRENT_BASE, vsyscall))
  163. struct linux_binprm;
  164. #define ARCH_HAS_SETUP_ADDITIONAL_PAGES 1
  165. extern int arch_setup_additional_pages(struct linux_binprm *bprm,
  166. int executable_stack);
  167. extern unsigned long arch_randomize_brk(struct mm_struct *mm);
  168. #define arch_randomize_brk arch_randomize_brk
  169. #endif /* __KERNEL__ */
  170. #endif