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