2 * Core Definitions for QAPI/QMP Dispatch
4 * Copyright IBM, Corp. 2011
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
16 #include "qapi/qmp/types.h"
17 #include "qapi/qmp/dispatch.h"
18 #include "qapi/qmp/json-parser.h"
19 #include "qapi-types.h"
20 #include "qapi/qmp/qerror.h"
22 static QDict *qmp_dispatch_check_obj(const QObject *request, Error **errp)
24 const QDictEntry *ent;
26 const QObject *arg_obj;
27 bool has_exec_key = false;
30 if (qobject_type(request) != QTYPE_QDICT) {
31 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT,
32 "request is not a dictionary");
36 dict = qobject_to_qdict(request);
38 for (ent = qdict_first(dict); ent;
39 ent = qdict_next(dict, ent)) {
40 arg_name = qdict_entry_key(ent);
41 arg_obj = qdict_entry_value(ent);
43 if (!strcmp(arg_name, "execute")) {
44 if (qobject_type(arg_obj) != QTYPE_QSTRING) {
45 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT_MEMBER, "execute",
50 } else if (strcmp(arg_name, "arguments")) {
51 error_setg(errp, QERR_QMP_EXTRA_MEMBER, arg_name);
57 error_setg(errp, QERR_QMP_BAD_INPUT_OBJECT, "execute");
64 static QObject *do_qmp_dispatch(QObject *request, Error **errp)
66 Error *local_err = NULL;
72 dict = qmp_dispatch_check_obj(request, errp);
77 command = qdict_get_str(dict, "execute");
78 cmd = qmp_find_command(command);
80 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
81 "The command %s has not been found", command);
85 error_setg(errp, "The command %s has been disabled for this instance",
90 if (!qdict_haskey(dict, "arguments")) {
93 args = qdict_get_qdict(dict, "arguments");
97 cmd->fn(args, &ret, &local_err);
99 error_propagate(errp, local_err);
100 } else if (cmd->options & QCO_NO_SUCCESS_RESP) {
103 ret = QOBJECT(qdict_new());
111 QObject *qmp_build_error_object(Error *err)
113 return qobject_from_jsonf("{ 'class': %s, 'desc': %s }",
114 QapiErrorClass_lookup[error_get_class(err)],
115 error_get_pretty(err));
118 QObject *qmp_dispatch(QObject *request)
124 ret = do_qmp_dispatch(request, &err);
128 qdict_put_obj(rsp, "error", qmp_build_error_object(err));
131 qdict_put_obj(rsp, "return", ret);