From: Luiz Capitulino <lcapitulino@redhat.com>
To: Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: Jes.Sorensen@redhat.com, Anthony Liguori <aliguori@us.ibm.com>,
agl@linux.vnet.ibm.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v3 09/21] qapi: add QMP dispatch functions
Date: Wed, 15 Jun 2011 17:48:51 -0300 [thread overview]
Message-ID: <20110615174851.6e335c43@doriath> (raw)
In-Reply-To: <4DF919E0.9030508@linux.vnet.ibm.com>
On Wed, 15 Jun 2011 15:45:20 -0500
Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> On 06/15/2011 03:12 PM, Luiz Capitulino wrote:
> > On Wed, 15 Jun 2011 14:45:30 -0500
> > Anthony Liguori<aliguori@us.ibm.com> wrote:
> >
> >> On 06/15/2011 02:33 PM, Luiz Capitulino wrote:
> >>> On Mon, 13 Jun 2011 21:31:14 -0500
> >>> Michael Roth<mdroth@linux.vnet.ibm.com> wrote:
> >>>
> >>>
> >>>> +{
> >>>> + const char *command;
> >>>> + QDict *args, *dict;
> >>>> + QmpCommand *cmd;
> >>>> + QObject *ret = NULL;
> >>>> +
> >>>> + if (qobject_type(request) != QTYPE_QDICT) {
> >>>> + error_set(errp, QERR_JSON_PARSE_ERROR, "request is not a dictionary");
> >>>> + goto out;
> >>>> + }
> >>>> +
> >>>> + dict = qobject_to_qdict(request);
> >>>> + if (!qdict_haskey(dict, "execute")) {
> >>>> + error_set(errp, QERR_JSON_PARSE_ERROR, "no execute key");
> >>>> + goto out;
> >>>> + }
> >>>> +
> >>>> + command = qdict_get_str(dict, "execute");
> >>>> + cmd = qmp_find_command(command);
> >>>> + if (cmd == NULL) {
> >>>> + error_set(errp, QERR_COMMAND_NOT_FOUND, command);
> >>>> + goto out;
> >>>> + }
> >>>> +
> >>>> + if (!qdict_haskey(dict, "arguments")) {
> >>>> + args = qdict_new();
> >>>> + } else {
> >>>> + args = qdict_get_qdict(dict, "arguments");
> >>>> + QINCREF(args);
> >>>> + }
> >>>
> >>> This function doesn't seem to handle extra keys in the command dict, like:
> >>>
> >>> { "execute": "query-block", "foo": "bar" }
> >>>
> >>> You probably want to use qmp_check_input_obj() here.
> >>
> >> That's a feature, no?
> >>
> >> "Be liberal in what you accept, conservative in what you send."
> >
> > I'm not sure the principle applies in this case, as this is an invalid
> > argument. This is the kind of thing that could give a hard time to clients,
> > like using a new argument on an old command and wonder why it doesn't work.
> >
> > Libvirt did something like this in the past when we weren't doing the check,
> > they were passing an additional key for some command and expecting it would
> > have the desired functionality.
> >
> >>>> +
> >>>> + switch (cmd->type) {
> >>>> + case QCT_NORMAL:
> >>>> + cmd->fn(args,&ret, errp);
> >>>> + if (!error_is_set(errp)&& ret == NULL) {
> >>>> + ret = QOBJECT(qdict_new());
> >>>> + }
> >>>> + break;
> >>>> + }
> >>>> +
> >>>> + QDECREF(args);
> >>>> +
> >>>> +out:
> >>>> +
> >>>> + return ret;
> >>>> +}
> >>>> +
> >>>> +QObject *qmp_dispatch(QObject *request)
> >>>> +{
> >>>> + Error *err = NULL;
> >>>> + QObject *ret;
> >>>> + QDict *rsp;
> >>>> +
> >>>> + ret = qmp_dispatch_err(request,&err);
> >>>> +
> >>>> + rsp = qdict_new();
> >>>> + if (err) {
> >>>> + qdict_put_obj(rsp, "error", error_get_qobject(err));
> >>>> + error_free(err);
> >>>> + } else if (ret) {
> >>>> + qdict_put_obj(rsp, "return", ret);
> >>>> + } else {
> >>>> + QDECREF(rsp);
> >>>> + return NULL;
> >>>
> >>> When does the 'else' condition happens?
> >>
> >> Signals which aren't in this patch series.
> >
> > It can be dropped then.
> >
>
> I think it's still a good safeguard in the meantime. Whether it's
> reachable or not is hard to know without looking over a lot of code
> outside the function, and things can change over time. This way the user
> can expect a NULL for an undefined error, as opposed to an empty
> dictionary they need to free, which isn't very intuitive.
Makes sense. Although I think I prefer an assert(). But I'm not strong
about it.
>
> >>
> >> Regards,
> >>
> >> Anthony Liguori
> >>
> >>>
> >>>> + }
> >>>> +
> >>>> + return QOBJECT(rsp);
> >>>> +}
> >>>
> >>
> >
>
next prev parent reply other threads:[~2011-06-15 20:48 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-14 2:31 [Qemu-devel] [QAPI+QGA 2/3] QAPI code generation infrastructure v3 Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 01/21] Add hard build dependency on glib Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 02/21] qlist: add qlist_first()/qlist_next() Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 03/21] qapi: add module init types for qapi Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 04/21] qapi: add QAPI visitor core Michael Roth
2011-06-15 14:33 ` Luiz Capitulino
2011-06-15 14:54 ` Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 05/21] qapi: add QMP input visitor Michael Roth
2011-06-15 16:11 ` Luiz Capitulino
2011-06-15 16:56 ` Michael Roth
2011-06-15 17:02 ` Luiz Capitulino
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 06/21] qapi: add QMP output visitor Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 07/21] qapi: add QAPI dealloc visitor Michael Roth
2011-06-15 18:25 ` Luiz Capitulino
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 08/21] qapi: add QMP command registration/lookup functions Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 09/21] qapi: add QMP dispatch functions Michael Roth
2011-06-15 19:33 ` Luiz Capitulino
2011-06-15 19:45 ` Anthony Liguori
2011-06-15 20:12 ` Luiz Capitulino
2011-06-15 20:45 ` Michael Roth
2011-06-15 20:48 ` Luiz Capitulino [this message]
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 10/21] qapi: add ordereddict.py helper library Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 11/21] qapi: add qapi.py helper libraries Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 12/21] qapi: add qapi-types.py code generator Michael Roth
2011-06-15 19:11 ` Luiz Capitulino
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 13/21] qapi: add qapi-visit.py " Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 14/21] qapi: add qapi-commands.py " Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 15/21] qapi: test schema used for unit tests Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 16/21] qapi: add test-visitor, tests for gen. visitor code Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 17/21] qapi: configure, Fix build issue when using seperate build dir Michael Roth
2011-06-15 19:34 ` Luiz Capitulino
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 18/21] qapi: Makefile changes to build test-visitor Michael Roth
2011-06-15 19:35 ` Luiz Capitulino
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 19/21] qapi: add test-qmp-commands, tests for gen. marshalling/dispatch code Michael Roth
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 20/21] qapi: Makefile changes to build test-qmp-commands Michael Roth
2011-06-15 19:35 ` Luiz Capitulino
2011-06-14 2:31 ` [Qemu-devel] [PATCH v3 21/21] qapi: add QAPI code generation documentation Michael Roth
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=20110615174851.6e335c43@doriath \
--to=lcapitulino@redhat.com \
--cc=Jes.Sorensen@redhat.com \
--cc=agl@linux.vnet.ibm.com \
--cc=aliguori@us.ibm.com \
--cc=mdroth@linux.vnet.ibm.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).