Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: John Baldwin <jhb@FreeBSD.org>
To: Simon Ser <contact@emersion.fr>, gdb-patches@sourceware.org
Subject: Re: [PATCH] Generate NT_PROCSTAT_{AUXV,VMMAP} in FreeBSD coredumps
Date: Wed, 11 Jul 2018 16:16:00 -0000	[thread overview]
Message-ID: <95fcaebb-d260-bff6-ac4b-5e052c3787bb@FreeBSD.org> (raw)
In-Reply-To: <iz0c1bAaNjgAACgCF3B9wWvubTieWo_FAMspoBDj72Th_JjQgzLhxnkAApDxTVICOTRuGk3F1EFNJDl96yeYU6oFRqZToAbjqKR-b61opzQ=@emersion.fr>

On 7/11/18 5:35 AM, Simon Ser wrote:
> gcore generates NT_AUXV and NT_FILE notes for Linux targets. On
> FreeBSD auxv is stored in a NT_PROCSTAT_AUXV section, file mappings
> are stored in a NT_PROCSTAT_VMMAP and both are prefixed with the
> struct size.
> 
> 2018-07-11  Simon Ser  <contact@emersion.fr>
>         * fbsd-tdep.c (fbsd_make_corefile_notes): write NT_PROCSTAT_AUXV
>         and NT_PROCSTAT_VMMAP notes
> 
> ---
> 
> This is an improvement of my v2 patch [1]. Thanks John for your review!
> 
> Changes from v2 to v3:
> - Use NT_FREEBSD_PROCSTAT_* enums instead or re-defining these
> - Simplify Elf_Auxinfo struct size expression
> - Also write NT_PROCSTAT_VMMAP notes
> - Directly use sysctl as this will allow to support more notes in
>   the future (all of these work in the same way)
> - Use gdb::unique_xmalloc_ptr()
> 
> [1]: https://sourceware.org/ml/gdb-patches/2018-07/msg00267.html
> 
>  gdb/fbsd-tdep.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 58 insertions(+)
> 
> diff --git a/gdb/fbsd-tdep.c b/gdb/fbsd-tdep.c
> index 9cea0098..e335ee6f 100644
> --- a/gdb/fbsd-tdep.c
> +++ b/gdb/fbsd-tdep.c
> @@ -25,6 +25,9 @@
>  #include "regset.h"
>  #include "gdbthread.h"
>  #include "xml-syscall.h"
> +#include <sys/user.h>
> +#include <sys/sysctl.h>
> +#include <sys/types.h>
>  
>  #include "elf-bfd.h"
>  #include "fbsd-tdep.h"
> @@ -512,6 +515,32 @@ fbsd_corefile_thread (struct thread_info *info,
>       args->note_size, args->stop_signal);
>  }
>  
> +static gdb::unique_xmalloc_ptr<char>
> +procstat_sysctl (pid_t pid, int what, size_t structsz, size_t *sizep)
> +{
> +  int name[4];
> +  name[0] = CTL_KERN;
> +  name[1] = KERN_PROC;
> +  name[2] = what;
> +  name[3] = pid;
> +  size_t len = 0;
> +  if (sysctl (name, 4, NULL, &len, NULL, 0) == -1)
> +    return NULL;
> + 
> +  int structsize = structsz;
> +  gdb::unique_xmalloc_ptr<char> buf
> +    ((char *) xmalloc (sizeof (structsize) + len));
> +  if (buf == NULL)
> +    return NULL;
> +  memcpy (buf.get (), &structsize, sizeof (structsize));
> +  void *p = buf.get () + sizeof (structsize);
> +  if (sysctl (name, 4, p, &len, NULL, 0) == -1)
> +    return NULL;
> +
> +  *sizep = sizeof (structsize) + len;
> +  return buf;
> +}
> +

You can't use a sysctl like this in a tdep.c file.  fbsd-tdep.c runs on
any OS, (so for example you could be running gdb with a FreeBSD binary
on Linux or OS X against a debug server (gdbserver or lldb-server or some
such) running on a remote FreeBSD host (or VM) and use 'gcore' on the
debugging host to generate a local core file.

Native code that would only run on a FreeBSD host would live in fbsd-nat.c,
and when I have thought about handling other procstat notes in FreeBSD cores
I've mostly thought about adding some kind of hook that fbsd-tdep.c would
invoke to write extra core notes and setting that hook only for native
targets in fbsd-nat.c for the native gdbarchs.

Your previous patch for AUXV still works because the target_foo function
you called previously will talk to either the debug server or the
native target to fetch the AUXV data, so I think your previous patch
for NT_PROCSTAT_AUXV is a better approach for that note.

-- 
John Baldwin


  reply	other threads:[~2018-07-11 16:16 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-11 12:35 Simon Ser
2018-07-11 16:16 ` John Baldwin [this message]
2018-07-11 16:40   ` Simon Ser
2018-07-16 13:39 ` [PATCH v2] Generate NT_PROCSTAT_{AUXV,VMMAP,PS_STRINGS} " Simon Ser
2018-07-24  7:53   ` Simon Ser
2018-08-01 16:33     ` Simon Ser
2018-08-01 18:16   ` John Baldwin
2018-08-21 14:45   ` [PATCH v3] " Simon Ser
2018-08-23 10:40     ` John Baldwin
2018-08-23 14:02     ` [PATCH v4] " Simon Ser
2018-08-23 16:16       ` John Baldwin
2018-08-23 17:11       ` [PATCH v5] " Simon Ser
2018-09-02 20:02         ` Simon Ser
2018-09-06 22:12           ` 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=95fcaebb-d260-bff6-ac4b-5e052c3787bb@FreeBSD.org \
    --to=jhb@freebsd.org \
    --cc=contact@emersion.fr \
    --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