libthread_db: debug output should go to gdb_stdlog
[deliverable/binutils-gdb.git] / gdb / linux-thread-db.c
1 /* libthread_db assisted debugging support, generic parts.
2
3 Copyright (C) 1999-2015 Free Software Foundation, Inc.
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
9 the Free Software Foundation; either version 3 of the License, or
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
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include <dlfcn.h>
22 #include "gdb_proc_service.h"
23 #include "nat/gdb_thread_db.h"
24 #include "gdb_vecs.h"
25 #include "bfd.h"
26 #include "command.h"
27 #include "gdbcmd.h"
28 #include "gdbthread.h"
29 #include "inferior.h"
30 #include "infrun.h"
31 #include "symfile.h"
32 #include "objfiles.h"
33 #include "target.h"
34 #include "regcache.h"
35 #include "solib.h"
36 #include "solib-svr4.h"
37 #include "gdbcore.h"
38 #include "observer.h"
39 #include "linux-nat.h"
40 #include "nat/linux-procfs.h"
41 #include "nat/linux-osdata.h"
42 #include "auto-load.h"
43 #include "cli/cli-utils.h"
44
45 #include <signal.h>
46 #include <ctype.h>
47
48 /* GNU/Linux libthread_db support.
49
50 libthread_db is a library, provided along with libpthread.so, which
51 exposes the internals of the thread library to a debugger. It
52 allows GDB to find existing threads, new threads as they are
53 created, thread IDs (usually, the result of pthread_self), and
54 thread-local variables.
55
56 The libthread_db interface originates on Solaris, where it is
57 both more powerful and more complicated. This implementation
58 only works for LinuxThreads and NPTL, the two glibc threading
59 libraries. It assumes that each thread is permanently assigned
60 to a single light-weight process (LWP).
61
62 libthread_db-specific information is stored in the "private" field
63 of struct thread_info. When the field is NULL we do not yet have
64 information about the new thread; this could be temporary (created,
65 but the thread library's data structures do not reflect it yet)
66 or permanent (created using clone instead of pthread_create).
67
68 Process IDs managed by linux-thread-db.c match those used by
69 linux-nat.c: a common PID for all processes, an LWP ID for each
70 thread, and no TID. We save the TID in private. Keeping it out
71 of the ptid_t prevents thread IDs changing when libpthread is
72 loaded or unloaded. */
73
74 static char *libthread_db_search_path;
75
76 /* Set to non-zero if thread_db auto-loading is enabled
77 by the "set auto-load libthread-db" command. */
78 static int auto_load_thread_db = 1;
79
80 /* "show" command for the auto_load_thread_db configuration variable. */
81
82 static void
83 show_auto_load_thread_db (struct ui_file *file, int from_tty,
84 struct cmd_list_element *c, const char *value)
85 {
86 fprintf_filtered (file, _("Auto-loading of inferior specific libthread_db "
87 "is %s.\n"),
88 value);
89 }
90
91 static void
92 set_libthread_db_search_path (char *ignored, int from_tty,
93 struct cmd_list_element *c)
94 {
95 if (*libthread_db_search_path == '\0')
96 {
97 xfree (libthread_db_search_path);
98 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
99 }
100 }
101
102 /* If non-zero, print details of libthread_db processing. */
103
104 static unsigned int libthread_db_debug;
105
106 static void
107 show_libthread_db_debug (struct ui_file *file, int from_tty,
108 struct cmd_list_element *c, const char *value)
109 {
110 fprintf_filtered (file, _("libthread-db debugging is %s.\n"), value);
111 }
112
113 /* If we're running on GNU/Linux, we must explicitly attach to any new
114 threads. */
115
116 /* This module's target vector. */
117 static struct target_ops thread_db_ops;
118
119 /* Non-zero if we have determined the signals used by the threads
120 library. */
121 static int thread_signals;
122 static sigset_t thread_stop_set;
123 static sigset_t thread_print_set;
124
125 struct thread_db_info
126 {
127 struct thread_db_info *next;
128
129 /* Process id this object refers to. */
130 int pid;
131
132 /* Handle from dlopen for libthread_db.so. */
133 void *handle;
134
135 /* Absolute pathname from gdb_realpath to disk file used for dlopen-ing
136 HANDLE. It may be NULL for system library. */
137 char *filename;
138
139 /* Structure that identifies the child process for the
140 <proc_service.h> interface. */
141 struct ps_prochandle proc_handle;
142
143 /* Connection to the libthread_db library. */
144 td_thragent_t *thread_agent;
145
146 /* True if we need to apply the workaround for glibc/BZ5983. When
147 we catch a PTRACE_O_TRACEFORK, and go query the child's thread
148 list, nptl_db returns the parent's threads in addition to the new
149 (single) child thread. If this flag is set, we do extra work to
150 be able to ignore such stale entries. */
151 int need_stale_parent_threads_check;
152
153 /* Location of the thread creation event breakpoint. The code at
154 this location in the child process will be called by the pthread
155 library whenever a new thread is created. By setting a special
156 breakpoint at this location, GDB can detect when a new thread is
157 created. We obtain this location via the td_ta_event_addr
158 call. */
159 CORE_ADDR td_create_bp_addr;
160
161 /* Location of the thread death event breakpoint. */
162 CORE_ADDR td_death_bp_addr;
163
164 /* Pointers to the libthread_db functions. */
165
166 td_err_e (*td_init_p) (void);
167
168 td_err_e (*td_ta_new_p) (struct ps_prochandle * ps,
169 td_thragent_t **ta);
170 td_err_e (*td_ta_map_id2thr_p) (const td_thragent_t *ta, thread_t pt,
171 td_thrhandle_t *__th);
172 td_err_e (*td_ta_map_lwp2thr_p) (const td_thragent_t *ta,
173 lwpid_t lwpid, td_thrhandle_t *th);
174 td_err_e (*td_ta_thr_iter_p) (const td_thragent_t *ta,
175 td_thr_iter_f *callback, void *cbdata_p,
176 td_thr_state_e state, int ti_pri,
177 sigset_t *ti_sigmask_p,
178 unsigned int ti_user_flags);
179 td_err_e (*td_ta_event_addr_p) (const td_thragent_t *ta,
180 td_event_e event, td_notify_t *ptr);
181 td_err_e (*td_ta_set_event_p) (const td_thragent_t *ta,
182 td_thr_events_t *event);
183 td_err_e (*td_ta_clear_event_p) (const td_thragent_t *ta,
184 td_thr_events_t *event);
185 td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
186 td_event_msg_t *msg);
187
188 td_err_e (*td_thr_validate_p) (const td_thrhandle_t *th);
189 td_err_e (*td_thr_get_info_p) (const td_thrhandle_t *th,
190 td_thrinfo_t *infop);
191 td_err_e (*td_thr_event_enable_p) (const td_thrhandle_t *th,
192 int event);
193
194 td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
195 psaddr_t map_address,
196 size_t offset, psaddr_t *address);
197 td_err_e (*td_thr_tlsbase_p) (const td_thrhandle_t *th,
198 unsigned long int modid,
199 psaddr_t *base);
200 };
201
202 /* List of known processes using thread_db, and the required
203 bookkeeping. */
204 struct thread_db_info *thread_db_list;
205
206 static void thread_db_find_new_threads_1 (ptid_t ptid);
207 static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
208
209 /* Add the current inferior to the list of processes using libpthread.
210 Return a pointer to the newly allocated object that was added to
211 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
212 LIBTHREAD_DB_SO. */
213
214 static struct thread_db_info *
215 add_thread_db_info (void *handle)
216 {
217 struct thread_db_info *info;
218
219 info = xcalloc (1, sizeof (*info));
220 info->pid = ptid_get_pid (inferior_ptid);
221 info->handle = handle;
222
223 /* The workaround works by reading from /proc/pid/status, so it is
224 disabled for core files. */
225 if (target_has_execution)
226 info->need_stale_parent_threads_check = 1;
227
228 info->next = thread_db_list;
229 thread_db_list = info;
230
231 return info;
232 }
233
234 /* Return the thread_db_info object representing the bookkeeping
235 related to process PID, if any; NULL otherwise. */
236
237 static struct thread_db_info *
238 get_thread_db_info (int pid)
239 {
240 struct thread_db_info *info;
241
242 for (info = thread_db_list; info; info = info->next)
243 if (pid == info->pid)
244 return info;
245
246 return NULL;
247 }
248
249 /* When PID has exited or has been detached, we no longer want to keep
250 track of it as using libpthread. Call this function to discard
251 thread_db related info related to PID. Note that this closes
252 LIBTHREAD_DB_SO's dlopen'ed handle. */
253
254 static void
255 delete_thread_db_info (int pid)
256 {
257 struct thread_db_info *info, *info_prev;
258
259 info_prev = NULL;
260
261 for (info = thread_db_list; info; info_prev = info, info = info->next)
262 if (pid == info->pid)
263 break;
264
265 if (info == NULL)
266 return;
267
268 if (info->handle != NULL)
269 dlclose (info->handle);
270
271 xfree (info->filename);
272
273 if (info_prev)
274 info_prev->next = info->next;
275 else
276 thread_db_list = info->next;
277
278 xfree (info);
279 }
280
281 /* Prototypes for local functions. */
282 static int attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
283 const td_thrinfo_t *ti_p);
284 static void detach_thread (ptid_t ptid);
285 \f
286
287 /* Use "struct private_thread_info" to cache thread state. This is
288 a substantial optimization. */
289
290 struct private_thread_info
291 {
292 /* Flag set when we see a TD_DEATH event for this thread. */
293 unsigned int dying:1;
294
295 /* Cached thread state. */
296 td_thrhandle_t th;
297 thread_t tid;
298 };
299 \f
300
301 static char *
302 thread_db_err_str (td_err_e err)
303 {
304 static char buf[64];
305
306 switch (err)
307 {
308 case TD_OK:
309 return "generic 'call succeeded'";
310 case TD_ERR:
311 return "generic error";
312 case TD_NOTHR:
313 return "no thread to satisfy query";
314 case TD_NOSV:
315 return "no sync handle to satisfy query";
316 case TD_NOLWP:
317 return "no LWP to satisfy query";
318 case TD_BADPH:
319 return "invalid process handle";
320 case TD_BADTH:
321 return "invalid thread handle";
322 case TD_BADSH:
323 return "invalid synchronization handle";
324 case TD_BADTA:
325 return "invalid thread agent";
326 case TD_BADKEY:
327 return "invalid key";
328 case TD_NOMSG:
329 return "no event message for getmsg";
330 case TD_NOFPREGS:
331 return "FPU register set not available";
332 case TD_NOLIBTHREAD:
333 return "application not linked with libthread";
334 case TD_NOEVENT:
335 return "requested event is not supported";
336 case TD_NOCAPAB:
337 return "capability not available";
338 case TD_DBERR:
339 return "debugger service failed";
340 case TD_NOAPLIC:
341 return "operation not applicable to";
342 case TD_NOTSD:
343 return "no thread-specific data for this thread";
344 case TD_MALLOC:
345 return "malloc failed";
346 case TD_PARTIALREG:
347 return "only part of register set was written/read";
348 case TD_NOXREGS:
349 return "X register set not available for this thread";
350 #ifdef THREAD_DB_HAS_TD_NOTALLOC
351 case TD_NOTALLOC:
352 return "thread has not yet allocated TLS for given module";
353 #endif
354 #ifdef THREAD_DB_HAS_TD_VERSION
355 case TD_VERSION:
356 return "versions of libpthread and libthread_db do not match";
357 #endif
358 #ifdef THREAD_DB_HAS_TD_NOTLS
359 case TD_NOTLS:
360 return "there is no TLS segment in the given module";
361 #endif
362 default:
363 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
364 return buf;
365 }
366 }
367 \f
368 /* Return 1 if any threads have been registered. There may be none if
369 the threading library is not fully initialized yet. */
370
371 static int
372 have_threads_callback (struct thread_info *thread, void *args)
373 {
374 int pid = * (int *) args;
375
376 if (ptid_get_pid (thread->ptid) != pid)
377 return 0;
378
379 return thread->private != NULL;
380 }
381
382 static int
383 have_threads (ptid_t ptid)
384 {
385 int pid = ptid_get_pid (ptid);
386
387 return iterate_over_threads (have_threads_callback, &pid) != NULL;
388 }
389
390 struct thread_get_info_inout
391 {
392 struct thread_info *thread_info;
393 struct thread_db_info *thread_db_info;
394 };
395
396 /* A callback function for td_ta_thr_iter, which we use to map all
397 threads to LWPs.
398
399 THP is a handle to the current thread; if INFOP is not NULL, the
400 struct thread_info associated with this thread is returned in
401 *INFOP.
402
403 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
404 zero is returned to indicate success. */
405
406 static int
407 thread_get_info_callback (const td_thrhandle_t *thp, void *argp)
408 {
409 td_thrinfo_t ti;
410 td_err_e err;
411 ptid_t thread_ptid;
412 struct thread_get_info_inout *inout;
413 struct thread_db_info *info;
414
415 inout = argp;
416 info = inout->thread_db_info;
417
418 err = info->td_thr_get_info_p (thp, &ti);
419 if (err != TD_OK)
420 error (_("thread_get_info_callback: cannot get thread info: %s"),
421 thread_db_err_str (err));
422
423 /* Fill the cache. */
424 thread_ptid = ptid_build (info->pid, ti.ti_lid, 0);
425 inout->thread_info = find_thread_ptid (thread_ptid);
426
427 if (inout->thread_info == NULL)
428 {
429 /* New thread. Attach to it now (why wait?). */
430 if (!have_threads (thread_ptid))
431 thread_db_find_new_threads_1 (thread_ptid);
432 else
433 attach_thread (thread_ptid, thp, &ti);
434 inout->thread_info = find_thread_ptid (thread_ptid);
435 gdb_assert (inout->thread_info != NULL);
436 }
437
438 return 0;
439 }
440 \f
441 /* Fetch the user-level thread id of PTID. */
442
443 static void
444 thread_from_lwp (ptid_t ptid)
445 {
446 td_thrhandle_t th;
447 td_err_e err;
448 struct thread_db_info *info;
449 struct thread_get_info_inout io = {0};
450
451 /* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */
452 th.th_unique = 0;
453
454 /* This ptid comes from linux-nat.c, which should always fill in the
455 LWP. */
456 gdb_assert (ptid_get_lwp (ptid) != 0);
457
458 info = get_thread_db_info (ptid_get_pid (ptid));
459
460 /* Access an lwp we know is stopped. */
461 info->proc_handle.ptid = ptid;
462 err = info->td_ta_map_lwp2thr_p (info->thread_agent, ptid_get_lwp (ptid),
463 &th);
464 if (err != TD_OK)
465 error (_("Cannot find user-level thread for LWP %ld: %s"),
466 ptid_get_lwp (ptid), thread_db_err_str (err));
467
468 /* Long-winded way of fetching the thread info. */
469 io.thread_db_info = info;
470 io.thread_info = NULL;
471 thread_get_info_callback (&th, &io);
472 }
473 \f
474
475 /* Attach to lwp PTID, doing whatever else is required to have this
476 LWP under the debugger's control --- e.g., enabling event
477 reporting. Returns true on success. */
478 int
479 thread_db_attach_lwp (ptid_t ptid)
480 {
481 td_thrhandle_t th;
482 td_thrinfo_t ti;
483 td_err_e err;
484 struct thread_db_info *info;
485
486 info = get_thread_db_info (ptid_get_pid (ptid));
487
488 if (info == NULL)
489 return 0;
490
491 /* This ptid comes from linux-nat.c, which should always fill in the
492 LWP. */
493 gdb_assert (ptid_get_lwp (ptid) != 0);
494
495 /* Access an lwp we know is stopped. */
496 info->proc_handle.ptid = ptid;
497
498 /* If we have only looked at the first thread before libpthread was
499 initialized, we may not know its thread ID yet. Make sure we do
500 before we add another thread to the list. */
501 if (!have_threads (ptid))
502 thread_db_find_new_threads_1 (ptid);
503
504 err = info->td_ta_map_lwp2thr_p (info->thread_agent, ptid_get_lwp (ptid),
505 &th);
506 if (err != TD_OK)
507 /* Cannot find user-level thread. */
508 return 0;
509
510 err = info->td_thr_get_info_p (&th, &ti);
511 if (err != TD_OK)
512 {
513 warning (_("Cannot get thread info: %s"), thread_db_err_str (err));
514 return 0;
515 }
516
517 attach_thread (ptid, &th, &ti);
518 return 1;
519 }
520
521 static void *
522 verbose_dlsym (void *handle, const char *name)
523 {
524 void *sym = dlsym (handle, name);
525 if (sym == NULL)
526 warning (_("Symbol \"%s\" not found in libthread_db: %s"),
527 name, dlerror ());
528 return sym;
529 }
530
531 static td_err_e
532 enable_thread_event (int event, CORE_ADDR *bp)
533 {
534 td_notify_t notify;
535 td_err_e err;
536 struct thread_db_info *info;
537
538 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
539
540 /* Access an lwp we know is stopped. */
541 info->proc_handle.ptid = inferior_ptid;
542
543 /* Get the breakpoint address for thread EVENT. */
544 err = info->td_ta_event_addr_p (info->thread_agent, event, &notify);
545 if (err != TD_OK)
546 return err;
547
548 /* Set up the breakpoint. */
549 gdb_assert (exec_bfd);
550 (*bp) = (gdbarch_convert_from_func_ptr_addr
551 (target_gdbarch (),
552 /* Do proper sign extension for the target. */
553 (bfd_get_sign_extend_vma (exec_bfd) > 0
554 ? (CORE_ADDR) (intptr_t) notify.u.bptaddr
555 : (CORE_ADDR) (uintptr_t) notify.u.bptaddr),
556 &current_target));
557 create_thread_event_breakpoint (target_gdbarch (), *bp);
558
559 return TD_OK;
560 }
561
562 /* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and
563 return 1 if this version is lower (and not equal) to
564 VER_MAJOR_MIN.VER_MINOR_MIN. Return 0 in all other cases. */
565
566 static int
567 inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min)
568 {
569 struct bound_minimal_symbol version_msym;
570 CORE_ADDR version_addr;
571 char *version;
572 int err, got, retval = 0;
573
574 version_msym = lookup_minimal_symbol (ver_symbol, NULL, NULL);
575 if (version_msym.minsym == NULL)
576 return 0;
577
578 version_addr = BMSYMBOL_VALUE_ADDRESS (version_msym);
579 got = target_read_string (version_addr, &version, 32, &err);
580 if (err == 0 && memchr (version, 0, got) == &version[got -1])
581 {
582 int major, minor;
583
584 retval = (sscanf (version, "%d.%d", &major, &minor) == 2
585 && (major < ver_major_min
586 || (major == ver_major_min && minor < ver_minor_min)));
587 }
588 xfree (version);
589
590 return retval;
591 }
592
593 static void
594 enable_thread_event_reporting (void)
595 {
596 td_thr_events_t events;
597 td_err_e err;
598 struct thread_db_info *info;
599
600 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
601
602 /* We cannot use the thread event reporting facility if these
603 functions aren't available. */
604 if (info->td_ta_event_addr_p == NULL
605 || info->td_ta_set_event_p == NULL
606 || info->td_ta_event_getmsg_p == NULL
607 || info->td_thr_event_enable_p == NULL)
608 return;
609
610 /* Set the process wide mask saying which events we're interested in. */
611 td_event_emptyset (&events);
612 td_event_addset (&events, TD_CREATE);
613
614 /* There is a bug fixed between linuxthreads 2.1.3 and 2.2 by
615 commit 2e4581e4fba917f1779cd0a010a45698586c190a
616 * manager.c (pthread_exited): Correctly report event as TD_REAP
617 instead of TD_DEATH. Fix comments.
618 where event reporting facility is broken for TD_DEATH events,
619 so don't enable it if we have glibc but a lower version. */
620 if (!inferior_has_bug ("__linuxthreads_version", 2, 2))
621 td_event_addset (&events, TD_DEATH);
622
623 err = info->td_ta_set_event_p (info->thread_agent, &events);
624 if (err != TD_OK)
625 {
626 warning (_("Unable to set global thread event mask: %s"),
627 thread_db_err_str (err));
628 return;
629 }
630
631 /* Delete previous thread event breakpoints, if any. */
632 remove_thread_event_breakpoints ();
633 info->td_create_bp_addr = 0;
634 info->td_death_bp_addr = 0;
635
636 /* Set up the thread creation event. */
637 err = enable_thread_event (TD_CREATE, &info->td_create_bp_addr);
638 if (err != TD_OK)
639 {
640 warning (_("Unable to get location for thread creation breakpoint: %s"),
641 thread_db_err_str (err));
642 return;
643 }
644
645 /* Set up the thread death event. */
646 err = enable_thread_event (TD_DEATH, &info->td_death_bp_addr);
647 if (err != TD_OK)
648 {
649 warning (_("Unable to get location for thread death breakpoint: %s"),
650 thread_db_err_str (err));
651 return;
652 }
653 }
654
655 /* Similar as thread_db_find_new_threads_1, but try to silently ignore errors
656 if appropriate.
657
658 Return 1 if the caller should abort libthread_db initialization. Return 0
659 otherwise. */
660
661 static int
662 thread_db_find_new_threads_silently (ptid_t ptid)
663 {
664 volatile struct gdb_exception except;
665
666 TRY_CATCH (except, RETURN_MASK_ERROR)
667 {
668 thread_db_find_new_threads_2 (ptid, 1);
669 }
670
671 if (except.reason < 0)
672 {
673 if (libthread_db_debug)
674 exception_fprintf (gdb_stdlog, except,
675 "Warning: thread_db_find_new_threads_silently: ");
676
677 /* There is a bug fixed between nptl 2.6.1 and 2.7 by
678 commit 7d9d8bd18906fdd17364f372b160d7ab896ce909
679 where calls to td_thr_get_info fail with TD_ERR for statically linked
680 executables if td_thr_get_info is called before glibc has initialized
681 itself.
682
683 If the nptl bug is NOT present in the inferior and still thread_db
684 reports an error return 1. It means the inferior has corrupted thread
685 list and GDB should fall back only to LWPs.
686
687 If the nptl bug is present in the inferior return 0 to silently ignore
688 such errors, and let gdb enumerate threads again later. In such case
689 GDB cannot properly display LWPs if the inferior thread list is
690 corrupted. For core files it does not apply, no 'later enumeration'
691 is possible. */
692
693 if (!target_has_execution || !inferior_has_bug ("nptl_version", 2, 7))
694 {
695 exception_fprintf (gdb_stderr, except,
696 _("Warning: couldn't activate thread debugging "
697 "using libthread_db: "));
698 return 1;
699 }
700 }
701 return 0;
702 }
703
704 /* Lookup a library in which given symbol resides.
705 Note: this is looking in GDB process, not in the inferior.
706 Returns library name, or NULL. */
707
708 static const char *
709 dladdr_to_soname (const void *addr)
710 {
711 Dl_info info;
712
713 if (dladdr (addr, &info) != 0)
714 return info.dli_fname;
715 return NULL;
716 }
717
718 /* Attempt to initialize dlopen()ed libthread_db, described by INFO.
719 Return 1 on success.
720 Failure could happen if libthread_db does not have symbols we expect,
721 or when it refuses to work with the current inferior (e.g. due to
722 version mismatch between libthread_db and libpthread). */
723
724 static int
725 try_thread_db_load_1 (struct thread_db_info *info)
726 {
727 td_err_e err;
728
729 /* Initialize pointers to the dynamic library functions we will use.
730 Essential functions first. */
731
732 info->td_init_p = verbose_dlsym (info->handle, "td_init");
733 if (info->td_init_p == NULL)
734 return 0;
735
736 err = info->td_init_p ();
737 if (err != TD_OK)
738 {
739 warning (_("Cannot initialize libthread_db: %s"),
740 thread_db_err_str (err));
741 return 0;
742 }
743
744 info->td_ta_new_p = verbose_dlsym (info->handle, "td_ta_new");
745 if (info->td_ta_new_p == NULL)
746 return 0;
747
748 /* Initialize the structure that identifies the child process. */
749 info->proc_handle.ptid = inferior_ptid;
750
751 /* Now attempt to open a connection to the thread library. */
752 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
753 if (err != TD_OK)
754 {
755 if (libthread_db_debug)
756 fprintf_unfiltered (gdb_stdlog, _("td_ta_new failed: %s\n"),
757 thread_db_err_str (err));
758 else
759 switch (err)
760 {
761 case TD_NOLIBTHREAD:
762 #ifdef THREAD_DB_HAS_TD_VERSION
763 case TD_VERSION:
764 #endif
765 /* The errors above are not unexpected and silently ignored:
766 they just mean we haven't found correct version of
767 libthread_db yet. */
768 break;
769 default:
770 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
771 }
772 return 0;
773 }
774
775 info->td_ta_map_id2thr_p = verbose_dlsym (info->handle, "td_ta_map_id2thr");
776 if (info->td_ta_map_id2thr_p == NULL)
777 return 0;
778
779 info->td_ta_map_lwp2thr_p = verbose_dlsym (info->handle,
780 "td_ta_map_lwp2thr");
781 if (info->td_ta_map_lwp2thr_p == NULL)
782 return 0;
783
784 info->td_ta_thr_iter_p = verbose_dlsym (info->handle, "td_ta_thr_iter");
785 if (info->td_ta_thr_iter_p == NULL)
786 return 0;
787
788 info->td_thr_validate_p = verbose_dlsym (info->handle, "td_thr_validate");
789 if (info->td_thr_validate_p == NULL)
790 return 0;
791
792 info->td_thr_get_info_p = verbose_dlsym (info->handle, "td_thr_get_info");
793 if (info->td_thr_get_info_p == NULL)
794 return 0;
795
796 /* These are not essential. */
797 info->td_ta_event_addr_p = dlsym (info->handle, "td_ta_event_addr");
798 info->td_ta_set_event_p = dlsym (info->handle, "td_ta_set_event");
799 info->td_ta_clear_event_p = dlsym (info->handle, "td_ta_clear_event");
800 info->td_ta_event_getmsg_p = dlsym (info->handle, "td_ta_event_getmsg");
801 info->td_thr_event_enable_p = dlsym (info->handle, "td_thr_event_enable");
802 info->td_thr_tls_get_addr_p = dlsym (info->handle, "td_thr_tls_get_addr");
803 info->td_thr_tlsbase_p = dlsym (info->handle, "td_thr_tlsbase");
804
805 if (thread_db_find_new_threads_silently (inferior_ptid) != 0)
806 {
807 /* Even if libthread_db initializes, if the thread list is
808 corrupted, we'd not manage to list any threads. Better reject this
809 thread_db, and fall back to at least listing LWPs. */
810 return 0;
811 }
812
813 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
814
815 if (*libthread_db_search_path || libthread_db_debug)
816 {
817 struct ui_file *file;
818 const char *library;
819
820 library = dladdr_to_soname (*info->td_ta_new_p);
821 if (library == NULL)
822 library = LIBTHREAD_DB_SO;
823
824 /* If we'd print this to gdb_stdout when debug output is
825 disabled, still print it to gdb_stdout if debug output is
826 enabled. User visible output should not depend on debug
827 settings. */
828 file = *libthread_db_search_path != '\0' ? gdb_stdout : gdb_stdlog;
829 fprintf_unfiltered (file, _("Using host libthread_db library \"%s\".\n"),
830 library);
831 }
832
833 /* The thread library was detected. Activate the thread_db target
834 if this is the first process using it. */
835 if (thread_db_list->next == NULL)
836 push_target (&thread_db_ops);
837
838 /* Enable event reporting, but not when debugging a core file. */
839 if (target_has_execution)
840 enable_thread_event_reporting ();
841
842 return 1;
843 }
844
845 /* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
846 relative, or just LIBTHREAD_DB. */
847
848 static int
849 try_thread_db_load (const char *library, int check_auto_load_safe)
850 {
851 void *handle;
852 struct thread_db_info *info;
853
854 if (libthread_db_debug)
855 fprintf_unfiltered (gdb_stdlog,
856 _("Trying host libthread_db library: %s.\n"),
857 library);
858
859 if (check_auto_load_safe)
860 {
861 if (access (library, R_OK) != 0)
862 {
863 /* Do not print warnings by file_is_auto_load_safe if the library does
864 not exist at this place. */
865 if (libthread_db_debug)
866 fprintf_unfiltered (gdb_stdlog, _("open failed: %s.\n"),
867 safe_strerror (errno));
868 return 0;
869 }
870
871 if (!file_is_auto_load_safe (library, _("auto-load: Loading libthread-db "
872 "library \"%s\" from explicit "
873 "directory.\n"),
874 library))
875 return 0;
876 }
877
878 handle = dlopen (library, RTLD_NOW);
879 if (handle == NULL)
880 {
881 if (libthread_db_debug)
882 fprintf_unfiltered (gdb_stdlog, _("dlopen failed: %s.\n"), dlerror ());
883 return 0;
884 }
885
886 if (libthread_db_debug && strchr (library, '/') == NULL)
887 {
888 void *td_init;
889
890 td_init = dlsym (handle, "td_init");
891 if (td_init != NULL)
892 {
893 const char *const libpath = dladdr_to_soname (td_init);
894
895 if (libpath != NULL)
896 fprintf_unfiltered (gdb_stdlog, _("Host %s resolved to: %s.\n"),
897 library, libpath);
898 }
899 }
900
901 info = add_thread_db_info (handle);
902
903 /* Do not save system library name, that one is always trusted. */
904 if (strchr (library, '/') != NULL)
905 info->filename = gdb_realpath (library);
906
907 if (try_thread_db_load_1 (info))
908 return 1;
909
910 /* This library "refused" to work on current inferior. */
911 delete_thread_db_info (ptid_get_pid (inferior_ptid));
912 return 0;
913 }
914
915 /* Subroutine of try_thread_db_load_from_pdir to simplify it.
916 Try loading libthread_db in directory(OBJ)/SUBDIR.
917 SUBDIR may be NULL. It may also be something like "../lib64".
918 The result is true for success. */
919
920 static int
921 try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir)
922 {
923 struct cleanup *cleanup;
924 char *path, *cp;
925 int result;
926 const char *obj_name = objfile_name (obj);
927
928 if (obj_name[0] != '/')
929 {
930 warning (_("Expected absolute pathname for libpthread in the"
931 " inferior, but got %s."), obj_name);
932 return 0;
933 }
934
935 path = xmalloc (strlen (obj_name) + (subdir ? strlen (subdir) + 1 : 0)
936 + 1 + strlen (LIBTHREAD_DB_SO) + 1);
937 cleanup = make_cleanup (xfree, path);
938
939 strcpy (path, obj_name);
940 cp = strrchr (path, '/');
941 /* This should at minimum hit the first character. */
942 gdb_assert (cp != NULL);
943 cp[1] = '\0';
944 if (subdir != NULL)
945 {
946 strcat (cp, subdir);
947 strcat (cp, "/");
948 }
949 strcat (cp, LIBTHREAD_DB_SO);
950
951 result = try_thread_db_load (path, 1);
952
953 do_cleanups (cleanup);
954 return result;
955 }
956
957 /* Handle $pdir in libthread-db-search-path.
958 Look for libthread_db in directory(libpthread)/SUBDIR.
959 SUBDIR may be NULL. It may also be something like "../lib64".
960 The result is true for success. */
961
962 static int
963 try_thread_db_load_from_pdir (const char *subdir)
964 {
965 struct objfile *obj;
966
967 if (!auto_load_thread_db)
968 return 0;
969
970 ALL_OBJFILES (obj)
971 if (libpthread_name_p (objfile_name (obj)))
972 {
973 if (try_thread_db_load_from_pdir_1 (obj, subdir))
974 return 1;
975
976 /* We may have found the separate-debug-info version of
977 libpthread, and it may live in a directory without a matching
978 libthread_db. */
979 if (obj->separate_debug_objfile_backlink != NULL)
980 return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink,
981 subdir);
982
983 return 0;
984 }
985
986 return 0;
987 }
988
989 /* Handle $sdir in libthread-db-search-path.
990 Look for libthread_db in the system dirs, or wherever a plain
991 dlopen(file_without_path) will look.
992 The result is true for success. */
993
994 static int
995 try_thread_db_load_from_sdir (void)
996 {
997 return try_thread_db_load (LIBTHREAD_DB_SO, 0);
998 }
999
1000 /* Try to load libthread_db from directory DIR of length DIR_LEN.
1001 The result is true for success. */
1002
1003 static int
1004 try_thread_db_load_from_dir (const char *dir, size_t dir_len)
1005 {
1006 struct cleanup *cleanup;
1007 char *path;
1008 int result;
1009
1010 if (!auto_load_thread_db)
1011 return 0;
1012
1013 path = xmalloc (dir_len + 1 + strlen (LIBTHREAD_DB_SO) + 1);
1014 cleanup = make_cleanup (xfree, path);
1015
1016 memcpy (path, dir, dir_len);
1017 path[dir_len] = '/';
1018 strcpy (path + dir_len + 1, LIBTHREAD_DB_SO);
1019
1020 result = try_thread_db_load (path, 1);
1021
1022 do_cleanups (cleanup);
1023 return result;
1024 }
1025
1026 /* Search libthread_db_search_path for libthread_db which "agrees"
1027 to work on current inferior.
1028 The result is true for success. */
1029
1030 static int
1031 thread_db_load_search (void)
1032 {
1033 VEC (char_ptr) *dir_vec;
1034 struct cleanup *cleanups;
1035 char *this_dir;
1036 int i, rc = 0;
1037
1038 dir_vec = dirnames_to_char_ptr_vec (libthread_db_search_path);
1039 cleanups = make_cleanup_free_char_ptr_vec (dir_vec);
1040
1041 for (i = 0; VEC_iterate (char_ptr, dir_vec, i, this_dir); ++i)
1042 {
1043 const int pdir_len = sizeof ("$pdir") - 1;
1044 size_t this_dir_len;
1045
1046 this_dir_len = strlen (this_dir);
1047
1048 if (strncmp (this_dir, "$pdir", pdir_len) == 0
1049 && (this_dir[pdir_len] == '\0'
1050 || this_dir[pdir_len] == '/'))
1051 {
1052 char *subdir = NULL;
1053 struct cleanup *free_subdir_cleanup
1054 = make_cleanup (null_cleanup, NULL);
1055
1056 if (this_dir[pdir_len] == '/')
1057 {
1058 subdir = xmalloc (strlen (this_dir));
1059 make_cleanup (xfree, subdir);
1060 strcpy (subdir, this_dir + pdir_len + 1);
1061 }
1062 rc = try_thread_db_load_from_pdir (subdir);
1063 do_cleanups (free_subdir_cleanup);
1064 if (rc)
1065 break;
1066 }
1067 else if (strcmp (this_dir, "$sdir") == 0)
1068 {
1069 if (try_thread_db_load_from_sdir ())
1070 {
1071 rc = 1;
1072 break;
1073 }
1074 }
1075 else
1076 {
1077 if (try_thread_db_load_from_dir (this_dir, this_dir_len))
1078 {
1079 rc = 1;
1080 break;
1081 }
1082 }
1083 }
1084
1085 do_cleanups (cleanups);
1086 if (libthread_db_debug)
1087 fprintf_unfiltered (gdb_stdlog,
1088 _("thread_db_load_search returning %d\n"), rc);
1089 return rc;
1090 }
1091
1092 /* Return non-zero if the inferior has a libpthread. */
1093
1094 static int
1095 has_libpthread (void)
1096 {
1097 struct objfile *obj;
1098
1099 ALL_OBJFILES (obj)
1100 if (libpthread_name_p (objfile_name (obj)))
1101 return 1;
1102
1103 return 0;
1104 }
1105
1106 /* Attempt to load and initialize libthread_db.
1107 Return 1 on success. */
1108
1109 static int
1110 thread_db_load (void)
1111 {
1112 struct thread_db_info *info;
1113
1114 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
1115
1116 if (info != NULL)
1117 return 1;
1118
1119 /* Don't attempt to use thread_db on executables not running
1120 yet. */
1121 if (!target_has_registers)
1122 return 0;
1123
1124 /* Don't attempt to use thread_db for remote targets. */
1125 if (!(target_can_run (&current_target) || core_bfd))
1126 return 0;
1127
1128 if (thread_db_load_search ())
1129 return 1;
1130
1131 /* We couldn't find a libthread_db.
1132 If the inferior has a libpthread warn the user. */
1133 if (has_libpthread ())
1134 {
1135 warning (_("Unable to find libthread_db matching inferior's thread"
1136 " library, thread debugging will not be available."));
1137 return 0;
1138 }
1139
1140 /* Either this executable isn't using libpthread at all, or it is
1141 statically linked. Since we can't easily distinguish these two cases,
1142 no warning is issued. */
1143 return 0;
1144 }
1145
1146 static void
1147 disable_thread_event_reporting (struct thread_db_info *info)
1148 {
1149 if (info->td_ta_clear_event_p != NULL)
1150 {
1151 td_thr_events_t events;
1152
1153 /* Set the process wide mask saying we aren't interested in any
1154 events anymore. */
1155 td_event_fillset (&events);
1156 info->td_ta_clear_event_p (info->thread_agent, &events);
1157 }
1158
1159 info->td_create_bp_addr = 0;
1160 info->td_death_bp_addr = 0;
1161 }
1162
1163 static void
1164 check_thread_signals (void)
1165 {
1166 if (!thread_signals)
1167 {
1168 sigset_t mask;
1169 int i;
1170
1171 lin_thread_get_thread_signals (&mask);
1172 sigemptyset (&thread_stop_set);
1173 sigemptyset (&thread_print_set);
1174
1175 for (i = 1; i < NSIG; i++)
1176 {
1177 if (sigismember (&mask, i))
1178 {
1179 if (signal_stop_update (gdb_signal_from_host (i), 0))
1180 sigaddset (&thread_stop_set, i);
1181 if (signal_print_update (gdb_signal_from_host (i), 0))
1182 sigaddset (&thread_print_set, i);
1183 thread_signals = 1;
1184 }
1185 }
1186 }
1187 }
1188
1189 /* Check whether thread_db is usable. This function is called when
1190 an inferior is created (or otherwise acquired, e.g. attached to)
1191 and when new shared libraries are loaded into a running process. */
1192
1193 void
1194 check_for_thread_db (void)
1195 {
1196 /* Do nothing if we couldn't load libthread_db.so.1. */
1197 if (!thread_db_load ())
1198 return;
1199 }
1200
1201 /* This function is called via the new_objfile observer. */
1202
1203 static void
1204 thread_db_new_objfile (struct objfile *objfile)
1205 {
1206 /* This observer must always be called with inferior_ptid set
1207 correctly. */
1208
1209 if (objfile != NULL
1210 /* libpthread with separate debug info has its debug info file already
1211 loaded (and notified without successful thread_db initialization)
1212 the time observer_notify_new_objfile is called for the library itself.
1213 Static executables have their separate debug info loaded already
1214 before the inferior has started. */
1215 && objfile->separate_debug_objfile_backlink == NULL
1216 /* Only check for thread_db if we loaded libpthread,
1217 or if this is the main symbol file.
1218 We need to check OBJF_MAINLINE to handle the case of debugging
1219 a statically linked executable AND the symbol file is specified AFTER
1220 the exec file is loaded (e.g., gdb -c core ; file foo).
1221 For dynamically linked executables, libpthread can be near the end
1222 of the list of shared libraries to load, and in an app of several
1223 thousand shared libraries, this can otherwise be painful. */
1224 && ((objfile->flags & OBJF_MAINLINE) != 0
1225 || libpthread_name_p (objfile_name (objfile))))
1226 check_for_thread_db ();
1227 }
1228
1229 static void
1230 check_pid_namespace_match (void)
1231 {
1232 /* Check is only relevant for local targets targets. */
1233 if (target_can_run (&current_target))
1234 {
1235 /* If the child is in a different PID namespace, its idea of its
1236 PID will differ from our idea of its PID. When we scan the
1237 child's thread list, we'll mistakenly think it has no threads
1238 since the thread PID fields won't match the PID we give to
1239 libthread_db. */
1240 char *our_pid_ns = linux_proc_pid_get_ns (getpid (), "pid");
1241 char *inferior_pid_ns = linux_proc_pid_get_ns (
1242 ptid_get_pid (inferior_ptid), "pid");
1243
1244 if (our_pid_ns != NULL && inferior_pid_ns != NULL
1245 && strcmp (our_pid_ns, inferior_pid_ns) != 0)
1246 {
1247 warning (_ ("Target and debugger are in different PID "
1248 "namespaces; thread lists and other data are "
1249 "likely unreliable"));
1250 }
1251
1252 xfree (our_pid_ns);
1253 xfree (inferior_pid_ns);
1254 }
1255 }
1256
1257 /* This function is called via the inferior_created observer.
1258 This handles the case of debugging statically linked executables. */
1259
1260 static void
1261 thread_db_inferior_created (struct target_ops *target, int from_tty)
1262 {
1263 check_pid_namespace_match ();
1264 check_for_thread_db ();
1265 }
1266
1267 /* Attach to a new thread. This function is called when we receive a
1268 TD_CREATE event or when we iterate over all threads and find one
1269 that wasn't already in our list. Returns true on success. */
1270
1271 static int
1272 attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
1273 const td_thrinfo_t *ti_p)
1274 {
1275 struct private_thread_info *private;
1276 struct thread_info *tp;
1277 td_err_e err;
1278 struct thread_db_info *info;
1279
1280 /* If we're being called after a TD_CREATE event, we may already
1281 know about this thread. There are two ways this can happen. We
1282 may have iterated over all threads between the thread creation
1283 and the TD_CREATE event, for instance when the user has issued
1284 the `info threads' command before the SIGTRAP for hitting the
1285 thread creation breakpoint was reported. Alternatively, the
1286 thread may have exited and a new one been created with the same
1287 thread ID. In the first case we don't need to do anything; in
1288 the second case we should discard information about the dead
1289 thread and attach to the new one. */
1290 tp = find_thread_ptid (ptid);
1291 if (tp != NULL)
1292 {
1293 /* If tp->private is NULL, then GDB is already attached to this
1294 thread, but we do not know anything about it. We can learn
1295 about it here. This can only happen if we have some other
1296 way besides libthread_db to notice new threads (i.e.
1297 PTRACE_EVENT_CLONE); assume the same mechanism notices thread
1298 exit, so this can not be a stale thread recreated with the
1299 same ID. */
1300 if (tp->private != NULL)
1301 {
1302 if (!tp->private->dying)
1303 return 0;
1304
1305 delete_thread (ptid);
1306 tp = NULL;
1307 }
1308 }
1309
1310 if (target_has_execution)
1311 check_thread_signals ();
1312
1313 /* Under GNU/Linux, we have to attach to each and every thread. */
1314 if (target_has_execution
1315 && tp == NULL)
1316 {
1317 int res;
1318
1319 res = lin_lwp_attach_lwp (ptid_build (ptid_get_pid (ptid),
1320 ti_p->ti_lid, 0));
1321 if (res < 0)
1322 {
1323 /* Error, stop iterating. */
1324 return 0;
1325 }
1326 else if (res > 0)
1327 {
1328 /* Pretend this thread doesn't exist yet, and keep
1329 iterating. */
1330 return 1;
1331 }
1332
1333 /* Otherwise, we sucessfully attached to the thread. */
1334 }
1335
1336 /* Construct the thread's private data. */
1337 private = xmalloc (sizeof (struct private_thread_info));
1338 memset (private, 0, sizeof (struct private_thread_info));
1339
1340 /* A thread ID of zero may mean the thread library has not initialized
1341 yet. But we shouldn't even get here if that's the case. FIXME:
1342 if we change GDB to always have at least one thread in the thread
1343 list this will have to go somewhere else; maybe private == NULL
1344 until the thread_db target claims it. */
1345 gdb_assert (ti_p->ti_tid != 0);
1346 private->th = *th_p;
1347 private->tid = ti_p->ti_tid;
1348 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
1349 private->dying = 1;
1350
1351 /* Add the thread to GDB's thread list. */
1352 if (tp == NULL)
1353 add_thread_with_info (ptid, private);
1354 else
1355 tp->private = private;
1356
1357 info = get_thread_db_info (ptid_get_pid (ptid));
1358
1359 /* Enable thread event reporting for this thread, except when
1360 debugging a core file. */
1361 if (target_has_execution)
1362 {
1363 err = info->td_thr_event_enable_p (th_p, 1);
1364 if (err != TD_OK)
1365 error (_("Cannot enable thread event reporting for %s: %s"),
1366 target_pid_to_str (ptid), thread_db_err_str (err));
1367 }
1368
1369 return 1;
1370 }
1371
1372 static void
1373 detach_thread (ptid_t ptid)
1374 {
1375 struct thread_info *thread_info;
1376
1377 /* Don't delete the thread now, because it still reports as active
1378 until it has executed a few instructions after the event
1379 breakpoint - if we deleted it now, "info threads" would cause us
1380 to re-attach to it. Just mark it as having had a TD_DEATH
1381 event. This means that we won't delete it from our thread list
1382 until we notice that it's dead (via prune_threads), or until
1383 something re-uses its thread ID. We'll report the thread exit
1384 when the underlying LWP dies. */
1385 thread_info = find_thread_ptid (ptid);
1386 gdb_assert (thread_info != NULL && thread_info->private != NULL);
1387 thread_info->private->dying = 1;
1388 }
1389
1390 static void
1391 thread_db_detach (struct target_ops *ops, const char *args, int from_tty)
1392 {
1393 struct target_ops *target_beneath = find_target_beneath (ops);
1394 struct thread_db_info *info;
1395
1396 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
1397
1398 if (info)
1399 {
1400 if (target_has_execution)
1401 {
1402 disable_thread_event_reporting (info);
1403
1404 /* Delete the old thread event breakpoints. Note that
1405 unlike when mourning, we can remove them here because
1406 there's still a live inferior to poke at. In any case,
1407 GDB will not try to insert anything in the inferior when
1408 removing a breakpoint. */
1409 remove_thread_event_breakpoints ();
1410 }
1411
1412 delete_thread_db_info (ptid_get_pid (inferior_ptid));
1413 }
1414
1415 target_beneath->to_detach (target_beneath, args, from_tty);
1416
1417 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1418
1419 /* If there are no more processes using libpthread, detach the
1420 thread_db target ops. */
1421 if (!thread_db_list)
1422 unpush_target (&thread_db_ops);
1423 }
1424
1425 /* Check if PID is currently stopped at the location of a thread event
1426 breakpoint location. If it is, read the event message and act upon
1427 the event. */
1428
1429 static void
1430 check_event (ptid_t ptid)
1431 {
1432 struct regcache *regcache = get_thread_regcache (ptid);
1433 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1434 td_event_msg_t msg;
1435 td_thrinfo_t ti;
1436 td_err_e err;
1437 CORE_ADDR stop_pc;
1438 int loop = 0;
1439 struct thread_db_info *info;
1440
1441 info = get_thread_db_info (ptid_get_pid (ptid));
1442
1443 /* Bail out early if we're not at a thread event breakpoint. */
1444 stop_pc = regcache_read_pc (regcache)
1445 - target_decr_pc_after_break (gdbarch);
1446 if (stop_pc != info->td_create_bp_addr
1447 && stop_pc != info->td_death_bp_addr)
1448 return;
1449
1450 /* Access an lwp we know is stopped. */
1451 info->proc_handle.ptid = ptid;
1452
1453 /* If we have only looked at the first thread before libpthread was
1454 initialized, we may not know its thread ID yet. Make sure we do
1455 before we add another thread to the list. */
1456 if (!have_threads (ptid))
1457 thread_db_find_new_threads_1 (ptid);
1458
1459 /* If we are at a create breakpoint, we do not know what new lwp
1460 was created and cannot specifically locate the event message for it.
1461 We have to call td_ta_event_getmsg() to get
1462 the latest message. Since we have no way of correlating whether
1463 the event message we get back corresponds to our breakpoint, we must
1464 loop and read all event messages, processing them appropriately.
1465 This guarantees we will process the correct message before continuing
1466 from the breakpoint.
1467
1468 Currently, death events are not enabled. If they are enabled,
1469 the death event can use the td_thr_event_getmsg() interface to
1470 get the message specifically for that lwp and avoid looping
1471 below. */
1472
1473 loop = 1;
1474
1475 do
1476 {
1477 err = info->td_ta_event_getmsg_p (info->thread_agent, &msg);
1478 if (err != TD_OK)
1479 {
1480 if (err == TD_NOMSG)
1481 return;
1482
1483 error (_("Cannot get thread event message: %s"),
1484 thread_db_err_str (err));
1485 }
1486
1487 err = info->td_thr_get_info_p (msg.th_p, &ti);
1488 if (err != TD_OK)
1489 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
1490
1491 ptid = ptid_build (ptid_get_pid (ptid), ti.ti_lid, 0);
1492
1493 switch (msg.event)
1494 {
1495 case TD_CREATE:
1496 /* Call attach_thread whether or not we already know about a
1497 thread with this thread ID. */
1498 attach_thread (ptid, msg.th_p, &ti);
1499
1500 break;
1501
1502 case TD_DEATH:
1503
1504 if (!in_thread_list (ptid))
1505 error (_("Spurious thread death event."));
1506
1507 detach_thread (ptid);
1508
1509 break;
1510
1511 default:
1512 error (_("Spurious thread event."));
1513 }
1514 }
1515 while (loop);
1516 }
1517
1518 static ptid_t
1519 thread_db_wait (struct target_ops *ops,
1520 ptid_t ptid, struct target_waitstatus *ourstatus,
1521 int options)
1522 {
1523 struct thread_db_info *info;
1524 struct target_ops *beneath = find_target_beneath (ops);
1525
1526 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
1527
1528 if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1529 return ptid;
1530
1531 if (ourstatus->kind == TARGET_WAITKIND_EXITED
1532 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1533 return ptid;
1534
1535 info = get_thread_db_info (ptid_get_pid (ptid));
1536
1537 /* If this process isn't using thread_db, we're done. */
1538 if (info == NULL)
1539 return ptid;
1540
1541 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1542 {
1543 /* New image, it may or may not end up using thread_db. Assume
1544 not unless we find otherwise. */
1545 delete_thread_db_info (ptid_get_pid (ptid));
1546 if (!thread_db_list)
1547 unpush_target (&thread_db_ops);
1548
1549 /* Thread event breakpoints are deleted by
1550 update_breakpoints_after_exec. */
1551
1552 return ptid;
1553 }
1554
1555 /* If we do not know about the main thread yet, this would be a good time to
1556 find it. */
1557 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads (ptid))
1558 thread_db_find_new_threads_1 (ptid);
1559
1560 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
1561 && ourstatus->value.sig == GDB_SIGNAL_TRAP)
1562 /* Check for a thread event. */
1563 check_event (ptid);
1564
1565 if (have_threads (ptid))
1566 {
1567 /* Fill in the thread's user-level thread id. */
1568 thread_from_lwp (ptid);
1569 }
1570
1571 return ptid;
1572 }
1573
1574 static void
1575 thread_db_mourn_inferior (struct target_ops *ops)
1576 {
1577 struct target_ops *target_beneath = find_target_beneath (ops);
1578
1579 delete_thread_db_info (ptid_get_pid (inferior_ptid));
1580
1581 target_beneath->to_mourn_inferior (target_beneath);
1582
1583 /* Delete the old thread event breakpoints. Do this after mourning
1584 the inferior, so that we don't try to uninsert them. */
1585 remove_thread_event_breakpoints ();
1586
1587 /* Detach thread_db target ops. */
1588 if (!thread_db_list)
1589 unpush_target (ops);
1590 }
1591
1592 struct callback_data
1593 {
1594 struct thread_db_info *info;
1595 int new_threads;
1596 };
1597
1598 static int
1599 find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1600 {
1601 td_thrinfo_t ti;
1602 td_err_e err;
1603 ptid_t ptid;
1604 struct thread_info *tp;
1605 struct callback_data *cb_data = data;
1606 struct thread_db_info *info = cb_data->info;
1607
1608 err = info->td_thr_get_info_p (th_p, &ti);
1609 if (err != TD_OK)
1610 error (_("find_new_threads_callback: cannot get thread info: %s"),
1611 thread_db_err_str (err));
1612
1613 if (ti.ti_tid == 0)
1614 {
1615 /* A thread ID of zero means that this is the main thread, but
1616 glibc has not yet initialized thread-local storage and the
1617 pthread library. We do not know what the thread's TID will
1618 be yet. Just enable event reporting and otherwise ignore
1619 it. */
1620
1621 /* In that case, we're not stopped in a fork syscall and don't
1622 need this glibc bug workaround. */
1623 info->need_stale_parent_threads_check = 0;
1624
1625 if (target_has_execution)
1626 {
1627 err = info->td_thr_event_enable_p (th_p, 1);
1628 if (err != TD_OK)
1629 error (_("Cannot enable thread event reporting for LWP %d: %s"),
1630 (int) ti.ti_lid, thread_db_err_str (err));
1631 }
1632
1633 return 0;
1634 }
1635
1636 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1637 bit expensive, as it needs to open /proc/pid/status, so try to
1638 avoid doing the work if we know we don't have to. */
1639 if (info->need_stale_parent_threads_check)
1640 {
1641 int tgid = linux_proc_get_tgid (ti.ti_lid);
1642
1643 if (tgid != -1 && tgid != info->pid)
1644 return 0;
1645 }
1646
1647 ptid = ptid_build (info->pid, ti.ti_lid, 0);
1648 tp = find_thread_ptid (ptid);
1649 if (tp == NULL || tp->private == NULL)
1650 {
1651 if (attach_thread (ptid, th_p, &ti))
1652 cb_data->new_threads += 1;
1653 else
1654 /* Problem attaching this thread; perhaps it exited before we
1655 could attach it?
1656 This could mean that the thread list inside glibc itself is in
1657 inconsistent state, and libthread_db could go on looping forever
1658 (observed with glibc-2.3.6). To prevent that, terminate
1659 iteration: thread_db_find_new_threads_2 will retry. */
1660 return 1;
1661 }
1662
1663 return 0;
1664 }
1665
1666 /* Helper for thread_db_find_new_threads_2.
1667 Returns number of new threads found. */
1668
1669 static int
1670 find_new_threads_once (struct thread_db_info *info, int iteration,
1671 td_err_e *errp)
1672 {
1673 volatile struct gdb_exception except;
1674 struct callback_data data;
1675 td_err_e err = TD_ERR;
1676
1677 data.info = info;
1678 data.new_threads = 0;
1679
1680 TRY_CATCH (except, RETURN_MASK_ERROR)
1681 {
1682 /* Iterate over all user-space threads to discover new threads. */
1683 err = info->td_ta_thr_iter_p (info->thread_agent,
1684 find_new_threads_callback,
1685 &data,
1686 TD_THR_ANY_STATE,
1687 TD_THR_LOWEST_PRIORITY,
1688 TD_SIGNO_MASK,
1689 TD_THR_ANY_USER_FLAGS);
1690 }
1691
1692 if (libthread_db_debug)
1693 {
1694 if (except.reason < 0)
1695 exception_fprintf (gdb_stdlog, except,
1696 "Warning: find_new_threads_once: ");
1697
1698 fprintf_unfiltered (gdb_stdlog,
1699 _("Found %d new threads in iteration %d.\n"),
1700 data.new_threads, iteration);
1701 }
1702
1703 if (errp != NULL)
1704 *errp = err;
1705
1706 return data.new_threads;
1707 }
1708
1709 /* Search for new threads, accessing memory through stopped thread
1710 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1711 searches in a row do not discover any new threads. */
1712
1713 static void
1714 thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
1715 {
1716 td_err_e err = TD_OK;
1717 struct thread_db_info *info;
1718 int i, loop;
1719
1720 info = get_thread_db_info (ptid_get_pid (ptid));
1721
1722 /* Access an lwp we know is stopped. */
1723 info->proc_handle.ptid = ptid;
1724
1725 if (until_no_new)
1726 {
1727 /* Require 4 successive iterations which do not find any new threads.
1728 The 4 is a heuristic: there is an inherent race here, and I have
1729 seen that 2 iterations in a row are not always sufficient to
1730 "capture" all threads. */
1731 for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop)
1732 if (find_new_threads_once (info, i, &err) != 0)
1733 {
1734 /* Found some new threads. Restart the loop from beginning. */
1735 loop = -1;
1736 }
1737 }
1738 else
1739 find_new_threads_once (info, 0, &err);
1740
1741 if (err != TD_OK)
1742 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
1743 }
1744
1745 static void
1746 thread_db_find_new_threads_1 (ptid_t ptid)
1747 {
1748 thread_db_find_new_threads_2 (ptid, 0);
1749 }
1750
1751 static int
1752 update_thread_core (struct lwp_info *info, void *closure)
1753 {
1754 info->core = linux_common_core_of_thread (info->ptid);
1755 return 0;
1756 }
1757
1758 static void
1759 thread_db_update_thread_list (struct target_ops *ops)
1760 {
1761 struct thread_db_info *info;
1762 struct inferior *inf;
1763
1764 prune_threads ();
1765
1766 ALL_INFERIORS (inf)
1767 {
1768 struct thread_info *thread;
1769
1770 if (inf->pid == 0)
1771 continue;
1772
1773 info = get_thread_db_info (inf->pid);
1774 if (info == NULL)
1775 continue;
1776
1777 thread = any_live_thread_of_process (inf->pid);
1778 if (thread == NULL || thread->executing)
1779 continue;
1780
1781 thread_db_find_new_threads_1 (thread->ptid);
1782 }
1783
1784 if (target_has_execution)
1785 iterate_over_lwps (minus_one_ptid /* iterate over all */,
1786 update_thread_core, NULL);
1787 }
1788
1789 static char *
1790 thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
1791 {
1792 struct thread_info *thread_info = find_thread_ptid (ptid);
1793 struct target_ops *beneath;
1794
1795 if (thread_info != NULL && thread_info->private != NULL)
1796 {
1797 static char buf[64];
1798 thread_t tid;
1799
1800 tid = thread_info->private->tid;
1801 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1802 tid, ptid_get_lwp (ptid));
1803
1804 return buf;
1805 }
1806
1807 beneath = find_target_beneath (ops);
1808 return beneath->to_pid_to_str (beneath, ptid);
1809 }
1810
1811 /* Return a string describing the state of the thread specified by
1812 INFO. */
1813
1814 static char *
1815 thread_db_extra_thread_info (struct target_ops *self,
1816 struct thread_info *info)
1817 {
1818 if (info->private == NULL)
1819 return NULL;
1820
1821 if (info->private->dying)
1822 return "Exiting";
1823
1824 return NULL;
1825 }
1826
1827 /* Get the address of the thread local variable in load module LM which
1828 is stored at OFFSET within the thread local storage for thread PTID. */
1829
1830 static CORE_ADDR
1831 thread_db_get_thread_local_address (struct target_ops *ops,
1832 ptid_t ptid,
1833 CORE_ADDR lm,
1834 CORE_ADDR offset)
1835 {
1836 struct thread_info *thread_info;
1837 struct target_ops *beneath;
1838
1839 /* If we have not discovered any threads yet, check now. */
1840 if (!have_threads (ptid))
1841 thread_db_find_new_threads_1 (ptid);
1842
1843 /* Find the matching thread. */
1844 thread_info = find_thread_ptid (ptid);
1845
1846 if (thread_info != NULL && thread_info->private != NULL)
1847 {
1848 td_err_e err;
1849 psaddr_t address;
1850 struct thread_db_info *info;
1851
1852 info = get_thread_db_info (ptid_get_pid (ptid));
1853
1854 /* Finally, get the address of the variable. */
1855 if (lm != 0)
1856 {
1857 /* glibc doesn't provide the needed interface. */
1858 if (!info->td_thr_tls_get_addr_p)
1859 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1860 _("No TLS library support"));
1861
1862 /* Note the cast through uintptr_t: this interface only works if
1863 a target address fits in a psaddr_t, which is a host pointer.
1864 So a 32-bit debugger can not access 64-bit TLS through this. */
1865 err = info->td_thr_tls_get_addr_p (&thread_info->private->th,
1866 (psaddr_t)(uintptr_t) lm,
1867 offset, &address);
1868 }
1869 else
1870 {
1871 /* If glibc doesn't provide the needed interface throw an error
1872 that LM is zero - normally cases it should not be. */
1873 if (!info->td_thr_tlsbase_p)
1874 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1875 _("TLS load module not found"));
1876
1877 /* This code path handles the case of -static -pthread executables:
1878 https://sourceware.org/ml/libc-help/2014-03/msg00024.html
1879 For older GNU libc r_debug.r_map is NULL. For GNU libc after
1880 PR libc/16831 due to GDB PR threads/16954 LOAD_MODULE is also NULL.
1881 The constant number 1 depends on GNU __libc_setup_tls
1882 initialization of l_tls_modid to 1. */
1883 err = info->td_thr_tlsbase_p (&thread_info->private->th,
1884 1, &address);
1885 address = (char *) address + offset;
1886 }
1887
1888 #ifdef THREAD_DB_HAS_TD_NOTALLOC
1889 /* The memory hasn't been allocated, yet. */
1890 if (err == TD_NOTALLOC)
1891 /* Now, if libthread_db provided the initialization image's
1892 address, we *could* try to build a non-lvalue value from
1893 the initialization image. */
1894 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1895 _("TLS not allocated yet"));
1896 #endif
1897
1898 /* Something else went wrong. */
1899 if (err != TD_OK)
1900 throw_error (TLS_GENERIC_ERROR,
1901 (("%s")), thread_db_err_str (err));
1902
1903 /* Cast assuming host == target. Joy. */
1904 /* Do proper sign extension for the target. */
1905 gdb_assert (exec_bfd);
1906 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1907 ? (CORE_ADDR) (intptr_t) address
1908 : (CORE_ADDR) (uintptr_t) address);
1909 }
1910
1911 beneath = find_target_beneath (ops);
1912 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
1913 }
1914
1915 /* Callback routine used to find a thread based on the TID part of
1916 its PTID. */
1917
1918 static int
1919 thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1920 {
1921 long *tid = (long *) data;
1922
1923 if (thread->private->tid == *tid)
1924 return 1;
1925
1926 return 0;
1927 }
1928
1929 /* Implement the to_get_ada_task_ptid target method for this target. */
1930
1931 static ptid_t
1932 thread_db_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
1933 {
1934 struct thread_info *thread_info;
1935
1936 thread_db_find_new_threads_1 (inferior_ptid);
1937 thread_info = iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1938
1939 gdb_assert (thread_info != NULL);
1940
1941 return (thread_info->ptid);
1942 }
1943
1944 static void
1945 thread_db_resume (struct target_ops *ops,
1946 ptid_t ptid, int step, enum gdb_signal signo)
1947 {
1948 struct target_ops *beneath = find_target_beneath (ops);
1949 struct thread_db_info *info;
1950
1951 if (ptid_equal (ptid, minus_one_ptid))
1952 info = get_thread_db_info (ptid_get_pid (inferior_ptid));
1953 else
1954 info = get_thread_db_info (ptid_get_pid (ptid));
1955
1956 /* This workaround is only needed for child fork lwps stopped in a
1957 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1958 workaround can be disabled. */
1959 if (info)
1960 info->need_stale_parent_threads_check = 0;
1961
1962 beneath->to_resume (beneath, ptid, step, signo);
1963 }
1964
1965 /* qsort helper function for info_auto_load_libthread_db, sort the
1966 thread_db_info pointers primarily by their FILENAME and secondarily by their
1967 PID, both in ascending order. */
1968
1969 static int
1970 info_auto_load_libthread_db_compare (const void *ap, const void *bp)
1971 {
1972 struct thread_db_info *a = *(struct thread_db_info **) ap;
1973 struct thread_db_info *b = *(struct thread_db_info **) bp;
1974 int retval;
1975
1976 retval = strcmp (a->filename, b->filename);
1977 if (retval)
1978 return retval;
1979
1980 return (a->pid > b->pid) - (a->pid - b->pid);
1981 }
1982
1983 /* Implement 'info auto-load libthread-db'. */
1984
1985 static void
1986 info_auto_load_libthread_db (char *args, int from_tty)
1987 {
1988 struct ui_out *uiout = current_uiout;
1989 const char *cs = args ? args : "";
1990 struct thread_db_info *info, **array;
1991 unsigned info_count, unique_filenames;
1992 size_t max_filename_len, max_pids_len, pids_len;
1993 struct cleanup *back_to;
1994 char *pids;
1995 int i;
1996
1997 cs = skip_spaces_const (cs);
1998 if (*cs)
1999 error (_("'info auto-load libthread-db' does not accept any parameters"));
2000
2001 info_count = 0;
2002 for (info = thread_db_list; info; info = info->next)
2003 if (info->filename != NULL)
2004 info_count++;
2005
2006 array = xmalloc (sizeof (*array) * info_count);
2007 back_to = make_cleanup (xfree, array);
2008
2009 info_count = 0;
2010 for (info = thread_db_list; info; info = info->next)
2011 if (info->filename != NULL)
2012 array[info_count++] = info;
2013
2014 /* Sort ARRAY by filenames and PIDs. */
2015
2016 qsort (array, info_count, sizeof (*array),
2017 info_auto_load_libthread_db_compare);
2018
2019 /* Calculate the number of unique filenames (rows) and the maximum string
2020 length of PIDs list for the unique filenames (columns). */
2021
2022 unique_filenames = 0;
2023 max_filename_len = 0;
2024 max_pids_len = 0;
2025 pids_len = 0;
2026 for (i = 0; i < info_count; i++)
2027 {
2028 int pid = array[i]->pid;
2029 size_t this_pid_len;
2030
2031 for (this_pid_len = 0; pid != 0; pid /= 10)
2032 this_pid_len++;
2033
2034 if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0)
2035 {
2036 unique_filenames++;
2037 max_filename_len = max (max_filename_len,
2038 strlen (array[i]->filename));
2039
2040 if (i > 0)
2041 {
2042 pids_len -= strlen (", ");
2043 max_pids_len = max (max_pids_len, pids_len);
2044 }
2045 pids_len = 0;
2046 }
2047 pids_len += this_pid_len + strlen (", ");
2048 }
2049 if (i)
2050 {
2051 pids_len -= strlen (", ");
2052 max_pids_len = max (max_pids_len, pids_len);
2053 }
2054
2055 /* Table header shifted right by preceding "libthread-db: " would not match
2056 its columns. */
2057 if (info_count > 0 && args == auto_load_info_scripts_pattern_nl)
2058 ui_out_text (uiout, "\n");
2059
2060 make_cleanup_ui_out_table_begin_end (uiout, 2, unique_filenames,
2061 "LinuxThreadDbTable");
2062
2063 ui_out_table_header (uiout, max_filename_len, ui_left, "filename",
2064 "Filename");
2065 ui_out_table_header (uiout, pids_len, ui_left, "PIDs", "Pids");
2066 ui_out_table_body (uiout);
2067
2068 pids = xmalloc (max_pids_len + 1);
2069 make_cleanup (xfree, pids);
2070
2071 /* Note I is incremented inside the cycle, not at its end. */
2072 for (i = 0; i < info_count;)
2073 {
2074 struct cleanup *chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
2075 char *pids_end;
2076
2077 info = array[i];
2078 ui_out_field_string (uiout, "filename", info->filename);
2079 pids_end = pids;
2080
2081 while (i < info_count && strcmp (info->filename, array[i]->filename) == 0)
2082 {
2083 if (pids_end != pids)
2084 {
2085 *pids_end++ = ',';
2086 *pids_end++ = ' ';
2087 }
2088 pids_end += xsnprintf (pids_end, &pids[max_pids_len + 1] - pids_end,
2089 "%u", array[i]->pid);
2090 gdb_assert (pids_end < &pids[max_pids_len + 1]);
2091
2092 i++;
2093 }
2094 *pids_end = '\0';
2095
2096 ui_out_field_string (uiout, "pids", pids);
2097
2098 ui_out_text (uiout, "\n");
2099 do_cleanups (chain);
2100 }
2101
2102 do_cleanups (back_to);
2103
2104 if (info_count == 0)
2105 ui_out_message (uiout, 0, _("No auto-loaded libthread-db.\n"));
2106 }
2107
2108 static void
2109 init_thread_db_ops (void)
2110 {
2111 thread_db_ops.to_shortname = "multi-thread";
2112 thread_db_ops.to_longname = "multi-threaded child process.";
2113 thread_db_ops.to_doc = "Threads and pthreads support.";
2114 thread_db_ops.to_detach = thread_db_detach;
2115 thread_db_ops.to_wait = thread_db_wait;
2116 thread_db_ops.to_resume = thread_db_resume;
2117 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
2118 thread_db_ops.to_update_thread_list = thread_db_update_thread_list;
2119 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
2120 thread_db_ops.to_stratum = thread_stratum;
2121 thread_db_ops.to_has_thread_control = tc_schedlock;
2122 thread_db_ops.to_get_thread_local_address
2123 = thread_db_get_thread_local_address;
2124 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
2125 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
2126 thread_db_ops.to_magic = OPS_MAGIC;
2127
2128 complete_target_initialization (&thread_db_ops);
2129 }
2130
2131 /* Provide a prototype to silence -Wmissing-prototypes. */
2132 extern initialize_file_ftype _initialize_thread_db;
2133
2134 void
2135 _initialize_thread_db (void)
2136 {
2137 init_thread_db_ops ();
2138
2139 /* Defer loading of libthread_db.so until inferior is running.
2140 This allows gdb to load correct libthread_db for a given
2141 executable -- there could be mutiple versions of glibc,
2142 compiled with LinuxThreads or NPTL, and until there is
2143 a running inferior, we can't tell which libthread_db is
2144 the correct one to load. */
2145
2146 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
2147
2148 add_setshow_optional_filename_cmd ("libthread-db-search-path",
2149 class_support,
2150 &libthread_db_search_path, _("\
2151 Set search path for libthread_db."), _("\
2152 Show the current search path or libthread_db."), _("\
2153 This path is used to search for libthread_db to be loaded into \
2154 gdb itself.\n\
2155 Its value is a colon (':') separate list of directories to search.\n\
2156 Setting the search path to an empty list resets it to its default value."),
2157 set_libthread_db_search_path,
2158 NULL,
2159 &setlist, &showlist);
2160
2161 add_setshow_zuinteger_cmd ("libthread-db", class_maintenance,
2162 &libthread_db_debug, _("\
2163 Set libthread-db debugging."), _("\
2164 Show libthread-db debugging."), _("\
2165 When non-zero, libthread-db debugging is enabled."),
2166 NULL,
2167 show_libthread_db_debug,
2168 &setdebuglist, &showdebuglist);
2169
2170 add_setshow_boolean_cmd ("libthread-db", class_support,
2171 &auto_load_thread_db, _("\
2172 Enable or disable auto-loading of inferior specific libthread_db."), _("\
2173 Show whether auto-loading inferior specific libthread_db is enabled."), _("\
2174 If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\
2175 locations to load libthread_db compatible with the inferior.\n\
2176 Standard system libthread_db still gets loaded even with this option off.\n\
2177 This options has security implications for untrusted inferiors."),
2178 NULL, show_auto_load_thread_db,
2179 auto_load_set_cmdlist_get (),
2180 auto_load_show_cmdlist_get ());
2181
2182 add_cmd ("libthread-db", class_info, info_auto_load_libthread_db,
2183 _("Print the list of loaded inferior specific libthread_db.\n\
2184 Usage: info auto-load libthread-db"),
2185 auto_load_info_cmdlist_get ());
2186
2187 /* Add ourselves to objfile event chain. */
2188 observer_attach_new_objfile (thread_db_new_objfile);
2189
2190 /* Add ourselves to inferior_created event chain.
2191 This is needed to handle debugging statically linked programs where
2192 the new_objfile observer won't get called for libpthread. */
2193 observer_attach_inferior_created (thread_db_inferior_created);
2194 }
This page took 0.077922 seconds and 5 git commands to generate.