1 /* Dynamic loading of the libgcc unwinder.
2 Copyright (C) 2021-2022 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/>. */
23 #include <gnu/lib-names.h>
24 #include <unwind-link.h>
25 #include <libc-lock.h>
27 /* Statically allocate the object, so that we do not have to deal with
28 malloc failure. __libc_unwind_link_get must not fail if libgcc_s
29 has already been loaded by other means. */
30 static struct unwind_link global
;
32 /* dlopen handle. Also used for the double-checked locking idiom. */
33 static void *global_libgcc_handle
;
35 /* We cannot use __libc_once because the pthread_once implementation
36 may depend on unwinding. */
37 __libc_lock_define (static, lock
);
40 __libc_unwind_link_get (void)
42 /* Double-checked locking idiom. Synchronizes with the release MO
43 store at the end of this function. */
44 if (atomic_load_acquire (&global_libgcc_handle
) != NULL
)
47 /* Initialize a copy of the data, so that we do not need about
48 unlocking in case the dynamic loader somehow triggers
50 void *local_libgcc_handle
= __libc_dlopen (LIBGCC_S_SO
);
51 if (local_libgcc_handle
== NULL
)
53 __libc_lock_unlock (lock
);
57 struct unwind_link local
;
58 local
.ptr__Unwind_Backtrace
59 = __libc_dlsym (local_libgcc_handle
, "_Unwind_Backtrace");
60 local
.ptr__Unwind_ForcedUnwind
61 = __libc_dlsym (local_libgcc_handle
, "_Unwind_ForcedUnwind");
62 local
.ptr__Unwind_GetCFA
63 = __libc_dlsym (local_libgcc_handle
, "_Unwind_GetCFA");
65 local
.ptr__Unwind_GetIP
66 = __libc_dlsym (local_libgcc_handle
, "_Unwind_GetIP");
68 local
.ptr__Unwind_Resume
69 = __libc_dlsym (local_libgcc_handle
, "_Unwind_Resume");
70 #if UNWIND_LINK_FRAME_STATE_FOR
71 local
.ptr___frame_state_for
72 = __libc_dlsym (local_libgcc_handle
, "__frame_state_for");
75 = __libc_dlsym (local_libgcc_handle
, "__gcc_personality_v0");
76 UNWIND_LINK_EXTRA_INIT
78 /* If a symbol is missing, libgcc_s has somehow been corrupted. */
79 assert (local
.ptr__Unwind_Backtrace
!= NULL
);
80 assert (local
.ptr__Unwind_ForcedUnwind
!= NULL
);
81 assert (local
.ptr__Unwind_GetCFA
!= NULL
);
83 assert (local
.ptr__Unwind_GetIP
!= NULL
);
85 assert (local
.ptr__Unwind_Resume
!= NULL
);
86 assert (local
.ptr_personality
!= NULL
);
89 PTR_MANGLE (local
.ptr__Unwind_Backtrace
);
90 PTR_MANGLE (local
.ptr__Unwind_ForcedUnwind
);
91 PTR_MANGLE (local
.ptr__Unwind_GetCFA
);
92 # if UNWIND_LINK_GETIP
93 PTR_MANGLE (local
.ptr__Unwind_GetIP
);
95 PTR_MANGLE (local
.ptr__Unwind_Resume
);
96 # if UNWIND_LINK_FRAME_STATE_FOR
97 PTR_MANGLE (local
.ptr___frame_state_for
);
99 PTR_MANGLE (local
.ptr_personality
);
102 __libc_lock_lock (lock
);
103 if (atomic_load_relaxed (&global_libgcc_handle
) != NULL
)
104 /* This thread lost the race. Clean up. */
105 __libc_dlclose (local_libgcc_handle
);
110 /* Completes the double-checked locking idiom. */
111 atomic_store_release (&global_libgcc_handle
, local_libgcc_handle
);
114 __libc_lock_unlock (lock
);
117 libc_hidden_def (__libc_unwind_link_get
)
120 __libc_unwind_link_after_fork (void)
122 if (__libc_lock_trylock (lock
) == 0)
123 /* The lock was not acquired during the fork. This covers both
124 the initialized and uninitialized case. */
125 __libc_lock_unlock (lock
);
128 /* Initialization was in progress in another thread.
129 Reinitialize the lock. */
130 __libc_lock_init (lock
);
131 global_libgcc_handle
= NULL
;
135 void __libc_freeres_fn_section
136 __libc_unwind_link_freeres (void)
138 if (global_libgcc_handle
!= NULL
)
140 __libc_dlclose (global_libgcc_handle
);
141 global_libgcc_handle
= NULL
;