From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 6A3823858C66; Mon, 13 Mar 2023 20:17:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6A3823858C66 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1678738643; bh=Tf/1UhuRNQdLhxf/t4O9L7JOZOkeLKV9Ey/erxu54wQ=; h=From:To:Subject:Date:From; b=RtvNA6UI+IJmX9VWKz2d/Ijl/GBC25MgkSs5B+09hoSe5d0hQbjjlF7WG2fZvaNcm UaGYBcre9gQdchZCjAY+MZXwRJtoDEj1uD5ZnmQ2W69Ilj5qJkh4rDbR5CFZsaJWO0 zFMoojBeAwPJpL3w8uZFYqy/u8afD2a5j6uIIYIQ= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Fix crash in inside_main_func X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 7fee66abd3fd69a0c4dc6c8dcd9aa49eede3864e X-Git-Newrev: 5f056fcb3dce947447063f5ab225042177a59722 Message-Id: <20230313201723.6A3823858C66@sourceware.org> Date: Mon, 13 Mar 2023 20:17:23 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D5f056fcb3dce= 947447063f5ab225042177a59722 commit 5f056fcb3dce947447063f5ab225042177a59722 Author: Tom Tromey Date: Fri Feb 24 10:40:16 2023 -0700 Fix crash in inside_main_func =20 gdb 13.1 crashes while running the rust compiler's debugger tests. The crash has a number of causes. =20 First, the rust compiler still uses the C++-like _Z mangling, but with its own twist -- some hex digits added to the end of a symbol. So, while gdb finds the correct name of "main": =20 (top-gdb) p name $13 =3D 0x292e0c0 "rustc_gdb_1031745::main" =20 It isn't found in the minsyms, because C++ demangling yields: =20 [99] t 0x90c0 _ZN17rustc_gdb_10317454main17h5b5be7fe16a97225E section .= text rustc_gdb_1031745::main::h5b5be7fe16a97225 zko06yobckx336v =20 This could perhaps be fixed. I also filed a new PR to suggest preferring the linkage name of the main program. =20 Next, the rust compiler emits both a DW_TAG_subprogram and a DW_TAG_namespace for "main". This happens because the file is named "main.rs" -- i.e., the bug is specific to the source file name. The crash also seems to require the nested function inside of 'main', at least for me. The namespace always is generated, but perhaps this changes the ordering in the DWARF. =20 When inside_main_func looks up the main symbol, it finds the namespace symbol rather than the function. (I filed a bug about fixing gdb's symbol tables -- long overdue.) =20 Meanwhile, as I think it's important to fix this crash sooner rather than later, this patch changes inside_main_func to check that the symbol that is found is LOC_BLOCK. This perhaps should have been done in the first place, anyway. =20 Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=3D30158 Diff: --- gdb/frame.c | 8 ++++++++ gdb/testsuite/gdb.rust/main-crash.exp | 35 +++++++++++++++++++++++++++++++= ++++ gdb/testsuite/gdb.rust/main.rs | 30 ++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) diff --git a/gdb/frame.c b/gdb/frame.c index 9b867b6cd9c..de3c7de440d 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -2551,6 +2551,14 @@ inside_main_func (frame_info_ptr this_frame) if (bs.symbol =3D=3D nullptr) return false; =20 + /* We might have found some unrelated symbol. For example, the + Rust compiler can emit both a subprogram and a namespace with + the same name in the same scope; and due to how gdb's symbol + tables currently work, we can't request the one we'd + prefer. */ + if (bs.symbol->aclass () !=3D LOC_BLOCK) + return false; + const struct block *block =3D bs.symbol->value_block (); gdb_assert (block !=3D nullptr); sym_addr =3D block->start (); diff --git a/gdb/testsuite/gdb.rust/main-crash.exp b/gdb/testsuite/gdb.rust= /main-crash.exp new file mode 100644 index 00000000000..9c513f91c1d --- /dev/null +++ b/gdb/testsuite/gdb.rust/main-crash.exp @@ -0,0 +1,35 @@ +# Copyright (C) 2023 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Regression test for a crash in inside_main_func. + +load_lib rust-support.exp +require allow_rust_tests + +standard_testfile main.rs +if {[prepare_for_testing "failed to prepare" $testfile $srcfile \ + {debug rust}]} { + return -1 +} + +set line [gdb_get_line_number "BREAK"] +# The bug was that this would crash. +if {![runto ${srcfile}:$line]} { + untested "could not run to breakpoint" + return -1 +} + +# Test that gdb is alive. +gdb_test "print 23" " =3D 23" diff --git a/gdb/testsuite/gdb.rust/main.rs b/gdb/testsuite/gdb.rust/main.rs new file mode 100644 index 00000000000..8902446551e --- /dev/null +++ b/gdb/testsuite/gdb.rust/main.rs @@ -0,0 +1,30 @@ +// Copyright (C) 2016-2023 Free Software Foundation, Inc. + +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#![allow(dead_code)] +#![allow(unused_variables)] +#![allow(unused_assignments)] + +fn global_fn(x: u8) { + // BREAK +} + +fn main() { + fn nested(y: u8) { + global_fn(y) + } + + nested(23); +}