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