From: Luiz Capitulino <lcapitulino@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 2/3] QMP: Introduce Human Monitor passthrough command
Date: Wed, 10 Nov 2010 11:36:37 -0200 [thread overview]
Message-ID: <20101110113637.05d5a202@doriath> (raw)
In-Reply-To: <m3k4klfh83.fsf@blackfin.pond.sub.org>
On Wed, 10 Nov 2010 14:20:12 +0100
Markus Armbruster <armbru@redhat.com> wrote:
> Luiz Capitulino <lcapitulino@redhat.com> writes:
>
> > This command allows QMP clients to execute HMP commands.
> >
> > Please, check the documentation added to the qmp-commands.hx file
> > for additional details about the interface and its limitations.
> >
> > Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
> > ---
> > monitor.c | 42 ++++++++++++++++++++++++++++++++++++++++++
> > qmp-commands.hx | 45 +++++++++++++++++++++++++++++++++++++++++++++
> > 2 files changed, 87 insertions(+), 0 deletions(-)
> >
> > diff --git a/monitor.c b/monitor.c
> > index 61607c5..4fe7f5d 100644
> > --- a/monitor.c
> > +++ b/monitor.c
> > @@ -490,6 +490,48 @@ static int do_qmp_capabilities(Monitor *mon, const QDict *params,
> > return 0;
> > }
> >
> > +static int mon_set_cpu(int cpu_index);
> > +static void handle_user_command(Monitor *mon, const char *cmdline);
> > +
> > +static int do_hmp_passthrough(Monitor *mon, const QDict *params,
> > + QObject **ret_data)
> > +{
> > + int ret = 0;
> > + QString *qs;
> > + Monitor *old_mon, hmp;
> > + CharDriverState bufchr;
> > +
> > + memset(&hmp, 0, sizeof(hmp));
> > + hmp.chr = &bufchr;
> > + qemu_chr_init_buffered(hmp.chr);
> > +
> > + old_mon = cur_mon;
> > + cur_mon = &hmp;
> > +
> > + if (qdict_haskey(params, "cpu-index")) {
> > + ret = mon_set_cpu(qdict_get_int(params, "cpu-index"));
> > + if (ret < 0) {
> > + goto out;
> > + }
> > + }
> > +
> > + handle_user_command(&hmp, qdict_get_str(params, "command-line"));
> > +
> > + qs = qemu_chr_buffered_to_qs(hmp.chr);
> > + if (qs) {
> > + *ret_data = QOBJECT(qs);
> > + }
> > +
> > +out:
> > + cur_mon = old_mon;
> > + qemu_chr_close_buffered(hmp.chr);
> > +
> > + if (ret < 0) {
> > + qerror_report(QERR_INVALID_PARAMETER_VALUE, "cpu-index","a CPU number");
> > + }
>
> Emit the error right where ret becomes negative. Cleaner, and allows
> for other errors, should they become necessary.
>
> > + return ret;
> > +}
> > +
> > static int compare_cmd(const char *name, const char *list)
> > {
> > const char *p, *pstart;
> > diff --git a/qmp-commands.hx b/qmp-commands.hx
> > index 793cf1c..b344096 100644
> > --- a/qmp-commands.hx
> > +++ b/qmp-commands.hx
> > @@ -761,6 +761,51 @@ Example:
> >
> > Note: This command must be issued before issuing any other command.
> >
> > +EQMP
> > +
> > + {
> > + .name = "hmp_passthrough",
> > + .args_type = "command-line:s,cpu-index:i?",
> > + .params = "",
> > + .help = "",
> > + .user_print = monitor_user_noop,
> > + .mhandler.cmd_new = do_hmp_passthrough,
> > + },
> > +
> > +SQMP
> > +hmp_passthrough
> > +---------------
> > +
> > +Execute a Human Monitor command.
> > +
> > +Arguments:
> > +
> > +- command-line: the command name and its arguments, just like the
> > + Human Monitor's shell (json-string)
> > +- cpu-index: select the CPU number to be used by commands which access CPU
> > + data, like 'info registers'. The Monitor selects CPU 0 if this
> > + argument is not provided (json-int, optional)
> > +
> > +Example:
> > +
> > +-> { "execute": "hmp_passthrough", "arguments": { "command-line": "info kvm" } }
> > +<- { "return": "kvm support: enabled\r\n" }
> > +
> > +Notes:
> > +
> > +(1) The Human Monitor is NOT an stable interface, this means that command
> > + names, arguments and responses can change or be removed at ANY time.
> > + Applications that rely on long term stability guarantees should NOT
> > + use this command
> > +
> > +(2) Limitations:
> > +
> > + o This command is stateless, this means that commands that depend
> > + on state information (such as getfd) might not work
> > +
> > + o Commands that prompt the user for data (eg. 'cont' when the block
> > + device is encrypted) don't currently work
> > +
> > 3. Query Commands
> > =================
>
> In the real human monitor, cpu-index is state (Monitor member mon_cpu).
> For pass through, you shift that state into the client (argument
> cpu-index). Is there any other state that could need shifting? You
> mention getfd.
Surprisingly or not, this is a very important question for QMP itself.
Anthony has said that we should make it stateless, and I do think this
is good because it seems to simplify things considerably.
However, I haven't thought about how to make things like getfd stateless.
> A possible alternative would be to keep the state around instead of
> creating a new one for each pass through command. Dunno, haven't
> thought that through. Maybe you did?
It's above ;) becoming stateless seems to be the way for QMP.
> Regardless, this is clearly better than nothing. We can work on
> limitations later, should they turn out to be bothersome.
Agreed.
next prev parent reply other threads:[~2010-11-10 13:36 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-29 14:28 [Qemu-devel] [PATCH v1 0/3]: QMP: Human Monitor passthrough Luiz Capitulino
2010-10-29 14:28 ` [Qemu-devel] [PATCH 1/3] qemu-char: Introduce Buffered driver Luiz Capitulino
2010-10-29 14:28 ` [Qemu-devel] [PATCH 2/3] QMP: Introduce Human Monitor passthrough command Luiz Capitulino
2010-11-10 13:20 ` Markus Armbruster
2010-11-10 13:36 ` Luiz Capitulino [this message]
2010-11-11 15:47 ` Markus Armbruster
2010-11-11 15:55 ` Daniel P. Berrange
2010-11-11 16:30 ` Anthony Liguori
2010-11-11 16:39 ` Daniel P. Berrange
2010-11-11 16:47 ` Luiz Capitulino
2010-11-11 16:58 ` Anthony Liguori
2010-11-11 16:55 ` Luiz Capitulino
2010-11-11 16:59 ` Anthony Liguori
2010-11-11 17:45 ` Markus Armbruster
2010-10-29 14:28 ` [Qemu-devel] [PATCH 3/3] QMP/qmp-shell: Introduce HMP mode Luiz Capitulino
2010-11-10 13:22 ` Markus Armbruster
2010-11-11 16:22 ` [Qemu-devel] [PATCH v1 0/3]: QMP: Human Monitor passthrough Avi Kivity
2010-11-11 16:24 ` Luiz Capitulino
-- strict thread matches above, loose matches on Subject: below --
2010-11-10 18:59 [Qemu-devel] [PATCH v2 " Luiz Capitulino
2010-11-10 18:59 ` [Qemu-devel] [PATCH 2/3] QMP: Introduce Human Monitor passthrough command Luiz Capitulino
2010-11-11 15:47 ` Markus Armbruster
2010-11-11 17:11 ` Luiz Capitulino
2010-11-11 19:31 [Qemu-devel] [PATCH v3 0/3]: QMP: Human Monitor passthrough Luiz Capitulino
2010-11-11 19:31 ` [Qemu-devel] [PATCH 2/3] QMP: Introduce Human Monitor passthrough command Luiz Capitulino
2010-11-16 19:19 [Qemu-devel] [PATCH v4 0/3]: QMP: Human Monitor passthrough Luiz Capitulino
2010-11-16 19:19 ` [Qemu-devel] [PATCH 2/3] QMP: Introduce Human Monitor passthrough command Luiz Capitulino
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=20101110113637.05d5a202@doriath \
--to=lcapitulino@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=armbru@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.