Fix use-after-free in number_or_range_parser
authorTom Tromey <tom@tromey.com>
Thu, 16 Aug 2018 00:37:00 +0000 (18:37 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 17 Aug 2018 23:14:02 +0000 (17:14 -0600)
-fsanitize=address showed a use-after-free in number_or_range_parser.

The cause was that handle_line_of_input could stash the input into
"saved_command_line", and then this could be freed by reentrant calls.

This fixes the bug by preventing commands that are read by "commands"
from being eligible for repeating.

2018-08-17  Tom Tromey  <tom@tromey.com>

* cli/cli-script.c (read_next_line): Pass 0 as repeat argument to
command_line_input.

gdb/ChangeLog
gdb/cli/cli-script.c

index 7988447..f7f1a05 100644 (file)
@@ -1,3 +1,8 @@
+2018-08-17  Tom Tromey  <tom@tromey.com>
+
+       * cli/cli-script.c (read_next_line): Pass 0 as repeat argument to
+       command_line_input.
+
 2018-07-13  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * symfile.c (set_objfile_default_section_offset): Remove struct
index 87ebf9f..4c30e76 100644 (file)
@@ -903,7 +903,7 @@ read_next_line (void)
   else
     prompt_ptr = NULL;
 
-  return command_line_input (prompt_ptr, from_tty, "commands");
+  return command_line_input (prompt_ptr, 0, "commands");
 }
 
 /* Return true if CMD's name is NAME.  */