Remove some cleanups from search_minsyms_for_name
[deliverable/binutils-gdb.git] / gdb / linux-thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
e2882c85 3 Copyright (C) 1999-2018 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
MK
19
20#include "defs.h"
fb0e1ba7
MK
21#include <dlfcn.h>
22#include "gdb_proc_service.h"
125f8a3d 23#include "nat/gdb_thread_db.h"
e6712ff1 24#include "gdb_vecs.h"
bda9cb72 25#include "bfd.h"
17a37d48 26#include "command.h"
17a37d48 27#include "gdbcmd.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>
b4987c95 49#include "common/pathstuff.h"
979894f2 50
17faa917
DJ
51/* GNU/Linux libthread_db support.
52
53 libthread_db is a library, provided along with libpthread.so, which
54 exposes the internals of the thread library to a debugger. It
55 allows GDB to find existing threads, new threads as they are
56 created, thread IDs (usually, the result of pthread_self), and
57 thread-local variables.
58
4a6ed09b
PA
59 The libthread_db interface originates on Solaris, where it is both
60 more powerful and more complicated. This implementation only works
61 for NPTL, the glibc threading library. It assumes that each thread
62 is permanently assigned to a single light-weight process (LWP). At
63 some point it also supported the older LinuxThreads library, but it
64 no longer does.
17faa917
DJ
65
66 libthread_db-specific information is stored in the "private" field
67 of struct thread_info. When the field is NULL we do not yet have
68 information about the new thread; this could be temporary (created,
69 but the thread library's data structures do not reflect it yet)
70 or permanent (created using clone instead of pthread_create).
71
72 Process IDs managed by linux-thread-db.c match those used by
73 linux-nat.c: a common PID for all processes, an LWP ID for each
74 thread, and no TID. We save the TID in private. Keeping it out
75 of the ptid_t prevents thread IDs changing when libpthread is
76 loaded or unloaded. */
77
17a37d48
PP
78static char *libthread_db_search_path;
79
bf88dd68
JK
80/* Set to non-zero if thread_db auto-loading is enabled
81 by the "set auto-load libthread-db" command. */
82static int auto_load_thread_db = 1;
83
84/* "show" command for the auto_load_thread_db configuration variable. */
85
86static void
87show_auto_load_thread_db (struct ui_file *file, int from_tty,
88 struct cmd_list_element *c, const char *value)
89{
90 fprintf_filtered (file, _("Auto-loading of inferior specific libthread_db "
91 "is %s.\n"),
92 value);
93}
94
84e578fb 95static void
eb4c3f4a 96set_libthread_db_search_path (const char *ignored, int from_tty,
84e578fb
DE
97 struct cmd_list_element *c)
98{
99 if (*libthread_db_search_path == '\0')
100 {
101 xfree (libthread_db_search_path);
102 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
103 }
104}
105
02d868e8
PP
106/* If non-zero, print details of libthread_db processing. */
107
ccce17b0 108static unsigned int libthread_db_debug;
02d868e8
PP
109
110static void
111show_libthread_db_debug (struct ui_file *file, int from_tty,
112 struct cmd_list_element *c, const char *value)
113{
114 fprintf_filtered (file, _("libthread-db debugging is %s.\n"), value);
115}
116
8605d56e
AC
117/* If we're running on GNU/Linux, we must explicitly attach to any new
118 threads. */
fb0e1ba7 119
fb0e1ba7
MK
120/* This module's target vector. */
121static struct target_ops thread_db_ops;
122
fb0e1ba7
MK
123/* Non-zero if we have determined the signals used by the threads
124 library. */
125static int thread_signals;
126static sigset_t thread_stop_set;
127static sigset_t thread_print_set;
128
d90e17a7
PA
129struct thread_db_info
130{
131 struct thread_db_info *next;
132
133 /* Process id this object refers to. */
134 int pid;
135
136 /* Handle from dlopen for libthread_db.so. */
137 void *handle;
138
bf88dd68
JK
139 /* Absolute pathname from gdb_realpath to disk file used for dlopen-ing
140 HANDLE. It may be NULL for system library. */
141 char *filename;
142
d90e17a7
PA
143 /* Structure that identifies the child process for the
144 <proc_service.h> interface. */
145 struct ps_prochandle proc_handle;
146
147 /* Connection to the libthread_db library. */
148 td_thragent_t *thread_agent;
149
4d062f1a
PA
150 /* True if we need to apply the workaround for glibc/BZ5983. When
151 we catch a PTRACE_O_TRACEFORK, and go query the child's thread
152 list, nptl_db returns the parent's threads in addition to the new
153 (single) child thread. If this flag is set, we do extra work to
154 be able to ignore such stale entries. */
155 int need_stale_parent_threads_check;
156
d90e17a7 157 /* Pointers to the libthread_db functions. */
fb0e1ba7 158
96e9210f
PA
159 td_init_ftype *td_init_p;
160 td_ta_new_ftype *td_ta_new_p;
161 td_ta_map_lwp2thr_ftype *td_ta_map_lwp2thr_p;
162 td_ta_thr_iter_ftype *td_ta_thr_iter_p;
96e9210f 163 td_thr_get_info_ftype *td_thr_get_info_p;
96e9210f
PA
164 td_thr_tls_get_addr_ftype *td_thr_tls_get_addr_p;
165 td_thr_tlsbase_ftype *td_thr_tlsbase_p;
d90e17a7
PA
166};
167
168/* List of known processes using thread_db, and the required
169 bookkeeping. */
170struct thread_db_info *thread_db_list;
171
172static void thread_db_find_new_threads_1 (ptid_t ptid);
02c6c942 173static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
d90e17a7 174
2db9a427
PA
175static void check_thread_signals (void);
176
be550b6e
DE
177static struct thread_info *record_thread
178 (struct thread_db_info *info, struct thread_info *tp,
179 ptid_t ptid, const td_thrhandle_t *th_p, const td_thrinfo_t *ti_p);
2db9a427 180
d90e17a7
PA
181/* Add the current inferior to the list of processes using libpthread.
182 Return a pointer to the newly allocated object that was added to
183 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
184 LIBTHREAD_DB_SO. */
185
186static struct thread_db_info *
187add_thread_db_info (void *handle)
188{
8d749320 189 struct thread_db_info *info = XCNEW (struct thread_db_info);
d90e17a7 190
d90e17a7
PA
191 info->pid = ptid_get_pid (inferior_ptid);
192 info->handle = handle;
856d6f99
PA
193
194 /* The workaround works by reading from /proc/pid/status, so it is
195 disabled for core files. */
196 if (target_has_execution)
197 info->need_stale_parent_threads_check = 1;
d90e17a7
PA
198
199 info->next = thread_db_list;
200 thread_db_list = info;
201
202 return info;
203}
204
205/* Return the thread_db_info object representing the bookkeeping
206 related to process PID, if any; NULL otherwise. */
207
208static struct thread_db_info *
209get_thread_db_info (int pid)
210{
211 struct thread_db_info *info;
212
213 for (info = thread_db_list; info; info = info->next)
214 if (pid == info->pid)
215 return info;
216
217 return NULL;
218}
219
220/* When PID has exited or has been detached, we no longer want to keep
221 track of it as using libpthread. Call this function to discard
222 thread_db related info related to PID. Note that this closes
223 LIBTHREAD_DB_SO's dlopen'ed handle. */
224
225static void
226delete_thread_db_info (int pid)
227{
228 struct thread_db_info *info, *info_prev;
229
230 info_prev = NULL;
231
232 for (info = thread_db_list; info; info_prev = info, info = info->next)
233 if (pid == info->pid)
234 break;
235
236 if (info == NULL)
237 return;
238
239 if (info->handle != NULL)
240 dlclose (info->handle);
241
bf88dd68
JK
242 xfree (info->filename);
243
d90e17a7
PA
244 if (info_prev)
245 info_prev->next = info->next;
246 else
247 thread_db_list = info->next;
248
249 xfree (info);
250}
fb0e1ba7 251
5365276c
DJ
252/* Use "struct private_thread_info" to cache thread state. This is
253 a substantial optimization. */
254
7aabaf9d 255struct thread_db_thread_info : public private_thread_info
fb0e1ba7 256{
a2f23071 257 /* Flag set when we see a TD_DEATH event for this thread. */
7aabaf9d 258 bool dying = false;
a2f23071 259
5365276c 260 /* Cached thread state. */
7aabaf9d
SM
261 td_thrhandle_t th {};
262 thread_t tid {};
fb0e1ba7 263};
7aabaf9d
SM
264
265static thread_db_thread_info *
266get_thread_db_thread_info (thread_info *thread)
267{
268 return static_cast<thread_db_thread_info *> (thread->priv.get ());
269}
21bf60fe 270
a121b7c1 271static const char *
fb0e1ba7
MK
272thread_db_err_str (td_err_e err)
273{
274 static char buf[64];
275
276 switch (err)
277 {
278 case TD_OK:
279 return "generic 'call succeeded'";
280 case TD_ERR:
281 return "generic error";
282 case TD_NOTHR:
283 return "no thread to satisfy query";
284 case TD_NOSV:
285 return "no sync handle to satisfy query";
286 case TD_NOLWP:
287 return "no LWP to satisfy query";
288 case TD_BADPH:
289 return "invalid process handle";
290 case TD_BADTH:
291 return "invalid thread handle";
292 case TD_BADSH:
293 return "invalid synchronization handle";
294 case TD_BADTA:
295 return "invalid thread agent";
296 case TD_BADKEY:
297 return "invalid key";
298 case TD_NOMSG:
299 return "no event message for getmsg";
300 case TD_NOFPREGS:
301 return "FPU register set not available";
302 case TD_NOLIBTHREAD:
303 return "application not linked with libthread";
304 case TD_NOEVENT:
305 return "requested event is not supported";
306 case TD_NOCAPAB:
307 return "capability not available";
308 case TD_DBERR:
309 return "debugger service failed";
310 case TD_NOAPLIC:
311 return "operation not applicable to";
312 case TD_NOTSD:
313 return "no thread-specific data for this thread";
314 case TD_MALLOC:
315 return "malloc failed";
316 case TD_PARTIALREG:
317 return "only part of register set was written/read";
318 case TD_NOXREGS:
319 return "X register set not available for this thread";
59f80f10
DJ
320#ifdef THREAD_DB_HAS_TD_NOTALLOC
321 case TD_NOTALLOC:
322 return "thread has not yet allocated TLS for given module";
323#endif
324#ifdef THREAD_DB_HAS_TD_VERSION
325 case TD_VERSION:
326 return "versions of libpthread and libthread_db do not match";
327#endif
328#ifdef THREAD_DB_HAS_TD_NOTLS
329 case TD_NOTLS:
330 return "there is no TLS segment in the given module";
331#endif
fb0e1ba7
MK
332 default:
333 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
334 return buf;
335 }
336}
4105de34 337
64776a0b 338/* Fetch the user-level thread id of PTID. */
fb0e1ba7 339
be550b6e 340static struct thread_info *
39f77062 341thread_from_lwp (ptid_t ptid)
fb0e1ba7 342{
fb0e1ba7 343 td_thrhandle_t th;
2db9a427 344 td_thrinfo_t ti;
fb0e1ba7 345 td_err_e err;
d90e17a7 346 struct thread_db_info *info;
2db9a427 347 struct thread_info *tp;
fb0e1ba7 348
6cb9b55b
PP
349 /* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */
350 th.th_unique = 0;
351
17faa917
DJ
352 /* This ptid comes from linux-nat.c, which should always fill in the
353 LWP. */
dfd4cc63 354 gdb_assert (ptid_get_lwp (ptid) != 0);
fb0e1ba7 355
dfd4cc63 356 info = get_thread_db_info (ptid_get_pid (ptid));
d90e17a7 357
4c28f408 358 /* Access an lwp we know is stopped. */
d90e17a7 359 info->proc_handle.ptid = ptid;
dfd4cc63
LM
360 err = info->td_ta_map_lwp2thr_p (info->thread_agent, ptid_get_lwp (ptid),
361 &th);
fb0e1ba7 362 if (err != TD_OK)
8a3fe4f8 363 error (_("Cannot find user-level thread for LWP %ld: %s"),
dfd4cc63 364 ptid_get_lwp (ptid), thread_db_err_str (err));
fb0e1ba7 365
2db9a427
PA
366 err = info->td_thr_get_info_p (&th, &ti);
367 if (err != TD_OK)
368 error (_("thread_get_info_callback: cannot get thread info: %s"),
369 thread_db_err_str (err));
370
371 /* Fill the cache. */
372 tp = find_thread_ptid (ptid);
be550b6e 373 return record_thread (info, tp, ptid, &th, &ti);
fb0e1ba7
MK
374}
375\f
376
2db9a427
PA
377/* See linux-nat.h. */
378
4c28f408 379int
2db9a427 380thread_db_notice_clone (ptid_t parent, ptid_t child)
4c28f408 381{
d90e17a7 382 struct thread_db_info *info;
4c28f408 383
2db9a427 384 info = get_thread_db_info (ptid_get_pid (child));
d90e17a7
PA
385
386 if (info == NULL)
4c28f408
PA
387 return 0;
388
2db9a427 389 thread_from_lwp (child);
4c28f408 390
2db9a427
PA
391 /* If we do not know about the main thread yet, this would be a good
392 time to find it. */
393 thread_from_lwp (parent);
4c28f408
PA
394 return 1;
395}
396
5220ea4c
AC
397static void *
398verbose_dlsym (void *handle, const char *name)
399{
400 void *sym = dlsym (handle, name);
401 if (sym == NULL)
3e43a32a
MS
402 warning (_("Symbol \"%s\" not found in libthread_db: %s"),
403 name, dlerror ());
5220ea4c
AC
404 return sym;
405}
406
fcb44371
JK
407/* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and
408 return 1 if this version is lower (and not equal) to
409 VER_MAJOR_MIN.VER_MINOR_MIN. Return 0 in all other cases. */
410
411static int
412inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min)
413{
3b7344d5 414 struct bound_minimal_symbol version_msym;
fcb44371 415 CORE_ADDR version_addr;
e83e4e24 416 gdb::unique_xmalloc_ptr<char> version;
fcb44371
JK
417 int err, got, retval = 0;
418
419 version_msym = lookup_minimal_symbol (ver_symbol, NULL, NULL);
3b7344d5 420 if (version_msym.minsym == NULL)
fcb44371
JK
421 return 0;
422
77e371c0 423 version_addr = BMSYMBOL_VALUE_ADDRESS (version_msym);
fcb44371 424 got = target_read_string (version_addr, &version, 32, &err);
e83e4e24 425 if (err == 0 && memchr (version.get (), 0, got) == version.get () + got - 1)
fcb44371
JK
426 {
427 int major, minor;
428
e83e4e24 429 retval = (sscanf (version.get (), "%d.%d", &major, &minor) == 2
fcb44371
JK
430 && (major < ver_major_min
431 || (major == ver_major_min && minor < ver_minor_min)));
432 }
fcb44371
JK
433
434 return retval;
435}
436
fcb44371
JK
437/* Similar as thread_db_find_new_threads_1, but try to silently ignore errors
438 if appropriate.
456b0e24 439
fcb44371
JK
440 Return 1 if the caller should abort libthread_db initialization. Return 0
441 otherwise. */
442
443static int
456b0e24
PP
444thread_db_find_new_threads_silently (ptid_t ptid)
445{
456b0e24 446
492d29ea 447 TRY
456b0e24 448 {
02c6c942 449 thread_db_find_new_threads_2 (ptid, 1);
456b0e24
PP
450 }
451
492d29ea 452 CATCH (except, RETURN_MASK_ERROR)
e0881a8e 453 {
fcb44371 454 if (libthread_db_debug)
883ed13e 455 exception_fprintf (gdb_stdlog, except,
fcb44371
JK
456 "Warning: thread_db_find_new_threads_silently: ");
457
458 /* There is a bug fixed between nptl 2.6.1 and 2.7 by
459 commit 7d9d8bd18906fdd17364f372b160d7ab896ce909
460 where calls to td_thr_get_info fail with TD_ERR for statically linked
461 executables if td_thr_get_info is called before glibc has initialized
462 itself.
463
464 If the nptl bug is NOT present in the inferior and still thread_db
465 reports an error return 1. It means the inferior has corrupted thread
466 list and GDB should fall back only to LWPs.
467
468 If the nptl bug is present in the inferior return 0 to silently ignore
469 such errors, and let gdb enumerate threads again later. In such case
470 GDB cannot properly display LWPs if the inferior thread list is
889003ed
JK
471 corrupted. For core files it does not apply, no 'later enumeration'
472 is possible. */
fcb44371 473
889003ed 474 if (!target_has_execution || !inferior_has_bug ("nptl_version", 2, 7))
fcb44371
JK
475 {
476 exception_fprintf (gdb_stderr, except,
477 _("Warning: couldn't activate thread debugging "
478 "using libthread_db: "));
479 return 1;
480 }
e0881a8e 481 }
492d29ea
PA
482 END_CATCH
483
fcb44371 484 return 0;
456b0e24
PP
485}
486
d90e17a7
PA
487/* Lookup a library in which given symbol resides.
488 Note: this is looking in GDB process, not in the inferior.
489 Returns library name, or NULL. */
490
491static const char *
492dladdr_to_soname (const void *addr)
493{
494 Dl_info info;
495
496 if (dladdr (addr, &info) != 0)
497 return info.dli_fname;
498 return NULL;
499}
500
2471d008 501/* Attempt to initialize dlopen()ed libthread_db, described by INFO.
17a37d48
PP
502 Return 1 on success.
503 Failure could happen if libthread_db does not have symbols we expect,
504 or when it refuses to work with the current inferior (e.g. due to
505 version mismatch between libthread_db and libpthread). */
506
507static int
d90e17a7 508try_thread_db_load_1 (struct thread_db_info *info)
17a37d48
PP
509{
510 td_err_e err;
511
512 /* Initialize pointers to the dynamic library functions we will use.
513 Essential functions first. */
514
96e9210f
PA
515#define TDB_VERBOSE_DLSYM(info, func) \
516 info->func ## _p = (func ## _ftype *) verbose_dlsym (info->handle, #func)
517
518#define TDB_DLSYM(info, func) \
519 info->func ## _p = (func ## _ftype *) dlsym (info->handle, #func)
520
521#define CHK(a) \
522 do \
523 { \
524 if ((a) == NULL) \
525 return 0; \
526 } while (0)
527
528 CHK (TDB_VERBOSE_DLSYM (info, td_init));
17a37d48 529
d90e17a7 530 err = info->td_init_p ();
17a37d48
PP
531 if (err != TD_OK)
532 {
3e43a32a
MS
533 warning (_("Cannot initialize libthread_db: %s"),
534 thread_db_err_str (err));
17a37d48
PP
535 return 0;
536 }
537
96e9210f 538 CHK (TDB_VERBOSE_DLSYM (info, td_ta_new));
17a37d48
PP
539
540 /* Initialize the structure that identifies the child process. */
d90e17a7 541 info->proc_handle.ptid = inferior_ptid;
17a37d48
PP
542
543 /* Now attempt to open a connection to the thread library. */
d90e17a7 544 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
17a37d48
PP
545 if (err != TD_OK)
546 {
02d868e8 547 if (libthread_db_debug)
883ed13e
PA
548 fprintf_unfiltered (gdb_stdlog, _("td_ta_new failed: %s\n"),
549 thread_db_err_str (err));
17a37d48
PP
550 else
551 switch (err)
552 {
553 case TD_NOLIBTHREAD:
554#ifdef THREAD_DB_HAS_TD_VERSION
555 case TD_VERSION:
556#endif
557 /* The errors above are not unexpected and silently ignored:
558 they just mean we haven't found correct version of
559 libthread_db yet. */
560 break;
561 default:
562 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
563 }
564 return 0;
565 }
566
96e9210f
PA
567 /* These are essential. */
568 CHK (TDB_VERBOSE_DLSYM (info, td_ta_map_lwp2thr));
96e9210f 569 CHK (TDB_VERBOSE_DLSYM (info, td_thr_get_info));
17a37d48
PP
570
571 /* These are not essential. */
96e9210f
PA
572 TDB_DLSYM (info, td_thr_tls_get_addr);
573 TDB_DLSYM (info, td_thr_tlsbase);
574
2db9a427
PA
575 /* It's best to avoid td_ta_thr_iter if possible. That walks data
576 structures in the inferior's address space that may be corrupted,
577 or, if the target is running, may change while we walk them. If
578 there's execution (and /proc is mounted), then we're already
579 attached to all LWPs. Use thread_from_lwp, which uses
580 td_ta_map_lwp2thr instead, which does not walk the thread list.
581
582 td_ta_map_lwp2thr uses ps_get_thread_area, but we can't use that
583 currently on core targets, as it uses ptrace directly. */
584 if (target_has_execution
585 && linux_proc_task_list_dir_exists (ptid_get_pid (inferior_ptid)))
1eb2dbb8
PA
586 info->td_ta_thr_iter_p = NULL;
587 else
588 CHK (TDB_VERBOSE_DLSYM (info, td_ta_thr_iter));
589
590#undef TDB_VERBOSE_DLSYM
591#undef TDB_DLSYM
592#undef CHK
593
594 if (info->td_ta_thr_iter_p == NULL)
2db9a427
PA
595 {
596 struct lwp_info *lp;
597 int pid = ptid_get_pid (inferior_ptid);
598
599 linux_stop_and_wait_all_lwps ();
600
601 ALL_LWPS (lp)
602 if (ptid_get_pid (lp->ptid) == pid)
603 thread_from_lwp (lp->ptid);
604
605 linux_unstop_all_lwps ();
606 }
607 else if (thread_db_find_new_threads_silently (inferior_ptid) != 0)
fcb44371
JK
608 {
609 /* Even if libthread_db initializes, if the thread list is
610 corrupted, we'd not manage to list any threads. Better reject this
611 thread_db, and fall back to at least listing LWPs. */
612 return 0;
613 }
614
17a37d48
PP
615 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
616
883ed13e 617 if (*libthread_db_search_path || libthread_db_debug)
d90e17a7 618 {
883ed13e 619 struct ui_file *file;
d90e17a7 620 const char *library;
17a37d48 621
f8708a14 622 library = dladdr_to_soname ((const void *) *info->td_ta_new_p);
d90e17a7
PA
623 if (library == NULL)
624 library = LIBTHREAD_DB_SO;
17a37d48 625
883ed13e
PA
626 /* If we'd print this to gdb_stdout when debug output is
627 disabled, still print it to gdb_stdout if debug output is
628 enabled. User visible output should not depend on debug
629 settings. */
630 file = *libthread_db_search_path != '\0' ? gdb_stdout : gdb_stdlog;
631 fprintf_unfiltered (file, _("Using host libthread_db library \"%s\".\n"),
632 library);
d90e17a7 633 }
17a37d48 634
d90e17a7
PA
635 /* The thread library was detected. Activate the thread_db target
636 if this is the first process using it. */
637 if (thread_db_list->next == NULL)
638 push_target (&thread_db_ops);
17a37d48 639
d90e17a7 640 return 1;
17a37d48
PP
641}
642
643/* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
644 relative, or just LIBTHREAD_DB. */
645
646static int
fde4f8ed 647try_thread_db_load (const char *library, int check_auto_load_safe)
17a37d48
PP
648{
649 void *handle;
d90e17a7 650 struct thread_db_info *info;
17a37d48 651
02d868e8 652 if (libthread_db_debug)
883ed13e
PA
653 fprintf_unfiltered (gdb_stdlog,
654 _("Trying host libthread_db library: %s.\n"),
655 library);
fde4f8ed
JK
656
657 if (check_auto_load_safe)
658 {
659 if (access (library, R_OK) != 0)
660 {
661 /* Do not print warnings by file_is_auto_load_safe if the library does
662 not exist at this place. */
663 if (libthread_db_debug)
883ed13e
PA
664 fprintf_unfiltered (gdb_stdlog, _("open failed: %s.\n"),
665 safe_strerror (errno));
fde4f8ed
JK
666 return 0;
667 }
668
669 if (!file_is_auto_load_safe (library, _("auto-load: Loading libthread-db "
670 "library \"%s\" from explicit "
671 "directory.\n"),
672 library))
673 return 0;
674 }
675
17a37d48
PP
676 handle = dlopen (library, RTLD_NOW);
677 if (handle == NULL)
678 {
02d868e8 679 if (libthread_db_debug)
883ed13e 680 fprintf_unfiltered (gdb_stdlog, _("dlopen failed: %s.\n"), dlerror ());
17a37d48
PP
681 return 0;
682 }
683
02d868e8 684 if (libthread_db_debug && strchr (library, '/') == NULL)
17a37d48
PP
685 {
686 void *td_init;
687
688 td_init = dlsym (handle, "td_init");
689 if (td_init != NULL)
690 {
691 const char *const libpath = dladdr_to_soname (td_init);
692
693 if (libpath != NULL)
883ed13e 694 fprintf_unfiltered (gdb_stdlog, _("Host %s resolved to: %s.\n"),
17a37d48
PP
695 library, libpath);
696 }
697 }
698
d90e17a7
PA
699 info = add_thread_db_info (handle);
700
bf88dd68
JK
701 /* Do not save system library name, that one is always trusted. */
702 if (strchr (library, '/') != NULL)
14278e1f 703 info->filename = gdb_realpath (library).release ();
bf88dd68 704
d90e17a7 705 if (try_thread_db_load_1 (info))
17a37d48
PP
706 return 1;
707
708 /* This library "refused" to work on current inferior. */
dfd4cc63 709 delete_thread_db_info (ptid_get_pid (inferior_ptid));
17a37d48
PP
710 return 0;
711}
712
290351b8 713/* Subroutine of try_thread_db_load_from_pdir to simplify it.
e6712ff1
DE
714 Try loading libthread_db in directory(OBJ)/SUBDIR.
715 SUBDIR may be NULL. It may also be something like "../lib64".
290351b8
DE
716 The result is true for success. */
717
718static int
e6712ff1 719try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir)
290351b8 720{
4262abfb 721 const char *obj_name = objfile_name (obj);
290351b8 722
4262abfb 723 if (obj_name[0] != '/')
290351b8
DE
724 {
725 warning (_("Expected absolute pathname for libpthread in the"
4262abfb 726 " inferior, but got %s."), obj_name);
290351b8
DE
727 return 0;
728 }
05386e9e 729
9b292f68
TT
730 std::string path = obj_name;
731 size_t cp = path.rfind ('/');
05386e9e 732 /* This should at minimum hit the first character. */
9b292f68
TT
733 gdb_assert (cp != std::string::npos);
734 path.resize (cp + 1);
e6712ff1 735 if (subdir != NULL)
9b292f68
TT
736 path = path + subdir + "/";
737 path += LIBTHREAD_DB_SO;
bccbefd2 738
9b292f68 739 return try_thread_db_load (path.c_str (), 1);
290351b8
DE
740}
741
98a5dd13 742/* Handle $pdir in libthread-db-search-path.
e6712ff1
DE
743 Look for libthread_db in directory(libpthread)/SUBDIR.
744 SUBDIR may be NULL. It may also be something like "../lib64".
98a5dd13
DE
745 The result is true for success. */
746
747static int
e6712ff1 748try_thread_db_load_from_pdir (const char *subdir)
98a5dd13
DE
749{
750 struct objfile *obj;
751
bf88dd68
JK
752 if (!auto_load_thread_db)
753 return 0;
754
98a5dd13 755 ALL_OBJFILES (obj)
4262abfb 756 if (libpthread_name_p (objfile_name (obj)))
98a5dd13 757 {
e6712ff1 758 if (try_thread_db_load_from_pdir_1 (obj, subdir))
290351b8
DE
759 return 1;
760
761 /* We may have found the separate-debug-info version of
762 libpthread, and it may live in a directory without a matching
763 libthread_db. */
764 if (obj->separate_debug_objfile_backlink != NULL)
e6712ff1
DE
765 return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink,
766 subdir);
290351b8 767
98a5dd13
DE
768 return 0;
769 }
770
771 return 0;
772}
773
774/* Handle $sdir in libthread-db-search-path.
775 Look for libthread_db in the system dirs, or wherever a plain
776 dlopen(file_without_path) will look.
777 The result is true for success. */
778
779static int
780try_thread_db_load_from_sdir (void)
781{
fde4f8ed 782 return try_thread_db_load (LIBTHREAD_DB_SO, 0);
98a5dd13
DE
783}
784
785/* Try to load libthread_db from directory DIR of length DIR_LEN.
786 The result is true for success. */
787
788static int
789try_thread_db_load_from_dir (const char *dir, size_t dir_len)
790{
bf88dd68
JK
791 if (!auto_load_thread_db)
792 return 0;
793
9b292f68 794 std::string path = std::string (dir, dir_len) + "/" + LIBTHREAD_DB_SO;
bccbefd2 795
9b292f68 796 return try_thread_db_load (path.c_str (), 1);
98a5dd13
DE
797}
798
17a37d48 799/* Search libthread_db_search_path for libthread_db which "agrees"
98a5dd13
DE
800 to work on current inferior.
801 The result is true for success. */
17a37d48
PP
802
803static int
804thread_db_load_search (void)
805{
e80aaf61 806 int rc = 0;
17a37d48 807
e80aaf61
SM
808 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec
809 = dirnames_to_char_ptr_vec (libthread_db_search_path);
e6712ff1 810
e80aaf61 811 for (const gdb::unique_xmalloc_ptr<char> &this_dir_up : dir_vec)
17a37d48 812 {
e80aaf61 813 const char *this_dir = this_dir_up.get ();
e6712ff1 814 const int pdir_len = sizeof ("$pdir") - 1;
98a5dd13 815 size_t this_dir_len;
e0881a8e 816
e6712ff1 817 this_dir_len = strlen (this_dir);
17a37d48 818
e6712ff1
DE
819 if (strncmp (this_dir, "$pdir", pdir_len) == 0
820 && (this_dir[pdir_len] == '\0'
821 || this_dir[pdir_len] == '/'))
98a5dd13 822 {
9b292f68 823 const char *subdir = NULL;
e6712ff1 824
9b292f68 825 std::string subdir_holder;
e6712ff1 826 if (this_dir[pdir_len] == '/')
98a5dd13 827 {
9b292f68
TT
828 subdir_holder = std::string (this_dir + pdir_len + 1);
829 subdir = subdir_holder.c_str ();
98a5dd13 830 }
e6712ff1 831 rc = try_thread_db_load_from_pdir (subdir);
e6712ff1
DE
832 if (rc)
833 break;
17a37d48 834 }
e6712ff1 835 else if (strcmp (this_dir, "$sdir") == 0)
98a5dd13
DE
836 {
837 if (try_thread_db_load_from_sdir ())
838 {
839 rc = 1;
840 break;
841 }
842 }
843 else
17a37d48 844 {
98a5dd13
DE
845 if (try_thread_db_load_from_dir (this_dir, this_dir_len))
846 {
847 rc = 1;
848 break;
849 }
17a37d48
PP
850 }
851 }
98a5dd13
DE
852
853 if (libthread_db_debug)
883ed13e
PA
854 fprintf_unfiltered (gdb_stdlog,
855 _("thread_db_load_search returning %d\n"), rc);
17a37d48
PP
856 return rc;
857}
858
98a5dd13
DE
859/* Return non-zero if the inferior has a libpthread. */
860
861static int
862has_libpthread (void)
863{
864 struct objfile *obj;
865
866 ALL_OBJFILES (obj)
4262abfb 867 if (libpthread_name_p (objfile_name (obj)))
98a5dd13
DE
868 return 1;
869
870 return 0;
871}
872
17a37d48 873/* Attempt to load and initialize libthread_db.
1777feb0 874 Return 1 on success. */
17a37d48
PP
875
876static int
877thread_db_load (void)
878{
d90e17a7 879 struct thread_db_info *info;
17a37d48 880
dfd4cc63 881 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
d90e17a7
PA
882
883 if (info != NULL)
17a37d48
PP
884 return 1;
885
856d6f99
PA
886 /* Don't attempt to use thread_db on executables not running
887 yet. */
888 if (!target_has_registers)
17a37d48
PP
889 return 0;
890
891 /* Don't attempt to use thread_db for remote targets. */
856d6f99 892 if (!(target_can_run (&current_target) || core_bfd))
17a37d48
PP
893 return 0;
894
895 if (thread_db_load_search ())
896 return 1;
897
98a5dd13
DE
898 /* We couldn't find a libthread_db.
899 If the inferior has a libpthread warn the user. */
900 if (has_libpthread ())
901 {
902 warning (_("Unable to find libthread_db matching inferior's thread"
903 " library, thread debugging will not be available."));
904 return 0;
17a37d48 905 }
98a5dd13 906
17a37d48
PP
907 /* Either this executable isn't using libpthread at all, or it is
908 statically linked. Since we can't easily distinguish these two cases,
909 no warning is issued. */
910 return 0;
911}
912
fb0e1ba7
MK
913static void
914check_thread_signals (void)
915{
21bf60fe 916 if (!thread_signals)
fb0e1ba7
MK
917 {
918 sigset_t mask;
919 int i;
920
669211f5 921 lin_thread_get_thread_signals (&mask);
fb0e1ba7
MK
922 sigemptyset (&thread_stop_set);
923 sigemptyset (&thread_print_set);
924
b9569773 925 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
926 {
927 if (sigismember (&mask, i))
928 {
2ea28649 929 if (signal_stop_update (gdb_signal_from_host (i), 0))
fb0e1ba7 930 sigaddset (&thread_stop_set, i);
2ea28649 931 if (signal_print_update (gdb_signal_from_host (i), 0))
fb0e1ba7
MK
932 sigaddset (&thread_print_set, i);
933 thread_signals = 1;
934 }
935 }
936 }
fb0e1ba7
MK
937}
938
0ec9a092
DJ
939/* Check whether thread_db is usable. This function is called when
940 an inferior is created (or otherwise acquired, e.g. attached to)
941 and when new shared libraries are loaded into a running process. */
942
943void
944check_for_thread_db (void)
fb0e1ba7 945{
b5057acd 946 /* Do nothing if we couldn't load libthread_db.so.1. */
17a37d48 947 if (!thread_db_load ())
b5057acd 948 return;
0ec9a092
DJ
949}
950
0838fb57
DE
951/* This function is called via the new_objfile observer. */
952
0ec9a092
DJ
953static void
954thread_db_new_objfile (struct objfile *objfile)
955{
d90e17a7
PA
956 /* This observer must always be called with inferior_ptid set
957 correctly. */
958
0838fb57 959 if (objfile != NULL
fcb44371 960 /* libpthread with separate debug info has its debug info file already
7d0e21ad 961 loaded (and notified without successful thread_db initialization)
76727919 962 the time gdb::observers::new_objfile.notify is called for the library itself.
fcb44371
JK
963 Static executables have their separate debug info loaded already
964 before the inferior has started. */
965 && objfile->separate_debug_objfile_backlink == NULL
0838fb57
DE
966 /* Only check for thread_db if we loaded libpthread,
967 or if this is the main symbol file.
968 We need to check OBJF_MAINLINE to handle the case of debugging
969 a statically linked executable AND the symbol file is specified AFTER
970 the exec file is loaded (e.g., gdb -c core ; file foo).
971 For dynamically linked executables, libpthread can be near the end
972 of the list of shared libraries to load, and in an app of several
973 thousand shared libraries, this can otherwise be painful. */
974 && ((objfile->flags & OBJF_MAINLINE) != 0
4262abfb 975 || libpthread_name_p (objfile_name (objfile))))
0ec9a092 976 check_for_thread_db ();
fb0e1ba7
MK
977}
978
015de688
DC
979static void
980check_pid_namespace_match (void)
981{
982 /* Check is only relevant for local targets targets. */
983 if (target_can_run (&current_target))
984 {
985 /* If the child is in a different PID namespace, its idea of its
986 PID will differ from our idea of its PID. When we scan the
987 child's thread list, we'll mistakenly think it has no threads
988 since the thread PID fields won't match the PID we give to
989 libthread_db. */
9bc3a976 990 if (!linux_ns_same (ptid_get_pid (inferior_ptid), LINUX_NS_PID))
015de688
DC
991 {
992 warning (_ ("Target and debugger are in different PID "
993 "namespaces; thread lists and other data are "
708bf0a1
JK
994 "likely unreliable. "
995 "Connect to gdbserver inside the container."));
015de688 996 }
015de688
DC
997 }
998}
999
0838fb57
DE
1000/* This function is called via the inferior_created observer.
1001 This handles the case of debugging statically linked executables. */
1002
1003static void
1004thread_db_inferior_created (struct target_ops *target, int from_tty)
1005{
015de688 1006 check_pid_namespace_match ();
0838fb57
DE
1007 check_for_thread_db ();
1008}
1009
c1a747c1
PA
1010/* Update the thread's state (what's displayed in "info threads"),
1011 from libthread_db thread state information. */
1012
1013static void
7aabaf9d 1014update_thread_state (thread_db_thread_info *priv,
c1a747c1
PA
1015 const td_thrinfo_t *ti_p)
1016{
fe978cb0
PA
1017 priv->dying = (ti_p->ti_state == TD_THR_UNKNOWN
1018 || ti_p->ti_state == TD_THR_ZOMBIE);
c1a747c1
PA
1019}
1020
2db9a427 1021/* Record a new thread in GDB's thread list. Creates the thread's
be550b6e
DE
1022 private info. If TP is NULL or TP is marked as having exited,
1023 creates a new thread. Otherwise, uses TP. */
2db9a427 1024
be550b6e 1025static struct thread_info *
2db9a427
PA
1026record_thread (struct thread_db_info *info,
1027 struct thread_info *tp,
1028 ptid_t ptid, const td_thrhandle_t *th_p,
1029 const td_thrinfo_t *ti_p)
1030{
2db9a427
PA
1031 /* A thread ID of zero may mean the thread library has not
1032 initialized yet. Leave private == NULL until the thread library
1033 has initialized. */
1034 if (ti_p->ti_tid == 0)
be550b6e 1035 return tp;
2db9a427 1036
17faa917 1037 /* Construct the thread's private data. */
7aabaf9d 1038 thread_db_thread_info *priv = new thread_db_thread_info;
17faa917 1039
fe978cb0
PA
1040 priv->th = *th_p;
1041 priv->tid = ti_p->ti_tid;
1042 update_thread_state (priv, ti_p);
17faa917 1043
4eec2deb
PA
1044 /* Add the thread to GDB's thread list. If we already know about a
1045 thread with this PTID, but it's marked exited, then the kernel
1046 reused the tid of an old thread. */
1047 if (tp == NULL || tp->state == THREAD_EXITED)
fe978cb0 1048 tp = add_thread_with_info (ptid, priv);
17faa917 1049 else
7aabaf9d 1050 tp->priv.reset (priv);
5365276c 1051
2db9a427
PA
1052 if (target_has_execution)
1053 check_thread_signals ();
be550b6e
DE
1054
1055 return tp;
fb0e1ba7
MK
1056}
1057
fb0e1ba7 1058static void
6e1e1966 1059thread_db_detach (struct target_ops *ops, inferior *inf, int from_tty)
fb0e1ba7 1060{
117de6a9 1061 struct target_ops *target_beneath = find_target_beneath (ops);
c194fbe1 1062
bc09b0c1 1063 delete_thread_db_info (inf->pid);
4105de34 1064
6e1e1966 1065 target_beneath->to_detach (target_beneath, inf, from_tty);
d90e17a7
PA
1066
1067 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1068
1069 /* If there are no more processes using libpthread, detach the
1070 thread_db target ops. */
1071 if (!thread_db_list)
1072 unpush_target (&thread_db_ops);
fb0e1ba7
MK
1073}
1074
39f77062 1075static ptid_t
117de6a9 1076thread_db_wait (struct target_ops *ops,
47608cb1
PA
1077 ptid_t ptid, struct target_waitstatus *ourstatus,
1078 int options)
fb0e1ba7 1079{
d90e17a7 1080 struct thread_db_info *info;
117de6a9
PA
1081 struct target_ops *beneath = find_target_beneath (ops);
1082
47608cb1 1083 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
fb0e1ba7 1084
aa01bd36
PA
1085 switch (ourstatus->kind)
1086 {
1087 case TARGET_WAITKIND_IGNORE:
1088 case TARGET_WAITKIND_EXITED:
1089 case TARGET_WAITKIND_THREAD_EXITED:
1090 case TARGET_WAITKIND_SIGNALLED:
1091 return ptid;
1092 }
fb0e1ba7 1093
dfd4cc63 1094 info = get_thread_db_info (ptid_get_pid (ptid));
d90e17a7
PA
1095
1096 /* If this process isn't using thread_db, we're done. */
1097 if (info == NULL)
1098 return ptid;
1099
3f64f7b1
DJ
1100 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1101 {
d90e17a7
PA
1102 /* New image, it may or may not end up using thread_db. Assume
1103 not unless we find otherwise. */
dfd4cc63 1104 delete_thread_db_info (ptid_get_pid (ptid));
d90e17a7
PA
1105 if (!thread_db_list)
1106 unpush_target (&thread_db_ops);
3f64f7b1 1107
49fd4a42 1108 return ptid;
3f64f7b1
DJ
1109 }
1110
2db9a427
PA
1111 /* Fill in the thread's user-level thread id and status. */
1112 thread_from_lwp (ptid);
fb0e1ba7 1113
b9b5d7ea 1114 return ptid;
fb0e1ba7
MK
1115}
1116
fb0e1ba7 1117static void
136d6dae 1118thread_db_mourn_inferior (struct target_ops *ops)
fb0e1ba7 1119{
117de6a9
PA
1120 struct target_ops *target_beneath = find_target_beneath (ops);
1121
dfd4cc63 1122 delete_thread_db_info (ptid_get_pid (inferior_ptid));
fb0e1ba7 1123
d90e17a7
PA
1124 target_beneath->to_mourn_inferior (target_beneath);
1125
b26a6851 1126 /* Detach thread_db target ops. */
d90e17a7
PA
1127 if (!thread_db_list)
1128 unpush_target (ops);
fb0e1ba7
MK
1129}
1130
02c6c942
PP
1131struct callback_data
1132{
1133 struct thread_db_info *info;
1134 int new_threads;
1135};
1136
fb0e1ba7
MK
1137static int
1138find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1139{
1140 td_thrinfo_t ti;
1141 td_err_e err;
39f77062 1142 ptid_t ptid;
403fe197 1143 struct thread_info *tp;
9a3c8263 1144 struct callback_data *cb_data = (struct callback_data *) data;
02c6c942 1145 struct thread_db_info *info = cb_data->info;
fb0e1ba7 1146
d90e17a7 1147 err = info->td_thr_get_info_p (th_p, &ti);
fb0e1ba7 1148 if (err != TD_OK)
8a3fe4f8 1149 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 1150 thread_db_err_str (err));
fb0e1ba7 1151
a33e3959
PA
1152 if (ti.ti_lid == -1)
1153 {
1154 /* A thread with kernel thread ID -1 is either a thread that
1155 exited and was joined, or a thread that is being created but
1156 hasn't started yet, and that is reusing the tcb/stack of a
1157 thread that previously exited and was joined. (glibc marks
1158 terminated and joined threads with kernel thread ID -1. See
1159 glibc PR17707. */
d6c146e9
PA
1160 if (libthread_db_debug)
1161 fprintf_unfiltered (gdb_stdlog,
1162 "thread_db: skipping exited and "
d41401ac
DE
1163 "joined thread (0x%lx)\n",
1164 (unsigned long) ti.ti_tid);
a33e3959
PA
1165 return 0;
1166 }
1167
254f582e 1168 if (ti.ti_tid == 0)
4105de34
DJ
1169 {
1170 /* A thread ID of zero means that this is the main thread, but
1171 glibc has not yet initialized thread-local storage and the
1172 pthread library. We do not know what the thread's TID will
c2c2a31f 1173 be yet. */
4105de34 1174
4d062f1a
PA
1175 /* In that case, we're not stopped in a fork syscall and don't
1176 need this glibc bug workaround. */
1177 info->need_stale_parent_threads_check = 0;
1178
4105de34
DJ
1179 return 0;
1180 }
1181
4d062f1a
PA
1182 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1183 bit expensive, as it needs to open /proc/pid/status, so try to
1184 avoid doing the work if we know we don't have to. */
1185 if (info->need_stale_parent_threads_check)
1186 {
1187 int tgid = linux_proc_get_tgid (ti.ti_lid);
e0881a8e 1188
4d062f1a
PA
1189 if (tgid != -1 && tgid != info->pid)
1190 return 0;
1191 }
1192
1193 ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 1194 tp = find_thread_ptid (ptid);
fe978cb0 1195 if (tp == NULL || tp->priv == NULL)
60269a4a 1196 record_thread (info, tp, ptid, th_p, &ti);
fb0e1ba7
MK
1197
1198 return 0;
1199}
1200
02c6c942
PP
1201/* Helper for thread_db_find_new_threads_2.
1202 Returns number of new threads found. */
1203
1204static int
1205find_new_threads_once (struct thread_db_info *info, int iteration,
fb169834 1206 td_err_e *errp)
02c6c942 1207{
02c6c942 1208 struct callback_data data;
fb169834 1209 td_err_e err = TD_ERR;
02c6c942
PP
1210
1211 data.info = info;
1212 data.new_threads = 0;
1213
2db9a427 1214 /* See comment in thread_db_update_thread_list. */
1eb2dbb8 1215 gdb_assert (info->td_ta_thr_iter_p != NULL);
2db9a427 1216
492d29ea 1217 TRY
02c6c942
PP
1218 {
1219 /* Iterate over all user-space threads to discover new threads. */
1220 err = info->td_ta_thr_iter_p (info->thread_agent,
1221 find_new_threads_callback,
1222 &data,
1223 TD_THR_ANY_STATE,
1224 TD_THR_LOWEST_PRIORITY,
1225 TD_SIGNO_MASK,
1226 TD_THR_ANY_USER_FLAGS);
1227 }
6c63c96a 1228 CATCH (except, RETURN_MASK_ERROR)
02c6c942 1229 {
6c63c96a 1230 if (libthread_db_debug)
492d29ea
PA
1231 {
1232 exception_fprintf (gdb_stdlog, except,
1233 "Warning: find_new_threads_once: ");
1234 }
6c63c96a
PA
1235 }
1236 END_CATCH
02c6c942 1237
6c63c96a
PA
1238 if (libthread_db_debug)
1239 {
883ed13e
PA
1240 fprintf_unfiltered (gdb_stdlog,
1241 _("Found %d new threads in iteration %d.\n"),
1242 data.new_threads, iteration);
02c6c942
PP
1243 }
1244
1245 if (errp != NULL)
1246 *errp = err;
1247
1248 return data.new_threads;
1249}
1250
4c28f408 1251/* Search for new threads, accessing memory through stopped thread
02c6c942
PP
1252 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1253 searches in a row do not discover any new threads. */
4c28f408 1254
fb0e1ba7 1255static void
02c6c942 1256thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
fb0e1ba7 1257{
fcb44371 1258 td_err_e err = TD_OK;
d90e17a7 1259 struct thread_db_info *info;
02c6c942 1260 int i, loop;
4c28f408 1261
dfd4cc63 1262 info = get_thread_db_info (ptid_get_pid (ptid));
d90e17a7 1263
4c28f408 1264 /* Access an lwp we know is stopped. */
d90e17a7 1265 info->proc_handle.ptid = ptid;
02c6c942
PP
1266
1267 if (until_no_new)
1268 {
1269 /* Require 4 successive iterations which do not find any new threads.
1270 The 4 is a heuristic: there is an inherent race here, and I have
1271 seen that 2 iterations in a row are not always sufficient to
1272 "capture" all threads. */
fcb44371
JK
1273 for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop)
1274 if (find_new_threads_once (info, i, &err) != 0)
1275 {
1276 /* Found some new threads. Restart the loop from beginning. */
1277 loop = -1;
1278 }
02c6c942
PP
1279 }
1280 else
fcb44371
JK
1281 find_new_threads_once (info, 0, &err);
1282
1283 if (err != TD_OK)
1284 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
fb0e1ba7
MK
1285}
1286
02c6c942
PP
1287static void
1288thread_db_find_new_threads_1 (ptid_t ptid)
1289{
1290 thread_db_find_new_threads_2 (ptid, 0);
1291}
1292
a6904d5a
PA
1293/* Implement the to_update_thread_list target method for this
1294 target. */
2db9a427 1295
28439f5e 1296static void
a6904d5a 1297thread_db_update_thread_list (struct target_ops *ops)
28439f5e 1298{
d90e17a7 1299 struct thread_db_info *info;
c65b3e0d 1300 struct inferior *inf;
d90e17a7 1301
e8032dde
PA
1302 prune_threads ();
1303
c65b3e0d
PA
1304 ALL_INFERIORS (inf)
1305 {
1306 struct thread_info *thread;
d90e17a7 1307
c65b3e0d
PA
1308 if (inf->pid == 0)
1309 continue;
d90e17a7 1310
c65b3e0d
PA
1311 info = get_thread_db_info (inf->pid);
1312 if (info == NULL)
1313 continue;
1314
1315 thread = any_live_thread_of_process (inf->pid);
1316 if (thread == NULL || thread->executing)
1317 continue;
1318
a6904d5a
PA
1319 /* It's best to avoid td_ta_thr_iter if possible. That walks
1320 data structures in the inferior's address space that may be
1321 corrupted, or, if the target is running, the list may change
1322 while we walk it. In the latter case, it's possible that a
1323 thread exits just at the exact time that causes GDB to get
1324 stuck in an infinite loop. To avoid pausing all threads
1325 whenever the core wants to refresh the thread list, we
1326 instead use thread_from_lwp immediately when we see an LWP
1327 stop. That uses thread_db entry points that do not walk
1328 libpthread's thread list, so should be safe, as well as more
1329 efficient. */
1330 if (target_has_execution_1 (thread->ptid))
1331 continue;
1332
c65b3e0d
PA
1333 thread_db_find_new_threads_1 (thread->ptid);
1334 }
2db9a427 1335
a6904d5a
PA
1336 /* Give the beneath target a chance to do extra processing. */
1337 ops->beneath->to_update_thread_list (ops->beneath);
28439f5e
PA
1338}
1339
7a114964 1340static const char *
117de6a9 1341thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
fb0e1ba7 1342{
e09875d4 1343 struct thread_info *thread_info = find_thread_ptid (ptid);
117de6a9 1344 struct target_ops *beneath;
17faa917 1345
fe978cb0 1346 if (thread_info != NULL && thread_info->priv != NULL)
fb0e1ba7
MK
1347 {
1348 static char buf[64];
7aabaf9d 1349 thread_db_thread_info *priv = get_thread_db_thread_info (thread_info);
fb0e1ba7 1350
17faa917 1351 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
7aabaf9d 1352 (unsigned long) priv->tid, ptid_get_lwp (ptid));
fb0e1ba7
MK
1353
1354 return buf;
1355 }
1356
117de6a9 1357 beneath = find_target_beneath (ops);
e75fdfca 1358 return beneath->to_pid_to_str (beneath, ptid);
fb0e1ba7
MK
1359}
1360
28b17333
DJ
1361/* Return a string describing the state of the thread specified by
1362 INFO. */
1363
7a114964 1364static const char *
c15906d8
TT
1365thread_db_extra_thread_info (struct target_ops *self,
1366 struct thread_info *info)
28b17333 1367{
fe978cb0 1368 if (info->priv == NULL)
17faa917
DJ
1369 return NULL;
1370
7aabaf9d
SM
1371 thread_db_thread_info *priv = get_thread_db_thread_info (info);
1372
1373 if (priv->dying)
28b17333
DJ
1374 return "Exiting";
1375
1376 return NULL;
1377}
1378
e04ee09e
KB
1379/* Return pointer to the thread_info struct which corresponds to
1380 THREAD_HANDLE (having length HANDLE_LEN). */
1381
1382static struct thread_info *
1383thread_db_thread_handle_to_thread_info (struct target_ops *ops,
1384 const gdb_byte *thread_handle,
1385 int handle_len,
1386 struct inferior *inf)
1387{
1388 struct thread_info *tp;
1389 thread_t handle_tid;
1390
1391 /* Thread handle sizes must match in order to proceed. We don't use an
1392 assert here because the resulting internal error will cause GDB to
1393 exit. This isn't necessarily an internal error due to the possibility
1394 of garbage being passed as the thread handle via the python interface. */
1395 if (handle_len != sizeof (handle_tid))
1396 error (_("Thread handle size mismatch: %d vs %zu (from libthread_db)"),
1397 handle_len, sizeof (handle_tid));
1398
1399 handle_tid = * (const thread_t *) thread_handle;
1400
1401 ALL_NON_EXITED_THREADS (tp)
1402 {
7aabaf9d
SM
1403 thread_db_thread_info *priv = get_thread_db_thread_info (tp);
1404
1405 if (tp->inf == inf && priv != NULL && handle_tid == priv->tid)
e04ee09e
KB
1406 return tp;
1407 }
1408
1409 return NULL;
1410}
1411
b2756930
KB
1412/* Get the address of the thread local variable in load module LM which
1413 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c
EZ
1414
1415static CORE_ADDR
117de6a9
PA
1416thread_db_get_thread_local_address (struct target_ops *ops,
1417 ptid_t ptid,
b2756930 1418 CORE_ADDR lm,
b4acd559 1419 CORE_ADDR offset)
3f47be5c 1420{
17faa917 1421 struct thread_info *thread_info;
117de6a9 1422 struct target_ops *beneath;
17faa917 1423
17faa917 1424 /* Find the matching thread. */
e09875d4 1425 thread_info = find_thread_ptid (ptid);
4105de34 1426
e0fd7c47
UW
1427 /* We may not have discovered the thread yet. */
1428 if (thread_info != NULL && thread_info->priv == NULL)
be550b6e 1429 thread_info = thread_from_lwp (ptid);
e0fd7c47 1430
fe978cb0 1431 if (thread_info != NULL && thread_info->priv != NULL)
3f47be5c 1432 {
3f47be5c 1433 td_err_e err;
00f515da 1434 psaddr_t address;
7aabaf9d
SM
1435 thread_db_info *info = get_thread_db_info (ptid_get_pid (ptid));
1436 thread_db_thread_info *priv = get_thread_db_thread_info (thread_info);
3f47be5c 1437
3f47be5c 1438 /* Finally, get the address of the variable. */
5876f503
JK
1439 if (lm != 0)
1440 {
1441 /* glibc doesn't provide the needed interface. */
1442 if (!info->td_thr_tls_get_addr_p)
1443 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1444 _("No TLS library support"));
1445
1446 /* Note the cast through uintptr_t: this interface only works if
1447 a target address fits in a psaddr_t, which is a host pointer.
1448 So a 32-bit debugger can not access 64-bit TLS through this. */
7aabaf9d 1449 err = info->td_thr_tls_get_addr_p (&priv->th,
5876f503
JK
1450 (psaddr_t)(uintptr_t) lm,
1451 offset, &address);
1452 }
1453 else
1454 {
1455 /* If glibc doesn't provide the needed interface throw an error
1456 that LM is zero - normally cases it should not be. */
1457 if (!info->td_thr_tlsbase_p)
1458 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1459 _("TLS load module not found"));
1460
1461 /* This code path handles the case of -static -pthread executables:
1462 https://sourceware.org/ml/libc-help/2014-03/msg00024.html
1463 For older GNU libc r_debug.r_map is NULL. For GNU libc after
1464 PR libc/16831 due to GDB PR threads/16954 LOAD_MODULE is also NULL.
1465 The constant number 1 depends on GNU __libc_setup_tls
1466 initialization of l_tls_modid to 1. */
7aabaf9d 1467 err = info->td_thr_tlsbase_p (&priv->th, 1, &address);
5876f503
JK
1468 address = (char *) address + offset;
1469 }
3f47be5c
EZ
1470
1471#ifdef THREAD_DB_HAS_TD_NOTALLOC
1472 /* The memory hasn't been allocated, yet. */
1473 if (err == TD_NOTALLOC)
b4acd559
JJ
1474 /* Now, if libthread_db provided the initialization image's
1475 address, we *could* try to build a non-lvalue value from
1476 the initialization image. */
109c3e39
AC
1477 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1478 _("TLS not allocated yet"));
3f47be5c
EZ
1479#endif
1480
1481 /* Something else went wrong. */
1482 if (err != TD_OK)
109c3e39
AC
1483 throw_error (TLS_GENERIC_ERROR,
1484 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1485
1486 /* Cast assuming host == target. Joy. */
16451949
AS
1487 /* Do proper sign extension for the target. */
1488 gdb_assert (exec_bfd);
1489 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1490 ? (CORE_ADDR) (intptr_t) address
1491 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1492 }
1493
117de6a9 1494 beneath = find_target_beneath (ops);
f0f9ff95 1495 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
3f47be5c
EZ
1496}
1497
0ef643c8
JB
1498/* Implement the to_get_ada_task_ptid target method for this target. */
1499
1500static ptid_t
1e6b91a4 1501thread_db_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
0ef643c8 1502{
2db9a427
PA
1503 /* NPTL uses a 1:1 model, so the LWP id suffices. */
1504 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
0ef643c8
JB
1505}
1506
4d062f1a
PA
1507static void
1508thread_db_resume (struct target_ops *ops,
2ea28649 1509 ptid_t ptid, int step, enum gdb_signal signo)
4d062f1a
PA
1510{
1511 struct target_ops *beneath = find_target_beneath (ops);
1512 struct thread_db_info *info;
1513
1514 if (ptid_equal (ptid, minus_one_ptid))
dfd4cc63 1515 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
4d062f1a 1516 else
dfd4cc63 1517 info = get_thread_db_info (ptid_get_pid (ptid));
4d062f1a
PA
1518
1519 /* This workaround is only needed for child fork lwps stopped in a
1520 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1521 workaround can be disabled. */
1522 if (info)
1523 info->need_stale_parent_threads_check = 0;
1524
1525 beneath->to_resume (beneath, ptid, step, signo);
1526}
1527
9b292f68 1528/* std::sort helper function for info_auto_load_libthread_db, sort the
bf88dd68
JK
1529 thread_db_info pointers primarily by their FILENAME and secondarily by their
1530 PID, both in ascending order. */
1531
9b292f68
TT
1532static bool
1533info_auto_load_libthread_db_compare (const struct thread_db_info *a,
1534 const struct thread_db_info *b)
bf88dd68 1535{
bf88dd68
JK
1536 int retval;
1537
1538 retval = strcmp (a->filename, b->filename);
1539 if (retval)
9b292f68 1540 return retval < 0;
bf88dd68 1541
9b292f68 1542 return a->pid < b->pid;
bf88dd68
JK
1543}
1544
1545/* Implement 'info auto-load libthread-db'. */
1546
1547static void
5fed81ff 1548info_auto_load_libthread_db (const char *args, int from_tty)
bf88dd68
JK
1549{
1550 struct ui_out *uiout = current_uiout;
1551 const char *cs = args ? args : "";
9b292f68
TT
1552 struct thread_db_info *info;
1553 unsigned unique_filenames;
1554 size_t max_filename_len, pids_len;
bf88dd68
JK
1555 int i;
1556
f1735a53 1557 cs = skip_spaces (cs);
bf88dd68
JK
1558 if (*cs)
1559 error (_("'info auto-load libthread-db' does not accept any parameters"));
1560
9b292f68 1561 std::vector<struct thread_db_info *> array;
bf88dd68
JK
1562 for (info = thread_db_list; info; info = info->next)
1563 if (info->filename != NULL)
9b292f68 1564 array.push_back (info);
bf88dd68
JK
1565
1566 /* Sort ARRAY by filenames and PIDs. */
9b292f68
TT
1567 std::sort (array.begin (), array.end (),
1568 info_auto_load_libthread_db_compare);
bf88dd68
JK
1569
1570 /* Calculate the number of unique filenames (rows) and the maximum string
1571 length of PIDs list for the unique filenames (columns). */
1572
1573 unique_filenames = 0;
1574 max_filename_len = 0;
bf88dd68 1575 pids_len = 0;
9b292f68 1576 for (i = 0; i < array.size (); i++)
bf88dd68
JK
1577 {
1578 int pid = array[i]->pid;
1579 size_t this_pid_len;
1580
1581 for (this_pid_len = 0; pid != 0; pid /= 10)
1582 this_pid_len++;
1583
1584 if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0)
1585 {
1586 unique_filenames++;
325fac50
PA
1587 max_filename_len = std::max (max_filename_len,
1588 strlen (array[i]->filename));
bf88dd68
JK
1589
1590 if (i > 0)
9b292f68 1591 pids_len -= strlen (", ");
bf88dd68
JK
1592 pids_len = 0;
1593 }
1594 pids_len += this_pid_len + strlen (", ");
1595 }
1596 if (i)
9b292f68 1597 pids_len -= strlen (", ");
bf88dd68
JK
1598
1599 /* Table header shifted right by preceding "libthread-db: " would not match
1600 its columns. */
9b292f68 1601 if (array.size () > 0 && args == auto_load_info_scripts_pattern_nl)
112e8700 1602 uiout->text ("\n");
bf88dd68 1603
4a2b031d
TT
1604 {
1605 ui_out_emit_table table_emitter (uiout, 2, unique_filenames,
1606 "LinuxThreadDbTable");
bf88dd68 1607
4a2b031d
TT
1608 uiout->table_header (max_filename_len, ui_left, "filename", "Filename");
1609 uiout->table_header (pids_len, ui_left, "PIDs", "Pids");
1610 uiout->table_body ();
bf88dd68 1611
4a2b031d 1612 /* Note I is incremented inside the cycle, not at its end. */
9b292f68 1613 for (i = 0; i < array.size ();)
4a2b031d
TT
1614 {
1615 ui_out_emit_tuple tuple_emitter (uiout, NULL);
bf88dd68 1616
4a2b031d
TT
1617 info = array[i];
1618 uiout->field_string ("filename", info->filename);
bf88dd68 1619
9b292f68
TT
1620 std::string pids;
1621 while (i < array.size () && strcmp (info->filename,
1622 array[i]->filename) == 0)
4a2b031d 1623 {
9b292f68
TT
1624 if (!pids.empty ())
1625 pids += ", ";
1626 string_appendf (pids, "%u", array[i]->pid);
4a2b031d
TT
1627 i++;
1628 }
bf88dd68 1629
9b292f68 1630 uiout->field_string ("pids", pids.c_str ());
bf88dd68 1631
4a2b031d
TT
1632 uiout->text ("\n");
1633 }
1634 }
bf88dd68 1635
9b292f68 1636 if (array.empty ())
112e8700 1637 uiout->message (_("No auto-loaded libthread-db.\n"));
bf88dd68
JK
1638}
1639
fb0e1ba7
MK
1640static void
1641init_thread_db_ops (void)
1642{
1643 thread_db_ops.to_shortname = "multi-thread";
1644 thread_db_ops.to_longname = "multi-threaded child process.";
1645 thread_db_ops.to_doc = "Threads and pthreads support.";
1646 thread_db_ops.to_detach = thread_db_detach;
fb0e1ba7 1647 thread_db_ops.to_wait = thread_db_wait;
4d062f1a 1648 thread_db_ops.to_resume = thread_db_resume;
fb0e1ba7 1649 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
e8032dde 1650 thread_db_ops.to_update_thread_list = thread_db_update_thread_list;
fb0e1ba7
MK
1651 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1652 thread_db_ops.to_stratum = thread_stratum;
1653 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1654 thread_db_ops.to_get_thread_local_address
1655 = thread_db_get_thread_local_address;
28b17333 1656 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
0ef643c8 1657 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
e04ee09e 1658 thread_db_ops.to_thread_handle_to_thread_info = thread_db_thread_handle_to_thread_info;
fb0e1ba7 1659 thread_db_ops.to_magic = OPS_MAGIC;
c22a2b88
TT
1660
1661 complete_target_initialization (&thread_db_ops);
fb0e1ba7
MK
1662}
1663
1664void
1665_initialize_thread_db (void)
1666{
17a37d48 1667 init_thread_db_ops ();
17a37d48
PP
1668
1669 /* Defer loading of libthread_db.so until inferior is running.
1670 This allows gdb to load correct libthread_db for a given
4a6ed09b
PA
1671 executable -- there could be multiple versions of glibc,
1672 and until there is a running inferior, we can't tell which
1673 libthread_db is the correct one to load. */
17a37d48
PP
1674
1675 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
1676
1677 add_setshow_optional_filename_cmd ("libthread-db-search-path",
1678 class_support,
1679 &libthread_db_search_path, _("\
1680Set search path for libthread_db."), _("\
1681Show the current search path or libthread_db."), _("\
1682This path is used to search for libthread_db to be loaded into \
84e578fb
DE
1683gdb itself.\n\
1684Its value is a colon (':') separate list of directories to search.\n\
1685Setting the search path to an empty list resets it to its default value."),
1686 set_libthread_db_search_path,
17a37d48
PP
1687 NULL,
1688 &setlist, &showlist);
02d868e8 1689
ccce17b0
YQ
1690 add_setshow_zuinteger_cmd ("libthread-db", class_maintenance,
1691 &libthread_db_debug, _("\
02d868e8
PP
1692Set libthread-db debugging."), _("\
1693Show libthread-db debugging."), _("\
1694When non-zero, libthread-db debugging is enabled."),
ccce17b0
YQ
1695 NULL,
1696 show_libthread_db_debug,
1697 &setdebuglist, &showdebuglist);
02d868e8 1698
bf88dd68
JK
1699 add_setshow_boolean_cmd ("libthread-db", class_support,
1700 &auto_load_thread_db, _("\
1701Enable or disable auto-loading of inferior specific libthread_db."), _("\
1702Show whether auto-loading inferior specific libthread_db is enabled."), _("\
1703If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\
1704locations to load libthread_db compatible with the inferior.\n\
1705Standard system libthread_db still gets loaded even with this option off.\n\
1706This options has security implications for untrusted inferiors."),
1707 NULL, show_auto_load_thread_db,
1708 auto_load_set_cmdlist_get (),
1709 auto_load_show_cmdlist_get ());
1710
1711 add_cmd ("libthread-db", class_info, info_auto_load_libthread_db,
1712 _("Print the list of loaded inferior specific libthread_db.\n\
1713Usage: info auto-load libthread-db"),
1714 auto_load_info_cmdlist_get ());
1715
17a37d48 1716 /* Add ourselves to objfile event chain. */
76727919 1717 gdb::observers::new_objfile.attach (thread_db_new_objfile);
0838fb57
DE
1718
1719 /* Add ourselves to inferior_created event chain.
1720 This is needed to handle debugging statically linked programs where
1721 the new_objfile observer won't get called for libpthread. */
76727919 1722 gdb::observers::inferior_created.attach (thread_db_inferior_created);
fb0e1ba7 1723}
This page took 1.789423 seconds and 4 git commands to generate.