[gdb] Fix segv in "maint print symbols" for ada exec
authorTom de Vries <tdevries@suse.de>
Tue, 10 Mar 2020 23:30:54 +0000 (00:30 +0100)
committerTom de Vries <tdevries@suse.de>
Tue, 10 Mar 2020 23:30:54 +0000 (00:30 +0100)
When using the executable from test-case gdb.ada/access_to_packed_array.exp
(read-in using -readnow) and printing the symbols using "maint print symbols",
we run into a segv:
...
$ gdb -readnow -batch access_to_packed_array/foo -ex "maint print symbols"
   ...
     info: array (<>) of character; computed at runtime
     ptr: range 0 .. 2147483647; computed at runtime
Aborted (core dumped)
...

What happens is that dwarf2_evaluate_property gets called and sets the local
frame variable to the current frame, which happens to be NULL.  Subsequently
the PROP_LOCLIST handling code is executed, where get_frame_address_in_block
gets called with argument NULL, and the segv is triggered.

Fix this by handling a NULL frame in the PROP_LOCLIST handling code in
dwarf2_evaluate_property.

Build and reg-tested on x86_64-linux.

gdb/ChangeLog:

2020-03-11  Tom de Vries  <tdevries@suse.de>

* dwarf2/loc.c (dwarf2_evaluate_property): Handle NULL frame in
PROP_LOCLIST handling code.

gdb/testsuite/ChangeLog:

2020-03-11  Tom de Vries  <tdevries@suse.de>

* gdb.ada/access_to_packed_array.exp: Test printing of expanded
symtabs.

gdb/ChangeLog
gdb/dwarf2/loc.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.ada/access_to_packed_array.exp

index 1013e91866b0d7f8c53aac3f8362634c1cc71a2d..5c3d740a327b9f50264a15ee57ddff690d2c6bdd 100644 (file)
@@ -1,3 +1,8 @@
+2020-03-11  Tom de Vries  <tdevries@suse.de>
+
+       * dwarf2/loc.c (dwarf2_evaluate_property): Handle NULL frame in
+       PROP_LOCLIST handling code.
+
 2020-03-10  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * buildsym-legacy.c (record_line): Pass extra parameter to
index a5074da8bf132eefa78546f3f6e8b17a3d4b4217..5155cff60d02533ad05cc7ff4b650ad1416073f1 100644 (file)
@@ -2511,11 +2511,15 @@ dwarf2_evaluate_property (const struct dynamic_prop *prop,
       {
        struct dwarf2_property_baton *baton
          = (struct dwarf2_property_baton *) prop->data.baton;
-       CORE_ADDR pc = get_frame_address_in_block (frame);
+       CORE_ADDR pc;
        const gdb_byte *data;
        struct value *val;
        size_t size;
 
+       if (frame == NULL
+           || !get_frame_address_in_block_if_available (frame, &pc))
+         return false;
+
        data = dwarf2_find_location_expression (&baton->loclist, &size, pc);
        if (data != NULL)
          {
index dca2d304666395d3dac019d4989c309b455d77d9..c5aa0e6705379f54993750039972c8078ac49667 100644 (file)
@@ -1,3 +1,8 @@
+2020-03-11  Tom de Vries  <tdevries@suse.de>
+
+       * gdb.ada/access_to_packed_array.exp: Test printing of expanded
+       symtabs.
+
 2020-03-10  Andrew Burgess  <andrew.burgess@embecosm.com>
            Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
index 61ad230ec0cc96a90ac92e9eea7ff637531b1f7a..0e1532b42808c6d37f0fa729b142fe14746e061b 100644 (file)
@@ -23,6 +23,16 @@ if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug]] != "" }
 
 clean_restart ${testfile}
 
+# Test that printing symbols does not cause segv.
+gdb_test_no_output "maint expand-symtabs"
+set file [standard_output_file gdb.txt]
+gdb_test_no_output "set logging file $file" "set logging file"
+gdb_test_no_output "set logging redirect on"
+gdb_test "set logging on"
+gdb_test_no_output "maint print symbols"
+gdb_test "set logging off"
+file delete $file
+
 set bp_location [gdb_get_line_number "BREAK" ${testdir}/foo.adb]
 runto "foo.adb:$bp_location"