Fix GCC 11 -Warray-parameter warning for __sigsetjmp (bug 26647)
[glibc.git] / dlfcn / dlerror.c
blob0d38a37bf762721748382c9f38aea867fdea9784
1 /* Return error detail for failing <dlfcn.h> functions.
2 Copyright (C) 1995-2020 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
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 <https://www.gnu.org/licenses/>. */
19 #include <dlfcn.h>
20 #include <libintl.h>
21 #include <stdbool.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <libc-lock.h>
26 #include <ldsodefs.h>
27 #include <libc-symbols.h>
29 #if !defined SHARED && IS_IN (libdl)
31 char *
32 dlerror (void)
34 return __dlerror ();
37 #else
39 /* Type for storing results of dynamic loading actions. */
40 struct dl_action_result
42 int errcode;
43 int returned;
44 bool malloced;
45 const char *objname;
46 const char *errstring;
48 static struct dl_action_result last_result;
49 static struct dl_action_result *static_buf;
51 /* This is the key for the thread specific memory. */
52 static __libc_key_t key;
53 __libc_once_define (static, once);
55 /* Destructor for the thread-specific data. */
56 static void init (void);
57 static void free_key_mem (void *mem);
60 char *
61 __dlerror (void)
63 char *buf = NULL;
64 struct dl_action_result *result;
66 # ifdef SHARED
67 if (!rtld_active ())
68 return _dlfcn_hook->dlerror ();
69 # endif
71 /* If we have not yet initialized the buffer do it now. */
72 __libc_once (once, init);
74 /* Get error string. */
75 if (static_buf != NULL)
76 result = static_buf;
77 else
79 /* init () has been run and we don't use the static buffer.
80 So we have a valid key. */
81 result = (struct dl_action_result *) __libc_getspecific (key);
82 if (result == NULL)
83 result = &last_result;
86 /* Test whether we already returned the string. */
87 if (result->returned != 0)
89 /* We can now free the string. */
90 if (result->errstring != NULL)
92 if (strcmp (result->errstring, "out of memory") != 0)
93 free ((char *) result->errstring);
94 result->errstring = NULL;
97 else if (result->errstring != NULL)
99 buf = (char *) result->errstring;
100 int n;
101 if (result->errcode == 0)
102 n = __asprintf (&buf, "%s%s%s",
103 result->objname,
104 result->objname[0] == '\0' ? "" : ": ",
105 _(result->errstring));
106 else
107 n = __asprintf (&buf, "%s%s%s: %s",
108 result->objname,
109 result->objname[0] == '\0' ? "" : ": ",
110 _(result->errstring),
111 strerror (result->errcode));
112 if (n != -1)
114 /* We don't need the error string anymore. */
115 if (strcmp (result->errstring, "out of memory") != 0)
116 free ((char *) result->errstring);
117 result->errstring = buf;
120 /* Mark the error as returned. */
121 result->returned = 1;
124 return buf;
126 # ifdef SHARED
127 strong_alias (__dlerror, dlerror)
128 # endif
131 _dlerror_run (void (*operate) (void *), void *args)
133 struct dl_action_result *result;
135 /* If we have not yet initialized the buffer do it now. */
136 __libc_once (once, init);
138 /* Get error string and number. */
139 if (static_buf != NULL)
140 result = static_buf;
141 else
143 /* We don't use the static buffer and so we have a key. Use it
144 to get the thread-specific buffer. */
145 result = __libc_getspecific (key);
146 if (result == NULL)
148 result = (struct dl_action_result *) calloc (1, sizeof (*result));
149 if (result == NULL)
150 /* We are out of memory. Since this is no really critical
151 situation we carry on by using the global variable.
152 This might lead to conflicts between the threads but
153 they soon all will have memory problems. */
154 result = &last_result;
155 else
156 /* Set the tsd. */
157 __libc_setspecific (key, result);
161 if (result->errstring != NULL)
163 /* Free the error string from the last failed command. This can
164 happen if `dlerror' was not run after an error was found. */
165 if (result->malloced)
166 free ((char *) result->errstring);
167 result->errstring = NULL;
170 result->errcode = _dl_catch_error (&result->objname, &result->errstring,
171 &result->malloced, operate, args);
173 /* If no error we mark that no error string is available. */
174 result->returned = result->errstring == NULL;
176 return result->errstring != NULL;
180 /* Initialize buffers for results. */
181 static void
182 init (void)
184 if (__libc_key_create (&key, free_key_mem))
185 /* Creating the key failed. This means something really went
186 wrong. In any case use a static buffer which is better than
187 nothing. */
188 static_buf = &last_result;
192 static void
193 check_free (struct dl_action_result *rec)
195 if (rec->errstring != NULL
196 && strcmp (rec->errstring, "out of memory") != 0)
198 /* We can free the string only if the allocation happened in the
199 C library used by the dynamic linker. This means, it is
200 always the C library in the base namespace. When we're statically
201 linked, the dynamic linker is part of the program and so always
202 uses the same C library we use here. */
203 #ifdef SHARED
204 struct link_map *map = NULL;
205 Dl_info info;
206 if (_dl_addr (check_free, &info, &map, NULL) != 0 && map->l_ns == 0)
207 #endif
209 free ((char *) rec->errstring);
210 rec->errstring = NULL;
216 static void
217 __attribute__ ((destructor))
218 fini (void)
220 check_free (&last_result);
224 /* Free the thread specific data, this is done if a thread terminates. */
225 static void
226 free_key_mem (void *mem)
228 check_free ((struct dl_action_result *) mem);
230 free (mem);
231 __libc_setspecific (key, NULL);
234 # ifdef SHARED
236 /* Free the dlerror-related resources. */
237 void
238 __dlerror_main_freeres (void)
240 /* Free the global memory if used. */
241 check_free (&last_result);
243 if (__libc_once_get (once) && static_buf == NULL)
245 /* init () has been run and we don't use the static buffer.
246 So we have a valid key. */
247 void *mem;
248 /* Free the TSD memory if used. */
249 mem = __libc_getspecific (key);
250 if (mem != NULL)
251 free_key_mem (mem);
255 struct dlfcn_hook *_dlfcn_hook __attribute__((nocommon));
256 libdl_hidden_data_def (_dlfcn_hook)
258 # else
260 static struct dlfcn_hook _dlfcn_hooks =
262 .dlopen = __dlopen,
263 .dlclose = __dlclose,
264 .dlsym = __dlsym,
265 .dlvsym = __dlvsym,
266 .dlerror = __dlerror,
267 .dladdr = __dladdr,
268 .dladdr1 = __dladdr1,
269 .dlinfo = __dlinfo,
270 .dlmopen = __dlmopen
273 void
274 __libc_register_dlfcn_hook (struct link_map *map)
276 struct dlfcn_hook **hook;
278 hook = (struct dlfcn_hook **) __libc_dlsym_private (map, "_dlfcn_hook");
279 if (hook != NULL)
280 *hook = &_dlfcn_hooks;
282 # endif
283 #endif