Validate explicit locations with early termination
authorKeith Seitz <keiths@redhat.com>
Thu, 7 Dec 2017 20:59:07 +0000 (12:59 -0800)
committerKeith Seitz <keiths@redhat.com>
Thu, 7 Dec 2017 23:27:35 +0000 (15:27 -0800)
breakpoints/22569 involves an internal error generated by the rather
innocent looking command:

(gdb) break -source test.cpp main
.../linespec.c:3302: internal-error: void decode_line_full(...):
Assertion `result.size () == 1 || canonical->pre_expanded' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n)

The input string is tokenized into "-source", "test.cpp", and "main"
(input parsing breaks on whitespace). create_breakpoint is then called with
the explicit location (containing only the source file name) and "main" as
the extra_string argument.

No SaLs are created for this underspecified explicit location, and the
"result.size () == 1" evaluates false (as does the pre_expanded condition).
This triggers the assertion.

Normally string_to_explicit_location validates the input string.  However,
the presence of the string "main" causes the parser to exit early:

   802        else
   803          {
   804            /* End of the explicit location specification.
   805               Stop parsing and return whatever explicit location was
   806               parsed.  */
   807            *argp = start;
   808            return location;
   809          }

This bypasses the validation that is done a few lines down in this function
which would have emitted the expected error.  This patch fixes that.

Additionally, this patch also fixes an inconsistency with error reporting
in this use case:

(gdb) b -source foo
Source filename requires function, label, or line offset.
(gdb) b -source foo main
No source file named foo.

These two commands should have elicited the same error message.

gdb/ChangeLog:

PR breakpoints/22569
* location.c (string_to_explicit_location): When terminating
parsing early, break out of enclosing loop instead of returning.

gdb/testsuite/ChangeLog:

PR breakpoints/22569
* gdb.linespec/ls-errs.exp: Change expected result of "break
-source this file has spaces.c -line 3".
Check that an explicit source file followed by whitespace is
identified as an invalid explicit location.

gdb/ChangeLog
gdb/location.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.linespec/ls-errs.exp

index 0347f37140cadbd0a009232c6192e697de4da35c..c18160c1cab58e6d9cf9aa38754b1fe13ab70c53 100644 (file)
@@ -1,3 +1,9 @@
+2017-12-07  Keith Seitz  <keiths@redhat.com>
+
+       PR breakpoints/22569
+       * location.c (string_to_explicit_location): When terminating
+       parsing early, break out of enclosing loop instead of returning.
+
 2017-12-07  Keith Seitz  <keiths@redhat.com>
 
        * NEWS (New commands): Mention set/show print type nested-type-limit.
index 6752462bcf190fb4b801e85f08060352ce603b54..69b7aa4c8534b673d3552a559072048f29208025 100644 (file)
@@ -843,7 +843,7 @@ string_to_explicit_location (const char **argp,
             Stop parsing and return whatever explicit location was
             parsed.  */
          *argp = start;
-         return location;
+         break;
        }
 
       *argp = skip_spaces (*argp);
index 53f114aa15f1ea1391e3c5474234d4a468c09942..f8fa687917c0363de0cf44244e466af922115e1c 100644 (file)
@@ -1,3 +1,11 @@
+2017-12-07  Keith Seitz  <keiths@redhat.com>
+
+       PR breakpoints/22569
+       * gdb.linespec/ls-errs.exp: Change expected result of "break
+       -source this file has spaces.c -line 3".
+       Check that an explicit source file followed by whitespace is
+       identified as an invalid explicit location.
+
 2017-12-07  Keith Seitz  <keiths@redhat.com>
 
        * gdb.cp/nested-types.cc: New file.
index ee8bb087f071f80a1ce9f0a7523e63581a549f3b..a0bcc528f8b88b740443b4b43935f20de415090a 100644 (file)
@@ -175,7 +175,7 @@ proc do_test {lang} {
     # Test that option lexing stops at whitespace boundaries, except
     # when lexing function names, where we want to handle setting
     # breakpoints on e.g., "int template_function<int>()".
-    test_break "-source this file has spaces.c -line 3" invalid_file "this"
+    test_break "-source this file has spaces.c -line 3" source_incomplete
     test_break "-function ret_type tmpl_function" \
        invalid_function "ret_type tmpl_function"
     test_break "-source $srcfile -function ret_type tmpl_function" \
@@ -267,6 +267,7 @@ proc do_test {lang} {
 
     # Explicit linespec-specific tests
     test_break "-source $srcfile" source_incomplete
+    test_break "-source $srcfile main" source_incomplete
 }
 
 foreach_with_prefix lang {"C" "C++"} {