public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness
@ 2021-05-04 14:00 vries at gcc dot gnu.org
  2021-05-04 14:02 ` [Bug tdep/27822] " bp at alien8 dot de
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: vries at gcc dot gnu.org @ 2021-05-04 14:00 UTC (permalink / raw)
  To: gdb-prs

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

            Bug ID: 27822
           Summary: [gdb/tdep, x86_64] Wrong thread picked to select
                    process 64/32-bitness
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: tdep
          Assignee: unassigned at sourceware dot org
          Reporter: vries at gcc dot gnu.org
  Target Milestone: ---

See this conversation here (
https://lore.kernel.org/io-uring/CAHk-=wh0KoEZXPYMGkfkeVEerSCEF1AiCZSvz9TRrx=Kj74D+Q@mail.gmail.com/
).

The problem seems to be that gdb picks the wrong thread to select 32-bit/64-bit
property for a process.

AFAICT, this is done here in x86_linux_nat_target::read_description:
...
  /* GNU/Linux LWP ID's are process ID's.  */
  tid = inferior_ptid.lwp ();
  if (tid == 0)
    tid = inferior_ptid.pid (); /* Not a threaded program.  */
...

It's not obvious to me from the discussion what is wrong with that.

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

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

* [Bug tdep/27822] [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness
  2021-05-04 14:00 [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness vries at gcc dot gnu.org
@ 2021-05-04 14:02 ` bp at alien8 dot de
  2021-05-04 15:26 ` vries at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: bp at alien8 dot de @ 2021-05-04 14:02 UTC (permalink / raw)
  To: gdb-prs

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

Borislav Petkov <bp at alien8 dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bp at alien8 dot de

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

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

* [Bug tdep/27822] [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness
  2021-05-04 14:00 [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness vries at gcc dot gnu.org
  2021-05-04 14:02 ` [Bug tdep/27822] " bp at alien8 dot de
@ 2021-05-04 15:26 ` vries at gcc dot gnu.org
  2021-05-07  8:44 ` vries at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: vries at gcc dot gnu.org @ 2021-05-04 15:26 UTC (permalink / raw)
  To: gdb-prs

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

--- Comment #1 from Tom de Vries <vries at gcc dot gnu.org> ---
Anyway, I've tested this patch and no regressions:
...
diff --git a/gdb/x86-linux-nat.c b/gdb/x86-linux-nat.c
index 85c7f0ddc94..bdf381f1430 100644
--- a/gdb/x86-linux-nat.c
+++ b/gdb/x86-linux-nat.c
@@ -114,9 +114,7 @@ x86_linux_nat_target::read_description ()
   uint64_t xcr0_features_bits;

   /* GNU/Linux LWP ID's are process ID's.  */
