ldso.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Copyright (C) 2000-2005 by Erik Andersen <andersen@codepoet.org>
  4. *
  5. * GNU Lesser General Public License version 2.1 or later.
  6. */
  7. #ifndef _LDSO_H_
  8. #define _LDSO_H_
  9. #include <features.h>
  10. /* Prepare for the case that `__builtin_expect' is not available. */
  11. #if defined __GNUC__ && __GNUC__ == 2 && __GNUC_MINOR__ < 96
  12. #define __builtin_expect(x, expected_value) (x)
  13. #endif
  14. #ifndef likely
  15. # define likely(x) __builtin_expect((!!(x)),1)
  16. #endif
  17. #ifndef unlikely
  18. # define unlikely(x) __builtin_expect((!!(x)),0)
  19. #endif
  20. #ifndef __LINUX_COMPILER_H
  21. #define __LINUX_COMPILER_H
  22. #endif
  23. /* Pull in compiler and arch stuff */
  24. #include <stdlib.h>
  25. #include <stdarg.h>
  26. #include <stddef.h> /* for ptrdiff_t */
  27. #define _FCNTL_H
  28. #include <bits/fcntl.h>
  29. #include <bits/wordsize.h>
  30. /* Pull in the arch specific type information */
  31. #include <sys/types.h>
  32. /* Pull in the arch specific page size */
  33. #include <bits/uClibc_page.h>
  34. /* Pull in the ldso syscalls and string functions */
  35. #ifndef __ARCH_HAS_NO_SHARED__
  36. #include <dl-syscall.h>
  37. #include <dl-string.h>
  38. #include <dlfcn.h>
  39. /* Now the ldso specific headers */
  40. #include <dl-elf.h>
  41. #ifdef __UCLIBC_HAS_TLS__
  42. /* Defines USE_TLS */
  43. #include <tls.h>
  44. #endif
  45. #include <dl-hash.h>
  46. /* common align masks, if not specified by sysdep headers */
  47. #ifndef ADDR_ALIGN
  48. #define ADDR_ALIGN (_dl_pagesize - 1)
  49. #endif
  50. #ifndef PAGE_ALIGN
  51. #define PAGE_ALIGN (~ADDR_ALIGN)
  52. #endif
  53. #ifndef OFFS_ALIGN
  54. #define OFFS_ALIGN (PAGE_ALIGN & ~(1ul << (sizeof(_dl_pagesize) * 8 - 1)))
  55. #endif
  56. /* For INIT/FINI dependency sorting. */
  57. struct init_fini_list {
  58. struct init_fini_list *next;
  59. struct elf_resolve *tpnt;
  60. };
  61. /* Global variables used within the shared library loader */
  62. extern char *_dl_library_path; /* Where we look for libraries */
  63. extern char *_dl_preload; /* Things to be loaded before the libs */
  64. extern char *_dl_ldsopath; /* Where the shared lib loader was found */
  65. extern const char *_dl_progname; /* The name of the executable being run */
  66. extern size_t _dl_pagesize; /* Store the page size for use later */
  67. #if defined(USE_TLS) && USE_TLS
  68. extern void _dl_add_to_slotinfo (struct link_map *l);
  69. extern void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
  70. #endif
  71. #ifdef USE_TLS
  72. void _dl_add_to_slotinfo (struct link_map *l);
  73. void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
  74. #endif
  75. #ifdef __SUPPORT_LD_DEBUG__
  76. extern char *_dl_debug;
  77. extern char *_dl_debug_symbols;
  78. extern char *_dl_debug_move;
  79. extern char *_dl_debug_reloc;
  80. extern char *_dl_debug_detail;
  81. extern char *_dl_debug_nofixups;
  82. extern char *_dl_debug_bindings;
  83. extern int _dl_debug_file;
  84. # define __dl_debug_dprint(fmt, args...) \
  85. _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __FUNCTION__, __LINE__, ## args);
  86. # define _dl_if_debug_dprint(fmt, args...) \
  87. do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0)
  88. #else
  89. # define __dl_debug_dprint(fmt, args...) do {} while (0)
  90. # define _dl_if_debug_dprint(fmt, args...) do {} while (0)
  91. # define _dl_debug_file 2
  92. #endif /* __SUPPORT_LD_DEBUG__ */
  93. #ifdef IS_IN_rtld
  94. # ifdef __SUPPORT_LD_DEBUG__
  95. # define _dl_assert(expr) \
  96. do { \
  97. if (!(expr)) { \
  98. __dl_debug_dprint("assert(%s)\n", #expr); \
  99. _dl_exit(45); \
  100. } \
  101. } while (0)
  102. # else
  103. # define _dl_assert(expr) ((void)0)
  104. # endif
  105. #else
  106. # include <assert.h>
  107. # define _dl_assert(expr) assert(expr)
  108. #endif
  109. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  110. # define _dl_debug_early(fmt, args...) __dl_debug_dprint(fmt, ## args)
  111. #else
  112. # define _dl_debug_early(fmt, args...) do {} while (0)
  113. #endif /* __SUPPORT_LD_DEBUG_EARLY__ */
  114. #ifndef NULL
  115. #define NULL ((void *) 0)
  116. #endif
  117. extern void *_dl_malloc(size_t size);
  118. extern void *_dl_calloc(size_t __nmemb, size_t __size);
  119. extern void *_dl_realloc(void *__ptr, size_t __size);
  120. extern void _dl_free(void *);
  121. extern char *_dl_getenv(const char *symbol, char **envp);
  122. extern void _dl_unsetenv(const char *symbol, char **envp);
  123. extern char *_dl_strdup(const char *string);
  124. extern void _dl_dprintf(int, const char *, ...);
  125. #ifndef DL_GET_READY_TO_RUN_EXTRA_PARMS
  126. # define DL_GET_READY_TO_RUN_EXTRA_PARMS
  127. #endif
  128. #ifndef DL_GET_READY_TO_RUN_EXTRA_ARGS
  129. # define DL_GET_READY_TO_RUN_EXTRA_ARGS
  130. #endif
  131. extern void *_dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE load_addr,
  132. ElfW(auxv_t) auxvt[AT_EGID + 1], char **envp, char **argv
  133. DL_GET_READY_TO_RUN_EXTRA_PARMS);
  134. #ifdef HAVE_DL_INLINES_H
  135. #include <dl-inlines.h>
  136. #endif
  137. #else /* __ARCH_HAS_NO_SHARED__ */
  138. #include <dl-defs.h>
  139. #endif
  140. #endif /* _LDSO_H_ */