From: Collin Walling <walling@linux.ibm.com>
To: Eric Blake <eblake@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2] monitor: report entirety of hmp command on error
Date: Mon, 7 May 2018 10:30:54 -0400 [thread overview]
Message-ID: <ee680f5e-ac9a-479d-f65e-9f8ae9cfe5d4@linux.ibm.com> (raw)
In-Reply-To: <724592be-f5ac-7a40-8c26-5d2dd200ef82@linux.ibm.com>
When a user incorrectly provides an hmp command, an error response will be
printed that prompts the user to try "help <command name>". However, when
the command contains multiple parts e.g. "info uuid xyz", only the last
whitespace delimited string will be reported (in this example "info" will
be dropped and the message will read "Try "help uuid" for more information",
which is incorrect).
Let's correct this by capturing the entirety of the command from the command
line -- excluding any extraneous characters.
Reported-by: Mikhail Fokin <fokin@de.ibm.com>
Signed-off-by: Collin Walling <walling@linux.ibm.com>
---
monitor.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/monitor.c b/monitor.c
index 39f8ee1..38736b3 100644
--- a/monitor.c
+++ b/monitor.c
@@ -3371,6 +3371,7 @@ static void handle_hmp_command(Monitor *mon, const char *cmdline)
{
QDict *qdict;
const mon_cmd_t *cmd;
+ const char *cmd_start = cmdline;
trace_handle_hmp_command(mon, cmdline);
@@ -3381,8 +3382,11 @@ static void handle_hmp_command(Monitor *mon, const char *cmdline)
qdict = monitor_parse_arguments(mon, &cmdline, cmd);
if (!qdict) {
- monitor_printf(mon, "Try \"help %s\" for more information\n",
- cmd->name);
+ while (cmdline > cmd_start && qemu_isspace(cmdline[-1])) {
+ cmdline--;
+ }
+ monitor_printf(mon, "Try \"help %.*s\" for more information\n",
+ (int)(cmdline - cmd_start), cmd_start);
return;
}
--
2.7.4
next prev parent reply other threads:[~2018-05-07 14:31 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-04 14:49 [Qemu-devel] [PATCH] monitor: report entirety of hmp command on error Collin Walling
2018-05-04 15:19 ` Eric Blake
2018-05-04 17:04 ` Dr. David Alan Gilbert
2018-05-04 18:02 ` Collin Walling
2018-05-04 18:19 ` Eric Blake
2018-05-07 14:23 ` Collin Walling
2018-05-07 14:30 ` Collin Walling [this message]
2018-05-07 16:44 ` [Qemu-devel] [PATCH v2] " Eric Blake
2018-05-07 17:10 ` Collin Walling
2018-05-24 14:16 ` Markus Armbruster
2018-05-30 10:15 ` Dr. David Alan Gilbert
2018-06-21 11:19 ` Dr. David Alan Gilbert
2018-06-21 15:12 ` Collin Walling
2018-05-04 18:23 ` [Qemu-devel] [PATCH] " Eric Blake
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=ee680f5e-ac9a-479d-f65e-9f8ae9cfe5d4@linux.ibm.com \
--to=walling@linux.ibm.com \
--cc=eblake@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).