ldso.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #ifndef _LDSO_H_
  2. #define _LDSO_H_
  3. #include <features.h>
  4. /* Prepare for the case that `__builtin_expect' is not available. */
  5. #if __GNUC__ == 2 && __GNUC_MINOR__ < 96
  6. #define __builtin_expect(x, expected_value) (x)
  7. #endif
  8. #ifndef likely
  9. # define likely(x) __builtin_expect((!!(x)),1)
  10. #endif
  11. #ifndef unlikely
  12. # define unlikely(x) __builtin_expect((!!(x)),0)
  13. #endif
  14. #ifndef __LINUX_COMPILER_H
  15. #define __LINUX_COMPILER_H
  16. #endif
  17. /* Pull in compiler and arch stuff */
  18. #include <stdlib.h>
  19. #include <stdarg.h>
  20. /* Pull in the arch specific type information */
  21. #include <sys/types.h>
  22. /* Pull in the ldso syscalls and string functions */
  23. #include <dl-syscall.h>
  24. #include <dl-string.h>
  25. /* Pull in the arch specific page size */
  26. #include <bits/uClibc_page.h>
  27. /* Now the ldso specific headers */
  28. #include <dl-elf.h>
  29. #include <dl-hash.h>
  30. /* Global variables used within the shared library loader */
  31. extern char *_dl_library_path; /* Where we look for libraries */
  32. extern char *_dl_preload; /* Things to be loaded before the libs */
  33. extern char *_dl_ldsopath; /* Where the shared lib loader was found */
  34. extern const char *_dl_progname; /* The name of the executable being run */
  35. extern unsigned char *_dl_malloc_addr; /* Lets _dl_malloc use the already allocated memory page */
  36. extern unsigned char *_dl_mmap_zero; /* Also used by _dl_malloc */
  37. extern unsigned long *_dl_brkp; /* The end of the data segment for brk and sbrk */
  38. extern unsigned long *_dl_envp; /* The environment address */
  39. extern int _dl_secure; /* Are we dealing with setuid stuff? */
  40. extern size_t _dl_pagesize; /* Store the page size for use later */
  41. extern const char *_dl_progname; /* The name of the shared library loader */
  42. #ifdef __SUPPORT_LD_DEBUG__
  43. extern char *_dl_debug;
  44. extern char *_dl_debug_symbols;
  45. extern char *_dl_debug_move;
  46. extern char *_dl_debug_reloc;
  47. extern char *_dl_debug_detail;
  48. extern char *_dl_debug_nofixups;
  49. extern char *_dl_debug_bindings;
  50. extern int _dl_debug_file;
  51. #else
  52. #define _dl_debug_file 2
  53. #endif
  54. #ifndef NULL
  55. #define NULL ((void *) 0)
  56. #endif
  57. extern void *_dl_malloc(int size);
  58. extern char *_dl_getenv(const char *symbol, char **envp);
  59. extern void _dl_unsetenv(const char *symbol, char **envp);
  60. extern char *_dl_strdup(const char *string);
  61. extern void _dl_dprintf(int, const char *, ...);
  62. extern void _dl_get_ready_to_run(struct elf_resolve *tpnt, struct elf_resolve *app_tpnt,
  63. unsigned long load_addr, unsigned long *hash_addr,
  64. Elf32_auxv_t auxvt[AT_EGID + 1], char **envp, struct r_debug *debug_addr,
  65. unsigned char *malloc_buffer, unsigned char *mmap_zero, char **argv);
  66. #endif /* _LDSO_H_ */