dl-defs.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Copyright (C) 2000-2006 by Erik Andersen <andersen@codepoet.org>
  4. *
  5. * GNU Lesser General Public License version 2.1 or later.
  6. */
  7. #ifndef _DL_DEFS_H
  8. #define _DL_DEFS_H
  9. #define FLAG_ANY -1
  10. #define FLAG_TYPE_MASK 0x00ff
  11. #define FLAG_LIBC4 0x0000
  12. #define FLAG_ELF 0x0001
  13. #define FLAG_ELF_LIBC5 0x0002
  14. #define FLAG_ELF_LIBC6 0x0003
  15. #define FLAG_ELF_UCLIBC 0x0004
  16. #define FLAG_REQUIRED_MASK 0xff00
  17. #define FLAG_SPARC_LIB64 0x0100
  18. #define FLAG_IA64_LIB64 0x0200
  19. #define FLAG_X8664_LIB64 0x0300
  20. #define FLAG_S390_LIB64 0x0400
  21. #define FLAG_POWERPC_LIB64 0x0500
  22. #define FLAG_MIPS64_LIBN32 0x0600
  23. #define FLAG_MIPS64_LIBN64 0x0700
  24. #define LIB_ANY -1
  25. #define LIB_DLL 0
  26. #define LIB_ELF 1
  27. #define LIB_ELF64 0x80
  28. #define LIB_ELF_LIBC5 2
  29. #define LIB_ELF_LIBC6 3
  30. #define LIB_ELF_LIBC0 4
  31. #if defined(__LDSO_PRELOAD_FILE_SUPPORT__) || defined(__LDSO_CACHE_SUPPORT__)
  32. #ifndef __LDSO_BASE_FILENAME__
  33. #define __LDSO_BASE_FILENAME__ "ld.so"
  34. #endif
  35. #define LDSO_BASE_PATH UCLIBC_RUNTIME_PREFIX "etc/" __LDSO_BASE_FILENAME__
  36. #ifdef __LDSO_PRELOAD_FILE_SUPPORT__
  37. #define LDSO_PRELOAD LDSO_BASE_PATH ".preload"
  38. #endif
  39. #ifdef __LDSO_CACHE_SUPPORT__
  40. #define LDSO_CONF LDSO_BASE_PATH ".conf"
  41. #define LDSO_CACHE LDSO_BASE_PATH ".cache"
  42. #define LDSO_CACHE_MAGIC "ld.so-"
  43. #define LDSO_CACHE_MAGIC_LEN (sizeof LDSO_CACHE_MAGIC -1)
  44. #define LDSO_CACHE_VER "1.7.0"
  45. #define LDSO_CACHE_VER_LEN (sizeof LDSO_CACHE_VER -1)
  46. typedef struct {
  47. char magic [LDSO_CACHE_MAGIC_LEN];
  48. char version [LDSO_CACHE_VER_LEN];
  49. int nlibs;
  50. } header_t;
  51. typedef struct {
  52. int flags;
  53. int sooffset;
  54. int liboffset;
  55. } libentry_t;
  56. #ifdef __ARCH_USE_MMU__
  57. #define LDSO_CACHE_MMAP_FLAGS (MAP_SHARED)
  58. #else
  59. #define LDSO_CACHE_MMAP_FLAGS (MAP_PRIVATE)
  60. #endif
  61. #endif /* __LDSO_CACHE_SUPPORT__ */
  62. #endif
  63. #ifdef _LIBC
  64. /* arch specific defines */
  65. #include <dl-sysdep.h>
  66. #endif
  67. /* Provide a means for a port to pass additional arguments to the _dl_start
  68. function. */
  69. #ifndef DL_START
  70. # define DL_START(X) static void * __attribute_used__ _dl_start(X)
  71. #endif
  72. /* Machines in which different sections may be relocated by different
  73. * amounts should define this and LD_RELOC_ADDR. If you change this,
  74. * make sure you change struct link_map in include/link.h accordingly
  75. * such that it matches a prefix of struct elf_resolve.
  76. */
  77. #ifndef DL_LOADADDR_TYPE
  78. # define DL_LOADADDR_TYPE ElfW(Addr)
  79. #endif
  80. /* When DL_LOADADDR_TYPE is not a scalar value, or some different
  81. * computation is needed to relocate an address, define this.
  82. */
  83. #ifndef DL_RELOC_ADDR
  84. # define DL_RELOC_ADDR(LOADADDR, ADDR) \
  85. ((LOADADDR) + (ADDR))
  86. #endif
  87. /* Initialize the location of the dynamic addr. This is only called
  88. * from DL_START, so additional arguments passed to it may be referenced. */
  89. #ifndef DL_BOOT_COMPUTE_DYN
  90. #define DL_BOOT_COMPUTE_DYN(DPNT, GOT, LOAD_ADDR) \
  91. ((DPNT) = ((ElfW(Dyn) *) DL_RELOC_ADDR(LOAD_ADDR, GOT)))
  92. #endif
  93. /* Initialize the location of the global offset table. This is only called
  94. * from DL_START, so additional arguments passed to it may be referenced. */
  95. #ifndef DL_BOOT_COMPUTE_GOT
  96. #define DL_BOOT_COMPUTE_GOT(GOT) \
  97. ((GOT) = elf_machine_dynamic())
  98. #endif
  99. /* Initialize a LOADADDR representing the loader itself. It's only
  100. * called from DL_START, so additional arguments passed to it may be
  101. * referenced.
  102. */
  103. #ifndef DL_INIT_LOADADDR_BOOT
  104. # define DL_INIT_LOADADDR_BOOT(LOADADDR, BASEADDR) \
  105. ((LOADADDR) = (BASEADDR))
  106. #endif
  107. /* Define if any declarations/definitions of local variables are
  108. * needed in a function that calls DT_INIT_LOADADDR or
  109. * DL_INIT_LOADADDR_HDR. Declarations must be properly terminated
  110. * with a semicolon, and non-declaration statements are forbidden.
  111. */
  112. #ifndef DL_INIT_LOADADDR_EXTRA_DECLS
  113. # define DL_INIT_LOADADDR_EXTRA_DECLS /* int i; */
  114. #endif
  115. /* Prepare a DL_LOADADDR_TYPE data structure for incremental
  116. * initialization with DL_INIT_LOADADDR_HDR, given pointers to a base
  117. * load address and to program headers.
  118. */
  119. #ifndef DL_INIT_LOADADDR
  120. # define DL_INIT_LOADADDR(LOADADDR, BASEADDR, PHDR, PHDRCNT) \
  121. ((LOADADDR) = (BASEADDR))
  122. #endif
  123. /* Initialize a LOADADDR representing the program. It's called from
  124. * DL_BOOT only.
  125. */
  126. #ifndef DL_INIT_LOADADDR_PROG
  127. # define DL_INIT_LOADADDR_PROG(LOADADDR, BASEADDR) \
  128. ((LOADADDR) = (DL_LOADADDR_TYPE)(BASEADDR))
  129. #endif
  130. /* Update LOADADDR with information about PHDR, just mapped to the
  131. given ADDR. */
  132. #ifndef DL_INIT_LOADADDR_HDR
  133. # define DL_INIT_LOADADDR_HDR(LOADADDR, ADDR, PHDR) /* Do nothing. */
  134. #endif
  135. /* Convert a DL_LOADADDR_TYPE to an identifying pointer. Used mostly
  136. * for debugging.
  137. */
  138. #ifndef DL_LOADADDR_BASE
  139. # define DL_LOADADDR_BASE(LOADADDR) (LOADADDR)
  140. #endif
  141. /* Test whether a given ADDR is more likely to be within the memory
  142. * region mapped to TPNT (a struct elf_resolve *) than to TFROM.
  143. * Everywhere that this is used, TFROM is initially NULL, and whenever
  144. * a potential match is found, it's updated. One might want to walk
  145. * the chain of elf_resolve to locate the best match and return false
  146. * whenever TFROM is non-NULL, or use an exact-matching algorithm
  147. * using additional information encoded in DL_LOADADDR_TYPE to test
  148. * for exact containment.
  149. */
  150. #ifndef DL_ADDR_IN_LOADADDR
  151. # define DL_ADDR_IN_LOADADDR(ADDR, TPNT, TFROM) \
  152. ((void*)(TPNT)->mapaddr < (void*)(ADDR) \
  153. && (!(TFROM) || (TFROM)->mapaddr < (TPNT)->mapaddr))
  154. #endif
  155. /* This is called from dladdr() to give targets that use function descriptors
  156. * a chance to map a function descriptor's address to the function's entry
  157. * point before trying to find in which library it's defined. */
  158. #ifndef DL_LOOKUP_ADDRESS
  159. #define DL_LOOKUP_ADDRESS(ADDRESS) (ADDRESS)
  160. #endif
  161. /* On some architectures dladdr can't use st_size of all symbols this way. */
  162. #define DL_ADDR_SYM_MATCH(SYM_ADDR, SYM, MATCHSYM, ADDR) \
  163. ((ADDR) >= (SYM_ADDR) \
  164. && ((((SYM)->st_shndx == SHN_UNDEF || (SYM)->st_size == 0) \
  165. && (ADDR) == (SYM_ADDR)) \
  166. || (ADDR) < (SYM_ADDR) + (SYM)->st_size) \
  167. && (!(MATCHSYM) || MATCHSYM < (SYM_ADDR)))
  168. /* Use this macro to convert a pointer to a function's entry point to
  169. * a pointer to function. The pointer is assumed to have already been
  170. * relocated. LOADADDR is passed because it may contain additional
  171. * information needed to compute the pointer to function.
  172. */
  173. #ifndef DL_ADDR_TO_FUNC_PTR
  174. # define DL_ADDR_TO_FUNC_PTR(ADDR, LOADADDR) ((void(*)(void))(ADDR))
  175. #endif
  176. /* On some platforms, computing a pointer to function is more
  177. expensive than calling a function at a given address, so this
  178. alternative is provided. The function signature must be given
  179. within parentheses, as in a type cast. */
  180. #ifndef DL_CALL_FUNC_AT_ADDR
  181. # define DL_CALL_FUNC_AT_ADDR(ADDR, LOADADDR, SIGNATURE, ...) \
  182. ((*SIGNATURE DL_ADDR_TO_FUNC_PTR ((ADDR), (LOADADDR)))(__VA_ARGS__))
  183. #endif
  184. /* An alignment value for a memory block returned by _dl_malloc. */
  185. #ifndef DL_MALLOC_ALIGN
  186. # define DL_MALLOC_ALIGN (__WORDSIZE / 8)
  187. #endif
  188. #ifdef __UCLIBC_UNDERSCORES__
  189. # define __C_SYMBOL_PREFIX__ "_"
  190. #else
  191. # define __C_SYMBOL_PREFIX__ ""
  192. #endif
  193. /* Define this if you want to modify the VALUE returned by
  194. _dl_find_hash for this reloc TYPE. TPNT is the module in which the
  195. matching SYM was found. */
  196. #ifndef DL_FIND_HASH_VALUE
  197. # define DL_FIND_HASH_VALUE(TPNT, TYPE, SYM) (DL_RELOC_ADDR ((TPNT)->loadaddr, (SYM)->st_value))
  198. #endif
  199. /* Unmap all previously-mapped segments accumulated in LOADADDR.
  200. Generally used when an error occurs during loading. */
  201. #ifndef DL_LOADADDR_UNMAP
  202. # define DL_LOADADDR_UNMAP(LOADADDR, LEN) \
  203. _dl_munmap((char *) (LOADADDR), (LEN))
  204. #endif
  205. /* Similar to DL_LOADADDR_UNMAP, but used for libraries that have been
  206. dlopen()ed successfully, when they're dlclose()d. */
  207. #ifndef DL_LIB_UNMAP
  208. # define DL_LIB_UNMAP(LIB, LEN) (DL_LOADADDR_UNMAP ((LIB)->mapaddr, (LEN)))
  209. #endif
  210. /* Define this to verify that a library named LIBNAME, whose ELF
  211. headers are pointed to by EPNT, is suitable for dynamic linking.
  212. If it is not, print an error message (optional) and return NULL.
  213. If the library can have its segments relocated independently,
  214. arrange for PICLIB to be set to 2. If all segments have to be
  215. relocated by the same amount, set it to 1. If it has to be loaded
  216. at physical addresses as specified in the program headers, set it
  217. to 0. A reasonable (?) guess for PICLIB will already be in place,
  218. so it is safe to do nothing here. */
  219. #ifndef DL_CHECK_LIB_TYPE
  220. # define DL_CHECK_LIB_TYPE(EPNT, PICLIB, PROGNAME, LIBNAME) (void)0
  221. #endif
  222. /* Define this if you have special segment. */
  223. #ifndef DL_IS_SPECIAL_SEGMENT
  224. # define DL_IS_SPECIAL_SEGMENT(EPNT, PPNT) 0
  225. #endif
  226. /* Define this if you want to use special method to map the segment. */
  227. #ifndef DL_MAP_SEGMENT
  228. # define DL_MAP_SEGMENT(EPNT, PPNT, INFILE, FLAGS) 0
  229. #endif
  230. /* Define this to declare the library offset. */
  231. #ifndef DL_DEF_LIB_OFFSET
  232. # define DL_DEF_LIB_OFFSET static unsigned long _dl_library_offset
  233. #endif
  234. /* Define this to get the library offset. */
  235. #ifndef DL_GET_LIB_OFFSET
  236. # define DL_GET_LIB_OFFSET() _dl_library_offset
  237. #endif
  238. /* Define this to set the library offset as difference beetwen the mapped
  239. library address and the smallest virtual address of the first PT_LOAD
  240. segment. */
  241. #ifndef DL_SET_LIB_OFFSET
  242. # define DL_SET_LIB_OFFSET(offset) (_dl_library_offset = (offset))
  243. #endif
  244. /* Define this to get the real object's runtime address. */
  245. #ifndef DL_GET_RUN_ADDR
  246. # define DL_GET_RUN_ADDR(loadaddr, mapaddr) (mapaddr)
  247. #endif
  248. #endif /* _DL_DEFS_H */