public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/24283] $_siginfo decoding missing _sigsys structure
       [not found] <bug-24283-4717@http.sourceware.org/bugzilla/>
@ 2020-04-07 18:56 ` ssbssa at sourceware dot org
  2021-03-09 23:43 ` vapier at gentoo dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: ssbssa at sourceware dot org @ 2020-04-07 18:56 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=24283

Hannes Domani <ssbssa at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ssbssa at sourceware dot org

--- Comment #1 from Hannes Domani <ssbssa at sourceware dot org> ---
I think it should be as simple as that:

--- a/gdb/linux-tdep.c
+++ b/gdb/linux-tdep.c
@@ -350,6 +350,13 @@ linux_get_siginfo_type_with_fields (struct gdbarch
*gdbarch,
   append_composite_type_field (type, "si_fd", int_type);
   append_composite_type_field (sifields_type, "_sigpoll", type);

+  /* _sigsys */
+  type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
+  append_composite_type_field (type, "_call_addr", void_ptr_type);
+  append_composite_type_field (type, "_syscall", int_type);
+  append_composite_type_field (type, "_arch", uint_type);
+  append_composite_type_field (sifields_type, "_sigsys", type);
+
   /* struct siginfo */
   siginfo_type = arch_composite_type (gdbarch, NULL, TYPE_CODE_STRUCT);
   TYPE_NAME (siginfo_type) = xstrdup ("siginfo");

But I don't have Linux, so I can't test it.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug gdb/24283] $_siginfo decoding missing _sigsys structure
       [not found] <bug-24283-4717@http.sourceware.org/bugzilla/>
  2020-04-07 18:56 ` [Bug gdb/24283] $_siginfo decoding missing _sigsys structure ssbssa at sourceware dot org
@ 2021-03-09 23:43 ` vapier at gentoo dot org
  2022-01-08 13:16 ` cvs-commit at gcc dot gnu.org
  2022-01-08 13:18 ` ssbssa at sourceware dot org
  3 siblings, 0 replies; 4+ messages in thread
From: vapier at gentoo dot org @ 2021-03-09 23:43 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=24283

--- Comment #2 from Mike Frysinger <vapier at gentoo dot org> ---
looks like we've had someone test it on our side: https://crrev.com/c/2745853

can you send your patch to the mailing list since you're the author ?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug gdb/24283] $_siginfo decoding missing _sigsys structure
       [not found] <bug-24283-4717@http.sourceware.org/bugzilla/>
  2020-04-07 18:56 ` [Bug gdb/24283] $_siginfo decoding missing _sigsys structure ssbssa at sourceware dot org
  2021-03-09 23:43 ` vapier at gentoo dot org
@ 2022-01-08 13:16 ` cvs-commit at gcc dot gnu.org
  2022-01-08 13:18 ` ssbssa at sourceware dot org
  3 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-01-08 13:16 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=24283

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Hannes Domani <ssbssa@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=24fe764c8a14bd519826e7e9af01edff59ab6be3

commit 24fe764c8a14bd519826e7e9af01edff59ab6be3
Author: Hannes Domani <ssbssa@yahoo.de>
Date:   Tue Apr 7 20:57:07 2020 +0200

    Add _sigsys info to siginfo struct

    This patch adds information about _sigsys structure from newer
    kernels, so that $_siginfo decoding can show information about
    _sigsys, making it easier for developers to debug seccomp failures.
    Requested in PR gdb/24283.

    Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=24283

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug gdb/24283] $_siginfo decoding missing _sigsys structure
       [not found] <bug-24283-4717@http.sourceware.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2022-01-08 13:16 ` cvs-commit at gcc dot gnu.org
@ 2022-01-08 13:18 ` ssbssa at sourceware dot org
  3 siblings, 0 replies; 4+ messages in thread
From: ssbssa at sourceware dot org @ 2022-01-08 13:18 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=24283

Hannes Domani <ssbssa at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |12.1

--- Comment #4 from Hannes Domani <ssbssa at sourceware dot org> ---
Fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-01-08 13:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-24283-4717@http.sourceware.org/bugzilla/>
2020-04-07 18:56 ` [Bug gdb/24283] $_siginfo decoding missing _sigsys structure ssbssa at sourceware dot org
2021-03-09 23:43 ` vapier at gentoo dot org
2022-01-08 13:16 ` cvs-commit at gcc dot gnu.org
2022-01-08 13:18 ` ssbssa at sourceware dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).