ldso.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. #define _FCNTL_H
  27. #include <bits/fcntl.h>
  28. #include <bits/wordsize.h>
  29. /* Pull in the arch specific type information */
  30. #include <sys/types.h>
  31. /* Pull in the arch specific page size */
  32. #include <bits/uClibc_page.h>
  33. /* Pull in the ldso syscalls and string functions */
  34. #ifndef __ARCH_HAS_NO_SHARED__
  35. #include <dl-syscall.h>
  36. #include <dl-string.h>
  37. /* Now the ldso specific headers */
  38. #include <dl-elf.h>
  39. #ifdef __UCLIBC_HAS_TLS__
  40. /* Defines USE_TLS */
  41. #include <tls.h>
  42. #endif
  43. #include <dl-hash.h>
  44. /* common align masks, if not specified by sysdep headers */
  45. #ifndef ADDR_ALIGN
  46. #define ADDR_ALIGN (_dl_pagesize - 1)
  47. #endif
  48. #ifndef PAGE_ALIGN
  49. #define PAGE_ALIGN (~ADDR_ALIGN)
  50. #endif
  51. #ifndef OFFS_ALIGN
  52. #define OFFS_ALIGN (PAGE_ALIGN & ~(1ul << (sizeof(_dl_pagesize) * 8 - 1)))
  53. #endif
  54. /* For INIT/FINI dependency sorting. */
  55. struct init_fini_list {
  56. struct init_fini_list *next;
  57. struct elf_resolve *tpnt;
  58. };
  59. /* Global variables used within the shared library loader */
  60. extern char *_dl_library_path; /* Where we look for libraries */
  61. extern char *_dl_preload; /* Things to be loaded before the libs */
  62. extern char *_dl_ldsopath; /* Where the shared lib loader was found */
  63. extern const char *_dl_progname; /* The name of the executable being run */
  64. extern size_t _dl_pagesize; /* Store the page size for use later */
  65. #ifdef USE_TLS
  66. extern void _dl_add_to_slotinfo (struct link_map *l);
  67. extern void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
  68. #endif
  69. #ifdef __SUPPORT_LD_DEBUG__
  70. extern char *_dl_debug;
  71. extern char *_dl_debug_symbols;
  72. extern char *_dl_debug_move;
  73. extern char *_dl_debug_reloc;
  74. extern char *_dl_debug_detail;
  75. extern char *_dl_debug_nofixups;
  76. extern char *_dl_debug_bindings;
  77. extern int _dl_debug_file;
  78. # define __dl_debug_dprint(fmt, args...) \
  79. _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __FUNCTION__, __LINE__, ## args);
  80. # define _dl_if_debug_dprint(fmt, args...) \
  81. do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0)
  82. #else
  83. # define __dl_debug_dprint(fmt, args...) do {} while (0)
  84. # define _dl_if_debug_dprint(fmt, args...) do {} while (0)
  85. # define _dl_debug_file 2
  86. #endif /* __SUPPORT_LD_DEBUG__ */
  87. #ifdef IS_IN_rtld
  88. # ifdef __SUPPORT_LD_DEBUG__
  89. # define _dl_assert(expr) \
  90. do { \
  91. if (!(expr)) { \
  92. __dl_debug_dprint("assert(%s)\n", #expr); \
  93. _dl_exit(45); \
  94. } \
  95. } while (0)
  96. # else
  97. # define _dl_assert(expr) ((void)0)
  98. # endif
  99. #else
  100. # include <assert.h>
  101. # define _dl_assert(expr) assert(expr)
  102. #endif
  103. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  104. # define _dl_debug_early(fmt, args...) __dl_debug_dprint(fmt, ## args)
  105. #else
  106. # define _dl_debug_early(fmt, args...) do {} while (0)
  107. #endif /* __SUPPORT_LD_DEBUG_EARLY__ */
  108. #ifndef NULL
  109. #define NULL ((void *) 0)
  110. #endif
  111. extern void *_dl_malloc(size_t size);
  112. extern void *_dl_calloc(size_t __nmemb, size_t __size);
  113. extern void *_dl_realloc(void *__ptr, size_t __size);
  114. extern void _dl_free(void *);
  115. extern char *_dl_getenv(const char *symbol, char **envp);
  116. extern void _dl_unsetenv(const char *symbol, char **envp);
  117. extern char *_dl_strdup(const char *string);
  118. extern void _dl_dprintf(int, const char *, ...);
  119. #ifndef DL_GET_READY_TO_RUN_EXTRA_PARMS
  120. # define DL_GET_READY_TO_RUN_EXTRA_PARMS
  121. #endif
  122. #ifndef DL_GET_READY_TO_RUN_EXTRA_ARGS
  123. # define DL_GET_READY_TO_RUN_EXTRA_ARGS
  124. #endif
  125. extern void _dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE load_addr,
  126. ElfW(auxv_t) auxvt[AT_EGID + 1], char **envp, char **argv
  127. DL_GET_READY_TO_RUN_EXTRA_PARMS);
  128. #ifdef HAVE_DL_INLINES_H
  129. #include <dl-inlines.h>
  130. #endif
  131. #else /* __ARCH_HAS_NO_SHARED__ */
  132. #include <dl-defs.h>
  133. #endif
  134. #endif /* _LDSO_H_ */