elf.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_SH_ELF_H
  3. #define __ASM_SH_ELF_H
  4. #include <linux/utsname.h>
  5. #include <asm/auxvec.h>
  6. #include <asm/ptrace.h>
  7. #include <asm/user.h>
  8. /* ELF header e_flags defines */
  9. #define EF_SH_PIC 0x100 /* -fpic */
  10. #define EF_SH_FDPIC 0x8000 /* -mfdpic */
  11. /* SH (particularly SHcompact) relocation types */
  12. #define R_SH_NONE 0
  13. #define R_SH_DIR32 1
  14. #define R_SH_REL32 2
  15. #define R_SH_DIR8WPN 3
  16. #define R_SH_IND12W 4
  17. #define R_SH_DIR8WPL 5
  18. #define R_SH_DIR8WPZ 6
  19. #define R_SH_DIR8BP 7
  20. #define R_SH_DIR8W 8
  21. #define R_SH_DIR8L 9
  22. #define R_SH_SWITCH16 25
  23. #define R_SH_SWITCH32 26
  24. #define R_SH_USES 27
  25. #define R_SH_COUNT 28
  26. #define R_SH_ALIGN 29
  27. #define R_SH_CODE 30
  28. #define R_SH_DATA 31
  29. #define R_SH_LABEL 32
  30. #define R_SH_SWITCH8 33
  31. #define R_SH_GNU_VTINHERIT 34
  32. #define R_SH_GNU_VTENTRY 35
  33. #define R_SH_TLS_GD_32 144
  34. #define R_SH_TLS_LD_32 145
  35. #define R_SH_TLS_LDO_32 146
  36. #define R_SH_TLS_IE_32 147
  37. #define R_SH_TLS_LE_32 148
  38. #define R_SH_TLS_DTPMOD32 149
  39. #define R_SH_TLS_DTPOFF32 150
  40. #define R_SH_TLS_TPOFF32 151
  41. #define R_SH_GOT32 160
  42. #define R_SH_PLT32 161
  43. #define R_SH_COPY 162
  44. #define R_SH_GLOB_DAT 163
  45. #define R_SH_JMP_SLOT 164
  46. #define R_SH_RELATIVE 165
  47. #define R_SH_GOTOFF 166
  48. #define R_SH_GOTPC 167
  49. /* FDPIC relocs */
  50. #define R_SH_GOT20 201
  51. #define R_SH_GOTOFF20 202
  52. #define R_SH_GOTFUNCDESC 203
  53. #define R_SH_GOTFUNCDESC20 204
  54. #define R_SH_GOTOFFFUNCDESC 205
  55. #define R_SH_GOTOFFFUNCDESC20 206
  56. #define R_SH_FUNCDESC 207
  57. #define R_SH_FUNCDESC_VALUE 208
  58. /* SHmedia relocs */
  59. #define R_SH_IMM_LOW16 246
  60. #define R_SH_IMM_LOW16_PCREL 247
  61. #define R_SH_IMM_MEDLOW16 248
  62. #define R_SH_IMM_MEDLOW16_PCREL 249
  63. /* Keep this the last entry. */
  64. #define R_SH_NUM 256
  65. /*
  66. * ELF register definitions..
  67. */
  68. typedef unsigned long elf_greg_t;
  69. #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
  70. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  71. typedef struct user_fpu_struct elf_fpregset_t;
  72. /*
  73. * These are used to set parameters in the core dumps.
  74. */
  75. #define ELF_CLASS ELFCLASS32
  76. #ifdef __LITTLE_ENDIAN__
  77. #define ELF_DATA ELFDATA2LSB
  78. #else
  79. #define ELF_DATA ELFDATA2MSB
  80. #endif
  81. #define ELF_ARCH EM_SH
  82. #ifdef __KERNEL__
  83. /*
  84. * This is used to ensure we don't load something for the wrong architecture.
  85. */
  86. #define elf_check_arch(x) ((x)->e_machine == EM_SH)
  87. #define elf_check_fdpic(x) ((x)->e_flags & EF_SH_FDPIC)
  88. #define elf_check_const_displacement(x) ((x)->e_flags & EF_SH_PIC)
  89. /*
  90. * Enable dump using regset.
  91. * This covers all of general/DSP/FPU regs.
  92. */
  93. #define CORE_DUMP_USE_REGSET
  94. #define ELF_FDPIC_CORE_EFLAGS EF_SH_FDPIC
  95. #define ELF_EXEC_PAGESIZE PAGE_SIZE
  96. /* This is the location that an ET_DYN program is loaded if exec'ed. Typical
  97. use of this is to invoke "./ld.so someprog" to test out a new version of
  98. the loader. We need to make sure that it is out of the way of the program
  99. that it will "exec", and that there is sufficient room for the brk. */
  100. #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
  101. #define ELF_CORE_COPY_REGS(_dest,_regs) \
  102. memcpy((char *) &_dest, (char *) _regs, \
  103. sizeof(struct pt_regs));
  104. /* This yields a mask that user programs can use to figure out what
  105. instruction set this CPU supports. This could be done in user space,
  106. but it's not easy, and we've already done it here. */
  107. #define ELF_HWCAP (boot_cpu_data.flags)
  108. /* This yields a string that ld.so will use to load implementation
  109. specific libraries for optimization. This is more specific in
  110. intent than poking at uname or /proc/cpuinfo.
  111. For the moment, we have only optimizations for the Intel generations,
  112. but that could change... */
  113. #define ELF_PLATFORM (utsname()->machine)
  114. #ifdef __SH5__
  115. #define ELF_PLAT_INIT(_r, load_addr) \
  116. do { _r->regs[0]=0; _r->regs[1]=0; _r->regs[2]=0; _r->regs[3]=0; \
  117. _r->regs[4]=0; _r->regs[5]=0; _r->regs[6]=0; _r->regs[7]=0; \
  118. _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; \
  119. _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; _r->regs[15]=0; \
  120. _r->regs[16]=0; _r->regs[17]=0; _r->regs[18]=0; _r->regs[19]=0; \
  121. _r->regs[20]=0; _r->regs[21]=0; _r->regs[22]=0; _r->regs[23]=0; \
  122. _r->regs[24]=0; _r->regs[25]=0; _r->regs[26]=0; _r->regs[27]=0; \
  123. _r->regs[28]=0; _r->regs[29]=0; _r->regs[30]=0; _r->regs[31]=0; \
  124. _r->regs[32]=0; _r->regs[33]=0; _r->regs[34]=0; _r->regs[35]=0; \
  125. _r->regs[36]=0; _r->regs[37]=0; _r->regs[38]=0; _r->regs[39]=0; \
  126. _r->regs[40]=0; _r->regs[41]=0; _r->regs[42]=0; _r->regs[43]=0; \
  127. _r->regs[44]=0; _r->regs[45]=0; _r->regs[46]=0; _r->regs[47]=0; \
  128. _r->regs[48]=0; _r->regs[49]=0; _r->regs[50]=0; _r->regs[51]=0; \
  129. _r->regs[52]=0; _r->regs[53]=0; _r->regs[54]=0; _r->regs[55]=0; \
  130. _r->regs[56]=0; _r->regs[57]=0; _r->regs[58]=0; _r->regs[59]=0; \
  131. _r->regs[60]=0; _r->regs[61]=0; _r->regs[62]=0; \
  132. _r->tregs[0]=0; _r->tregs[1]=0; _r->tregs[2]=0; _r->tregs[3]=0; \
  133. _r->tregs[4]=0; _r->tregs[5]=0; _r->tregs[6]=0; _r->tregs[7]=0; \
  134. _r->sr = SR_FD | SR_MMU; } while (0)
  135. #else
  136. #define ELF_PLAT_INIT(_r, load_addr) \
  137. do { _r->regs[0]=0; _r->regs[1]=0; _r->regs[2]=0; _r->regs[3]=0; \
  138. _r->regs[4]=0; _r->regs[5]=0; _r->regs[6]=0; _r->regs[7]=0; \
  139. _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; \
  140. _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; \
  141. _r->sr = SR_FD; } while (0)
  142. #define ELF_FDPIC_PLAT_INIT(_r, _exec_map_addr, _interp_map_addr, \
  143. _dynamic_addr) \
  144. do { \
  145. _r->regs[0] = 0; \
  146. _r->regs[1] = 0; \
  147. _r->regs[2] = 0; \
  148. _r->regs[3] = 0; \
  149. _r->regs[4] = 0; \
  150. _r->regs[5] = 0; \
  151. _r->regs[6] = 0; \
  152. _r->regs[7] = 0; \
  153. _r->regs[8] = _exec_map_addr; \
  154. _r->regs[9] = _interp_map_addr; \
  155. _r->regs[10] = _dynamic_addr; \
  156. _r->regs[11] = 0; \
  157. _r->regs[12] = 0; \
  158. _r->regs[13] = 0; \
  159. _r->regs[14] = 0; \
  160. _r->sr = SR_FD; \
  161. } while (0)
  162. #endif
  163. #define SET_PERSONALITY(ex) \
  164. set_personality(PER_LINUX_32BIT | (current->personality & (~PER_MASK)))
  165. #ifdef CONFIG_VSYSCALL
  166. /* vDSO has arch_setup_additional_pages */
  167. #define ARCH_HAS_SETUP_ADDITIONAL_PAGES
  168. struct linux_binprm;
  169. extern int arch_setup_additional_pages(struct linux_binprm *bprm,
  170. int uses_interp);
  171. extern unsigned int vdso_enabled;
  172. extern void __kernel_vsyscall;
  173. #define VDSO_BASE ((unsigned long)current->mm->context.vdso)
  174. #define VDSO_SYM(x) (VDSO_BASE + (unsigned long)(x))
  175. #define VSYSCALL_AUX_ENT \
  176. if (vdso_enabled) \
  177. NEW_AUX_ENT(AT_SYSINFO_EHDR, VDSO_BASE); \
  178. else \
  179. NEW_AUX_ENT(AT_IGNORE, 0)
  180. #else
  181. #define VSYSCALL_AUX_ENT NEW_AUX_ENT(AT_IGNORE, 0)
  182. #endif /* CONFIG_VSYSCALL */
  183. #ifdef CONFIG_SH_FPU
  184. #define FPU_AUX_ENT NEW_AUX_ENT(AT_FPUCW, FPSCR_INIT)
  185. #else
  186. #define FPU_AUX_ENT NEW_AUX_ENT(AT_IGNORE, 0)
  187. #endif
  188. extern int l1i_cache_shape, l1d_cache_shape, l2_cache_shape;
  189. /* update AT_VECTOR_SIZE_ARCH if the number of NEW_AUX_ENT entries changes */
  190. #define ARCH_DLINFO \
  191. do { \
  192. /* Optional FPU initialization */ \
  193. FPU_AUX_ENT; \
  194. \
  195. /* Optional vsyscall entry */ \
  196. VSYSCALL_AUX_ENT; \
  197. \
  198. /* Cache desc */ \
  199. NEW_AUX_ENT(AT_L1I_CACHESHAPE, l1i_cache_shape); \
  200. NEW_AUX_ENT(AT_L1D_CACHESHAPE, l1d_cache_shape); \
  201. NEW_AUX_ENT(AT_L2_CACHESHAPE, l2_cache_shape); \
  202. } while (0)
  203. #endif /* __KERNEL__ */
  204. #endif /* __ASM_SH_ELF_H */