]>
Commit | Line | Data |
---|---|---|
ab02ab2a MR |
1 | /* |
2 | * Core Definitions for QAPI/QMP Dispatch | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
8 | * | |
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. | |
11 | * | |
12 | */ | |
13 | ||
cbf21151 | 14 | #include "qemu/osdep.h" |
da34e65c | 15 | #include "qapi/error.h" |
7b1b5d19 | 16 | #include "qapi/qmp/dispatch.h" |
452fcdbc | 17 | #include "qapi/qmp/qdict.h" |
c7eb39cb | 18 | #include "qapi/qmp/qjson.h" |
cf869d53 | 19 | #include "qapi/qmp/qbool.h" |
047f7038 | 20 | #include "sysemu/sysemu.h" |
ab02ab2a | 21 | |
69240fe6 MA |
22 | static QDict *qmp_dispatch_check_obj(const QObject *request, bool allow_oob, |
23 | Error **errp) | |
ab02ab2a | 24 | { |
00ecec15 | 25 | const char *exec_key = NULL; |
ab02ab2a MR |
26 | const QDictEntry *ent; |
27 | const char *arg_name; | |
28 | const QObject *arg_obj; | |
00ecec15 | 29 | QDict *dict; |
ab02ab2a | 30 | |
7dc847eb | 31 | dict = qobject_to(QDict, request); |
ca6b6e1e | 32 | if (!dict) { |
10e37839 | 33 | error_setg(errp, "QMP input must be a JSON object"); |
ab02ab2a MR |
34 | return NULL; |
35 | } | |
36 | ||
ab02ab2a MR |
37 | for (ent = qdict_first(dict); ent; |
38 | ent = qdict_next(dict, ent)) { | |
39 | arg_name = qdict_entry_key(ent); | |
40 | arg_obj = qdict_entry_value(ent); | |
41 | ||
00ecec15 MA |
42 | if (!strcmp(arg_name, "execute") |
43 | || (!strcmp(arg_name, "exec-oob") && allow_oob)) { | |
ab02ab2a | 44 | if (qobject_type(arg_obj) != QTYPE_QSTRING) { |
00ecec15 MA |
45 | error_setg(errp, "QMP input member '%s' must be a string", |
46 | arg_name); | |
ab02ab2a MR |
47 | return NULL; |
48 | } | |
00ecec15 MA |
49 | if (exec_key) { |
50 | error_setg(errp, "QMP input member '%s' clashes with '%s'", | |
51 | arg_name, exec_key); | |
74d8c9d9 MA |
52 | return NULL; |
53 | } | |
00ecec15 MA |
54 | exec_key = arg_name; |
55 | } else if (!strcmp(arg_name, "arguments")) { | |
cf869d53 PX |
56 | if (qobject_type(arg_obj) != QTYPE_QDICT) { |
57 | error_setg(errp, | |
00ecec15 | 58 | "QMP input member 'arguments' must be an object"); |
cf869d53 PX |
59 | return NULL; |
60 | } | |
4eaca8de MAL |
61 | } else if (!strcmp(arg_name, "id")) { |
62 | continue; | |
74d8c9d9 | 63 | } else { |
10e37839 | 64 | error_setg(errp, "QMP input member '%s' is unexpected", |
99fb0c53 | 65 | arg_name); |
ab02ab2a MR |
66 | return NULL; |
67 | } | |
68 | } | |
69 | ||
00ecec15 | 70 | if (!exec_key) { |
10e37839 | 71 | error_setg(errp, "QMP input lacks member 'execute'"); |
ab02ab2a MR |
72 | return NULL; |
73 | } | |
74 | ||
75 | return dict; | |
76 | } | |
77 | ||
1527badb | 78 | static QObject *do_qmp_dispatch(QmpCommandList *cmds, QObject *request, |
674ed722 | 79 | bool allow_oob, Error **errp) |
ab02ab2a | 80 | { |
ee16ce93 | 81 | Error *local_err = NULL; |
69240fe6 | 82 | bool oob; |
ab02ab2a MR |
83 | const char *command; |
84 | QDict *args, *dict; | |
85 | QmpCommand *cmd; | |
86 | QObject *ret = NULL; | |
87 | ||
674ed722 | 88 | dict = qmp_dispatch_check_obj(request, allow_oob, errp); |
4af8be1f | 89 | if (!dict) { |
ab02ab2a MR |
90 | return NULL; |
91 | } | |
92 | ||
00ecec15 | 93 | command = qdict_get_try_str(dict, "execute"); |
69240fe6 | 94 | oob = false; |
00ecec15 MA |
95 | if (!command) { |
96 | assert(allow_oob); | |
97 | command = qdict_get_str(dict, "exec-oob"); | |
69240fe6 | 98 | oob = true; |
00ecec15 | 99 | } |
1527badb | 100 | cmd = qmp_find_command(cmds, command); |
ab02ab2a | 101 | if (cmd == NULL) { |
a6c90cbc MA |
102 | error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND, |
103 | "The command %s has not been found", command); | |
ab02ab2a MR |
104 | return NULL; |
105 | } | |
abd6cf6d | 106 | if (!cmd->enabled) { |
f231b88d CR |
107 | error_setg(errp, "The command %s has been disabled for this instance", |
108 | command); | |
abd6cf6d MR |
109 | return NULL; |
110 | } | |
69240fe6 MA |
111 | if (oob && !(cmd->options & QCO_ALLOW_OOB)) { |
112 | error_setg(errp, "The command %s does not support OOB", | |
113 | command); | |
413aeacd | 114 | return NULL; |
69240fe6 | 115 | } |
ab02ab2a | 116 | |
047f7038 IM |
117 | if (runstate_check(RUN_STATE_PRECONFIG) && |
118 | !(cmd->options & QCO_ALLOW_PRECONFIG)) { | |
119 | error_setg(errp, "The command '%s' isn't permitted in '%s' state", | |
120 | cmd->name, RunState_str(RUN_STATE_PRECONFIG)); | |
121 | return NULL; | |
122 | } | |
123 | ||
ab02ab2a MR |
124 | if (!qdict_haskey(dict, "arguments")) { |
125 | args = qdict_new(); | |
126 | } else { | |
127 | args = qdict_get_qdict(dict, "arguments"); | |
cb3e7f08 | 128 | qobject_ref(args); |
ab02ab2a MR |
129 | } |
130 | ||
42a502a7 EB |
131 | cmd->fn(args, &ret, &local_err); |
132 | if (local_err) { | |
133 | error_propagate(errp, local_err); | |
134 | } else if (cmd->options & QCO_NO_SUCCESS_RESP) { | |
135 | g_assert(!ret); | |
136 | } else if (!ret) { | |
62e93be2 | 137 | /* TODO turn into assertion */ |
42a502a7 | 138 | ret = QOBJECT(qdict_new()); |
ab02ab2a MR |
139 | } |
140 | ||
cb3e7f08 | 141 | qobject_unref(args); |
ab02ab2a MR |
142 | |
143 | return ret; | |
144 | } | |
145 | ||
cee32796 | 146 | QDict *qmp_error_response(Error *err) |
93b91c59 | 147 | { |
cee32796 MA |
148 | QDict *rsp; |
149 | ||
150 | rsp = qdict_from_jsonf_nofail("{ 'error': { 'class': %s, 'desc': %s } }", | |
151 | QapiErrorClass_str(error_get_class(err)), | |
152 | error_get_pretty(err)); | |
153 | error_free(err); | |
154 | return rsp; | |
93b91c59 LC |
155 | } |
156 | ||
cf869d53 | 157 | /* |
00ecec15 | 158 | * Does @qdict look like a command to be run out-of-band? |
cf869d53 | 159 | */ |
2aa788f5 | 160 | bool qmp_is_oob(const QDict *dict) |
cf869d53 | 161 | { |
00ecec15 MA |
162 | return qdict_haskey(dict, "exec-oob") |
163 | && !qdict_haskey(dict, "execute"); | |
cf869d53 PX |
164 | } |
165 | ||
d43b1694 MA |
166 | QDict *qmp_dispatch(QmpCommandList *cmds, QObject *request, |
167 | bool allow_oob) | |
ab02ab2a MR |
168 | { |
169 | Error *err = NULL; | |
4eaca8de MAL |
170 | QDict *dict = qobject_to(QDict, request); |
171 | QObject *ret, *id = dict ? qdict_get(dict, "id") : NULL; | |
ab02ab2a MR |
172 | QDict *rsp; |
173 | ||
674ed722 | 174 | ret = do_qmp_dispatch(cmds, request, allow_oob, &err); |
ab02ab2a | 175 | if (err) { |
cee32796 | 176 | rsp = qmp_error_response(err); |
ab02ab2a | 177 | } else if (ret) { |
cee32796 | 178 | rsp = qdict_new(); |
ab02ab2a MR |
179 | qdict_put_obj(rsp, "return", ret); |
180 | } else { | |
62e93be2 | 181 | /* Can only happen for commands with QCO_NO_SUCCESS_RESP */ |
cee32796 | 182 | rsp = NULL; |
ab02ab2a MR |
183 | } |
184 | ||
4eaca8de MAL |
185 | if (rsp && id) { |
186 | qdict_put_obj(rsp, "id", qobject_ref(id)); | |
187 | } | |
188 | ||
d43b1694 | 189 | return rsp; |
ab02ab2a | 190 | } |