link.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /* Data structure for communication from the run-time dynamic linker for
  2. loaded ELF shared objects.
  3. Copyright (C) 1995-2001, 2004, 2005, 2006, 2010 Free Software Foundation, Inc.
  4. This file is part of the GNU C Library.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #ifndef _LINK_H
  18. #define _LINK_H 1
  19. #include <features.h>
  20. #include <elf.h>
  21. #ifdef __HAVE_SHARED__
  22. #include <dlfcn.h>
  23. #endif
  24. #include <sys/types.h>
  25. #if defined _LIBC && defined __UCLIBC_HAS_TLS__
  26. #include <tls.h>
  27. #endif
  28. /* We use this macro to refer to ELF types independent of the native wordsize.
  29. `ElfW(TYPE)' is used in place of `Elf32_TYPE' or `Elf64_TYPE'. */
  30. #define ElfW(type) _ElfW (Elf, __ELF_NATIVE_CLASS, type)
  31. #define _ElfW(e,w,t) _ElfW_1 (e, w, _##t)
  32. #define _ElfW_1(e,w,t) e##w##t
  33. #include <bits/elfclass.h> /* Defines __ELF_NATIVE_CLASS. */
  34. /* Rendezvous structure used by the run-time dynamic linker to communicate
  35. details of shared object loading to the debugger. If the executable's
  36. dynamic section has a DT_DEBUG element, the run-time linker sets that
  37. element's value to the address where this structure can be found. */
  38. struct r_debug
  39. {
  40. int r_version; /* Version number for this protocol. */
  41. struct link_map *r_map; /* Head of the chain of loaded objects. */
  42. /* This is the address of a function internal to the run-time linker,
  43. that will always be called when the linker begins to map in a
  44. library or unmap it, and again when the mapping change is complete.
  45. The debugger can set a breakpoint at this address if it wants to
  46. notice shared object mapping changes. */
  47. ElfW(Addr) r_brk;
  48. enum
  49. {
  50. /* This state value describes the mapping change taking place when
  51. the `r_brk' address is called. */
  52. RT_CONSISTENT, /* Mapping change is complete. */
  53. RT_ADD, /* Beginning to add a new object. */
  54. RT_DELETE /* Beginning to remove an object mapping. */
  55. } r_state;
  56. ElfW(Addr) r_ldbase; /* Base address the linker is loaded at. */
  57. };
  58. /* This is the instance of that structure used by the dynamic linker. */
  59. extern struct r_debug _r_debug;
  60. /* This symbol refers to the "dynamic structure" in the `.dynamic' section
  61. of whatever module refers to `_DYNAMIC'. So, to find its own
  62. `struct r_debug', a program could do:
  63. for (dyn = _DYNAMIC; dyn->d_tag != DT_NULL; ++dyn)
  64. if (dyn->d_tag == DT_DEBUG)
  65. r_debug = (struct r_debug *) dyn->d_un.d_ptr;
  66. */
  67. extern ElfW(Dyn) _DYNAMIC[];
  68. #ifdef __FDPIC__
  69. # include <bits/elf-fdpic.h>
  70. #endif
  71. #ifdef __DSBT__
  72. # include <bits/elf-dsbt.h>
  73. #endif
  74. /* Structure describing a loaded shared object. The `l_next' and `l_prev'
  75. members form a chain of all the shared objects loaded at startup.
  76. These data structures exist in space used by the run-time dynamic linker;
  77. modifying them may have disastrous results. */
  78. struct link_map
  79. {
  80. /* These first few members are part of the protocol with the debugger.
  81. This is the same format used in SVR4. */
  82. #ifdef __FDPIC__
  83. struct elf32_fdpic_loadaddr l_addr;
  84. #else
  85. #ifdef __DSBT__
  86. struct elf32_dsbt_loadaddr l_addr;
  87. #else
  88. ElfW(Addr) l_addr; /* Base address shared object is loaded at. */
  89. #endif
  90. #endif
  91. char *l_name; /* Absolute file name object was found in. */
  92. ElfW(Dyn) *l_ld; /* Dynamic section of the shared object. */
  93. struct link_map *l_next, *l_prev; /* Chain of loaded objects. */
  94. #if defined(USE_TLS) && USE_TLS
  95. /* Thread-local storage related info. */
  96. /* Start of the initialization image. */
  97. void *l_tls_initimage;
  98. /* Size of the initialization image. */
  99. size_t l_tls_initimage_size;
  100. /* Size of the TLS block. */
  101. size_t l_tls_blocksize;
  102. /* Alignment requirement of the TLS block. */
  103. size_t l_tls_align;
  104. /* Offset of first byte module alignment. */
  105. size_t l_tls_firstbyte_offset;
  106. # ifndef NO_TLS_OFFSET
  107. # define NO_TLS_OFFSET 0
  108. # endif
  109. /* For objects present at startup time: offset in the static TLS block. */
  110. ptrdiff_t l_tls_offset;
  111. /* Index of the module in the dtv array. */
  112. size_t l_tls_modid;
  113. /* Nonzero if _dl_init_static_tls should be called for this module */
  114. unsigned int l_need_tls_init:1;
  115. #endif
  116. };
  117. #ifdef __USE_GNU
  118. #if 0
  119. /* Version numbers for la_version handshake interface. */
  120. #define LAV_CURRENT 1
  121. /* Activity types signaled through la_activity. */
  122. enum
  123. {
  124. LA_ACT_CONSISTENT, /* Link map consistent again. */
  125. LA_ACT_ADD, /* New object will be added. */
  126. LA_ACT_DELETE /* Objects will be removed. */
  127. };
  128. /* Values representing origin of name for dynamic loading. */
  129. enum
  130. {
  131. LA_SER_ORIG = 0x01, /* Original name. */
  132. LA_SER_LIBPATH = 0x02, /* Directory from LD_LIBRARY_PATH. */
  133. LA_SER_RUNPATH = 0x04, /* Directory from RPATH/RUNPATH. */
  134. LA_SER_CONFIG = 0x08, /* Found through ldconfig. */
  135. LA_SER_DEFAULT = 0x40, /* Default directory. */
  136. LA_SER_SECURE = 0x80 /* Unused. */
  137. };
  138. /* Values for la_objopen return value. */
  139. enum
  140. {
  141. LA_FLG_BINDTO = 0x01, /* Audit symbols bound to this object. */
  142. LA_FLG_BINDFROM = 0x02 /* Audit symbols bound from this object. */
  143. };
  144. /* Values for la_symbind flags parameter. */
  145. enum
  146. {
  147. LA_SYMB_NOPLTENTER = 0x01, /* la_pltenter will not be called. */
  148. LA_SYMB_NOPLTEXIT = 0x02, /* la_pltexit will not be called. */
  149. LA_SYMB_STRUCTCALL = 0x04, /* Return value is a structure. */
  150. LA_SYMB_DLSYM = 0x08, /* Binding due to dlsym call. */
  151. LA_SYMB_ALTVALUE = 0x10 /* Value has been changed by a previous
  152. la_symbind call. */
  153. };
  154. #endif
  155. struct dl_phdr_info
  156. {
  157. #ifdef __FDPIC__
  158. struct elf32_fdpic_loadaddr dlpi_addr;
  159. #else
  160. #ifdef __DSBT__
  161. struct elf32_dsbt_loadaddr dlpi_addr;
  162. #else
  163. ElfW(Addr) dlpi_addr;
  164. #endif
  165. #endif
  166. const char *dlpi_name;
  167. const ElfW(Phdr) *dlpi_phdr;
  168. ElfW(Half) dlpi_phnum;
  169. #if 0
  170. /* Note: Following members were introduced after the first
  171. version of this structure was available. Check the SIZE
  172. argument passed to the dl_iterate_phdr callback to determine
  173. whether or not each later member is available. */
  174. /* Incremented when a new object may have been added. */
  175. unsigned long long int dlpi_adds;
  176. /* Incremented when an object may have been removed. */
  177. unsigned long long int dlpi_subs;
  178. /* If there is a PT_TLS segment, its module ID as used in
  179. TLS relocations, else zero. */
  180. size_t dlpi_tls_modid;
  181. /* The address of the calling thread's instance of this module's
  182. PT_TLS segment, if it has one and it has been allocated
  183. in the calling thread, otherwise a null pointer. */
  184. void *dlpi_tls_data;
  185. #endif
  186. };
  187. __BEGIN_DECLS
  188. extern int dl_iterate_phdr (int (*__callback) (struct dl_phdr_info *,
  189. size_t, void *),
  190. void *__data);
  191. #if 0
  192. /* Prototypes for the ld.so auditing interfaces. These are not
  193. defined anywhere in ld.so but instead have to be provided by the
  194. auditing DSO. */
  195. extern unsigned int la_version (unsigned int __version);
  196. extern void la_activity (uintptr_t *__cookie, unsigned int __flag);
  197. extern char *la_objsearch (const char *__name, uintptr_t *__cookie,
  198. unsigned int __flag);
  199. extern unsigned int la_objopen (struct link_map *__map, Lmid_t __lmid,
  200. uintptr_t *__cookie);
  201. extern void la_preinit (uintptr_t *__cookie);
  202. extern uintptr_t la_symbind32 (Elf32_Sym *__sym, unsigned int __ndx,
  203. uintptr_t *__refcook, uintptr_t *__defcook,
  204. unsigned int *__flags, const char *__symname);
  205. extern uintptr_t la_symbind64 (Elf64_Sym *__sym, unsigned int __ndx,
  206. uintptr_t *__refcook, uintptr_t *__defcook,
  207. unsigned int *__flags, const char *__symname);
  208. extern unsigned int la_objclose (uintptr_t *__cookie);
  209. #endif
  210. __END_DECLS
  211. #endif
  212. #endif /* link.h */