1 /* Exception handling in the dynamic linker.
2 Copyright (C) 1995-2023 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/>. */
29 /* This structure communicates state between _dl_catch_error and
33 struct dl_exception
*exception
; /* The exception data is stored there. */
34 volatile int *errcode
; /* Return value of _dl_signal_error. */
35 jmp_buf env
; /* longjmp here on error. */
38 /* Multiple threads at once can use the `_dl_catch_error' function.
39 The calls can come from `_dl_map_object_deps', `_dlerror_run', or
40 from any of the libc functionality which loads dynamic objects
41 (NSS, iconv). Therefore we have to be prepared to save the state
42 in thread-local memory. We use THREAD_GETMEM and THREAD_SETMEM
43 instead of ELF TLS because ELF TLS is not available in the dynamic
44 loader. Additionally, the exception handling mechanism must be
45 usable before the TCB has been set up, which is why
46 rtld_catch_notls is used if !__rtld_tls_init_tp_called. This is
47 not needed for static builds, where initialization completes before
48 static dlopen etc. can be called. */
51 static struct rtld_catch
*rtld_catch_notls
;
54 static struct rtld_catch
*
58 if (!__rtld_tls_init_tp_called
)
59 return rtld_catch_notls
;
62 return THREAD_GETMEM (THREAD_SELF
, rtld_catch
);
66 set_catch (struct rtld_catch
*catch)
69 if (!__rtld_tls_init_tp_called
)
70 rtld_catch_notls
= catch;
73 THREAD_SETMEM (THREAD_SELF
, rtld_catch
, catch);
76 /* Lossage while resolving the program's own symbols is always fatal. */
78 __attribute__ ((noreturn
))
79 fatal_error (int errcode
, const char *objname
, const char *occasion
,
80 const char *errstring
)
83 _dl_fatal_printf ("%s: %s: %s%s%s%s%s\n",
85 occasion
?: N_("error while loading shared libraries"),
86 objname
, *objname
? ": " : "",
87 errstring
, errcode
? ": " : "",
89 ? __strerror_r (errcode
, buffer
, sizeof buffer
)
94 _dl_signal_exception (int errcode
, struct dl_exception
*exception
,
97 struct rtld_catch
*lcatch
= get_catch ();
100 *lcatch
->exception
= *exception
;
101 *lcatch
->errcode
= errcode
;
103 /* We do not restore the signal mask because none was saved. */
104 __longjmp (lcatch
->env
[0].__jmpbuf
, 1);
107 fatal_error (errcode
, exception
->objname
, occasion
, exception
->errstring
);
109 rtld_hidden_def (_dl_signal_exception
)
112 _dl_signal_error (int errcode
, const char *objname
, const char *occation
,
113 const char *errstring
)
115 struct rtld_catch
*lcatch
= get_catch ();
118 errstring
= N_("DYNAMIC LINKER BUG!!!");
122 _dl_exception_create (lcatch
->exception
, objname
, errstring
);
123 *lcatch
->errcode
= errcode
;
125 /* We do not restore the signal mask because none was saved. */
126 __longjmp (lcatch
->env
[0].__jmpbuf
, 1);
129 fatal_error (errcode
, objname
, occation
, errstring
);
131 rtld_hidden_def (_dl_signal_error
)
134 /* This points to a function which is called when a continuable error is
135 received. Unlike the handling of `catch' this function may return.
136 The arguments will be the `errstring' and `objname'.
138 Since this functionality is not used in normal programs (only in ld.so)
139 we do not care about multi-threaded programs here. We keep this as a
141 static receiver_fct receiver
;
144 _dl_signal_cexception (int errcode
, struct dl_exception
*exception
,
145 const char *occasion
)
147 if (__builtin_expect (GLRO(dl_debug_mask
)
148 & ~(DL_DEBUG_STATISTICS
), 0))
149 _dl_debug_printf ("%s: error: %s: %s (%s)\n",
150 exception
->objname
, occasion
,
151 exception
->errstring
, receiver
? "continued" : "fatal");
155 /* We are inside _dl_receive_error. Call the user supplied
156 handler and resume the work. The receiver will still be
158 (*receiver
) (errcode
, exception
->objname
, exception
->errstring
);
161 _dl_signal_exception (errcode
, exception
, occasion
);
165 _dl_signal_cerror (int errcode
, const char *objname
, const char *occation
,
166 const char *errstring
)
168 if (__builtin_expect (GLRO(dl_debug_mask
)
169 & ~(DL_DEBUG_STATISTICS
), 0))
170 _dl_debug_printf ("%s: error: %s: %s (%s)\n", objname
, occation
,
171 errstring
, receiver
? "continued" : "fatal");
175 /* We are inside _dl_receive_error. Call the user supplied
176 handler and resume the work. The receiver will still be
178 (*receiver
) (errcode
, objname
, errstring
);
181 _dl_signal_error (errcode
, objname
, occation
, errstring
);
185 _dl_receive_error (receiver_fct fct
, void (*operate
) (void *), void *args
)
187 struct rtld_catch
*old_catch
= get_catch ();
188 receiver_fct old_receiver
= receiver
;
190 /* Set the new values. */
196 set_catch (old_catch
);
197 receiver
= old_receiver
;
202 _dl_catch_exception (struct dl_exception
*exception
,
203 void (*operate
) (void *), void *args
)
205 /* If exception is NULL, temporarily disable exception handling.
206 Exceptions during operate (args) are fatal. */
207 if (exception
== NULL
)
209 struct rtld_catch
*old_catch
= get_catch ();
212 /* If we get here, the operation was successful. */
213 set_catch (old_catch
);
217 /* We need not handle `receiver' since setting a `catch' is handled
220 /* Only this needs to be marked volatile, because it is the only local
221 variable that gets changed between the setjmp invocation and the
222 longjmp call. All others are just set here (before setjmp) and read
223 in _dl_signal_error (before longjmp). */
224 volatile int errcode
;
227 /* Don't use an initializer since we don't need to clear C.env. */
228 c
.exception
= exception
;
229 c
.errcode
= &errcode
;
231 struct rtld_catch
*old
= get_catch ();
234 /* Do not save the signal mask. */
235 if (__builtin_expect (__sigsetjmp (c
.env
, 0), 0) == 0)
239 *exception
= (struct dl_exception
) { NULL
};
243 /* We get here only if we longjmp'd out of OPERATE.
244 _dl_signal_exception has already stored values into
249 rtld_hidden_def (_dl_catch_exception
)
252 _dl_catch_error (const char **objname
, const char **errstring
,
253 bool *mallocedp
, void (*operate
) (void *), void *args
)
255 struct dl_exception exception
;
256 int errorcode
= _dl_catch_exception (&exception
, operate
, args
);
257 *objname
= exception
.objname
;
258 *errstring
= exception
.errstring
;
259 *mallocedp
= exception
.message_buffer
== exception
.errstring
;