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