From: John Baldwin <jhb@FreeBSD.org>
To: gdb-patches@sourceware.org
Subject: [PATCH v4 4/7] Display per-thread information for threads in FreeBSD cores.
Date: Mon, 18 Jan 2016 18:47:00 -0000 [thread overview]
Message-ID: <1453142254-20266-5-git-send-email-jhb@FreeBSD.org> (raw)
In-Reply-To: <1453142254-20266-1-git-send-email-jhb@FreeBSD.org>
Display the LWP ID of each thread in a FreeBSD core. Extract thread
names from the per-thread THRMISC note.
gdb/ChangeLog:
* fbsd_tdep.c (fbsd_core_pid_to_str): New function.
(fbsd_core_thread_name): New function.
(fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
Add "core_thread_name" gdbarch method.
---
gdb/ChangeLog | 7 ++++++
gdb/fbsd-tdep.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index bbac503..8f0fd34 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,12 @@
2016-01-16 John Baldwin <jhb@FreeBSD.org>
+ * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
+ (fbsd_core_thread_name): New function.
+ (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
+ Add "core_thread_name" gdbarch method.
+
+2016-01-16 John Baldwin <jhb@FreeBSD.org>
+
* corelow.c (core_thread_name): New function.
(init_core_ops): Use "core_thread_name" for the "to_thread_name"
target op.
diff --git a/gdb/fbsd-tdep.c b/gdb/fbsd-tdep.c
index 0ef94d6..b4e7eff 100644
--- a/gdb/fbsd-tdep.c
+++ b/gdb/fbsd-tdep.c
@@ -28,6 +28,70 @@
#include "fbsd-tdep.h"
+/* This is how we want PTIDs from core files to be printed. */
+
+static char *
+fbsd_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid)
+{
+ static char buf[80];
+
+ if (ptid_get_lwp (ptid) != 0)
+ {
+ xsnprintf (buf, sizeof buf, "LWP %ld", ptid_get_lwp (ptid));
+ return buf;
+ }
+
+ return normal_pid_to_str (ptid);
+}
+
+/* Extract the name assigned to a thread from a core. Returns the
+ string in a static buffer. */
+
+static const char *
+fbsd_core_thread_name (struct gdbarch *gdbarch, struct thread_info *thr)
+{
+ static char buf[80];
+ struct bfd_section *section;
+ bfd_size_type size;
+ char sectionstr[32];
+
+ if (ptid_get_lwp (thr->ptid) != 0)
+ {
+ /* FreeBSD includes a NT_FREEBSD_THRMISC note for each thread
+ whose contents are defined by a "struct thrmisc" declared in
+ <sys/procfs.h> on FreeBSD. The per-thread name is stored as
+ a null-terminated string as the first member of the
+ structure. Rather than define the full structure here, just
+ extract the null-terminated name from the start of the
+ note. */
+ xsnprintf (sectionstr, sizeof sectionstr, ".thrmisc/%ld",
+ ptid_get_lwp (thr->ptid));
+ section = bfd_get_section_by_name (core_bfd, sectionstr);
+ if (section != NULL && bfd_section_size (core_bfd, section) > 0)
+ {
+ /* Truncate the name if it is longer than "buf". */
+ size = bfd_section_size (core_bfd, section);
+ if (size > sizeof buf - 1)
+ size = sizeof buf - 1;
+ if (bfd_get_section_contents (core_bfd, section, buf, (file_ptr) 0,
+ size)
+ && buf[0] != '\0')
+ {
+ buf[size] = '\0';
+
+ /* Note that each thread will report the process command
+ as its thread name instead of an empty name if a name
+ has not been set explicitly. Return a NULL name in
+ that case. */
+ if (strcmp (buf, elf_tdata (core_bfd)->core->program) != 0)
+ return buf;
+ }
+ }
+ }
+
+ return NULL;
+}
+
static int
find_signalled_thread (struct thread_info *info, void *data)
{
@@ -132,5 +196,7 @@ fbsd_make_corefile_notes (struct gdbarch *gdbarch, bfd *obfd, int *note_size)
void
fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
{
+ set_gdbarch_core_pid_to_str (gdbarch, fbsd_core_pid_to_str);
+ set_gdbarch_core_thread_name (gdbarch, fbsd_core_thread_name);
set_gdbarch_make_corefile_notes (gdbarch, fbsd_make_corefile_notes);
}
--
2.7.0
next prev parent reply other threads:[~2016-01-18 18:47 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-18 18:38 [PATCH v4 0/7] Support kernel-backed user threads on FreeBSD John Baldwin
2016-01-18 18:38 ` [PATCH v4 2/7] Add a psuedosection for the NT_FREEBSD_THRMISC note John Baldwin
2016-01-19 10:39 ` Pedro Alves
2016-01-19 16:02 ` John Baldwin
2016-01-18 18:38 ` [PATCH v4 1/7] Add support to readelf for reading FreeBSD ELF core notes John Baldwin
2016-01-18 18:38 ` [PATCH v4 6/7] Add support for LWP-based threads on FreeBSD John Baldwin
2016-01-19 10:39 ` Pedro Alves
2016-01-18 18:38 ` [PATCH v4 3/7] Add support for extracting thread names from cores John Baldwin
2016-01-19 10:39 ` Pedro Alves
2016-01-18 18:38 ` [PATCH v4 7/7] Dump register notes for each thread when generating a FreeBSD core John Baldwin
2016-01-19 10:39 ` Pedro Alves
2016-01-18 18:47 ` [PATCH v4 5/7] Use LWP IDs with ptrace register requests on FreeBSD John Baldwin
2016-01-19 10:39 ` Pedro Alves
2016-01-18 18:47 ` John Baldwin [this message]
2016-01-19 10:39 ` [PATCH v4 4/7] Display per-thread information for threads in FreeBSD cores Pedro Alves
2016-01-19 16:02 ` John Baldwin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1453142254-20266-5-git-send-email-jhb@FreeBSD.org \
--to=jhb@freebsd.org \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox