]>
Commit | Line | Data |
---|---|---|
fb0e1ba7 | 1 | /* libthread_db assisted debugging support, generic parts. |
1bac305b | 2 | |
d01e8234 | 3 | Copyright (C) 1999-2025 Free Software Foundation, Inc. |
fb0e1ba7 MK |
4 | |
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
fb0e1ba7 MK |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
fb0e1ba7 | 19 | |
fb0e1ba7 | 20 | #include <dlfcn.h> |
05d9d66d | 21 | #include "exceptions.h" |
fb0e1ba7 | 22 | #include "gdb_proc_service.h" |
125f8a3d | 23 | #include "nat/gdb_thread_db.h" |
268a13a5 | 24 | #include "gdbsupport/gdb_vecs.h" |
bda9cb72 | 25 | #include "bfd.h" |
17a37d48 | 26 | #include "command.h" |
5b9707eb | 27 | #include "cli/cli-cmds.h" |
fb0e1ba7 MK |
28 | #include "gdbthread.h" |
29 | #include "inferior.h" | |
45741a9c | 30 | #include "infrun.h" |
bda9cb72 MK |
31 | #include "symfile.h" |
32 | #include "objfiles.h" | |
fb0e1ba7 | 33 | #include "target.h" |
4e052eda | 34 | #include "regcache.h" |
17a37d48 | 35 | #include "solib.h" |
3f47be5c | 36 | #include "solib-svr4.h" |
16451949 | 37 | #include "gdbcore.h" |
76727919 | 38 | #include "observable.h" |
0ec9a092 | 39 | #include "linux-nat.h" |
125f8a3d | 40 | #include "nat/linux-procfs.h" |
c1a747c1 | 41 | #include "nat/linux-ptrace.h" |
125f8a3d | 42 | #include "nat/linux-osdata.h" |
bf88dd68 | 43 | #include "auto-load.h" |
529480d0 | 44 | #include "cli/cli-utils.h" |
979894f2 | 45 | #include <signal.h> |
bf88dd68 | 46 | #include <ctype.h> |
9bc3a976 | 47 | #include "nat/linux-namespaces.h" |
325fac50 | 48 | #include <algorithm> |
268a13a5 | 49 | #include "gdbsupport/pathstuff.h" |
5045b3d7 | 50 | #include "valprint.h" |
9d636d67 | 51 | #include "cli/cli-style.h" |
979894f2 | 52 | |
17faa917 DJ |
53 | /* GNU/Linux libthread_db support. |
54 | ||
55 | libthread_db is a library, provided along with libpthread.so, which | |
56 | exposes the internals of the thread library to a debugger. It | |
57 | allows GDB to find existing threads, new threads as they are | |
58 | created, thread IDs (usually, the result of pthread_self), and | |
59 | thread-local variables. | |
60 | ||
4a6ed09b PA |
61 | The libthread_db interface originates on Solaris, where it is both |
62 | more powerful and more complicated. This implementation only works | |
63 | for NPTL, the glibc threading library. It assumes that each thread | |
64 | is permanently assigned to a single light-weight process (LWP). At | |
65 | some point it also supported the older LinuxThreads library, but it | |
66 | no longer does. | |
17faa917 DJ |
67 | |
68 | libthread_db-specific information is stored in the "private" field | |
69 | of struct thread_info. When the field is NULL we do not yet have | |
70 | information about the new thread; this could be temporary (created, | |
71 | but the thread library's data structures do not reflect it yet) | |
72 | or permanent (created using clone instead of pthread_create). | |
73 | ||
74 | Process IDs managed by linux-thread-db.c match those used by | |
75 | linux-nat.c: a common PID for all processes, an LWP ID for each | |
76 | thread, and no TID. We save the TID in private. Keeping it out | |
77 | of the ptid_t prevents thread IDs changing when libpthread is | |
78 | loaded or unloaded. */ | |
79 | ||
d9f719f1 PA |
80 | static const target_info thread_db_target_info = { |
81 | "multi-thread", | |
82 | N_("multi-threaded child process."), | |
83 | N_("Threads and pthreads support.") | |
84 | }; | |
85 | ||
f6ac5f3d PA |
86 | class thread_db_target final : public target_ops |
87 | { | |
88 | public: | |
d9f719f1 PA |
89 | const target_info &info () const override |
90 | { return thread_db_target_info; } | |
f6ac5f3d | 91 | |
66b4deae PA |
92 | strata stratum () const override { return thread_stratum; } |
93 | ||
f6ac5f3d | 94 | void detach (inferior *, int) override; |
b60cea74 | 95 | ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override; |
f6ac5f3d PA |
96 | void resume (ptid_t, int, enum gdb_signal) override; |
97 | void mourn_inferior () override; | |
294c36eb | 98 | void follow_exec (inferior *, ptid_t, const char *) override; |
f6ac5f3d | 99 | void update_thread_list () override; |
a068643d | 100 | std::string pid_to_str (ptid_t) override; |
f6ac5f3d PA |
101 | CORE_ADDR get_thread_local_address (ptid_t ptid, |
102 | CORE_ADDR load_module_addr, | |
103 | CORE_ADDR offset) override; | |
104 | const char *extra_thread_info (struct thread_info *) override; | |
c80e29db | 105 | ptid_t get_ada_task_ptid (long lwp, ULONGEST thread) override; |
f6ac5f3d PA |
106 | |
107 | thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle, | |
108 | int handle_len, | |
109 | inferior *inf) override; | |
1f08d324 | 110 | gdb::array_view<const gdb_byte> thread_info_to_thread_handle (struct thread_info *) override; |
f6ac5f3d PA |
111 | }; |
112 | ||
e0700ba4 | 113 | static std::string libthread_db_search_path = LIBTHREAD_DB_SEARCH_PATH; |
17a37d48 | 114 | |
491144b5 | 115 | /* Set to true if thread_db auto-loading is enabled |
bf88dd68 | 116 | by the "set auto-load libthread-db" command. */ |
491144b5 | 117 | static bool auto_load_thread_db = true; |
bf88dd68 | 118 | |
491144b5 | 119 | /* Set to true if load-time libthread_db tests have been enabled |
85102364 | 120 | by the "maintenance set check-libthread-db" command. */ |
491144b5 | 121 | static bool check_thread_db_on_load = false; |
5045b3d7 | 122 | |
bf88dd68 JK |
123 | /* "show" command for the auto_load_thread_db configuration variable. */ |
124 | ||
125 | static void | |
126 | show_auto_load_thread_db (struct ui_file *file, int from_tty, | |
127 | struct cmd_list_element *c, const char *value) | |
128 | { | |
6cb06a8c TT |
129 | gdb_printf (file, _("Auto-loading of inferior specific libthread_db " |
130 | "is %s.\n"), | |
131 | value); | |
bf88dd68 JK |
132 | } |
133 | ||
84e578fb | 134 | static void |
eb4c3f4a | 135 | set_libthread_db_search_path (const char *ignored, int from_tty, |
84e578fb DE |
136 | struct cmd_list_element *c) |
137 | { | |
e0700ba4 SM |
138 | if (libthread_db_search_path.empty ()) |
139 | libthread_db_search_path = LIBTHREAD_DB_SEARCH_PATH; | |
84e578fb DE |
140 | } |
141 | ||
02d868e8 PP |
142 | /* If non-zero, print details of libthread_db processing. */ |
143 | ||
ccce17b0 | 144 | static unsigned int libthread_db_debug; |
02d868e8 PP |
145 | |
146 | static void | |
147 | show_libthread_db_debug (struct ui_file *file, int from_tty, | |
148 | struct cmd_list_element *c, const char *value) | |
149 | { | |
6cb06a8c | 150 | gdb_printf (file, _("libthread-db debugging is %s.\n"), value); |
02d868e8 PP |
151 | } |
152 | ||
8605d56e AC |
153 | /* If we're running on GNU/Linux, we must explicitly attach to any new |
154 | threads. */ | |
fb0e1ba7 | 155 | |
fb0e1ba7 | 156 | /* This module's target vector. */ |
f6ac5f3d | 157 | static thread_db_target the_thread_db_target; |
fb0e1ba7 | 158 | |
fb0e1ba7 MK |
159 | /* Non-zero if we have determined the signals used by the threads |
160 | library. */ | |
161 | static int thread_signals; | |
fb0e1ba7 | 162 | |
d90e17a7 PA |
163 | struct thread_db_info |
164 | { | |
165 | struct thread_db_info *next; | |
166 | ||
5b6d1e4f PA |
167 | /* The target this thread_db_info is bound to. */ |
168 | process_stratum_target *process_target; | |
169 | ||
d90e17a7 PA |
170 | /* Process id this object refers to. */ |
171 | int pid; | |
172 | ||
173 | /* Handle from dlopen for libthread_db.so. */ | |
174 | void *handle; | |
175 | ||
bf88dd68 JK |
176 | /* Absolute pathname from gdb_realpath to disk file used for dlopen-ing |
177 | HANDLE. It may be NULL for system library. */ | |
178 | char *filename; | |
179 | ||
d90e17a7 PA |
180 | /* Structure that identifies the child process for the |
181 | <proc_service.h> interface. */ | |
182 | struct ps_prochandle proc_handle; | |
183 | ||
184 | /* Connection to the libthread_db library. */ | |
185 | td_thragent_t *thread_agent; | |
186 | ||
4d062f1a PA |
187 | /* True if we need to apply the workaround for glibc/BZ5983. When |
188 | we catch a PTRACE_O_TRACEFORK, and go query the child's thread | |
189 | list, nptl_db returns the parent's threads in addition to the new | |
190 | (single) child thread. If this flag is set, we do extra work to | |
191 | be able to ignore such stale entries. */ | |
192 | int need_stale_parent_threads_check; | |
193 | ||
d90e17a7 | 194 | /* Pointers to the libthread_db functions. */ |
fb0e1ba7 | 195 | |
96e9210f PA |
196 | td_init_ftype *td_init_p; |
197 | td_ta_new_ftype *td_ta_new_p; | |
a2419b98 | 198 | td_ta_delete_ftype *td_ta_delete_p; |
96e9210f PA |
199 | td_ta_map_lwp2thr_ftype *td_ta_map_lwp2thr_p; |
200 | td_ta_thr_iter_ftype *td_ta_thr_iter_p; | |
96e9210f | 201 | td_thr_get_info_ftype *td_thr_get_info_p; |
96e9210f PA |
202 | td_thr_tls_get_addr_ftype *td_thr_tls_get_addr_p; |
203 | td_thr_tlsbase_ftype *td_thr_tlsbase_p; | |
d90e17a7 PA |
204 | }; |
205 | ||
206 | /* List of known processes using thread_db, and the required | |
207 | bookkeeping. */ | |
6bd434d6 | 208 | static thread_db_info *thread_db_list; |
d90e17a7 | 209 | |
00431a78 PA |
210 | static void thread_db_find_new_threads_1 (thread_info *stopped); |
211 | static void thread_db_find_new_threads_2 (thread_info *stopped, | |
212 | bool until_no_new); | |
d90e17a7 | 213 | |
2db9a427 PA |
214 | static void check_thread_signals (void); |
215 | ||
be550b6e DE |
216 | static struct thread_info *record_thread |
217 | (struct thread_db_info *info, struct thread_info *tp, | |
218 | ptid_t ptid, const td_thrhandle_t *th_p, const td_thrinfo_t *ti_p); | |
2db9a427 | 219 | |
d90e17a7 PA |
220 | /* Add the current inferior to the list of processes using libpthread. |
221 | Return a pointer to the newly allocated object that was added to | |
222 | THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing | |
223 | LIBTHREAD_DB_SO. */ | |
224 | ||
225 | static struct thread_db_info * | |
226 | add_thread_db_info (void *handle) | |
227 | { | |
8d749320 | 228 | struct thread_db_info *info = XCNEW (struct thread_db_info); |
d90e17a7 | 229 | |
5b6d1e4f | 230 | info->process_target = current_inferior ()->process_target (); |
e99b03dc | 231 | info->pid = inferior_ptid.pid (); |
d90e17a7 | 232 | info->handle = handle; |
856d6f99 PA |
233 | |
234 | /* The workaround works by reading from /proc/pid/status, so it is | |
235 | disabled for core files. */ | |
55f6301a | 236 | if (target_has_execution ()) |
856d6f99 | 237 | info->need_stale_parent_threads_check = 1; |
d90e17a7 PA |
238 | |
239 | info->next = thread_db_list; | |
240 | thread_db_list = info; | |
241 | ||
242 | return info; | |
243 | } | |
244 | ||
245 | /* Return the thread_db_info object representing the bookkeeping | |
246 | related to process PID, if any; NULL otherwise. */ | |
247 | ||
248 | static struct thread_db_info * | |
5b6d1e4f | 249 | get_thread_db_info (process_stratum_target *targ, int pid) |
d90e17a7 PA |
250 | { |
251 | struct thread_db_info *info; | |
252 | ||
253 | for (info = thread_db_list; info; info = info->next) | |
5b6d1e4f | 254 | if (targ == info->process_target && pid == info->pid) |
d90e17a7 PA |
255 | return info; |
256 | ||
257 | return NULL; | |
258 | } | |
259 | ||
a2419b98 PW |
260 | static const char *thread_db_err_str (td_err_e err); |
261 | ||
d90e17a7 PA |
262 | /* When PID has exited or has been detached, we no longer want to keep |
263 | track of it as using libpthread. Call this function to discard | |
264 | thread_db related info related to PID. Note that this closes | |
265 | LIBTHREAD_DB_SO's dlopen'ed handle. */ | |
266 | ||
267 | static void | |
5b6d1e4f | 268 | delete_thread_db_info (process_stratum_target *targ, int pid) |
d90e17a7 PA |
269 | { |
270 | struct thread_db_info *info, *info_prev; | |
271 | ||
272 | info_prev = NULL; | |
273 | ||
274 | for (info = thread_db_list; info; info_prev = info, info = info->next) | |
5b6d1e4f | 275 | if (targ == info->process_target && pid == info->pid) |
d90e17a7 PA |
276 | break; |
277 | ||
278 | if (info == NULL) | |
279 | return; | |
280 | ||
a2419b98 PW |
281 | if (info->thread_agent != NULL && info->td_ta_delete_p != NULL) |
282 | { | |
283 | td_err_e err = info->td_ta_delete_p (info->thread_agent); | |
284 | ||
285 | if (err != TD_OK) | |
286 | warning (_("Cannot deregister process %d from libthread_db: %s"), | |
287 | pid, thread_db_err_str (err)); | |
288 | info->thread_agent = NULL; | |
289 | } | |
290 | ||
d90e17a7 PA |
291 | if (info->handle != NULL) |
292 | dlclose (info->handle); | |
293 | ||
bf88dd68 JK |
294 | xfree (info->filename); |
295 | ||
d90e17a7 PA |
296 | if (info_prev) |
297 | info_prev->next = info->next; | |
298 | else | |
299 | thread_db_list = info->next; | |
300 | ||
301 | xfree (info); | |
302 | } | |
fb0e1ba7 | 303 | |
5365276c DJ |
304 | /* Use "struct private_thread_info" to cache thread state. This is |
305 | a substantial optimization. */ | |
306 | ||
7aabaf9d | 307 | struct thread_db_thread_info : public private_thread_info |
fb0e1ba7 | 308 | { |
a2f23071 | 309 | /* Flag set when we see a TD_DEATH event for this thread. */ |
7aabaf9d | 310 | bool dying = false; |
a2f23071 | 311 | |
5365276c | 312 | /* Cached thread state. */ |
7aabaf9d SM |
313 | td_thrhandle_t th {}; |
314 | thread_t tid {}; | |
6b09f134 | 315 | std::optional<gdb::byte_vector> thread_handle; |
fb0e1ba7 | 316 | }; |
7aabaf9d SM |
317 | |
318 | static thread_db_thread_info * | |
319 | get_thread_db_thread_info (thread_info *thread) | |
320 | { | |
98ed24fb | 321 | return gdb::checked_static_cast<thread_db_thread_info *> (thread->priv.get ()); |
7aabaf9d | 322 | } |
21bf60fe | 323 | |
a121b7c1 | 324 | static const char * |
fb0e1ba7 MK |
325 | thread_db_err_str (td_err_e err) |
326 | { | |
327 | static char buf[64]; | |
328 | ||
329 | switch (err) | |
330 | { | |
331 | case TD_OK: | |
332 | return "generic 'call succeeded'"; | |
333 | case TD_ERR: | |
334 | return "generic error"; | |
335 | case TD_NOTHR: | |
336 | return "no thread to satisfy query"; | |
337 | case TD_NOSV: | |
338 | return "no sync handle to satisfy query"; | |
339 | case TD_NOLWP: | |
340 | return "no LWP to satisfy query"; | |
341 | case TD_BADPH: | |
342 | return "invalid process handle"; | |
343 | case TD_BADTH: | |
344 | return "invalid thread handle"; | |
345 | case TD_BADSH: | |
346 | return "invalid synchronization handle"; | |
347 | case TD_BADTA: | |
348 | return "invalid thread agent"; | |
349 | case TD_BADKEY: | |
350 | return "invalid key"; | |
351 | case TD_NOMSG: | |
352 | return "no event message for getmsg"; | |
353 | case TD_NOFPREGS: | |
354 | return "FPU register set not available"; | |
355 | case TD_NOLIBTHREAD: | |
356 | return "application not linked with libthread"; | |
357 | case TD_NOEVENT: | |
358 | return "requested event is not supported"; | |
359 | case TD_NOCAPAB: | |
360 | return "capability not available"; | |
361 | case TD_DBERR: | |
362 | return "debugger service failed"; | |
363 | case TD_NOAPLIC: | |
364 | return "operation not applicable to"; | |
365 | case TD_NOTSD: | |
366 | return "no thread-specific data for this thread"; | |
367 | case TD_MALLOC: | |
368 | return "malloc failed"; | |
369 | case TD_PARTIALREG: | |
370 | return "only part of register set was written/read"; | |
371 | case TD_NOXREGS: | |
372 | return "X register set not available for this thread"; | |
59f80f10 DJ |
373 | #ifdef THREAD_DB_HAS_TD_NOTALLOC |
374 | case TD_NOTALLOC: | |
375 | return "thread has not yet allocated TLS for given module"; | |
376 | #endif | |
377 | #ifdef THREAD_DB_HAS_TD_VERSION | |
378 | case TD_VERSION: | |
379 | return "versions of libpthread and libthread_db do not match"; | |
380 | #endif | |
381 | #ifdef THREAD_DB_HAS_TD_NOTLS | |
382 | case TD_NOTLS: | |
383 | return "there is no TLS segment in the given module"; | |
384 | #endif | |
fb0e1ba7 MK |
385 | default: |
386 | snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err); | |
387 | return buf; | |
388 | } | |
389 | } | |
4105de34 | 390 | |
00431a78 PA |
391 | /* Fetch the user-level thread id of PTID. STOPPED is a stopped |
392 | thread that we can use to access memory. */ | |
fb0e1ba7 | 393 | |
be550b6e | 394 | static struct thread_info * |
00431a78 | 395 | thread_from_lwp (thread_info *stopped, ptid_t ptid) |
fb0e1ba7 | 396 | { |
fb0e1ba7 | 397 | td_thrhandle_t th; |
2db9a427 | 398 | td_thrinfo_t ti; |
fb0e1ba7 | 399 | td_err_e err; |
d90e17a7 | 400 | struct thread_db_info *info; |
2db9a427 | 401 | struct thread_info *tp; |
fb0e1ba7 | 402 | |
6cb9b55b PP |
403 | /* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */ |
404 | th.th_unique = 0; | |
405 | ||
17faa917 DJ |
406 | /* This ptid comes from linux-nat.c, which should always fill in the |
407 | LWP. */ | |
e38504b3 | 408 | gdb_assert (ptid.lwp () != 0); |
fb0e1ba7 | 409 | |
5b6d1e4f | 410 | info = get_thread_db_info (stopped->inf->process_target (), ptid.pid ()); |
d90e17a7 | 411 | |
4c28f408 | 412 | /* Access an lwp we know is stopped. */ |
00431a78 | 413 | info->proc_handle.thread = stopped; |
e38504b3 | 414 | err = info->td_ta_map_lwp2thr_p (info->thread_agent, ptid.lwp (), |
dfd4cc63 | 415 | &th); |
fb0e1ba7 | 416 | if (err != TD_OK) |
8a3fe4f8 | 417 | error (_("Cannot find user-level thread for LWP %ld: %s"), |
e38504b3 | 418 | ptid.lwp (), thread_db_err_str (err)); |
fb0e1ba7 | 419 | |
2db9a427 PA |
420 | err = info->td_thr_get_info_p (&th, &ti); |
421 | if (err != TD_OK) | |
422 | error (_("thread_get_info_callback: cannot get thread info: %s"), | |
423 | thread_db_err_str (err)); | |
424 | ||
425 | /* Fill the cache. */ | |
9213a6d7 | 426 | tp = stopped->inf->process_target ()->find_thread (ptid); |
be550b6e | 427 | return record_thread (info, tp, ptid, &th, &ti); |
fb0e1ba7 MK |
428 | } |
429 | \f | |
430 | ||
2db9a427 PA |
431 | /* See linux-nat.h. */ |
432 | ||
4c28f408 | 433 | int |
2db9a427 | 434 | thread_db_notice_clone (ptid_t parent, ptid_t child) |
4c28f408 | 435 | { |
d90e17a7 | 436 | struct thread_db_info *info; |
4c28f408 | 437 | |
5b6d1e4f | 438 | info = get_thread_db_info (linux_target, child.pid ()); |
d90e17a7 PA |
439 | |
440 | if (info == NULL) | |
4c28f408 PA |
441 | return 0; |
442 | ||
9213a6d7 | 443 | thread_info *stopped = linux_target->find_thread (parent); |
4c28f408 | 444 | |
00431a78 PA |
445 | thread_from_lwp (stopped, child); |
446 | ||
447 | /* If we do not know about the main thread's pthread info yet, this | |
448 | would be a good time to find it. */ | |
449 | thread_from_lwp (stopped, parent); | |
4c28f408 PA |
450 | return 1; |
451 | } | |
452 | ||
5220ea4c AC |
453 | static void * |
454 | verbose_dlsym (void *handle, const char *name) | |
455 | { | |
456 | void *sym = dlsym (handle, name); | |
457 | if (sym == NULL) | |
3e43a32a MS |
458 | warning (_("Symbol \"%s\" not found in libthread_db: %s"), |
459 | name, dlerror ()); | |
5220ea4c AC |
460 | return sym; |
461 | } | |
462 | ||
fcb44371 JK |
463 | /* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and |
464 | return 1 if this version is lower (and not equal) to | |
465 | VER_MAJOR_MIN.VER_MINOR_MIN. Return 0 in all other cases. */ | |
466 | ||
467 | static int | |
468 | inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min) | |
469 | { | |
fcb44371 | 470 | CORE_ADDR version_addr; |
66920317 | 471 | int got, retval = 0; |
fcb44371 | 472 | |
4144d36a SM |
473 | bound_minimal_symbol version_msym |
474 | = lookup_minimal_symbol (current_program_space, ver_symbol); | |
3b7344d5 | 475 | if (version_msym.minsym == NULL) |
fcb44371 JK |
476 | return 0; |
477 | ||
4aeddc50 | 478 | version_addr = version_msym.value_address (); |
66920317 TT |
479 | gdb::unique_xmalloc_ptr<char> version |
480 | = target_read_string (version_addr, 32, &got); | |
481 | if (version != nullptr | |
482 | && memchr (version.get (), 0, got) == version.get () + got - 1) | |
fcb44371 JK |
483 | { |
484 | int major, minor; | |
485 | ||
e83e4e24 | 486 | retval = (sscanf (version.get (), "%d.%d", &major, &minor) == 2 |
fcb44371 JK |
487 | && (major < ver_major_min |
488 | || (major == ver_major_min && minor < ver_minor_min))); | |
489 | } | |
fcb44371 JK |
490 | |
491 | return retval; | |
492 | } | |
493 | ||
fcb44371 JK |
494 | /* Similar as thread_db_find_new_threads_1, but try to silently ignore errors |
495 | if appropriate. | |
456b0e24 | 496 | |
fcb44371 JK |
497 | Return 1 if the caller should abort libthread_db initialization. Return 0 |
498 | otherwise. */ | |
499 | ||
500 | static int | |
00431a78 | 501 | thread_db_find_new_threads_silently (thread_info *stopped) |
456b0e24 | 502 | { |
456b0e24 | 503 | |
a70b8144 | 504 | try |
456b0e24 | 505 | { |
00431a78 | 506 | thread_db_find_new_threads_2 (stopped, true); |
456b0e24 PP |
507 | } |
508 | ||
230d2906 | 509 | catch (const gdb_exception_error &except) |
e0881a8e | 510 | { |
fcb44371 | 511 | if (libthread_db_debug) |
883ed13e | 512 | exception_fprintf (gdb_stdlog, except, |
fcb44371 JK |
513 | "Warning: thread_db_find_new_threads_silently: "); |
514 | ||
515 | /* There is a bug fixed between nptl 2.6.1 and 2.7 by | |
516 | commit 7d9d8bd18906fdd17364f372b160d7ab896ce909 | |
517 | where calls to td_thr_get_info fail with TD_ERR for statically linked | |
518 | executables if td_thr_get_info is called before glibc has initialized | |
519 | itself. | |
520 | ||
521 | If the nptl bug is NOT present in the inferior and still thread_db | |
522 | reports an error return 1. It means the inferior has corrupted thread | |
523 | list and GDB should fall back only to LWPs. | |
524 | ||
525 | If the nptl bug is present in the inferior return 0 to silently ignore | |
526 | such errors, and let gdb enumerate threads again later. In such case | |
527 | GDB cannot properly display LWPs if the inferior thread list is | |
889003ed JK |
528 | corrupted. For core files it does not apply, no 'later enumeration' |
529 | is possible. */ | |
fcb44371 | 530 | |
55f6301a | 531 | if (!target_has_execution () || !inferior_has_bug ("nptl_version", 2, 7)) |
fcb44371 JK |
532 | { |
533 | exception_fprintf (gdb_stderr, except, | |
534 | _("Warning: couldn't activate thread debugging " | |
535 | "using libthread_db: ")); | |
536 | return 1; | |
537 | } | |
e0881a8e | 538 | } |
492d29ea | 539 | |
fcb44371 | 540 | return 0; |
456b0e24 PP |
541 | } |
542 | ||
d90e17a7 PA |
543 | /* Lookup a library in which given symbol resides. |
544 | Note: this is looking in GDB process, not in the inferior. | |
545 | Returns library name, or NULL. */ | |
546 | ||
547 | static const char * | |
548 | dladdr_to_soname (const void *addr) | |
549 | { | |
550 | Dl_info info; | |
551 | ||
552 | if (dladdr (addr, &info) != 0) | |
553 | return info.dli_fname; | |
554 | return NULL; | |
555 | } | |
556 | ||
5045b3d7 GB |
557 | /* State for check_thread_db_callback. */ |
558 | ||
559 | struct check_thread_db_info | |
560 | { | |
561 | /* The libthread_db under test. */ | |
562 | struct thread_db_info *info; | |
563 | ||
564 | /* True if progress should be logged. */ | |
565 | bool log_progress; | |
566 | ||
567 | /* True if the callback was called. */ | |
568 | bool threads_seen; | |
569 | ||
570 | /* Name of last libthread_db function called. */ | |
571 | const char *last_call; | |
572 | ||
573 | /* Value returned by last libthread_db call. */ | |
574 | td_err_e last_result; | |
575 | }; | |
576 | ||
577 | static struct check_thread_db_info *tdb_testinfo; | |
578 | ||
579 | /* Callback for check_thread_db. */ | |
580 | ||
581 | static int | |
582 | check_thread_db_callback (const td_thrhandle_t *th, void *arg) | |
583 | { | |
584 | gdb_assert (tdb_testinfo != NULL); | |
585 | tdb_testinfo->threads_seen = true; | |
586 | ||
587 | #define LOG(fmt, args...) \ | |
588 | do \ | |
589 | { \ | |
590 | if (tdb_testinfo->log_progress) \ | |
591 | { \ | |
592 | debug_printf (fmt, ## args); \ | |
593 | gdb_flush (gdb_stdlog); \ | |
594 | } \ | |
595 | } \ | |
596 | while (0) | |
597 | ||
598 | #define CHECK_1(expr, args...) \ | |
599 | do \ | |
600 | { \ | |
601 | if (!(expr)) \ | |
602 | { \ | |
603 | LOG (" ... FAIL!\n"); \ | |
604 | error (args); \ | |
605 | } \ | |
606 | } \ | |
607 | while (0) | |
608 | ||
609 | #define CHECK(expr) \ | |
610 | CHECK_1 (expr, "(%s) == false", #expr) | |
611 | ||
612 | #define CALL_UNCHECKED(func, args...) \ | |
613 | do \ | |
614 | { \ | |
615 | tdb_testinfo->last_call = #func; \ | |
616 | tdb_testinfo->last_result \ | |
617 | = tdb_testinfo->info->func ## _p (args); \ | |
618 | } \ | |
619 | while (0) | |
620 | ||
621 | #define CHECK_CALL() \ | |
622 | CHECK_1 (tdb_testinfo->last_result == TD_OK, \ | |
623 | _("%s failed: %s"), \ | |
624 | tdb_testinfo->last_call, \ | |
625 | thread_db_err_str (tdb_testinfo->last_result)) \ | |
626 | ||
627 | #define CALL(func, args...) \ | |
628 | do \ | |
629 | { \ | |
630 | CALL_UNCHECKED (func, args); \ | |
631 | CHECK_CALL (); \ | |
632 | } \ | |
633 | while (0) | |
634 | ||
635 | LOG (" Got thread"); | |
636 | ||
637 | /* Check td_ta_thr_iter passed consistent arguments. */ | |
638 | CHECK (th != NULL); | |
639 | CHECK (arg == (void *) tdb_testinfo); | |
640 | CHECK (th->th_ta_p == tdb_testinfo->info->thread_agent); | |
641 | ||
642 | LOG (" %s", core_addr_to_string_nz ((CORE_ADDR) th->th_unique)); | |
643 | ||
644 | /* Check td_thr_get_info. */ | |
645 | td_thrinfo_t ti; | |
646 | CALL (td_thr_get_info, th, &ti); | |
647 | ||
648 | LOG (" => %d", ti.ti_lid); | |
649 | ||
650 | CHECK (ti.ti_ta_p == th->th_ta_p); | |
651 | CHECK (ti.ti_tid == (thread_t) th->th_unique); | |
652 | ||
653 | /* Check td_ta_map_lwp2thr. */ | |
654 | td_thrhandle_t th2; | |
655 | memset (&th2, 23, sizeof (td_thrhandle_t)); | |
656 | CALL_UNCHECKED (td_ta_map_lwp2thr, th->th_ta_p, ti.ti_lid, &th2); | |
657 | ||
55f6301a | 658 | if (tdb_testinfo->last_result == TD_ERR && !target_has_execution ()) |
5045b3d7 GB |
659 | { |
660 | /* Some platforms require execution for td_ta_map_lwp2thr. */ | |
661 | LOG (_("; can't map_lwp2thr")); | |
662 | } | |
663 | else | |
664 | { | |
665 | CHECK_CALL (); | |
666 | ||
667 | LOG (" => %s", core_addr_to_string_nz ((CORE_ADDR) th2.th_unique)); | |
668 | ||
669 | CHECK (memcmp (th, &th2, sizeof (td_thrhandle_t)) == 0); | |
670 | } | |
671 | ||
672 | /* Attempt TLS access. Assuming errno is TLS, this calls | |
673 | thread_db_get_thread_local_address, which in turn calls | |
674 | td_thr_tls_get_addr for live inferiors or td_thr_tlsbase | |
675 | for core files. This test is skipped if the thread has | |
676 | not been recorded; proceeding in that case would result | |
677 | in the test having the side-effect of noticing threads | |
678 | which seems wrong. | |
679 | ||
680 | Note that in glibc's libthread_db td_thr_tls_get_addr is | |
681 | a thin wrapper around td_thr_tlsbase; this check always | |
682 | hits the bulk of the code. | |
683 | ||
684 | Note also that we don't actually check any libthread_db | |
685 | calls are made, we just assume they were; future changes | |
686 | to how GDB accesses TLS could result in this passing | |
687 | without exercising the calls it's supposed to. */ | |
184ea2f7 | 688 | ptid_t ptid = ptid_t (tdb_testinfo->info->pid, ti.ti_lid); |
9213a6d7 | 689 | thread_info *thread_info = linux_target->find_thread (ptid); |
5045b3d7 GB |
690 | if (thread_info != NULL && thread_info->priv != NULL) |
691 | { | |
692 | LOG ("; errno"); | |
693 | ||
694 | scoped_restore_current_thread restore_current_thread; | |
5b6d1e4f | 695 | switch_to_thread (thread_info); |
5045b3d7 GB |
696 | |
697 | expression_up expr = parse_expression ("(int) errno"); | |
43048e46 | 698 | struct value *val = expr->evaluate (); |
5045b3d7 GB |
699 | |
700 | if (tdb_testinfo->log_progress) | |
701 | { | |
702 | struct value_print_options opts; | |
703 | ||
704 | get_user_print_options (&opts); | |
705 | LOG (" = "); | |
706 | value_print (val, gdb_stdlog, &opts); | |
707 | } | |
708 | } | |
709 | ||
710 | LOG (" ... OK\n"); | |
711 | ||
712 | #undef LOG | |
713 | #undef CHECK_1 | |
714 | #undef CHECK | |
715 | #undef CALL_UNCHECKED | |
716 | #undef CHECK_CALL | |
717 | #undef CALL | |
718 | ||
719 | return 0; | |
720 | } | |
721 | ||
722 | /* Run integrity checks on the dlopen()ed libthread_db described by | |
723 | INFO. Returns true on success, displays a warning and returns | |
724 | false on failure. Logs progress messages to gdb_stdlog during | |
725 | the test if LOG_PROGRESS is true. */ | |
726 | ||
727 | static bool | |
728 | check_thread_db (struct thread_db_info *info, bool log_progress) | |
729 | { | |
730 | bool test_passed = true; | |
731 | ||
732 | if (log_progress) | |
733 | debug_printf (_("Running libthread_db integrity checks:\n")); | |
734 | ||
735 | /* GDB avoids using td_ta_thr_iter wherever possible (see comment | |
736 | in try_thread_db_load_1 below) so in order to test it we may | |
737 | have to locate it ourselves. */ | |
738 | td_ta_thr_iter_ftype *td_ta_thr_iter_p = info->td_ta_thr_iter_p; | |
739 | if (td_ta_thr_iter_p == NULL) | |
740 | { | |
741 | void *thr_iter = verbose_dlsym (info->handle, "td_ta_thr_iter"); | |
742 | if (thr_iter == NULL) | |
743 | return 0; | |
744 | ||
745 | td_ta_thr_iter_p = (td_ta_thr_iter_ftype *) thr_iter; | |
746 | } | |
747 | ||
748 | /* Set up the test state we share with the callback. */ | |
749 | gdb_assert (tdb_testinfo == NULL); | |
750 | struct check_thread_db_info tdb_testinfo_buf; | |
751 | tdb_testinfo = &tdb_testinfo_buf; | |
752 | ||
753 | memset (tdb_testinfo, 0, sizeof (struct check_thread_db_info)); | |
754 | tdb_testinfo->info = info; | |
755 | tdb_testinfo->log_progress = log_progress; | |
756 | ||
757 | /* td_ta_thr_iter shouldn't be used on running processes. Note that | |
758 | it's possible the inferior will stop midway through modifying one | |
759 | of its thread lists, in which case the check will spuriously | |
760 | fail. */ | |
761 | linux_stop_and_wait_all_lwps (); | |
762 | ||
a70b8144 | 763 | try |
5045b3d7 GB |
764 | { |
765 | td_err_e err = td_ta_thr_iter_p (info->thread_agent, | |
766 | check_thread_db_callback, | |
767 | tdb_testinfo, | |
768 | TD_THR_ANY_STATE, | |
769 | TD_THR_LOWEST_PRIORITY, | |
770 | TD_SIGNO_MASK, | |
771 | TD_THR_ANY_USER_FLAGS); | |
772 | ||
773 | if (err != TD_OK) | |
774 | error (_("td_ta_thr_iter failed: %s"), thread_db_err_str (err)); | |
775 | ||
776 | if (!tdb_testinfo->threads_seen) | |
777 | error (_("no threads seen")); | |
778 | } | |
230d2906 | 779 | catch (const gdb_exception_error &except) |
5045b3d7 | 780 | { |
5045b3d7 GB |
781 | exception_fprintf (gdb_stderr, except, |
782 | _("libthread_db integrity checks failed: ")); | |
783 | ||
784 | test_passed = false; | |
785 | } | |
5045b3d7 GB |
786 | |
787 | if (test_passed && log_progress) | |
788 | debug_printf (_("libthread_db integrity checks passed.\n")); | |
789 | ||
790 | tdb_testinfo = NULL; | |
791 | ||
792 | linux_unstop_all_lwps (); | |
793 | ||
794 | return test_passed; | |
795 | } | |
796 | ||
e2b9ea4b KB |
797 | /* Predicate which tests whether objfile OBJ refers to the library |
798 | containing pthread related symbols. Historically, this library has | |
799 | been named in such a way that looking for "libpthread" in the name | |
800 | was sufficient to identify it. As of glibc-2.34, the C library | |
801 | (libc) contains the thread library symbols. Therefore we check | |
802 | that the name matches a possible thread library, but we also check | |
803 | that it contains at least one of the symbols (pthread_create) that | |
804 | we'd expect to find in the thread library. */ | |
805 | ||
806 | static bool | |
807 | libpthread_objfile_p (objfile *obj) | |
808 | { | |
809 | return (libpthread_name_p (objfile_name (obj)) | |
4144d36a SM |
810 | && lookup_minimal_symbol (current_program_space, |
811 | "pthread_create", obj).minsym != nullptr); | |
e2b9ea4b KB |
812 | } |
813 | ||
2471d008 | 814 | /* Attempt to initialize dlopen()ed libthread_db, described by INFO. |
9ddc1af1 | 815 | Return true on success. |
17a37d48 PP |
816 | Failure could happen if libthread_db does not have symbols we expect, |
817 | or when it refuses to work with the current inferior (e.g. due to | |
818 | version mismatch between libthread_db and libpthread). */ | |
819 | ||
9ddc1af1 | 820 | static bool |
d90e17a7 | 821 | try_thread_db_load_1 (struct thread_db_info *info) |
17a37d48 PP |
822 | { |
823 | td_err_e err; | |
824 | ||
825 | /* Initialize pointers to the dynamic library functions we will use. | |
826 | Essential functions first. */ | |
827 | ||
96e9210f PA |
828 | #define TDB_VERBOSE_DLSYM(info, func) \ |
829 | info->func ## _p = (func ## _ftype *) verbose_dlsym (info->handle, #func) | |
830 | ||
831 | #define TDB_DLSYM(info, func) \ | |
832 | info->func ## _p = (func ## _ftype *) dlsym (info->handle, #func) | |
833 | ||
834 | #define CHK(a) \ | |
835 | do \ | |
836 | { \ | |
837 | if ((a) == NULL) \ | |
9ddc1af1 | 838 | return false; \ |
96e9210f PA |
839 | } while (0) |
840 | ||
841 | CHK (TDB_VERBOSE_DLSYM (info, td_init)); | |
17a37d48 | 842 | |
d90e17a7 | 843 | err = info->td_init_p (); |
17a37d48 PP |
844 | if (err != TD_OK) |
845 | { | |
3e43a32a MS |
846 | warning (_("Cannot initialize libthread_db: %s"), |
847 | thread_db_err_str (err)); | |
9ddc1af1 | 848 | return false; |
17a37d48 PP |
849 | } |
850 | ||
96e9210f | 851 | CHK (TDB_VERBOSE_DLSYM (info, td_ta_new)); |
17a37d48 PP |
852 | |
853 | /* Initialize the structure that identifies the child process. */ | |
00431a78 | 854 | info->proc_handle.thread = inferior_thread (); |
17a37d48 PP |
855 | |
856 | /* Now attempt to open a connection to the thread library. */ | |
d90e17a7 | 857 | err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent); |
17a37d48 PP |
858 | if (err != TD_OK) |
859 | { | |
02d868e8 | 860 | if (libthread_db_debug) |
6cb06a8c TT |
861 | gdb_printf (gdb_stdlog, _("td_ta_new failed: %s\n"), |
862 | thread_db_err_str (err)); | |
17a37d48 | 863 | else |
dda83cd7 SM |
864 | switch (err) |
865 | { | |
866 | case TD_NOLIBTHREAD: | |
17a37d48 | 867 | #ifdef THREAD_DB_HAS_TD_VERSION |
dda83cd7 | 868 | case TD_VERSION: |
17a37d48 | 869 | #endif |
dda83cd7 SM |
870 | /* The errors above are not unexpected and silently ignored: |
871 | they just mean we haven't found correct version of | |
872 | libthread_db yet. */ | |
873 | break; | |
874 | default: | |
875 | warning (_("td_ta_new failed: %s"), thread_db_err_str (err)); | |
876 | } | |
9ddc1af1 | 877 | return false; |
17a37d48 PP |
878 | } |
879 | ||
96e9210f PA |
880 | /* These are essential. */ |
881 | CHK (TDB_VERBOSE_DLSYM (info, td_ta_map_lwp2thr)); | |
96e9210f | 882 | CHK (TDB_VERBOSE_DLSYM (info, td_thr_get_info)); |
17a37d48 PP |
883 | |
884 | /* These are not essential. */ | |
96e9210f PA |
885 | TDB_DLSYM (info, td_thr_tls_get_addr); |
886 | TDB_DLSYM (info, td_thr_tlsbase); | |
a2419b98 | 887 | TDB_DLSYM (info, td_ta_delete); |
96e9210f | 888 | |
2db9a427 PA |
889 | /* It's best to avoid td_ta_thr_iter if possible. That walks data |
890 | structures in the inferior's address space that may be corrupted, | |
891 | or, if the target is running, may change while we walk them. If | |
892 | there's execution (and /proc is mounted), then we're already | |
893 | attached to all LWPs. Use thread_from_lwp, which uses | |
894 | td_ta_map_lwp2thr instead, which does not walk the thread list. | |
895 | ||
896 | td_ta_map_lwp2thr uses ps_get_thread_area, but we can't use that | |
897 | currently on core targets, as it uses ptrace directly. */ | |
55f6301a | 898 | if (target_has_execution () |
e99b03dc | 899 | && linux_proc_task_list_dir_exists (inferior_ptid.pid ())) |
1eb2dbb8 PA |
900 | info->td_ta_thr_iter_p = NULL; |
901 | else | |
902 | CHK (TDB_VERBOSE_DLSYM (info, td_ta_thr_iter)); | |
903 | ||
904 | #undef TDB_VERBOSE_DLSYM | |
905 | #undef TDB_DLSYM | |
906 | #undef CHK | |
907 | ||
5045b3d7 GB |
908 | /* Run integrity checks if requested. */ |
909 | if (check_thread_db_on_load) | |
910 | { | |
911 | if (!check_thread_db (info, libthread_db_debug)) | |
9ddc1af1 | 912 | return false; |
5045b3d7 GB |
913 | } |
914 | ||
1eb2dbb8 | 915 | if (info->td_ta_thr_iter_p == NULL) |
2db9a427 | 916 | { |
e99b03dc | 917 | int pid = inferior_ptid.pid (); |
00431a78 | 918 | thread_info *curr_thread = inferior_thread (); |
2db9a427 PA |
919 | |
920 | linux_stop_and_wait_all_lwps (); | |
921 | ||
901b9821 | 922 | for (const lwp_info *lp : all_lwps ()) |
e99b03dc | 923 | if (lp->ptid.pid () == pid) |
00431a78 | 924 | thread_from_lwp (curr_thread, lp->ptid); |
2db9a427 PA |
925 | |
926 | linux_unstop_all_lwps (); | |
927 | } | |
00431a78 | 928 | else if (thread_db_find_new_threads_silently (inferior_thread ()) != 0) |
fcb44371 JK |
929 | { |
930 | /* Even if libthread_db initializes, if the thread list is | |
dda83cd7 SM |
931 | corrupted, we'd not manage to list any threads. Better reject this |
932 | thread_db, and fall back to at least listing LWPs. */ | |
9ddc1af1 | 933 | return false; |
fcb44371 JK |
934 | } |
935 | ||
6cb06a8c | 936 | gdb_printf (_("[Thread debugging using libthread_db enabled]\n")); |
17a37d48 | 937 | |
e0700ba4 | 938 | if (!libthread_db_search_path.empty () || libthread_db_debug) |
d90e17a7 PA |
939 | { |
940 | const char *library; | |
17a37d48 | 941 | |
f8708a14 | 942 | library = dladdr_to_soname ((const void *) *info->td_ta_new_p); |
d90e17a7 PA |
943 | if (library == NULL) |
944 | library = LIBTHREAD_DB_SO; | |
17a37d48 | 945 | |
6cb06a8c TT |
946 | gdb_printf (_("Using host libthread_db library \"%ps\".\n"), |
947 | styled_string (file_name_style.style (), library)); | |
d90e17a7 | 948 | } |
17a37d48 | 949 | |
d90e17a7 | 950 | /* The thread library was detected. Activate the thread_db target |
5b6d1e4f | 951 | for this process. */ |
02980c56 | 952 | current_inferior ()->push_target (&the_thread_db_target); |
9ddc1af1 | 953 | return true; |
17a37d48 PP |
954 | } |
955 | ||
956 | /* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute, | |
957 | relative, or just LIBTHREAD_DB. */ | |
958 | ||
9ddc1af1 SM |
959 | static bool |
960 | try_thread_db_load (const char *library, bool check_auto_load_safe) | |
17a37d48 PP |
961 | { |
962 | void *handle; | |
d90e17a7 | 963 | struct thread_db_info *info; |
17a37d48 | 964 | |
02d868e8 | 965 | if (libthread_db_debug) |
6cb06a8c TT |
966 | gdb_printf (gdb_stdlog, |
967 | _("Trying host libthread_db library: %s.\n"), | |
968 | library); | |
fde4f8ed JK |
969 | |
970 | if (check_auto_load_safe) | |
971 | { | |
972 | if (access (library, R_OK) != 0) | |
973 | { | |
974 | /* Do not print warnings by file_is_auto_load_safe if the library does | |
975 | not exist at this place. */ | |
976 | if (libthread_db_debug) | |
6cb06a8c TT |
977 | gdb_printf (gdb_stdlog, _("open failed: %s.\n"), |
978 | safe_strerror (errno)); | |
9ddc1af1 | 979 | return false; |
fde4f8ed JK |
980 | } |
981 | ||
a59902a7 SM |
982 | auto_load_debug_printf |
983 | ("Loading libthread-db library \"%s\" from explicit directory.", | |
984 | library); | |
985 | ||
986 | if (!file_is_auto_load_safe (library)) | |
9ddc1af1 | 987 | return false; |
fde4f8ed JK |
988 | } |
989 | ||
17a37d48 PP |
990 | handle = dlopen (library, RTLD_NOW); |
991 | if (handle == NULL) | |
992 | { | |
02d868e8 | 993 | if (libthread_db_debug) |
6cb06a8c | 994 | gdb_printf (gdb_stdlog, _("dlopen failed: %s.\n"), dlerror ()); |
9ddc1af1 | 995 | return false; |
17a37d48 PP |
996 | } |
997 | ||
02d868e8 | 998 | if (libthread_db_debug && strchr (library, '/') == NULL) |
17a37d48 PP |
999 | { |
1000 | void *td_init; | |
1001 | ||
1002 | td_init = dlsym (handle, "td_init"); | |
1003 | if (td_init != NULL) | |
dda83cd7 SM |
1004 | { |
1005 | const char *const libpath = dladdr_to_soname (td_init); | |
17a37d48 | 1006 | |
dda83cd7 | 1007 | if (libpath != NULL) |
6cb06a8c TT |
1008 | gdb_printf (gdb_stdlog, _("Host %s resolved to: %s.\n"), |
1009 | library, libpath); | |
dda83cd7 | 1010 | } |
17a37d48 PP |
1011 | } |
1012 | ||
d90e17a7 PA |
1013 | info = add_thread_db_info (handle); |
1014 | ||
bf88dd68 JK |
1015 | /* Do not save system library name, that one is always trusted. */ |
1016 | if (strchr (library, '/') != NULL) | |
14278e1f | 1017 | info->filename = gdb_realpath (library).release (); |
bf88dd68 | 1018 | |
122373f7 SM |
1019 | try |
1020 | { | |
1021 | if (try_thread_db_load_1 (info)) | |
1022 | return true; | |
1023 | } | |
1024 | catch (const gdb_exception_error &except) | |
1025 | { | |
1026 | if (libthread_db_debug) | |
1027 | exception_fprintf (gdb_stdlog, except, | |
1028 | "Warning: While trying to load libthread_db: "); | |
1029 | } | |
17a37d48 PP |
1030 | |
1031 | /* This library "refused" to work on current inferior. */ | |
5b6d1e4f PA |
1032 | delete_thread_db_info (current_inferior ()->process_target (), |
1033 | inferior_ptid.pid ()); | |
9ddc1af1 | 1034 | return false; |
17a37d48 PP |
1035 | } |
1036 | ||
290351b8 | 1037 | /* Subroutine of try_thread_db_load_from_pdir to simplify it. |
e6712ff1 DE |
1038 | Try loading libthread_db in directory(OBJ)/SUBDIR. |
1039 | SUBDIR may be NULL. It may also be something like "../lib64". | |
290351b8 DE |
1040 | The result is true for success. */ |
1041 | ||
9ddc1af1 | 1042 | static bool |
e6712ff1 | 1043 | try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir) |
290351b8 | 1044 | { |
4262abfb | 1045 | const char *obj_name = objfile_name (obj); |
290351b8 | 1046 | |
4262abfb | 1047 | if (obj_name[0] != '/') |
290351b8 DE |
1048 | { |
1049 | warning (_("Expected absolute pathname for libpthread in the" | |
9d636d67 TT |
1050 | " inferior, but got %ps."), |
1051 | styled_string (file_name_style.style (), obj_name)); | |
9ddc1af1 | 1052 | return false; |
290351b8 | 1053 | } |
05386e9e | 1054 | |
9b292f68 TT |
1055 | std::string path = obj_name; |
1056 | size_t cp = path.rfind ('/'); | |
05386e9e | 1057 | /* This should at minimum hit the first character. */ |
9b292f68 TT |
1058 | gdb_assert (cp != std::string::npos); |
1059 | path.resize (cp + 1); | |
e6712ff1 | 1060 | if (subdir != NULL) |
9b292f68 TT |
1061 | path = path + subdir + "/"; |
1062 | path += LIBTHREAD_DB_SO; | |
bccbefd2 | 1063 | |
9ddc1af1 | 1064 | return try_thread_db_load (path.c_str (), true); |
290351b8 DE |
1065 | } |
1066 | ||
98a5dd13 | 1067 | /* Handle $pdir in libthread-db-search-path. |
e6712ff1 DE |
1068 | Look for libthread_db in directory(libpthread)/SUBDIR. |
1069 | SUBDIR may be NULL. It may also be something like "../lib64". | |
98a5dd13 DE |
1070 | The result is true for success. */ |
1071 | ||
9ddc1af1 | 1072 | static bool |
e6712ff1 | 1073 | try_thread_db_load_from_pdir (const char *subdir) |
98a5dd13 | 1074 | { |
bf88dd68 | 1075 | if (!auto_load_thread_db) |
9ddc1af1 | 1076 | return false; |
bf88dd68 | 1077 | |
2030c079 | 1078 | for (objfile *obj : current_program_space->objfiles ()) |
e2b9ea4b | 1079 | if (libpthread_objfile_p (obj)) |
98a5dd13 | 1080 | { |
e6712ff1 | 1081 | if (try_thread_db_load_from_pdir_1 (obj, subdir)) |
9ddc1af1 | 1082 | return true; |
290351b8 DE |
1083 | |
1084 | /* We may have found the separate-debug-info version of | |
1085 | libpthread, and it may live in a directory without a matching | |
1086 | libthread_db. */ | |
1087 | if (obj->separate_debug_objfile_backlink != NULL) | |
e6712ff1 DE |
1088 | return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink, |
1089 | subdir); | |
290351b8 | 1090 | |
9ddc1af1 | 1091 | return false; |
98a5dd13 DE |
1092 | } |
1093 | ||
9ddc1af1 | 1094 | return false; |
98a5dd13 DE |
1095 | } |
1096 | ||
1097 | /* Handle $sdir in libthread-db-search-path. | |
1098 | Look for libthread_db in the system dirs, or wherever a plain | |
1099 | dlopen(file_without_path) will look. | |
1100 | The result is true for success. */ | |
1101 | ||
9ddc1af1 | 1102 | static bool |
98a5dd13 DE |
1103 | try_thread_db_load_from_sdir (void) |
1104 | { | |
9ddc1af1 | 1105 | return try_thread_db_load (LIBTHREAD_DB_SO, false); |
98a5dd13 DE |
1106 | } |
1107 | ||
1108 | /* Try to load libthread_db from directory DIR of length DIR_LEN. | |
1109 | The result is true for success. */ | |
1110 | ||
9ddc1af1 | 1111 | static bool |
98a5dd13 DE |
1112 | try_thread_db_load_from_dir (const char *dir, size_t dir_len) |
1113 | { | |
bf88dd68 | 1114 | if (!auto_load_thread_db) |
9ddc1af1 | 1115 | return false; |
bf88dd68 | 1116 | |
9b292f68 | 1117 | std::string path = std::string (dir, dir_len) + "/" + LIBTHREAD_DB_SO; |
bccbefd2 | 1118 | |
9ddc1af1 | 1119 | return try_thread_db_load (path.c_str (), true); |
98a5dd13 DE |
1120 | } |
1121 | ||
17a37d48 | 1122 | /* Search libthread_db_search_path for libthread_db which "agrees" |
98a5dd13 DE |
1123 | to work on current inferior. |
1124 | The result is true for success. */ | |
17a37d48 | 1125 | |
9ddc1af1 | 1126 | static bool |
17a37d48 PP |
1127 | thread_db_load_search (void) |
1128 | { | |
9ddc1af1 | 1129 | bool rc = false; |
17a37d48 | 1130 | |
e80aaf61 | 1131 | std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec |
e0700ba4 | 1132 | = dirnames_to_char_ptr_vec (libthread_db_search_path.c_str ()); |
e6712ff1 | 1133 | |
e80aaf61 | 1134 | for (const gdb::unique_xmalloc_ptr<char> &this_dir_up : dir_vec) |
17a37d48 | 1135 | { |
e80aaf61 | 1136 | const char *this_dir = this_dir_up.get (); |
e6712ff1 | 1137 | const int pdir_len = sizeof ("$pdir") - 1; |
98a5dd13 | 1138 | size_t this_dir_len; |
e0881a8e | 1139 | |
e6712ff1 | 1140 | this_dir_len = strlen (this_dir); |
17a37d48 | 1141 | |
e6712ff1 DE |
1142 | if (strncmp (this_dir, "$pdir", pdir_len) == 0 |
1143 | && (this_dir[pdir_len] == '\0' | |
1144 | || this_dir[pdir_len] == '/')) | |
98a5dd13 | 1145 | { |
9b292f68 | 1146 | const char *subdir = NULL; |
e6712ff1 | 1147 | |
9b292f68 | 1148 | std::string subdir_holder; |
e6712ff1 | 1149 | if (this_dir[pdir_len] == '/') |
98a5dd13 | 1150 | { |
9b292f68 TT |
1151 | subdir_holder = std::string (this_dir + pdir_len + 1); |
1152 | subdir = subdir_holder.c_str (); | |
98a5dd13 | 1153 | } |
e6712ff1 | 1154 | rc = try_thread_db_load_from_pdir (subdir); |
e6712ff1 DE |
1155 | if (rc) |
1156 | break; | |
17a37d48 | 1157 | } |
e6712ff1 | 1158 | else if (strcmp (this_dir, "$sdir") == 0) |
98a5dd13 DE |
1159 | { |
1160 | if (try_thread_db_load_from_sdir ()) | |
1161 | { | |
1162 | rc = 1; | |
1163 | break; | |
1164 | } | |
1165 | } | |
1166 | else | |
17a37d48 | 1167 | { |
98a5dd13 DE |
1168 | if (try_thread_db_load_from_dir (this_dir, this_dir_len)) |
1169 | { | |
1170 | rc = 1; | |
1171 | break; | |
1172 | } | |
17a37d48 PP |
1173 | } |
1174 | } | |
98a5dd13 DE |
1175 | |
1176 | if (libthread_db_debug) | |
6cb06a8c TT |
1177 | gdb_printf (gdb_stdlog, |
1178 | _("thread_db_load_search returning %d\n"), rc); | |
17a37d48 PP |
1179 | return rc; |
1180 | } | |
1181 | ||
9ddc1af1 | 1182 | /* Return true if the inferior has a libpthread. */ |
98a5dd13 | 1183 | |
9ddc1af1 | 1184 | static bool |
98a5dd13 DE |
1185 | has_libpthread (void) |
1186 | { | |
2030c079 | 1187 | for (objfile *obj : current_program_space->objfiles ()) |
e2b9ea4b | 1188 | if (libpthread_objfile_p (obj)) |
9ddc1af1 | 1189 | return true; |
98a5dd13 | 1190 | |
9ddc1af1 | 1191 | return false; |
98a5dd13 DE |
1192 | } |
1193 | ||
17a37d48 | 1194 | /* Attempt to load and initialize libthread_db. |
1777feb0 | 1195 | Return 1 on success. */ |
17a37d48 | 1196 | |
9ddc1af1 | 1197 | static bool |
17a37d48 PP |
1198 | thread_db_load (void) |
1199 | { | |
122373f7 SM |
1200 | inferior *inf = current_inferior (); |
1201 | ||
1202 | /* When attaching / handling fork child, don't try loading libthread_db | |
1203 | until we know about all shared libraries. */ | |
1204 | if (inf->in_initial_library_scan) | |
1205 | return false; | |
17a37d48 | 1206 | |
122373f7 SM |
1207 | thread_db_info *info = get_thread_db_info (inf->process_target (), |
1208 | inferior_ptid.pid ()); | |
d90e17a7 PA |
1209 | |
1210 | if (info != NULL) | |
9ddc1af1 | 1211 | return true; |
17a37d48 | 1212 | |
856d6f99 PA |
1213 | /* Don't attempt to use thread_db on executables not running |
1214 | yet. */ | |
9dccd06e | 1215 | if (!target_has_registers ()) |
9ddc1af1 | 1216 | return false; |
17a37d48 PP |
1217 | |
1218 | /* Don't attempt to use thread_db for remote targets. */ | |
6fdf95ae | 1219 | if (!(target_can_run () || current_program_space->core_bfd () != nullptr)) |
9ddc1af1 | 1220 | return false; |
17a37d48 PP |
1221 | |
1222 | if (thread_db_load_search ()) | |
9ddc1af1 | 1223 | return true; |
17a37d48 | 1224 | |
98a5dd13 DE |
1225 | /* We couldn't find a libthread_db. |
1226 | If the inferior has a libpthread warn the user. */ | |
1227 | if (has_libpthread ()) | |
1228 | { | |
1229 | warning (_("Unable to find libthread_db matching inferior's thread" | |
1230 | " library, thread debugging will not be available.")); | |
9ddc1af1 | 1231 | return false; |
17a37d48 | 1232 | } |
98a5dd13 | 1233 | |
17a37d48 PP |
1234 | /* Either this executable isn't using libpthread at all, or it is |
1235 | statically linked. Since we can't easily distinguish these two cases, | |
1236 | no warning is issued. */ | |
9ddc1af1 | 1237 | return false; |
17a37d48 PP |
1238 | } |
1239 | ||
fb0e1ba7 MK |
1240 | static void |
1241 | check_thread_signals (void) | |
1242 | { | |
21bf60fe | 1243 | if (!thread_signals) |
fb0e1ba7 | 1244 | { |
fb0e1ba7 MK |
1245 | int i; |
1246 | ||
089436f7 | 1247 | for (i = 0; i < lin_thread_get_thread_signal_num (); i++) |
fb0e1ba7 | 1248 | { |
089436f7 TV |
1249 | int sig = lin_thread_get_thread_signal (i); |
1250 | signal_stop_update (gdb_signal_from_host (sig), 0); | |
1251 | signal_print_update (gdb_signal_from_host (sig), 0); | |
1252 | thread_signals = 1; | |
fb0e1ba7 MK |
1253 | } |
1254 | } | |
fb0e1ba7 MK |
1255 | } |
1256 | ||
0ec9a092 DJ |
1257 | /* Check whether thread_db is usable. This function is called when |
1258 | an inferior is created (or otherwise acquired, e.g. attached to) | |
1259 | and when new shared libraries are loaded into a running process. */ | |
1260 | ||
ff770835 | 1261 | static void |
0ec9a092 | 1262 | check_for_thread_db (void) |
fb0e1ba7 | 1263 | { |
b5057acd | 1264 | /* Do nothing if we couldn't load libthread_db.so.1. */ |
17a37d48 | 1265 | if (!thread_db_load ()) |
b5057acd | 1266 | return; |
0ec9a092 DJ |
1267 | } |
1268 | ||
0838fb57 DE |
1269 | /* This function is called via the new_objfile observer. */ |
1270 | ||
0ec9a092 DJ |
1271 | static void |
1272 | thread_db_new_objfile (struct objfile *objfile) | |
1273 | { | |
d90e17a7 PA |
1274 | /* This observer must always be called with inferior_ptid set |
1275 | correctly. */ | |
1276 | ||
74daa597 | 1277 | if (/* libpthread with separate debug info has its debug info file already |
7d0e21ad | 1278 | loaded (and notified without successful thread_db initialization) |
76727919 | 1279 | the time gdb::observers::new_objfile.notify is called for the library itself. |
fcb44371 JK |
1280 | Static executables have their separate debug info loaded already |
1281 | before the inferior has started. */ | |
74daa597 | 1282 | objfile->separate_debug_objfile_backlink == NULL |
0838fb57 DE |
1283 | /* Only check for thread_db if we loaded libpthread, |
1284 | or if this is the main symbol file. | |
1285 | We need to check OBJF_MAINLINE to handle the case of debugging | |
1286 | a statically linked executable AND the symbol file is specified AFTER | |
1287 | the exec file is loaded (e.g., gdb -c core ; file foo). | |
1288 | For dynamically linked executables, libpthread can be near the end | |
1289 | of the list of shared libraries to load, and in an app of several | |
1290 | thousand shared libraries, this can otherwise be painful. */ | |
1291 | && ((objfile->flags & OBJF_MAINLINE) != 0 | |
e2b9ea4b | 1292 | || libpthread_objfile_p (objfile))) |
0ec9a092 | 1293 | check_for_thread_db (); |
fb0e1ba7 MK |
1294 | } |
1295 | ||
015de688 | 1296 | static void |
3f66685e | 1297 | check_pid_namespace_match (inferior *inf) |
015de688 DC |
1298 | { |
1299 | /* Check is only relevant for local targets targets. */ | |
f6ac5f3d | 1300 | if (target_can_run ()) |
015de688 DC |
1301 | { |
1302 | /* If the child is in a different PID namespace, its idea of its | |
1303 | PID will differ from our idea of its PID. When we scan the | |
1304 | child's thread list, we'll mistakenly think it has no threads | |
1305 | since the thread PID fields won't match the PID we give to | |
1306 | libthread_db. */ | |
3f66685e | 1307 | if (!linux_ns_same (inf->pid, LINUX_NS_PID)) |
015de688 DC |
1308 | { |
1309 | warning (_ ("Target and debugger are in different PID " | |
1310 | "namespaces; thread lists and other data are " | |
708bf0a1 JK |
1311 | "likely unreliable. " |
1312 | "Connect to gdbserver inside the container.")); | |
015de688 | 1313 | } |
015de688 DC |
1314 | } |
1315 | } | |
1316 | ||
0838fb57 DE |
1317 | /* This function is called via the inferior_created observer. |
1318 | This handles the case of debugging statically linked executables. */ | |
1319 | ||
1320 | static void | |
a0ff652f | 1321 | thread_db_inferior_created (inferior *inf) |
0838fb57 | 1322 | { |
3f66685e | 1323 | check_pid_namespace_match (inf); |
0838fb57 DE |
1324 | check_for_thread_db (); |
1325 | } | |
1326 | ||
c1a747c1 PA |
1327 | /* Update the thread's state (what's displayed in "info threads"), |
1328 | from libthread_db thread state information. */ | |
1329 | ||
1330 | static void | |
7aabaf9d | 1331 | update_thread_state (thread_db_thread_info *priv, |
c1a747c1 PA |
1332 | const td_thrinfo_t *ti_p) |
1333 | { | |
fe978cb0 PA |
1334 | priv->dying = (ti_p->ti_state == TD_THR_UNKNOWN |
1335 | || ti_p->ti_state == TD_THR_ZOMBIE); | |
c1a747c1 PA |
1336 | } |
1337 | ||
2db9a427 | 1338 | /* Record a new thread in GDB's thread list. Creates the thread's |
be550b6e DE |
1339 | private info. If TP is NULL or TP is marked as having exited, |
1340 | creates a new thread. Otherwise, uses TP. */ | |
2db9a427 | 1341 | |
be550b6e | 1342 | static struct thread_info * |
2db9a427 PA |
1343 | record_thread (struct thread_db_info *info, |
1344 | struct thread_info *tp, | |
1345 | ptid_t ptid, const td_thrhandle_t *th_p, | |
1346 | const td_thrinfo_t *ti_p) | |
1347 | { | |
2db9a427 PA |
1348 | /* A thread ID of zero may mean the thread library has not |
1349 | initialized yet. Leave private == NULL until the thread library | |
1350 | has initialized. */ | |
1351 | if (ti_p->ti_tid == 0) | |
be550b6e | 1352 | return tp; |
2db9a427 | 1353 | |
17faa917 | 1354 | /* Construct the thread's private data. */ |
7aabaf9d | 1355 | thread_db_thread_info *priv = new thread_db_thread_info; |
17faa917 | 1356 | |
fe978cb0 PA |
1357 | priv->th = *th_p; |
1358 | priv->tid = ti_p->ti_tid; | |
1359 | update_thread_state (priv, ti_p); | |
17faa917 | 1360 | |
4eec2deb PA |
1361 | /* Add the thread to GDB's thread list. If we already know about a |
1362 | thread with this PTID, but it's marked exited, then the kernel | |
1363 | reused the tid of an old thread. */ | |
1364 | if (tp == NULL || tp->state == THREAD_EXITED) | |
d0ffdf64 TT |
1365 | tp = add_thread_with_info (info->process_target, ptid, |
1366 | private_thread_info_up (priv)); | |
17faa917 | 1367 | else |
7aabaf9d | 1368 | tp->priv.reset (priv); |
5365276c | 1369 | |
55f6301a | 1370 | if (target_has_execution ()) |
2db9a427 | 1371 | check_thread_signals (); |
be550b6e DE |
1372 | |
1373 | return tp; | |
fb0e1ba7 MK |
1374 | } |
1375 | ||
f6ac5f3d PA |
1376 | void |
1377 | thread_db_target::detach (inferior *inf, int from_tty) | |
fb0e1ba7 | 1378 | { |
5b6d1e4f | 1379 | delete_thread_db_info (inf->process_target (), inf->pid); |
4105de34 | 1380 | |
d6ca69cd | 1381 | beneath ()->detach (inf, from_tty); |
d90e17a7 PA |
1382 | |
1383 | /* NOTE: From this point on, inferior_ptid is null_ptid. */ | |
1384 | ||
5b6d1e4f | 1385 | /* Detach the thread_db target from this inferior. */ |
fadf6add | 1386 | inf->unpush_target (this); |
fb0e1ba7 MK |
1387 | } |
1388 | ||
f6ac5f3d PA |
1389 | ptid_t |
1390 | thread_db_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus, | |
b60cea74 | 1391 | target_wait_flags options) |
fb0e1ba7 | 1392 | { |
d90e17a7 | 1393 | struct thread_db_info *info; |
117de6a9 | 1394 | |
5b6d1e4f PA |
1395 | process_stratum_target *beneath |
1396 | = as_process_stratum_target (this->beneath ()); | |
1397 | ||
1398 | ptid = beneath->wait (ptid, ourstatus, options); | |
fb0e1ba7 | 1399 | |
183be222 | 1400 | switch (ourstatus->kind ()) |
aa01bd36 PA |
1401 | { |
1402 | case TARGET_WAITKIND_IGNORE: | |
1403 | case TARGET_WAITKIND_EXITED: | |
1404 | case TARGET_WAITKIND_THREAD_EXITED: | |
1405 | case TARGET_WAITKIND_SIGNALLED: | |
294c36eb | 1406 | case TARGET_WAITKIND_EXECD: |
aa01bd36 PA |
1407 | return ptid; |
1408 | } | |
fb0e1ba7 | 1409 | |
5b6d1e4f | 1410 | info = get_thread_db_info (beneath, ptid.pid ()); |
d90e17a7 PA |
1411 | |
1412 | /* If this process isn't using thread_db, we're done. */ | |
1413 | if (info == NULL) | |
1414 | return ptid; | |
1415 | ||
2db9a427 | 1416 | /* Fill in the thread's user-level thread id and status. */ |
9213a6d7 | 1417 | thread_from_lwp (beneath->find_thread (ptid), ptid); |
fb0e1ba7 | 1418 | |
b9b5d7ea | 1419 | return ptid; |
fb0e1ba7 MK |
1420 | } |
1421 | ||
f6ac5f3d PA |
1422 | void |
1423 | thread_db_target::mourn_inferior () | |
fb0e1ba7 | 1424 | { |
5b6d1e4f PA |
1425 | process_stratum_target *target_beneath |
1426 | = as_process_stratum_target (this->beneath ()); | |
1427 | ||
1428 | delete_thread_db_info (target_beneath, inferior_ptid.pid ()); | |
fb0e1ba7 | 1429 | |
5b6d1e4f | 1430 | target_beneath->mourn_inferior (); |
d90e17a7 | 1431 | |
5b6d1e4f | 1432 | /* Detach the thread_db target from this inferior. */ |
fadf6add | 1433 | current_inferior ()->unpush_target (this); |
fb0e1ba7 MK |
1434 | } |
1435 | ||
294c36eb SM |
1436 | void |
1437 | thread_db_target::follow_exec (inferior *follow_inf, ptid_t ptid, | |
1438 | const char *execd_pathname) | |
1439 | { | |
1440 | process_stratum_target *beneath | |
1441 | = as_process_stratum_target (this->beneath ()); | |
1442 | ||
1443 | delete_thread_db_info (beneath, ptid.pid ()); | |
1444 | ||
1445 | current_inferior ()->unpush_target (this); | |
1446 | beneath->follow_exec (follow_inf, ptid, execd_pathname); | |
1447 | } | |
1448 | ||
02c6c942 PP |
1449 | struct callback_data |
1450 | { | |
1451 | struct thread_db_info *info; | |
1452 | int new_threads; | |
1453 | }; | |
1454 | ||
fb0e1ba7 MK |
1455 | static int |
1456 | find_new_threads_callback (const td_thrhandle_t *th_p, void *data) | |
1457 | { | |
1458 | td_thrinfo_t ti; | |
1459 | td_err_e err; | |
403fe197 | 1460 | struct thread_info *tp; |
9a3c8263 | 1461 | struct callback_data *cb_data = (struct callback_data *) data; |
02c6c942 | 1462 | struct thread_db_info *info = cb_data->info; |
fb0e1ba7 | 1463 | |
d90e17a7 | 1464 | err = info->td_thr_get_info_p (th_p, &ti); |
fb0e1ba7 | 1465 | if (err != TD_OK) |
8a3fe4f8 | 1466 | error (_("find_new_threads_callback: cannot get thread info: %s"), |
3197744f | 1467 | thread_db_err_str (err)); |
fb0e1ba7 | 1468 | |
a33e3959 PA |
1469 | if (ti.ti_lid == -1) |
1470 | { | |
1471 | /* A thread with kernel thread ID -1 is either a thread that | |
1472 | exited and was joined, or a thread that is being created but | |
1473 | hasn't started yet, and that is reusing the tcb/stack of a | |
1474 | thread that previously exited and was joined. (glibc marks | |
1475 | terminated and joined threads with kernel thread ID -1. See | |
1476 | glibc PR17707. */ | |
d6c146e9 | 1477 | if (libthread_db_debug) |
6cb06a8c TT |
1478 | gdb_printf (gdb_stdlog, |
1479 | "thread_db: skipping exited and " | |
1480 | "joined thread (0x%lx)\n", | |
1481 | (unsigned long) ti.ti_tid); | |
a33e3959 PA |
1482 | return 0; |
1483 | } | |
1484 | ||
254f582e | 1485 | if (ti.ti_tid == 0) |
4105de34 DJ |
1486 | { |
1487 | /* A thread ID of zero means that this is the main thread, but | |
1488 | glibc has not yet initialized thread-local storage and the | |
1489 | pthread library. We do not know what the thread's TID will | |
c2c2a31f | 1490 | be yet. */ |
4105de34 | 1491 | |
4d062f1a PA |
1492 | /* In that case, we're not stopped in a fork syscall and don't |
1493 | need this glibc bug workaround. */ | |
1494 | info->need_stale_parent_threads_check = 0; | |
1495 | ||
4105de34 DJ |
1496 | return 0; |
1497 | } | |
1498 | ||
4d062f1a PA |
1499 | /* Ignore stale parent threads, caused by glibc/BZ5983. This is a |
1500 | bit expensive, as it needs to open /proc/pid/status, so try to | |
1501 | avoid doing the work if we know we don't have to. */ | |
1502 | if (info->need_stale_parent_threads_check) | |
1503 | { | |
1504 | int tgid = linux_proc_get_tgid (ti.ti_lid); | |
e0881a8e | 1505 | |
4d062f1a PA |
1506 | if (tgid != -1 && tgid != info->pid) |
1507 | return 0; | |
1508 | } | |
1509 | ||
00431a78 | 1510 | ptid_t ptid (info->pid, ti.ti_lid); |
9213a6d7 | 1511 | tp = info->process_target->find_thread (ptid); |
fe978cb0 | 1512 | if (tp == NULL || tp->priv == NULL) |
60269a4a | 1513 | record_thread (info, tp, ptid, th_p, &ti); |
fb0e1ba7 MK |
1514 | |
1515 | return 0; | |
1516 | } | |
1517 | ||
02c6c942 PP |
1518 | /* Helper for thread_db_find_new_threads_2. |
1519 | Returns number of new threads found. */ | |
1520 | ||
1521 | static int | |
1522 | find_new_threads_once (struct thread_db_info *info, int iteration, | |
fb169834 | 1523 | td_err_e *errp) |
02c6c942 | 1524 | { |
02c6c942 | 1525 | struct callback_data data; |
fb169834 | 1526 | td_err_e err = TD_ERR; |
02c6c942 PP |
1527 | |
1528 | data.info = info; | |
1529 | data.new_threads = 0; | |
1530 | ||
2db9a427 | 1531 | /* See comment in thread_db_update_thread_list. */ |
1eb2dbb8 | 1532 | gdb_assert (info->td_ta_thr_iter_p != NULL); |
2db9a427 | 1533 | |
a70b8144 | 1534 | try |
02c6c942 PP |
1535 | { |
1536 | /* Iterate over all user-space threads to discover new threads. */ | |
1537 | err = info->td_ta_thr_iter_p (info->thread_agent, | |
1538 | find_new_threads_callback, | |
1539 | &data, | |
1540 | TD_THR_ANY_STATE, | |
1541 | TD_THR_LOWEST_PRIORITY, | |
1542 | TD_SIGNO_MASK, | |
1543 | TD_THR_ANY_USER_FLAGS); | |
1544 | } | |
230d2906 | 1545 | catch (const gdb_exception_error &except) |
02c6c942 | 1546 | { |
6c63c96a | 1547 | if (libthread_db_debug) |
492d29ea PA |
1548 | { |
1549 | exception_fprintf (gdb_stdlog, except, | |
1550 | "Warning: find_new_threads_once: "); | |
1551 | } | |
6c63c96a | 1552 | } |
02c6c942 | 1553 | |
6c63c96a PA |
1554 | if (libthread_db_debug) |
1555 | { | |
6cb06a8c TT |
1556 | gdb_printf (gdb_stdlog, |
1557 | _("Found %d new threads in iteration %d.\n"), | |
1558 | data.new_threads, iteration); | |
02c6c942 PP |
1559 | } |
1560 | ||
1561 | if (errp != NULL) | |
1562 | *errp = err; | |
1563 | ||
1564 | return data.new_threads; | |
1565 | } | |
1566 | ||
4c28f408 | 1567 | /* Search for new threads, accessing memory through stopped thread |
02c6c942 PP |
1568 | PTID. If UNTIL_NO_NEW is true, repeat searching until several |
1569 | searches in a row do not discover any new threads. */ | |
4c28f408 | 1570 | |
fb0e1ba7 | 1571 | static void |
00431a78 | 1572 | thread_db_find_new_threads_2 (thread_info *stopped, bool until_no_new) |
fb0e1ba7 | 1573 | { |
fcb44371 | 1574 | td_err_e err = TD_OK; |
d90e17a7 | 1575 | struct thread_db_info *info; |
02c6c942 | 1576 | int i, loop; |
4c28f408 | 1577 | |
5b6d1e4f PA |
1578 | info = get_thread_db_info (stopped->inf->process_target (), |
1579 | stopped->ptid.pid ()); | |
d90e17a7 | 1580 | |
4c28f408 | 1581 | /* Access an lwp we know is stopped. */ |
00431a78 | 1582 | info->proc_handle.thread = stopped; |
02c6c942 PP |
1583 | |
1584 | if (until_no_new) | |
1585 | { | |
1586 | /* Require 4 successive iterations which do not find any new threads. | |
1587 | The 4 is a heuristic: there is an inherent race here, and I have | |
1588 | seen that 2 iterations in a row are not always sufficient to | |
1589 | "capture" all threads. */ | |
fcb44371 JK |
1590 | for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop) |
1591 | if (find_new_threads_once (info, i, &err) != 0) | |
1592 | { | |
1593 | /* Found some new threads. Restart the loop from beginning. */ | |
1594 | loop = -1; | |
1595 | } | |
02c6c942 PP |
1596 | } |
1597 | else | |
fcb44371 JK |
1598 | find_new_threads_once (info, 0, &err); |
1599 | ||
1600 | if (err != TD_OK) | |
1601 | error (_("Cannot find new threads: %s"), thread_db_err_str (err)); | |
fb0e1ba7 MK |
1602 | } |
1603 | ||
02c6c942 | 1604 | static void |
00431a78 | 1605 | thread_db_find_new_threads_1 (thread_info *stopped) |
02c6c942 | 1606 | { |
00431a78 | 1607 | thread_db_find_new_threads_2 (stopped, 0); |
02c6c942 PP |
1608 | } |
1609 | ||
a6904d5a PA |
1610 | /* Implement the to_update_thread_list target method for this |
1611 | target. */ | |
2db9a427 | 1612 | |
f6ac5f3d PA |
1613 | void |
1614 | thread_db_target::update_thread_list () | |
28439f5e | 1615 | { |
d90e17a7 PA |
1616 | struct thread_db_info *info; |
1617 | ||
08036331 | 1618 | for (inferior *inf : all_inferiors ()) |
c65b3e0d | 1619 | { |
c65b3e0d PA |
1620 | if (inf->pid == 0) |
1621 | continue; | |
d90e17a7 | 1622 | |
5b6d1e4f | 1623 | info = get_thread_db_info (inf->process_target (), inf->pid); |
c65b3e0d PA |
1624 | if (info == NULL) |
1625 | continue; | |
1626 | ||
5b6d1e4f | 1627 | thread_info *thread = any_live_thread_of_inferior (inf); |
611841bb | 1628 | if (thread == NULL || thread->executing ()) |
c65b3e0d PA |
1629 | continue; |
1630 | ||
a6904d5a PA |
1631 | /* It's best to avoid td_ta_thr_iter if possible. That walks |
1632 | data structures in the inferior's address space that may be | |
1633 | corrupted, or, if the target is running, the list may change | |
1634 | while we walk it. In the latter case, it's possible that a | |
1635 | thread exits just at the exact time that causes GDB to get | |
1636 | stuck in an infinite loop. To avoid pausing all threads | |
1637 | whenever the core wants to refresh the thread list, we | |
1638 | instead use thread_from_lwp immediately when we see an LWP | |
1639 | stop. That uses thread_db entry points that do not walk | |
1640 | libpthread's thread list, so should be safe, as well as more | |
1641 | efficient. */ | |
5018ce90 | 1642 | if (thread->inf->has_execution ()) |
a6904d5a PA |
1643 | continue; |
1644 | ||
00431a78 | 1645 | thread_db_find_new_threads_1 (thread); |
c65b3e0d | 1646 | } |
2db9a427 | 1647 | |
a6904d5a | 1648 | /* Give the beneath target a chance to do extra processing. */ |
b6a8c27b | 1649 | this->beneath ()->update_thread_list (); |
28439f5e PA |
1650 | } |
1651 | ||
a068643d | 1652 | std::string |
f6ac5f3d | 1653 | thread_db_target::pid_to_str (ptid_t ptid) |
fb0e1ba7 | 1654 | { |
3c8af02f | 1655 | thread_info *thread_info = current_inferior ()->find_thread (ptid); |
17faa917 | 1656 | |
fe978cb0 | 1657 | if (thread_info != NULL && thread_info->priv != NULL) |
fb0e1ba7 | 1658 | { |
7aabaf9d | 1659 | thread_db_thread_info *priv = get_thread_db_thread_info (thread_info); |
fb0e1ba7 | 1660 | |
a068643d TT |
1661 | return string_printf ("Thread 0x%lx (LWP %ld)", |
1662 | (unsigned long) priv->tid, ptid.lwp ()); | |
fb0e1ba7 MK |
1663 | } |
1664 | ||
d6ca69cd | 1665 | return beneath ()->pid_to_str (ptid); |
fb0e1ba7 MK |
1666 | } |
1667 | ||
28b17333 DJ |
1668 | /* Return a string describing the state of the thread specified by |
1669 | INFO. */ | |
1670 | ||
f6ac5f3d PA |
1671 | const char * |
1672 | thread_db_target::extra_thread_info (thread_info *info) | |
28b17333 | 1673 | { |
fe978cb0 | 1674 | if (info->priv == NULL) |
17faa917 DJ |
1675 | return NULL; |
1676 | ||
7aabaf9d SM |
1677 | thread_db_thread_info *priv = get_thread_db_thread_info (info); |
1678 | ||
1679 | if (priv->dying) | |
28b17333 DJ |
1680 | return "Exiting"; |
1681 | ||
1682 | return NULL; | |
1683 | } | |
1684 | ||
e04ee09e KB |
1685 | /* Return pointer to the thread_info struct which corresponds to |
1686 | THREAD_HANDLE (having length HANDLE_LEN). */ | |
1687 | ||
f6ac5f3d PA |
1688 | thread_info * |
1689 | thread_db_target::thread_handle_to_thread_info (const gdb_byte *thread_handle, | |
1690 | int handle_len, | |
1691 | inferior *inf) | |
e04ee09e | 1692 | { |
e04ee09e KB |
1693 | thread_t handle_tid; |
1694 | ||
6bdfee81 KB |
1695 | /* When debugging a 32-bit target from a 64-bit host, handle_len |
1696 | will be 4 and sizeof (handle_tid) will be 8. This requires | |
1697 | a different cast than the more straightforward case where | |
1698 | the sizes are the same. | |
1699 | ||
1700 | Use "--target_board unix/-m32" from a native x86_64 linux build | |
1701 | to test the 32/64-bit case. */ | |
1702 | if (handle_len == 4 && sizeof (handle_tid) == 8) | |
1703 | handle_tid = (thread_t) * (const uint32_t *) thread_handle; | |
1704 | else if (handle_len == sizeof (handle_tid)) | |
1705 | handle_tid = * (const thread_t *) thread_handle; | |
1706 | else | |
e04ee09e KB |
1707 | error (_("Thread handle size mismatch: %d vs %zu (from libthread_db)"), |
1708 | handle_len, sizeof (handle_tid)); | |
1709 | ||
08036331 | 1710 | for (thread_info *tp : inf->non_exited_threads ()) |
e04ee09e | 1711 | { |
7aabaf9d SM |
1712 | thread_db_thread_info *priv = get_thread_db_thread_info (tp); |
1713 | ||
08036331 | 1714 | if (priv != NULL && handle_tid == priv->tid) |
dda83cd7 | 1715 | return tp; |
e04ee09e KB |
1716 | } |
1717 | ||
1718 | return NULL; | |
1719 | } | |
3d6c6204 KB |
1720 | |
1721 | /* Return the thread handle associated the thread_info pointer TP. */ | |
1722 | ||
1f08d324 | 1723 | gdb::array_view<const gdb_byte> |
3d6c6204 KB |
1724 | thread_db_target::thread_info_to_thread_handle (struct thread_info *tp) |
1725 | { | |
1726 | thread_db_thread_info *priv = get_thread_db_thread_info (tp); | |
1727 | ||
1728 | if (priv == NULL) | |
1f08d324 | 1729 | return {}; |
3d6c6204 KB |
1730 | |
1731 | int handle_size = sizeof (priv->tid); | |
1f08d324 | 1732 | priv->thread_handle.emplace (handle_size); |
3d6c6204 | 1733 | |
1f08d324 | 1734 | memcpy (priv->thread_handle->data (), &priv->tid, handle_size); |
3d6c6204 | 1735 | |
1f08d324 | 1736 | return *priv->thread_handle; |
3d6c6204 | 1737 | } |
e04ee09e | 1738 | |
b2756930 KB |
1739 | /* Get the address of the thread local variable in load module LM which |
1740 | is stored at OFFSET within the thread local storage for thread PTID. */ | |
3f47be5c | 1741 | |
f6ac5f3d PA |
1742 | CORE_ADDR |
1743 | thread_db_target::get_thread_local_address (ptid_t ptid, | |
1744 | CORE_ADDR lm, | |
1745 | CORE_ADDR offset) | |
3f47be5c | 1746 | { |
17faa917 | 1747 | struct thread_info *thread_info; |
5b6d1e4f PA |
1748 | process_stratum_target *beneath |
1749 | = as_process_stratum_target (this->beneath ()); | |
17faa917 | 1750 | /* Find the matching thread. */ |
9213a6d7 | 1751 | thread_info = beneath->find_thread (ptid); |
4105de34 | 1752 | |
e0fd7c47 UW |
1753 | /* We may not have discovered the thread yet. */ |
1754 | if (thread_info != NULL && thread_info->priv == NULL) | |
00431a78 | 1755 | thread_info = thread_from_lwp (thread_info, ptid); |
e0fd7c47 | 1756 | |
fe978cb0 | 1757 | if (thread_info != NULL && thread_info->priv != NULL) |
3f47be5c | 1758 | { |
3f47be5c | 1759 | td_err_e err; |
00f515da | 1760 | psaddr_t address; |
5b6d1e4f | 1761 | thread_db_info *info = get_thread_db_info (beneath, ptid.pid ()); |
7aabaf9d | 1762 | thread_db_thread_info *priv = get_thread_db_thread_info (thread_info); |
3f47be5c | 1763 | |
3f47be5c | 1764 | /* Finally, get the address of the variable. */ |
5876f503 JK |
1765 | if (lm != 0) |
1766 | { | |
1767 | /* glibc doesn't provide the needed interface. */ | |
1768 | if (!info->td_thr_tls_get_addr_p) | |
1769 | throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR, | |
1770 | _("No TLS library support")); | |
1771 | ||
1772 | /* Note the cast through uintptr_t: this interface only works if | |
1773 | a target address fits in a psaddr_t, which is a host pointer. | |
1774 | So a 32-bit debugger can not access 64-bit TLS through this. */ | |
7aabaf9d | 1775 | err = info->td_thr_tls_get_addr_p (&priv->th, |
5876f503 JK |
1776 | (psaddr_t)(uintptr_t) lm, |
1777 | offset, &address); | |
1778 | } | |
1779 | else | |
1780 | { | |
1781 | /* If glibc doesn't provide the needed interface throw an error | |
1782 | that LM is zero - normally cases it should not be. */ | |
1783 | if (!info->td_thr_tlsbase_p) | |
1784 | throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR, | |
1785 | _("TLS load module not found")); | |
1786 | ||
1787 | /* This code path handles the case of -static -pthread executables: | |
1788 | https://sourceware.org/ml/libc-help/2014-03/msg00024.html | |
1789 | For older GNU libc r_debug.r_map is NULL. For GNU libc after | |
1790 | PR libc/16831 due to GDB PR threads/16954 LOAD_MODULE is also NULL. | |
1791 | The constant number 1 depends on GNU __libc_setup_tls | |
1792 | initialization of l_tls_modid to 1. */ | |
7aabaf9d | 1793 | err = info->td_thr_tlsbase_p (&priv->th, 1, &address); |
5876f503 JK |
1794 | address = (char *) address + offset; |
1795 | } | |
3f47be5c EZ |
1796 | |
1797 | #ifdef THREAD_DB_HAS_TD_NOTALLOC | |
1798 | /* The memory hasn't been allocated, yet. */ | |
1799 | if (err == TD_NOTALLOC) | |
b4acd559 JJ |
1800 | /* Now, if libthread_db provided the initialization image's |
1801 | address, we *could* try to build a non-lvalue value from | |
1802 | the initialization image. */ | |
dda83cd7 SM |
1803 | throw_error (TLS_NOT_ALLOCATED_YET_ERROR, |
1804 | _("TLS not allocated yet")); | |
3f47be5c EZ |
1805 | #endif |
1806 | ||
1807 | /* Something else went wrong. */ | |
1808 | if (err != TD_OK) | |
dda83cd7 SM |
1809 | throw_error (TLS_GENERIC_ERROR, |
1810 | (("%s")), thread_db_err_str (err)); | |
3f47be5c EZ |
1811 | |
1812 | /* Cast assuming host == target. Joy. */ | |
16451949 | 1813 | /* Do proper sign extension for the target. */ |
7e10abd1 TT |
1814 | gdb_assert (current_program_space->exec_bfd ()); |
1815 | return (bfd_get_sign_extend_vma (current_program_space->exec_bfd ()) > 0 | |
16451949 AS |
1816 | ? (CORE_ADDR) (intptr_t) address |
1817 | : (CORE_ADDR) (uintptr_t) address); | |
3f47be5c EZ |
1818 | } |
1819 | ||
5b6d1e4f | 1820 | return beneath->get_thread_local_address (ptid, lm, offset); |
3f47be5c EZ |
1821 | } |
1822 | ||
0ef643c8 JB |
1823 | /* Implement the to_get_ada_task_ptid target method for this target. */ |
1824 | ||
f6ac5f3d | 1825 | ptid_t |
c80e29db | 1826 | thread_db_target::get_ada_task_ptid (long lwp, ULONGEST thread) |
0ef643c8 | 1827 | { |
2db9a427 | 1828 | /* NPTL uses a 1:1 model, so the LWP id suffices. */ |
184ea2f7 | 1829 | return ptid_t (inferior_ptid.pid (), lwp); |
0ef643c8 JB |
1830 | } |
1831 | ||
f6ac5f3d PA |
1832 | void |
1833 | thread_db_target::resume (ptid_t ptid, int step, enum gdb_signal signo) | |
4d062f1a | 1834 | { |
5b6d1e4f PA |
1835 | process_stratum_target *beneath |
1836 | = as_process_stratum_target (this->beneath ()); | |
4d062f1a | 1837 | |
5b6d1e4f PA |
1838 | thread_db_info *info |
1839 | = get_thread_db_info (beneath, (ptid == minus_one_ptid | |
1840 | ? inferior_ptid.pid () | |
1841 | : ptid.pid ())); | |
4d062f1a PA |
1842 | |
1843 | /* This workaround is only needed for child fork lwps stopped in a | |
1844 | PTRACE_O_TRACEFORK event. When the inferior is resumed, the | |
1845 | workaround can be disabled. */ | |
1846 | if (info) | |
1847 | info->need_stale_parent_threads_check = 0; | |
1848 | ||
5b6d1e4f | 1849 | beneath->resume (ptid, step, signo); |
4d062f1a PA |
1850 | } |
1851 | ||
9b292f68 | 1852 | /* std::sort helper function for info_auto_load_libthread_db, sort the |
bf88dd68 JK |
1853 | thread_db_info pointers primarily by their FILENAME and secondarily by their |
1854 | PID, both in ascending order. */ | |
1855 | ||
9b292f68 TT |
1856 | static bool |
1857 | info_auto_load_libthread_db_compare (const struct thread_db_info *a, | |
1858 | const struct thread_db_info *b) | |
bf88dd68 | 1859 | { |
bf88dd68 JK |
1860 | int retval; |
1861 | ||
1862 | retval = strcmp (a->filename, b->filename); | |
1863 | if (retval) | |
9b292f68 | 1864 | return retval < 0; |
bf88dd68 | 1865 | |
9b292f68 | 1866 | return a->pid < b->pid; |
bf88dd68 JK |
1867 | } |
1868 | ||
1869 | /* Implement 'info auto-load libthread-db'. */ | |
1870 | ||
1871 | static void | |
5fed81ff | 1872 | info_auto_load_libthread_db (const char *args, int from_tty) |
bf88dd68 JK |
1873 | { |
1874 | struct ui_out *uiout = current_uiout; | |
1875 | const char *cs = args ? args : ""; | |
9b292f68 TT |
1876 | struct thread_db_info *info; |
1877 | unsigned unique_filenames; | |
1878 | size_t max_filename_len, pids_len; | |
bf88dd68 JK |
1879 | int i; |
1880 | ||
f1735a53 | 1881 | cs = skip_spaces (cs); |
bf88dd68 JK |
1882 | if (*cs) |
1883 | error (_("'info auto-load libthread-db' does not accept any parameters")); | |
1884 | ||
9b292f68 | 1885 | std::vector<struct thread_db_info *> array; |
bf88dd68 JK |
1886 | for (info = thread_db_list; info; info = info->next) |
1887 | if (info->filename != NULL) | |
9b292f68 | 1888 | array.push_back (info); |
bf88dd68 JK |
1889 | |
1890 | /* Sort ARRAY by filenames and PIDs. */ | |
9b292f68 TT |
1891 | std::sort (array.begin (), array.end (), |
1892 | info_auto_load_libthread_db_compare); | |
bf88dd68 JK |
1893 | |
1894 | /* Calculate the number of unique filenames (rows) and the maximum string | |
1895 | length of PIDs list for the unique filenames (columns). */ | |
1896 | ||
1897 | unique_filenames = 0; | |
1898 | max_filename_len = 0; | |
bf88dd68 | 1899 | pids_len = 0; |
9b292f68 | 1900 | for (i = 0; i < array.size (); i++) |
bf88dd68 JK |
1901 | { |
1902 | int pid = array[i]->pid; | |
1903 | size_t this_pid_len; | |
1904 | ||
1905 | for (this_pid_len = 0; pid != 0; pid /= 10) | |
1906 | this_pid_len++; | |
1907 | ||
1908 | if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0) | |
1909 | { | |
1910 | unique_filenames++; | |
325fac50 PA |
1911 | max_filename_len = std::max (max_filename_len, |
1912 | strlen (array[i]->filename)); | |
bf88dd68 JK |
1913 | |
1914 | if (i > 0) | |
9b292f68 | 1915 | pids_len -= strlen (", "); |
bf88dd68 JK |
1916 | pids_len = 0; |
1917 | } | |
1918 | pids_len += this_pid_len + strlen (", "); | |
1919 | } | |
1920 | if (i) | |
9b292f68 | 1921 | pids_len -= strlen (", "); |
bf88dd68 JK |
1922 | |
1923 | /* Table header shifted right by preceding "libthread-db: " would not match | |
1924 | its columns. */ | |
9b292f68 | 1925 | if (array.size () > 0 && args == auto_load_info_scripts_pattern_nl) |
112e8700 | 1926 | uiout->text ("\n"); |
bf88dd68 | 1927 | |
4a2b031d TT |
1928 | { |
1929 | ui_out_emit_table table_emitter (uiout, 2, unique_filenames, | |
1930 | "LinuxThreadDbTable"); | |
bf88dd68 | 1931 | |
4a2b031d TT |
1932 | uiout->table_header (max_filename_len, ui_left, "filename", "Filename"); |
1933 | uiout->table_header (pids_len, ui_left, "PIDs", "Pids"); | |
1934 | uiout->table_body (); | |
bf88dd68 | 1935 | |
4a2b031d | 1936 | /* Note I is incremented inside the cycle, not at its end. */ |
9b292f68 | 1937 | for (i = 0; i < array.size ();) |
4a2b031d TT |
1938 | { |
1939 | ui_out_emit_tuple tuple_emitter (uiout, NULL); | |
bf88dd68 | 1940 | |
4a2b031d | 1941 | info = array[i]; |
972f7a4b TT |
1942 | uiout->field_string ("filename", info->filename, |
1943 | file_name_style.style ()); | |
bf88dd68 | 1944 | |
9b292f68 TT |
1945 | std::string pids; |
1946 | while (i < array.size () && strcmp (info->filename, | |
1947 | array[i]->filename) == 0) | |
4a2b031d | 1948 | { |
9b292f68 TT |
1949 | if (!pids.empty ()) |
1950 | pids += ", "; | |
1951 | string_appendf (pids, "%u", array[i]->pid); | |
4a2b031d TT |
1952 | i++; |
1953 | } | |
bf88dd68 | 1954 | |
8dd8c8d4 | 1955 | uiout->field_string ("pids", pids); |
bf88dd68 | 1956 | |
4a2b031d TT |
1957 | uiout->text ("\n"); |
1958 | } | |
1959 | } | |
bf88dd68 | 1960 | |
9b292f68 | 1961 | if (array.empty ()) |
112e8700 | 1962 | uiout->message (_("No auto-loaded libthread-db.\n")); |
bf88dd68 JK |
1963 | } |
1964 | ||
5045b3d7 GB |
1965 | /* Implement 'maintenance check libthread-db'. */ |
1966 | ||
1967 | static void | |
1968 | maintenance_check_libthread_db (const char *args, int from_tty) | |
1969 | { | |
e99b03dc | 1970 | int inferior_pid = inferior_ptid.pid (); |
5045b3d7 GB |
1971 | struct thread_db_info *info; |
1972 | ||
1973 | if (inferior_pid == 0) | |
1974 | error (_("No inferior running")); | |
1975 | ||
5b6d1e4f PA |
1976 | info = get_thread_db_info (current_inferior ()->process_target (), |
1977 | inferior_pid); | |
5045b3d7 GB |
1978 | if (info == NULL) |
1979 | error (_("No libthread_db loaded")); | |
1980 | ||
1981 | check_thread_db (info, true); | |
1982 | } | |
1983 | ||
5fe70629 | 1984 | INIT_GDB_FILE (thread_db) |
fb0e1ba7 | 1985 | { |
17a37d48 PP |
1986 | /* Defer loading of libthread_db.so until inferior is running. |
1987 | This allows gdb to load correct libthread_db for a given | |
4a6ed09b PA |
1988 | executable -- there could be multiple versions of glibc, |
1989 | and until there is a running inferior, we can't tell which | |
1990 | libthread_db is the correct one to load. */ | |
17a37d48 | 1991 | |
17a37d48 PP |
1992 | add_setshow_optional_filename_cmd ("libthread-db-search-path", |
1993 | class_support, | |
1994 | &libthread_db_search_path, _("\ | |
1995 | Set search path for libthread_db."), _("\ | |
1996 | Show the current search path or libthread_db."), _("\ | |
1997 | This path is used to search for libthread_db to be loaded into \ | |
84e578fb DE |
1998 | gdb itself.\n\ |
1999 | Its value is a colon (':') separate list of directories to search.\n\ | |
2000 | Setting the search path to an empty list resets it to its default value."), | |
2001 | set_libthread_db_search_path, | |
17a37d48 PP |
2002 | NULL, |
2003 | &setlist, &showlist); | |
02d868e8 | 2004 | |
ccce17b0 YQ |
2005 | add_setshow_zuinteger_cmd ("libthread-db", class_maintenance, |
2006 | &libthread_db_debug, _("\ | |
02d868e8 PP |
2007 | Set libthread-db debugging."), _("\ |
2008 | Show libthread-db debugging."), _("\ | |
2009 | When non-zero, libthread-db debugging is enabled."), | |
ccce17b0 YQ |
2010 | NULL, |
2011 | show_libthread_db_debug, | |
2012 | &setdebuglist, &showdebuglist); | |
02d868e8 | 2013 | |
bf88dd68 JK |
2014 | add_setshow_boolean_cmd ("libthread-db", class_support, |
2015 | &auto_load_thread_db, _("\ | |
2016 | Enable or disable auto-loading of inferior specific libthread_db."), _("\ | |
2017 | Show whether auto-loading inferior specific libthread_db is enabled."), _("\ | |
2018 | If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\ | |
2019 | locations to load libthread_db compatible with the inferior.\n\ | |
2020 | Standard system libthread_db still gets loaded even with this option off.\n\ | |
8d8c087f | 2021 | This option has security implications for untrusted inferiors."), |
bf88dd68 JK |
2022 | NULL, show_auto_load_thread_db, |
2023 | auto_load_set_cmdlist_get (), | |
2024 | auto_load_show_cmdlist_get ()); | |
2025 | ||
2026 | add_cmd ("libthread-db", class_info, info_auto_load_libthread_db, | |
2027 | _("Print the list of loaded inferior specific libthread_db.\n\ | |
2028 | Usage: info auto-load libthread-db"), | |
2029 | auto_load_info_cmdlist_get ()); | |
2030 | ||
5045b3d7 GB |
2031 | add_cmd ("libthread-db", class_maintenance, |
2032 | maintenance_check_libthread_db, _("\ | |
2033 | Run integrity checks on the current inferior's libthread_db."), | |
2034 | &maintenancechecklist); | |
2035 | ||
2036 | add_setshow_boolean_cmd ("check-libthread-db", | |
2037 | class_maintenance, | |
2038 | &check_thread_db_on_load, _("\ | |
2039 | Set whether to check libthread_db at load time."), _("\ | |
2040 | Show whether to check libthread_db at load time."), _("\ | |
2041 | If enabled GDB will run integrity checks on inferior specific libthread_db\n\ | |
2042 | as they are loaded."), | |
2043 | NULL, | |
2044 | NULL, | |
2045 | &maintenance_set_cmdlist, | |
2046 | &maintenance_show_cmdlist); | |
2047 | ||
17a37d48 | 2048 | /* Add ourselves to objfile event chain. */ |
c90e7d63 | 2049 | gdb::observers::new_objfile.attach (thread_db_new_objfile, "linux-thread-db"); |
0838fb57 DE |
2050 | |
2051 | /* Add ourselves to inferior_created event chain. | |
2052 | This is needed to handle debugging statically linked programs where | |
2053 | the new_objfile observer won't get called for libpthread. */ | |
c90e7d63 SM |
2054 | gdb::observers::inferior_created.attach (thread_db_inferior_created, |
2055 | "linux-thread-db"); | |
fb0e1ba7 | 2056 | } |