-  tid = inferior_ptid.lwp ();
-  if (tid == 0)
-    tid = inferior_ptid.pid (); /* Not a threaded program.  */
+  tid = inferior_ptid.pid ();

 #ifdef __x86_64__
   {
...
so I wonder if this fixes the observed problems.

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

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

* [Bug tdep/27822] [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness
  2021-05-04 14:00 [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness vries at gcc dot gnu.org
  2021-05-04 14:02 ` [Bug tdep/27822] " bp at alien8 dot de
  2021-05-04 15:26 ` vries at gcc dot gnu.org
@ 2021-05-07  8:44 ` vries at gcc dot gnu.org
  2021-05-23  8:08 ` cvs-commit at gcc dot gnu.org
  2021-05-23  8:11 ` vries at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: vries at gcc dot gnu.org @ 2021-05-07  8:44 UTC (permalink / raw)
  To: gdb-prs

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

--- Comment #2 from Tom de Vries <vries at gcc dot gnu.org> ---
Posted patch: https://sourceware.org/pipermail/gdb-patches/2021-May/178596.html

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

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

* [Bug tdep/27822] [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness
  2021-05-04 14:00 [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness vries at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-05-07  8:44 ` vries at gcc dot gnu.org
@ 2021-05-23  8:08 ` cvs-commit at gcc dot gnu.org
  2021-05-23  8:11 ` vries at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-05-23  8:08 UTC (permalink / raw)
  To: gdb-prs

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

--- Comment #3 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom de Vries <vries@sourceware.org>:

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

commit fbf3c4b97907cb198168f58e7a22d497868e5926
Author: Tom de Vries <tdevries@suse.de>
Date:   Sun May 23 10:08:45 2021 +0200

    [gdb/tdep] Use pid to choose process 64/32-bitness

    In a linux kernel mailing list discussion, it was mentioned that "gdb has
    this odd thing where it takes the 64-bit vs 32-bit data for the whole
process
    from one thread, and picks the worst possible thread to do it (ie
explicitly
    not even the main thread, ...)" [1].

    The picking of the thread is done here in
    x86_linux_nat_target::read_description:
    ...
      /* GNU/Linux LWP ID's are process ID's.  */
      tid = inferior_ptid.lwp ();
      if (tid == 0)
        tid = inferior_ptid.pid (); /* Not a threaded program.  */
    ...

    To understand what this code does, let's investigate a scenario in which
    inferior_ptid.lwp () != inferior_ptid.pid ().

    Say we start exec jit-attach-pie, identified with pid x.  The main thread
    starts another thread that sleeps, and then the main thread waits for the
    sleeping thread.  So we have two threads, identified with LWP IDs x and
x+1:
    ...
    PID  LWP  CMD
    x    x    ./jit-attach-pie
    x    x+1  ./jit-attach-pie
    ...
    [ The thread with LWP x is known as the thread group leader. ]

    When attaching to this exec using the pid, gdb does a stop_all_threads
which
    iterates over all the threads, first LWP x, and then LWP x+1.

    So the state we arrive with at x86_linux_nat_target::read_description is:
    ...
    (gdb) p inferior_ptid
    $1 = {m_pid = x, m_lwp = x+1, m_tid = 0}
    ...
    and consequently we probe 64/32-bitness from thread LWP x+1.

    [ Note that this is different from when gdb doesn't attach but instead
    launches the exec itself, in which case there's just one thread to begin
with,
    and consequently the probed thread is LWP x. ]

    According to aforementioned remark, a better choice would have been the
main
    thread, that is, LWP x.

    This patch implement that choice, by simply doing:
    ...
      tid = inferior_ptid.pid ();
    ...

    The fact that gdb makes a per-process permanent choice for 64/32-bitness is
a
    problem in itself: each thread can be in either 64 or 32 bit mode, and
change
    forth and back.  That is a problem that this patch doesn't fix.

    Now finally: why does this matter in the context of the linux kernel
    discussion?  The discussion was related to a patch that exposed io_uring
    threads to user-space.  This made it possible that one of those threads
would
    be picked out to select 64/32-bitness.  Given that such threads are
atypical
    user-space threads in the sense that they don't return to user-space and
don't
    have a userspace register state, reading their registers returns garbage,
and
    so it could f.i. occur that in a 64-bit process with all normal user-space
    threads in 64-bit mode, the probing would return 32-bit.

    It may be that this is worked-around on the kernel side by providing
userspace
    register state in those threads such that current gdb is happy. 
Nevertheless,
    it seems prudent to fix this on the gdb size as well.

    Tested on x86_64-linux.

    [1]
https://lore.kernel.org/io-uring/CAHk-=wh0KoEZXPYMGkfkeVEerSCEF1AiCZSvz9TRrx=Kj74D+Q@mail.gmail.com/

    gdb/ChangeLog:

    2021-05-23  Tom de Vries  <tdevries@suse.de>

            PR tdep/27822
            * target.h (struct target_ops): Mention target_thread_architecture
in
            read_description comment.
            * x86-linux-nat.c (x86_linux_nat_target::read_description): Use
            pid to determine if process is 64-bit or 32-bit.
            * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
            Same.
            * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Same.
            * riscv-linux-nat.c (riscv_linux_nat_target::read_description):
Same.
            * s390-linux-nat.c (s390_linux_nat_target::read_description): Same.
            * arm-linux-nat.c (arm_linux_nat_target::read_description): Same.
            Likewise, use pid to determine if kernel supports reading VFP
            registers.

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

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

* [Bug tdep/27822] [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness
  2021-05-04 14:00 [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness vries at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-05-23  8:08 ` cvs-commit at gcc dot gnu.org
@ 2021-05-23  8:11 ` vries at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: vries at gcc dot gnu.org @ 2021-05-23  8:11 UTC (permalink / raw)
  To: gdb-prs

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

Tom de Vries <vries at gcc dot gnu.org> changed:

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

--- Comment #4 from Tom de Vries <vries at gcc dot gnu.org> ---
Patch committed, marking resolved-fixed.

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

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

end of thread, other threads:[~2021-05-23  8:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-04 14:00 [Bug tdep/27822] New: [gdb/tdep, x86_64] Wrong thread picked to select process 64/32-bitness vries at gcc dot gnu.org
2021-05-04 14:02 ` [Bug tdep/27822] " bp at alien8 dot de
2021-05-04 15:26 ` vries at gcc dot gnu.org
2021-05-07  8:44 ` vries at gcc dot gnu.org
2021-05-23  8:08 ` cvs-commit at gcc dot gnu.org
2021-05-23  8:11 ` vries at gcc dot gnu.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).