Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] [gdb] Fix heap-buffer-overflow in args_complete_p
@ 2026-01-03 14:55 Tom de Vries
  2026-01-05 16:38 ` Tom Tromey
  2026-01-05 19:57 ` Andrew Burgess
  0 siblings, 2 replies; 14+ messages in thread
From: Tom de Vries @ 2026-01-03 14:55 UTC (permalink / raw)
  To: gdb-patches

PR gdb/33754 reports a heap-buffer-overflow here in args_complete_p:
...
  while (*input != '\0')
...

Fix this by introducing a lambda function at that safely handles all char
array accesses.

Also:
- factor out char array accesses using new variables c and next_c, and
- check for end-of-string after skip_spaces.

Tested on x86_64-linux.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=33754
---
 gdb/infcmd.c | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index 875bbe1ee69..ceacfd05683 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -126,17 +126,27 @@ static bool
 args_complete_p (const std::string &args)
 {
   const char *input = args.c_str ();
+  const char *end = input + args.length ();
   bool squote = false, dquote = false;
 
-  while (*input != '\0')
+  auto at = [&] (const char *s)
+    {
+      return s > end ? '\0' : *s;
+    };
+
+  while (at (input) != '\0')
     {
       input = skip_spaces (input);
+      char c = at (input);
+      if (c == '\0')
+	break;
+      char next_c = at (input + 1);
 
       if (squote)
 	{
 	  /* Inside a single quoted argument, look for the closing single
 	     quote.  */
-	  if (*input == '\'')
+	  if (c == '\'')
 	    squote = false;
 	}
       else if (dquote)
@@ -148,10 +158,10 @@ args_complete_p (const std::string &args)
 	     and we don't skip the entire '\\' then we'll only skip the
 	     first '\', in which case we might see the second '\' as a '\"'
 	     sequence, which would be wrong.  */
-	  if (*input == '\\' && strchr ("\"\\", *(input + 1)) != nullptr)
+	  if (c == '\\' && strchr ("\"\\", next_c) != nullptr)
 	    ++input;
 	  /* Otherwise, just look for the closing double quote.  */
-	  else if (*input == '"')
+	  else if (c == '"')
 	    dquote = false;
 	}
       else
@@ -162,7 +172,7 @@ args_complete_p (const std::string &args)
 	     a quoted argument.  The '\\' we need to skip so we don't just
 	     skip the first '\' and then incorrectly consider the second
 	     '\' are part of a '\"' or '\'' sequence.  */
-	  if (*input == '\\' && strchr ("\"\\'", *(input + 1)) != nullptr)
+	  if (c == '\\' && strchr ("\"\\'", next_c) != nullptr)
 	    ++input;
 	  /* Otherwise, check for the start of a single or double quoted
 	     argument.  Single quotes have no special meaning on Windows
@@ -170,10 +180,10 @@ args_complete_p (const std::string &args)
 	     host to determine what is, or isn't a special character, when
 	     really, this is a function of the target.  */
 #ifndef _WIN32
-	  else if (*input == '\'')
+	  else if (c == '\'')
 	    squote = true;
 #endif
-	  else if (*input == '"')
+	  else if (c == '"')
 	    dquote = true;
 	}
 

base-commit: 0a153c58a0ab68c6fa349d2ad0bf6a42e043ab23
-- 
2.51.0


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

end of thread, other threads:[~2026-01-12 11:44 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-03 14:55 [PATCH] [gdb] Fix heap-buffer-overflow in args_complete_p Tom de Vries
2026-01-05 16:38 ` Tom Tromey
2026-01-06 14:51   ` Tom de Vries
2026-01-05 19:57 ` Andrew Burgess
2026-01-05 20:02   ` Andrew Burgess
2026-01-05 20:09   ` Tom Tromey
2026-01-06  8:47   ` Tom de Vries
2026-01-06  9:29     ` Tom de Vries
2026-01-06 14:53     ` Tom de Vries
2026-01-07 10:46     ` Andrew Burgess
2026-01-07 11:21       ` Tom de Vries
2026-01-07 15:01         ` Andrew Burgess
2026-01-07 18:13           ` Tom Tromey
2026-01-12 11:42             ` Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox