dl-hash.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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_HASH_H_
  8. #define _LD_HASH_H_
  9. #ifndef RTLD_NEXT
  10. #define RTLD_NEXT ((void*)-1)
  11. #endif
  12. struct init_fini {
  13. struct elf_resolve **init_fini;
  14. unsigned long nlist; /* Number of entries in init_fini */
  15. };
  16. struct dyn_elf {
  17. struct elf_resolve * dyn;
  18. struct dyn_elf * next_handle; /* Used by dlopen et al. */
  19. struct init_fini init_fini;
  20. struct dyn_elf * next;
  21. struct dyn_elf * prev;
  22. };
  23. struct sym_val {
  24. const ElfW(Sym) *s;
  25. struct elf_resolve *m;
  26. };
  27. /* Structure to describe a single list of scope elements. The lookup
  28. functions get passed an array of pointers to such structures. */
  29. struct r_scope_elem {
  30. struct elf_resolve **r_list; /* Array of maps for the scope. */
  31. unsigned int r_nlist; /* Number of entries in the scope. */
  32. struct r_scope_elem *next;
  33. };
  34. struct elf_resolve {
  35. /* These entries must be in this order to be compatible with the interface used
  36. by gdb to obtain the list of symbols. */
  37. DL_LOADADDR_TYPE loadaddr; /* Base address shared object is loaded at. */
  38. char *libname; /* Absolute file name object was found in. */
  39. ElfW(Dyn) *dynamic_addr; /* Dynamic section of the shared object. */
  40. struct elf_resolve * next;
  41. struct elf_resolve * prev;
  42. /* Nothing after this address is used by gdb. */
  43. #if defined(USE_TLS) && USE_TLS
  44. /* Thread-local storage related info. */
  45. /* Start of the initialization image. */
  46. void *l_tls_initimage;
  47. /* Size of the initialization image. */
  48. size_t l_tls_initimage_size;
  49. /* Size of the TLS block. */
  50. size_t l_tls_blocksize;
  51. /* Alignment requirement of the TLS block. */
  52. size_t l_tls_align;
  53. /* Offset of first byte module alignment. */
  54. size_t l_tls_firstbyte_offset;
  55. # ifndef NO_TLS_OFFSET
  56. # define NO_TLS_OFFSET 0
  57. # endif
  58. /* For objects present at startup time: offset in the static TLS block. */
  59. ptrdiff_t l_tls_offset;
  60. /* Index of the module in the dtv array. */
  61. size_t l_tls_modid;
  62. /* Nonzero if _dl_init_static_tls should be called for this module */
  63. unsigned int l_need_tls_init:1;
  64. #endif
  65. ElfW(Addr) mapaddr;
  66. #ifdef __LDSO_STANDALONE_SUPPORT__
  67. /* Store the entry point from the ELF header (e_entry) */
  68. ElfW(Addr) l_entry;
  69. #endif
  70. enum {elf_lib, elf_executable,program_interpreter, loaded_file} libtype;
  71. /* This is the local scope of the shared object */
  72. struct r_scope_elem symbol_scope;
  73. unsigned short usage_count;
  74. unsigned short int init_flag;
  75. unsigned long rtld_flags; /* RTLD_GLOBAL, RTLD_NOW etc. */
  76. Elf_Symndx nbucket;
  77. #ifdef __LDSO_GNU_HASH_SUPPORT__
  78. /* Data needed to support GNU hash style */
  79. Elf32_Word l_gnu_bitmask_idxbits;
  80. Elf32_Word l_gnu_shift;
  81. const ElfW(Addr) *l_gnu_bitmask;
  82. union
  83. {
  84. const Elf32_Word *l_gnu_chain_zero;
  85. const Elf_Symndx *elf_buckets;
  86. };
  87. #else
  88. Elf_Symndx *elf_buckets;
  89. #endif
  90. struct init_fini_list *init_fini;
  91. struct init_fini_list *rtld_local; /* keep tack of RTLD_LOCAL libs in same group */
  92. /*
  93. * These are only used with ELF style shared libraries
  94. */
  95. Elf_Symndx nchain;
  96. #ifdef __LDSO_GNU_HASH_SUPPORT__
  97. union
  98. {
  99. const Elf32_Word *l_gnu_buckets;
  100. const Elf_Symndx *chains;
  101. };
  102. #else
  103. Elf_Symndx *chains;
  104. #endif
  105. unsigned long dynamic_info[DYNAMIC_SIZE];
  106. unsigned long n_phent;
  107. ElfW(Phdr) * ppnt;
  108. ElfW(Addr) relro_addr;
  109. size_t relro_size;
  110. dev_t st_dev; /* device */
  111. ino_t st_ino; /* inode */
  112. #ifdef __powerpc__
  113. /* this is used to store the address of relocation data words, so
  114. * we don't have to calculate it every time, which requires a divide */
  115. unsigned long data_words;
  116. #endif
  117. #ifdef __FDPIC__
  118. /* Every loaded module holds a hashtable of function descriptors of
  119. functions defined in it, such that it's easy to release the
  120. memory when the module is dlclose()d. */
  121. struct funcdesc_ht *funcdesc_ht;
  122. #endif
  123. };
  124. #define RELOCS_DONE 0x000001
  125. #define JMP_RELOCS_DONE 0x000002
  126. #define INIT_FUNCS_CALLED 0x000004
  127. #define FINI_FUNCS_CALLED 0x000008
  128. #define DL_OPENED 0x000010
  129. #define DL_RESERVED 0x000020
  130. extern struct dyn_elf * _dl_symbol_tables;
  131. extern struct elf_resolve * _dl_loaded_modules;
  132. extern struct dyn_elf * _dl_handles;
  133. extern struct elf_resolve * _dl_add_elf_hash_table(const char * libname,
  134. DL_LOADADDR_TYPE loadaddr, unsigned long * dynamic_info,
  135. unsigned long dynamic_addr, unsigned long dynamic_size);
  136. /* Only need extra arg with some configurations */
  137. #if !((defined(USE_TLS) && USE_TLS) || defined __FDPIC__)
  138. # define _dl_lookup_hash(n, r, m, s, c, tpnt) _dl_lookup_hash(n, r, m, s, c)
  139. # define _dl_find_hash(n, r, m, s, t, tpntp) _dl_find_hash(n, r, m, s, t)
  140. #endif
  141. extern char *_dl_lookup_hash(const char *name, struct r_scope_elem *scope,
  142. struct elf_resolve *mytpnt, struct sym_val *symbol, int type_class,
  143. struct elf_resolve **tpntp);
  144. static __always_inline char *_dl_find_hash(const char *name, struct r_scope_elem *scope,
  145. struct elf_resolve *mytpnt, struct sym_val *symbol, int type_class,
  146. struct elf_resolve **tpntp)
  147. {
  148. return _dl_lookup_hash(name, scope, mytpnt, symbol, type_class, tpntp);
  149. }
  150. extern int _dl_linux_dynamic_link(void);
  151. extern char * _dl_library_path;
  152. extern char * _dl_not_lazy;
  153. static __inline__ int _dl_symbol(char * name)
  154. {
  155. if (name[0] != '_' || name[1] != 'd' || name[2] != 'l' || name[3] != '_')
  156. return 0;
  157. return 1;
  158. }
  159. #define LD_ERROR_NOFILE 1
  160. #define LD_ERROR_NOZERO 2
  161. #define LD_ERROR_NOTELF 3
  162. #define LD_ERROR_NOTMAGIC 4
  163. #define LD_ERROR_NOTDYN 5
  164. #define LD_ERROR_MMAP_FAILED 6
  165. #define LD_ERROR_NODYNAMIC 7
  166. #define LD_ERROR_TLS_FAILED 8
  167. #define LD_WRONG_RELOCS 9
  168. #define LD_BAD_HANDLE 10
  169. #define LD_NO_SYMBOL 11
  170. #endif /* _LD_HASH_H_ */