dl-hash.h 4.6 KB

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