dl-defs.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 _LD_DEFS_H
  8. #define _LD_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. #endif /* __LDSO_CACHE_SUPPORT__ */
  57. #endif
  58. /* Provide a means for a port to pass additional arguments to the _dl_start
  59. function. */
  60. #ifndef DL_START
  61. # define DL_START(X) static void * __attribute_used__ _dl_start(X)
  62. #endif
  63. /* Machines in which different sections may be relocated by different
  64. * amounts should define this and LD_RELOC_ADDR. If you change this,
  65. * make sure you change struct link_map in include/link.h accordingly
  66. * such that it matches a prefix of struct elf_resolve.
  67. */
  68. #ifndef DL_LOADADDR_TYPE
  69. # define DL_LOADADDR_TYPE ElfW(Addr)
  70. #endif
  71. /* When DL_LOADADDR_TYPE is not a scalar value, or some different
  72. * computation is needed to relocate an address, define this.
  73. */
  74. #ifndef DL_RELOC_ADDR
  75. # define DL_RELOC_ADDR(LOADADDR, ADDR) \
  76. ((LOADADDR) + (ADDR))
  77. #endif
  78. /* Initialize a LOADADDR representing the loader itself. It's only
  79. * called from DL_BOOT, so additional arguments passed to it may be
  80. * referenced.
  81. */
  82. #ifndef DL_INIT_LOADADDR_BOOT
  83. # define DL_INIT_LOADADDR_BOOT(LOADADDR, BASEADDR) \
  84. ((LOADADDR) = (BASEADDR))
  85. #endif
  86. /* Define if any declarations/definitions of local variables are
  87. * needed in a function that calls DT_INIT_LOADADDR or
  88. * DL_INIT_LOADADDR_HDR. Declarations must be properly terminated
  89. * with a semicolon, and non-declaration statements are forbidden.
  90. */
  91. #ifndef DL_INIT_LOADADDR_EXTRA_DECLS
  92. # define DL_INIT_LOADADDR_EXTRA_DECLS /* int i; */
  93. #endif
  94. /* Prepare a DL_LOADADDR_TYPE data structure for incremental
  95. * initialization with DL_INIT_LOADADDR_HDR, given pointers to a base
  96. * load address and to program headers.
  97. */
  98. #ifndef DL_INIT_LOADADDR
  99. # define DL_INIT_LOADADDR(LOADADDR, BASEADDR, PHDR, PHDRCNT) \
  100. ((LOADADDR) = (BASEADDR))
  101. #endif
  102. /* Initialize a LOADADDR representing the program. It's called from
  103. * DL_BOOT only.
  104. */
  105. #ifndef DL_INIT_LOADADDR_PROG
  106. # define DL_INIT_LOADADDR_PROG(LOADADDR, BASEADDR) \
  107. ((LOADADDR) = (DL_LOADADDR_TYPE)(BASEADDR))
  108. #endif
  109. /* Convert a DL_LOADADDR_TYPE to an identifying pointer. Used mostly
  110. * for debugging.
  111. */
  112. #ifndef DL_LOADADDR_BASE
  113. # define DL_LOADADDR_BASE(LOADADDR) (LOADADDR)
  114. #endif
  115. /* Test whether a given ADDR is more likely to be within the memory
  116. * region mapped to TPNT (a struct elf_resolve *) than to TFROM.
  117. * Everywhere that this is used, TFROM is initially NULL, and whenever
  118. * a potential match is found, it's updated. One might want to walk
  119. * the chain of elf_resolve to locate the best match and return false
  120. * whenever TFROM is non-NULL, or use an exact-matching algorithm
  121. * using additional information encoded in DL_LOADADDR_TYPE to test
  122. * for exact containment.
  123. */
  124. #ifndef DL_ADDR_IN_LOADADDR
  125. # define DL_ADDR_IN_LOADADDR(ADDR, TPNT, TFROM) \
  126. ((void*)(TPNT)->loadaddr < (void*)(ADDR) \
  127. && (!(TFROM) || (TFROM)->loadaddr < (TPNT)->loadaddr))
  128. #endif
  129. /* Use this macro to convert a pointer to a function's entry point to
  130. * a pointer to function. The pointer is assumed to have already been
  131. * relocated. LOADADDR is passed because it may contain additional
  132. * information needed to compute the pointer to function.
  133. */
  134. #ifndef DL_ADDR_TO_FUNC_PTR
  135. # define DL_ADDR_TO_FUNC_PTR(ADDR, LOADADDR) ((void(*)(void))(ADDR))
  136. #endif
  137. /* On some platforms, computing a pointer to function is more
  138. expensive than calling a function at a given address, so this
  139. alternative is provided. The function signature must be given
  140. within parentheses, as in a type cast. */
  141. #ifndef DL_CALL_FUNC_AT_ADDR
  142. # define DL_CALL_FUNC_AT_ADDR(ADDR, LOADADDR, SIGNATURE, ...) \
  143. ((*SIGNATURE DL_ADDR_TO_FUNC_PTR ((ADDR), (LOADADDR)))(__VA_ARGS__))
  144. #endif
  145. /* An alignment value for a memory block returned by _dl_malloc. */
  146. #ifndef DL_MALLOC_ALIGN
  147. # define DL_MALLOC_ALIGN (__WORDSIZE / 8)
  148. #endif
  149. #endif /* _LD_DEFS_H */