qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: peter.maydell@linaro.org
Cc: "Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Ramiro Polla" <ramiro.polla@gmail.com>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 01/12] gdbstub: Fix handling of '!' packet with new infra
Date: Mon,  2 Sep 2019 11:21:11 +0100	[thread overview]
Message-ID: <20190902102122.1128-2-alex.bennee@linaro.org> (raw)
In-Reply-To: <20190902102122.1128-1-alex.bennee@linaro.org>

From: Ramiro Polla <ramiro.polla@gmail.com>

Since the '!' packet is not handled by the new infrastructure,
gdb_handle_packet() would call run_cmd_parser() with a NULL cmd_parser
value, which would lead to an unsupported packet ("$#00") being sent,
which could confuse the gdb client.

This also has a side-effect of speeding up the initial connection with
gdb.

Fixes: 3e2c12615b52 ("gdbstub: Implement deatch (D pkt) with new infra")
Signed-off-by: Ramiro Polla <ramiro.polla@gmail.com>
Message-Id: <20190805190901.14072-1-ramiro.polla@gmail.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

diff --git a/gdbstub.c b/gdbstub.c
index b92ba59e4df..5c067594bae 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -2588,7 +2588,9 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
         break;
     }
 
-    run_cmd_parser(s, line_buf, cmd_parser);
+    if (cmd_parser) {
+        run_cmd_parser(s, line_buf, cmd_parser);
+    }
 
     return RS_IDLE;
 }
-- 
2.20.1



  reply	other threads:[~2019-09-02 10:23 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-02 10:21 [Qemu-devel] [PULL 00/12] fixes for gdbstub, gitdm and testing Alex Bennée
2019-09-02 10:21 ` Alex Bennée [this message]
2019-09-02 10:21 ` [Qemu-devel] [PULL 02/12] gdbstub: Fix handler for 'F' packet Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 03/12] contrib/gitdm: filetype interface is not in order, fix Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 04/12] contrib/gitdm: Add armbru@pond.sub.org to group-map-redhat Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 05/12] mailmap: Reorder by sections Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 06/12] mailmap: Update philmd email address Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 07/12] mailmap: Add many entries to improve 'git shortlog' statistics Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 08/12] .mailmap/aliases: add some further commentary Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 09/12] contrib/gitdm: Add RT-RK to the domain-map Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 10/12] build-sys: build ui-spice-app as a module Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 11/12] tests: fix modules-test with no default machine Alex Bennée
2019-09-02 10:21 ` [Qemu-devel] [PULL 12/12] tests/docker: upgrade docker.py to python3 Alex Bennée
2019-09-04 11:28 ` [Qemu-devel] [PULL 00/12] fixes for gdbstub, gitdm and testing Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190902102122.1128-2-alex.bennee@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=ramiro.polla@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).