link.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. #ifdef _LIBC
  95. #if defined(USE_TLS) && USE_TLS
  96. /* Thread-local storage related info. */
  97. /* Start of the initialization image. */
  98. void *l_tls_initimage;
  99. /* Size of the initialization image. */
  100. size_t l_tls_initimage_size;
  101. /* Size of the TLS block. */
  102. size_t l_tls_blocksize;
  103. /* Alignment requirement of the TLS block. */
  104. size_t l_tls_align;
  105. /* Offset of first byte module alignment. */
  106. size_t l_tls_firstbyte_offset;
  107. # ifndef NO_TLS_OFFSET
  108. # define NO_TLS_OFFSET 0
  109. # endif
  110. /* For objects present at startup time: offset in the static TLS block. */
  111. ptrdiff_t l_tls_offset;
  112. /* Index of the module in the dtv array. */
  113. size_t l_tls_modid;
  114. /* Nonzero if _dl_init_static_tls should be called for this module */
  115. unsigned int l_need_tls_init:1;
  116. #endif
  117. #endif
  118. };
  119. #ifdef __USE_GNU
  120. #if 0
  121. /* Version numbers for la_version handshake interface. */
  122. #define LAV_CURRENT 1
  123. /* Activity types signaled through la_activity. */
  124. enum
  125. {
  126. LA_ACT_CONSISTENT, /* Link map consistent again. */
  127. LA_ACT_ADD, /* New object will be added. */
  128. LA_ACT_DELETE /* Objects will be removed. */
  129. };
  130. /* Values representing origin of name for dynamic loading. */
  131. enum
  132. {
  133. LA_SER_ORIG = 0x01, /* Original name. */
  134. LA_SER_LIBPATH = 0x02, /* Directory from LD_LIBRARY_PATH. */
  135. LA_SER_RUNPATH = 0x04, /* Directory from RPATH/RUNPATH. */
  136. LA_SER_CONFIG = 0x08, /* Found through ldconfig. */
  137. LA_SER_DEFAULT = 0x40, /* Default directory. */
  138. LA_SER_SECURE = 0x80 /* Unused. */
  139. };
  140. /* Values for la_objopen return value. */
  141. enum
  142. {
  143. LA_FLG_BINDTO = 0x01, /* Audit symbols bound to this object. */
  144. LA_FLG_BINDFROM = 0x02 /* Audit symbols bound from this object. */
  145. };
  146. /* Values for la_symbind flags parameter. */
  147. enum
  148. {
  149. LA_SYMB_NOPLTENTER = 0x01, /* la_pltenter will not be called. */
  150. LA_SYMB_NOPLTEXIT = 0x02, /* la_pltexit will not be called. */
  151. LA_SYMB_STRUCTCALL = 0x04, /* Return value is a structure. */
  152. LA_SYMB_DLSYM = 0x08, /* Binding due to dlsym call. */
  153. LA_SYMB_ALTVALUE = 0x10 /* Value has been changed by a previous
  154. la_symbind call. */
  155. };
  156. #endif
  157. struct dl_phdr_info
  158. {
  159. #ifdef __FDPIC__
  160. struct elf32_fdpic_loadaddr dlpi_addr;
  161. #else
  162. #ifdef __DSBT__
  163. struct elf32_dsbt_loadaddr dlpi_addr;
  164. #else
  165. ElfW(Addr) dlpi_addr;
  166. #endif
  167. #endif
  168. const char *dlpi_name;
  169. const ElfW(Phdr) *dlpi_phdr;
  170. ElfW(Half) dlpi_phnum;
  171. #if 0
  172. /* Note: Following members were introduced after the first
  173. version of this structure was available. Check the SIZE
  174. argument passed to the dl_iterate_phdr callback to determine
  175. whether or not each later member is available. */
  176. /* Incremented when a new object may have been added. */
  177. unsigned long long int dlpi_adds;
  178. /* Incremented when an object may have been removed. */
  179. unsigned long long int dlpi_subs;
  180. /* If there is a PT_TLS segment, its module ID as used in
  181. TLS relocations, else zero. */
  182. size_t dlpi_tls_modid;
  183. /* The address of the calling thread's instance of this module's
  184. PT_TLS segment, if it has one and it has been allocated
  185. in the calling thread, otherwise a null pointer. */
  186. void *dlpi_tls_data;
  187. #endif
  188. };
  189. __BEGIN_DECLS
  190. extern int dl_iterate_phdr (int (*__callback) (struct dl_phdr_info *,
  191. size_t, void *),
  192. void *__data);
  193. #if 0
  194. /* Prototypes for the ld.so auditing interfaces. These are not
  195. defined anywhere in ld.so but instead have to be provided by the
  196. auditing DSO. */
  197. extern unsigned int la_version (unsigned int __version);
  198. extern void la_activity (uintptr_t *__cookie, unsigned int __flag);
  199. extern char *la_objsearch (const char *__name, uintptr_t *__cookie,
  200. unsigned int __flag);
  201. extern unsigned int la_objopen (struct link_map *__map, Lmid_t __lmid,
  202. uintptr_t *__cookie);
  203. extern void la_preinit (uintptr_t *__cookie);
  204. extern uintptr_t la_symbind32 (Elf32_Sym *__sym, unsigned int __ndx,
  205. uintptr_t *__refcook, uintptr_t *__defcook,
  206. unsigned int *__flags, const char *__symname);
  207. extern uintptr_t la_symbind64 (Elf64_Sym *__sym, unsigned int __ndx,
  208. uintptr_t *__refcook, uintptr_t *__defcook,
  209. unsigned int *__flags, const char *__symname);
  210. extern unsigned int la_objclose (uintptr_t *__cookie);
  211. #endif
  212. __END_DECLS
  213. #endif
  214. #endif /* link.h */