dlfcn.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* User functions for run-time dynamic loading.
  2. Copyright (C) 1995-2001,2003,2004,2006,2009 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _DLFCN_H
  16. #define _DLFCN_H 1
  17. #include <features.h>
  18. #define __need_size_t
  19. #include <stddef.h>
  20. /* Collect various system dependent definitions and declarations. */
  21. #include <bits/dlfcn.h>
  22. /* Internally used flag. */
  23. #define __RTLD_SECURE 0x04000000 /* Apply additional security checks. */
  24. #ifdef __USE_GNU
  25. /* If the first argument of `dlsym' or `dlvsym' is set to RTLD_NEXT
  26. the run-time address of the symbol called NAME in the next shared
  27. object is returned. The "next" relation is defined by the order
  28. the shared objects were loaded. */
  29. # define RTLD_NEXT ((void *) -1l)
  30. /* If the first argument to `dlsym' or `dlvsym' is set to RTLD_DEFAULT
  31. the run-time address of the symbol called NAME in the global scope
  32. is returned. */
  33. # define RTLD_DEFAULT ((void *) 0)
  34. # if 0 /* uClibc doesnt support this */
  35. /* Type for namespace indeces. */
  36. typedef long int Lmid_t;
  37. /* Special namespace ID values. */
  38. # define LM_ID_BASE 0 /* Initial namespace. */
  39. # define LM_ID_NEWLM -1 /* For dlmopen: request new namespace. */
  40. # endif
  41. #endif
  42. __BEGIN_DECLS
  43. /* Open the shared object FILE and map it in; return a handle that can be
  44. passed to `dlsym' to get symbol values from it. */
  45. extern void *dlopen (const char *__file, int __mode) __THROWNL;
  46. /* Unmap and close a shared object opened by `dlopen'.
  47. The handle cannot be used again after calling `dlclose'. */
  48. extern int dlclose (void *__handle) __THROWNL __nonnull ((1));
  49. /* Find the run-time address in the shared object HANDLE refers to
  50. of the symbol called NAME. */
  51. extern void *dlsym (void *__restrict __handle,
  52. const char *__restrict __name) __THROW __nonnull ((2));
  53. #if 0 /*def __USE_GNU*/
  54. /* Like `dlopen', but request object to be allocated in a new namespace. */
  55. extern void *dlmopen (Lmid_t __nsid, const char *__file, int __mode) __THROWNL;
  56. /* Find the run-time address in the shared object HANDLE refers to
  57. of the symbol called NAME with VERSION. */
  58. extern void *dlvsym (void *__restrict __handle,
  59. const char *__restrict __name,
  60. const char *__restrict __version)
  61. __THROW __nonnull ((2, 3));
  62. #endif
  63. /* When any of the above functions fails, call this function
  64. to return a string describing the error. Each call resets
  65. the error string so that a following call returns null. */
  66. extern char *dlerror (void) __THROW;
  67. #ifdef __USE_GNU
  68. /* Structure containing information about object searched using
  69. `dladdr'. */
  70. typedef struct
  71. {
  72. const char *dli_fname; /* File name of defining object. */
  73. void *dli_fbase; /* Load address of that object. */
  74. const char *dli_sname; /* Name of nearest symbol. */
  75. void *dli_saddr; /* Exact value of nearest symbol. */
  76. } Dl_info;
  77. /* Fill in *INFO with the following information about ADDRESS.
  78. Returns 0 iff no shared object's segments contain that address. */
  79. extern int dladdr (const void *__address, Dl_info *__info)
  80. __THROW __nonnull ((2));
  81. #if 0 /* not supported by uClibc */
  82. /* Same as `dladdr', but additionally sets *EXTRA_INFO according to FLAGS. */
  83. extern int dladdr1 (const void *__address, Dl_info *__info,
  84. void **__extra_info, int __flags) __THROW __nonnull ((2));
  85. /* These are the possible values for the FLAGS argument to `dladdr1'.
  86. This indicates what extra information is stored at *EXTRA_INFO.
  87. It may also be zero, in which case the EXTRA_INFO argument is not used. */
  88. enum
  89. {
  90. /* Matching symbol table entry (const ElfNN_Sym *). */
  91. RTLD_DL_SYMENT = 1,
  92. /* The object containing the address (struct link_map *). */
  93. RTLD_DL_LINKMAP = 2
  94. };
  95. /* Get information about the shared object HANDLE refers to.
  96. REQUEST is from among the values below, and determines the use of ARG.
  97. On success, returns zero. On failure, returns -1 and records an error
  98. message to be fetched with `dlerror'. */
  99. extern int dlinfo (void *__restrict __handle,
  100. int __request, void *__restrict __arg)
  101. __THROW __nonnull ((1, 3));
  102. /* These are the possible values for the REQUEST argument to `dlinfo'. */
  103. enum
  104. {
  105. /* Treat ARG as `lmid_t *'; store namespace ID for HANDLE there. */
  106. RTLD_DI_LMID = 1,
  107. /* Treat ARG as `struct link_map **';
  108. store the `struct link_map *' for HANDLE there. */
  109. RTLD_DI_LINKMAP = 2,
  110. RTLD_DI_CONFIGADDR = 3, /* Unsupported, defined by Solaris. */
  111. /* Treat ARG as `Dl_serinfo *' (see below), and fill in to describe the
  112. directories that will be searched for dependencies of this object.
  113. RTLD_DI_SERINFOSIZE fills in just the `dls_cnt' and `dls_size'
  114. entries to indicate the size of the buffer that must be passed to
  115. RTLD_DI_SERINFO to fill in the full information. */
  116. RTLD_DI_SERINFO = 4,
  117. RTLD_DI_SERINFOSIZE = 5,
  118. /* Treat ARG as `char *', and store there the directory name used to
  119. expand $ORIGIN in this shared object's dependency file names. */
  120. RTLD_DI_ORIGIN = 6,
  121. RTLD_DI_PROFILENAME = 7, /* Unsupported, defined by Solaris. */
  122. RTLD_DI_PROFILEOUT = 8, /* Unsupported, defined by Solaris. */
  123. /* Treat ARG as `size_t *', and store there the TLS module ID
  124. of this object's PT_TLS segment, as used in TLS relocations;
  125. store zero if this object does not define a PT_TLS segment. */
  126. RTLD_DI_TLS_MODID = 9,
  127. /* Treat ARG as `void **', and store there a pointer to the calling
  128. thread's TLS block corresponding to this object's PT_TLS segment.
  129. Store a null pointer if this object does not define a PT_TLS
  130. segment, or if the calling thread has not allocated a block for it. */
  131. RTLD_DI_TLS_DATA = 10,
  132. RTLD_DI_MAX = 10
  133. };
  134. /* This is the type of elements in `Dl_serinfo', below.
  135. The `dls_name' member points to space in the buffer passed to `dlinfo'. */
  136. typedef struct
  137. {
  138. char *dls_name; /* Name of library search path directory. */
  139. unsigned int dls_flags; /* Indicates where this directory came from. */
  140. } Dl_serpath;
  141. /* This is the structure that must be passed (by reference) to `dlinfo' for
  142. the RTLD_DI_SERINFO and RTLD_DI_SERINFOSIZE requests. */
  143. typedef struct
  144. {
  145. size_t dls_size; /* Size in bytes of the whole buffer. */
  146. unsigned int dls_cnt; /* Number of elements in `dls_serpath'. */
  147. Dl_serpath dls_serpath[1]; /* Actually longer, dls_cnt elements. */
  148. } Dl_serinfo;
  149. #endif
  150. #endif /* __USE_GNU */
  151. __END_DECLS
  152. #endif /* dlfcn.h */