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