elf.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. #ifndef _ASM_IA64_ELF_H
  2. #define _ASM_IA64_ELF_H
  3. /*
  4. * ELF-specific definitions.
  5. *
  6. * Copyright (C) 1998-1999, 2002-2004 Hewlett-Packard Co
  7. * David Mosberger-Tang <davidm@hpl.hp.com>
  8. */
  9. #include <asm/fpu.h>
  10. #include <asm/page.h>
  11. #include <asm/auxvec.h>
  12. /*
  13. * This is used to ensure we don't load something for the wrong architecture.
  14. */
  15. #define elf_check_arch(x) ((x)->e_machine == EM_IA_64)
  16. /*
  17. * These are used to set parameters in the core dumps.
  18. */
  19. #define ELF_CLASS ELFCLASS64
  20. #define ELF_DATA ELFDATA2LSB
  21. #define ELF_ARCH EM_IA_64
  22. #define USE_ELF_CORE_DUMP
  23. #define CORE_DUMP_USE_REGSET
  24. /* Least-significant four bits of ELF header's e_flags are OS-specific. The bits are
  25. interpreted as follows by Linux: */
  26. #define EF_IA_64_LINUX_EXECUTABLE_STACK 0x1 /* is stack (& heap) executable by default? */
  27. #define ELF_EXEC_PAGESIZE PAGE_SIZE
  28. /*
  29. * This is the location that an ET_DYN program is loaded if exec'ed.
  30. * Typical use of this is to invoke "./ld.so someprog" to test out a
  31. * new version of the loader. We need to make sure that it is out of
  32. * the way of the program that it will "exec", and that there is
  33. * sufficient room for the brk.
  34. */
  35. #define ELF_ET_DYN_BASE (TASK_UNMAPPED_BASE + 0x800000000UL)
  36. #define PT_IA_64_UNWIND 0x70000001
  37. /* IA-64 relocations: */
  38. #define R_IA64_NONE 0x00 /* none */
  39. #define R_IA64_IMM14 0x21 /* symbol + addend, add imm14 */
  40. #define R_IA64_IMM22 0x22 /* symbol + addend, add imm22 */
  41. #define R_IA64_IMM64 0x23 /* symbol + addend, mov imm64 */
  42. #define R_IA64_DIR32MSB 0x24 /* symbol + addend, data4 MSB */
  43. #define R_IA64_DIR32LSB 0x25 /* symbol + addend, data4 LSB */
  44. #define R_IA64_DIR64MSB 0x26 /* symbol + addend, data8 MSB */
  45. #define R_IA64_DIR64LSB 0x27 /* symbol + addend, data8 LSB */
  46. #define R_IA64_GPREL22 0x2a /* @gprel(sym+add), add imm22 */
  47. #define R_IA64_GPREL64I 0x2b /* @gprel(sym+add), mov imm64 */
  48. #define R_IA64_GPREL32MSB 0x2c /* @gprel(sym+add), data4 MSB */
  49. #define R_IA64_GPREL32LSB 0x2d /* @gprel(sym+add), data4 LSB */
  50. #define R_IA64_GPREL64MSB 0x2e /* @gprel(sym+add), data8 MSB */
  51. #define R_IA64_GPREL64LSB 0x2f /* @gprel(sym+add), data8 LSB */
  52. #define R_IA64_LTOFF22 0x32 /* @ltoff(sym+add), add imm22 */
  53. #define R_IA64_LTOFF64I 0x33 /* @ltoff(sym+add), mov imm64 */
  54. #define R_IA64_PLTOFF22 0x3a /* @pltoff(sym+add), add imm22 */
  55. #define R_IA64_PLTOFF64I 0x3b /* @pltoff(sym+add), mov imm64 */
  56. #define R_IA64_PLTOFF64MSB 0x3e /* @pltoff(sym+add), data8 MSB */
  57. #define R_IA64_PLTOFF64LSB 0x3f /* @pltoff(sym+add), data8 LSB */
  58. #define R_IA64_FPTR64I 0x43 /* @fptr(sym+add), mov imm64 */
  59. #define R_IA64_FPTR32MSB 0x44 /* @fptr(sym+add), data4 MSB */
  60. #define R_IA64_FPTR32LSB 0x45 /* @fptr(sym+add), data4 LSB */
  61. #define R_IA64_FPTR64MSB 0x46 /* @fptr(sym+add), data8 MSB */
  62. #define R_IA64_FPTR64LSB 0x47 /* @fptr(sym+add), data8 LSB */
  63. #define R_IA64_PCREL60B 0x48 /* @pcrel(sym+add), brl */
  64. #define R_IA64_PCREL21B 0x49 /* @pcrel(sym+add), ptb, call */
  65. #define R_IA64_PCREL21M 0x4a /* @pcrel(sym+add), chk.s */
  66. #define R_IA64_PCREL21F 0x4b /* @pcrel(sym+add), fchkf */
  67. #define R_IA64_PCREL32MSB 0x4c /* @pcrel(sym+add), data4 MSB */
  68. #define R_IA64_PCREL32LSB 0x4d /* @pcrel(sym+add), data4 LSB */
  69. #define R_IA64_PCREL64MSB 0x4e /* @pcrel(sym+add), data8 MSB */
  70. #define R_IA64_PCREL64LSB 0x4f /* @pcrel(sym+add), data8 LSB */
  71. #define R_IA64_LTOFF_FPTR22 0x52 /* @ltoff(@fptr(s+a)), imm22 */
  72. #define R_IA64_LTOFF_FPTR64I 0x53 /* @ltoff(@fptr(s+a)), imm64 */
  73. #define R_IA64_LTOFF_FPTR32MSB 0x54 /* @ltoff(@fptr(s+a)), 4 MSB */
  74. #define R_IA64_LTOFF_FPTR32LSB 0x55 /* @ltoff(@fptr(s+a)), 4 LSB */
  75. #define R_IA64_LTOFF_FPTR64MSB 0x56 /* @ltoff(@fptr(s+a)), 8 MSB */
  76. #define R_IA64_LTOFF_FPTR64LSB 0x57 /* @ltoff(@fptr(s+a)), 8 LSB */
  77. #define R_IA64_SEGREL32MSB 0x5c /* @segrel(sym+add), data4 MSB */
  78. #define R_IA64_SEGREL32LSB 0x5d /* @segrel(sym+add), data4 LSB */
  79. #define R_IA64_SEGREL64MSB 0x5e /* @segrel(sym+add), data8 MSB */
  80. #define R_IA64_SEGREL64LSB 0x5f /* @segrel(sym+add), data8 LSB */
  81. #define R_IA64_SECREL32MSB 0x64 /* @secrel(sym+add), data4 MSB */
  82. #define R_IA64_SECREL32LSB 0x65 /* @secrel(sym+add), data4 LSB */
  83. #define R_IA64_SECREL64MSB 0x66 /* @secrel(sym+add), data8 MSB */
  84. #define R_IA64_SECREL64LSB 0x67 /* @secrel(sym+add), data8 LSB */
  85. #define R_IA64_REL32MSB 0x6c /* data 4 + REL */
  86. #define R_IA64_REL32LSB 0x6d /* data 4 + REL */
  87. #define R_IA64_REL64MSB 0x6e /* data 8 + REL */
  88. #define R_IA64_REL64LSB 0x6f /* data 8 + REL */
  89. #define R_IA64_LTV32MSB 0x74 /* symbol + addend, data4 MSB */
  90. #define R_IA64_LTV32LSB 0x75 /* symbol + addend, data4 LSB */
  91. #define R_IA64_LTV64MSB 0x76 /* symbol + addend, data8 MSB */
  92. #define R_IA64_LTV64LSB 0x77 /* symbol + addend, data8 LSB */
  93. #define R_IA64_PCREL21BI 0x79 /* @pcrel(sym+add), ptb, call */
  94. #define R_IA64_PCREL22 0x7a /* @pcrel(sym+add), imm22 */
  95. #define R_IA64_PCREL64I 0x7b /* @pcrel(sym+add), imm64 */
  96. #define R_IA64_IPLTMSB 0x80 /* dynamic reloc, imported PLT, MSB */
  97. #define R_IA64_IPLTLSB 0x81 /* dynamic reloc, imported PLT, LSB */
  98. #define R_IA64_COPY 0x84 /* dynamic reloc, data copy */
  99. #define R_IA64_SUB 0x85 /* -symbol + addend, add imm22 */
  100. #define R_IA64_LTOFF22X 0x86 /* LTOFF22, relaxable. */
  101. #define R_IA64_LDXMOV 0x87 /* Use of LTOFF22X. */
  102. #define R_IA64_TPREL14 0x91 /* @tprel(sym+add), add imm14 */
  103. #define R_IA64_TPREL22 0x92 /* @tprel(sym+add), add imm22 */
  104. #define R_IA64_TPREL64I 0x93 /* @tprel(sym+add), add imm64 */
  105. #define R_IA64_TPREL64MSB 0x96 /* @tprel(sym+add), data8 MSB */
  106. #define R_IA64_TPREL64LSB 0x97 /* @tprel(sym+add), data8 LSB */
  107. #define R_IA64_LTOFF_TPREL22 0x9a /* @ltoff(@tprel(s+a)), add imm22 */
  108. #define R_IA64_DTPMOD64MSB 0xa6 /* @dtpmod(sym+add), data8 MSB */
  109. #define R_IA64_DTPMOD64LSB 0xa7 /* @dtpmod(sym+add), data8 LSB */
  110. #define R_IA64_LTOFF_DTPMOD22 0xaa /* @ltoff(@dtpmod(s+a)), imm22 */
  111. #define R_IA64_DTPREL14 0xb1 /* @dtprel(sym+add), imm14 */
  112. #define R_IA64_DTPREL22 0xb2 /* @dtprel(sym+add), imm22 */
  113. #define R_IA64_DTPREL64I 0xb3 /* @dtprel(sym+add), imm64 */
  114. #define R_IA64_DTPREL32MSB 0xb4 /* @dtprel(sym+add), data4 MSB */
  115. #define R_IA64_DTPREL32LSB 0xb5 /* @dtprel(sym+add), data4 LSB */
  116. #define R_IA64_DTPREL64MSB 0xb6 /* @dtprel(sym+add), data8 MSB */
  117. #define R_IA64_DTPREL64LSB 0xb7 /* @dtprel(sym+add), data8 LSB */
  118. #define R_IA64_LTOFF_DTPREL22 0xba /* @ltoff(@dtprel(s+a)), imm22 */
  119. /* IA-64 specific section flags: */
  120. #define SHF_IA_64_SHORT 0x10000000 /* section near gp */
  121. /*
  122. * We use (abuse?) this macro to insert the (empty) vm_area that is
  123. * used to map the register backing store. I don't see any better
  124. * place to do this, but we should discuss this with Linus once we can
  125. * talk to him...
  126. */
  127. extern void ia64_init_addr_space (void);
  128. #define ELF_PLAT_INIT(_r, load_addr) ia64_init_addr_space()
  129. /* ELF register definitions. This is needed for core dump support. */
  130. /*
  131. * elf_gregset_t contains the application-level state in the following order:
  132. * r0-r31
  133. * NaT bits (for r0-r31; bit N == 1 iff rN is a NaT)
  134. * predicate registers (p0-p63)
  135. * b0-b7
  136. * ip cfm psr
  137. * ar.rsc ar.bsp ar.bspstore ar.rnat
  138. * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec ar.csd ar.ssd
  139. */
  140. #define ELF_NGREG 128 /* we really need just 72 but let's leave some headroom... */
  141. #define ELF_NFPREG 128 /* f0 and f1 could be omitted, but so what... */
  142. /* elf_gregset_t register offsets */
  143. #define ELF_GR_0_OFFSET 0
  144. #define ELF_NAT_OFFSET (32 * sizeof(elf_greg_t))
  145. #define ELF_PR_OFFSET (33 * sizeof(elf_greg_t))
  146. #define ELF_BR_0_OFFSET (34 * sizeof(elf_greg_t))
  147. #define ELF_CR_IIP_OFFSET (42 * sizeof(elf_greg_t))
  148. #define ELF_CFM_OFFSET (43 * sizeof(elf_greg_t))
  149. #define ELF_CR_IPSR_OFFSET (44 * sizeof(elf_greg_t))
  150. #define ELF_GR_OFFSET(i) (ELF_GR_0_OFFSET + i * sizeof(elf_greg_t))
  151. #define ELF_BR_OFFSET(i) (ELF_BR_0_OFFSET + i * sizeof(elf_greg_t))
  152. #define ELF_AR_RSC_OFFSET (45 * sizeof(elf_greg_t))
  153. #define ELF_AR_BSP_OFFSET (46 * sizeof(elf_greg_t))
  154. #define ELF_AR_BSPSTORE_OFFSET (47 * sizeof(elf_greg_t))
  155. #define ELF_AR_RNAT_OFFSET (48 * sizeof(elf_greg_t))
  156. #define ELF_AR_CCV_OFFSET (49 * sizeof(elf_greg_t))
  157. #define ELF_AR_UNAT_OFFSET (50 * sizeof(elf_greg_t))
  158. #define ELF_AR_FPSR_OFFSET (51 * sizeof(elf_greg_t))
  159. #define ELF_AR_PFS_OFFSET (52 * sizeof(elf_greg_t))
  160. #define ELF_AR_LC_OFFSET (53 * sizeof(elf_greg_t))
  161. #define ELF_AR_EC_OFFSET (54 * sizeof(elf_greg_t))
  162. #define ELF_AR_CSD_OFFSET (55 * sizeof(elf_greg_t))
  163. #define ELF_AR_SSD_OFFSET (56 * sizeof(elf_greg_t))
  164. #define ELF_AR_END_OFFSET (57 * sizeof(elf_greg_t))
  165. typedef unsigned long elf_fpxregset_t;
  166. typedef unsigned long elf_greg_t;
  167. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  168. typedef struct ia64_fpreg elf_fpreg_t;
  169. typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  170. struct pt_regs; /* forward declaration... */
  171. extern void ia64_elf_core_copy_regs (struct pt_regs *src, elf_gregset_t dst);
  172. #define ELF_CORE_COPY_REGS(_dest,_regs) ia64_elf_core_copy_regs(_regs, _dest);
  173. /* This macro yields a bitmask that programs can use to figure out
  174. what instruction set this CPU supports. */
  175. #define ELF_HWCAP 0
  176. /* This macro yields a string that ld.so will use to load
  177. implementation specific libraries for optimization. Not terribly
  178. relevant until we have real hardware to play with... */
  179. #define ELF_PLATFORM NULL
  180. #define SET_PERSONALITY(ex) set_personality(PER_LINUX)
  181. #define elf_read_implies_exec(ex, executable_stack) \
  182. ((executable_stack!=EXSTACK_DISABLE_X) && ((ex).e_flags & EF_IA_64_LINUX_EXECUTABLE_STACK) != 0)
  183. struct task_struct;
  184. #define GATE_EHDR ((const struct elfhdr *) GATE_ADDR)
  185. /* update AT_VECTOR_SIZE_ARCH if the number of NEW_AUX_ENT entries changes */
  186. #define ARCH_DLINFO \
  187. do { \
  188. extern char __kernel_syscall_via_epc[]; \
  189. NEW_AUX_ENT(AT_SYSINFO, (unsigned long) __kernel_syscall_via_epc); \
  190. NEW_AUX_ENT(AT_SYSINFO_EHDR, (unsigned long) GATE_EHDR); \
  191. } while (0)
  192. /*
  193. * These macros parameterize elf_core_dump in fs/binfmt_elf.c to write out
  194. * extra segments containing the gate DSO contents. Dumping its
  195. * contents makes post-mortem fully interpretable later without matching up
  196. * the same kernel and hardware config to see what PC values meant.
  197. * Dumping its extra ELF program headers includes all the other information
  198. * a debugger needs to easily find how the gate DSO was being used.
  199. */
  200. #define ELF_CORE_EXTRA_PHDRS (GATE_EHDR->e_phnum)
  201. #define ELF_CORE_WRITE_EXTRA_PHDRS \
  202. do { \
  203. const struct elf_phdr *const gate_phdrs = \
  204. (const struct elf_phdr *) (GATE_ADDR + GATE_EHDR->e_phoff); \
  205. int i; \
  206. Elf64_Off ofs = 0; \
  207. for (i = 0; i < GATE_EHDR->e_phnum; ++i) { \
  208. struct elf_phdr phdr = gate_phdrs[i]; \
  209. if (phdr.p_type == PT_LOAD) { \
  210. phdr.p_memsz = PAGE_ALIGN(phdr.p_memsz); \
  211. phdr.p_filesz = phdr.p_memsz; \
  212. if (ofs == 0) { \
  213. ofs = phdr.p_offset = offset; \
  214. offset += phdr.p_filesz; \
  215. } \
  216. else \
  217. phdr.p_offset = ofs; \
  218. } \
  219. else \
  220. phdr.p_offset += ofs; \
  221. phdr.p_paddr = 0; /* match other core phdrs */ \
  222. DUMP_WRITE(&phdr, sizeof(phdr)); \
  223. } \
  224. } while (0)
  225. #define ELF_CORE_WRITE_EXTRA_DATA \
  226. do { \
  227. const struct elf_phdr *const gate_phdrs = \
  228. (const struct elf_phdr *) (GATE_ADDR + GATE_EHDR->e_phoff); \
  229. int i; \
  230. for (i = 0; i < GATE_EHDR->e_phnum; ++i) { \
  231. if (gate_phdrs[i].p_type == PT_LOAD) { \
  232. DUMP_WRITE((void *) gate_phdrs[i].p_vaddr, \
  233. PAGE_ALIGN(gate_phdrs[i].p_memsz)); \
  234. break; \
  235. } \
  236. } \
  237. } while (0)
  238. /*
  239. * format for entries in the Global Offset Table
  240. */
  241. struct got_entry {
  242. uint64_t val;
  243. };
  244. /*
  245. * Layout of the Function Descriptor
  246. */
  247. struct fdesc {
  248. uint64_t ip;
  249. uint64_t gp;
  250. };
  251. #endif /* _ASM_IA64_ELF_H */