blob: 52cfd2d81c0f8d58a41d4a8bdbb4983949c76633 [file] [log] [blame]
Anthony Liguori48a32be2011-09-02 12:34:48 -05001/*
2 * QEMU Management Protocol
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
Paolo Bonzini6b620ca2012-01-13 17:44:23 +010012 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
Anthony Liguori48a32be2011-09-02 12:34:48 -050014 */
15
Peter Maydelld38ea872016-01-29 17:50:05 +000016#include "qemu/osdep.h"
Fam Zheng67a1de02016-06-01 17:44:21 +080017#include "qemu-version.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020018#include "qemu/cutils.h"
Markus Armbrustera0b1a662015-03-17 18:16:21 +010019#include "monitor/monitor.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010020#include "sysemu/sysemu.h"
Marc-André Lureau213dcb02016-12-12 20:22:24 +030021#include "qemu/config-file.h"
Fam Zhengcea25272016-09-21 12:27:14 +080022#include "qemu/uuid.h"
Anthony Liguori48a32be2011-09-02 12:34:48 -050023#include "qmp-commands.h"
Marc-André Lureau8228e352017-01-26 17:19:46 +040024#include "chardev/char.h"
Luiz Capitulinofbf796f2011-12-07 11:17:51 -020025#include "ui/qemu-spice.h"
26#include "ui/vnc.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010027#include "sysemu/kvm.h"
28#include "sysemu/arch_init.h"
Anthony Liguorib4b12c62011-12-12 14:29:34 -060029#include "hw/qdev.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010030#include "sysemu/blockdev.h"
Max Reitz373340b2015-10-19 17:53:22 +020031#include "sysemu/block-backend.h"
Paolo Bonzini14cccb62012-12-17 18:19:50 +010032#include "qom/qom-qobject.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010033#include "qapi/qmp/qerror.h"
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +010034#include "qapi/qmp/qobject.h"
Daniel P. Berrangeb3db2112016-09-30 15:45:27 +010035#include "qapi/qobject-input-visitor.h"
Igor Mammedov69ca3ea2013-04-30 15:41:25 +020036#include "hw/boards.h"
Igor Mammedov269e09f2014-01-16 17:34:38 +010037#include "qom/object_interfaces.h"
Igor Mammedov6f2e2732014-06-16 19:12:25 +020038#include "hw/mem/pc-dimm.h"
Igor Mammedov02419bc2014-06-16 19:12:28 +020039#include "hw/acpi/acpi_dev_interface.h"
Anthony Liguori48a32be2011-09-02 12:34:48 -050040
41NameInfo *qmp_query_name(Error **errp)
42{
43 NameInfo *info = g_malloc0(sizeof(*info));
44
45 if (qemu_name) {
46 info->has_name = true;
47 info->name = g_strdup(qemu_name);
48 }
49
50 return info;
51}
Luiz Capitulinob9c15f12011-08-26 17:38:13 -030052
Markus Armbruster7daecb32014-05-02 13:26:31 +020053VersionInfo *qmp_query_version(Error **errp)
Luiz Capitulinob9c15f12011-08-26 17:38:13 -030054{
Eric Blake4752cdb2015-05-04 09:05:31 -060055 VersionInfo *info = g_new0(VersionInfo, 1);
Luiz Capitulinob9c15f12011-08-26 17:38:13 -030056
Eric Blake4752cdb2015-05-04 09:05:31 -060057 info->qemu = g_new0(VersionTriple, 1);
Marc-André Lureau3688d8c2016-09-12 13:18:56 +040058 info->qemu->major = QEMU_VERSION_MAJOR;
59 info->qemu->minor = QEMU_VERSION_MINOR;
60 info->qemu->micro = QEMU_VERSION_MICRO;
Luiz Capitulinob9c15f12011-08-26 17:38:13 -030061 info->package = g_strdup(QEMU_PKGVERSION);
62
63 return info;
64}
Luiz Capitulino292a2602011-09-12 15:10:53 -030065
66KvmInfo *qmp_query_kvm(Error **errp)
67{
68 KvmInfo *info = g_malloc0(sizeof(*info));
69
70 info->enabled = kvm_enabled();
71 info->present = kvm_available();
72
73 return info;
74}
75
Luiz Capitulinoefab7672011-09-13 17:16:25 -030076UuidInfo *qmp_query_uuid(Error **errp)
77{
78 UuidInfo *info = g_malloc0(sizeof(*info));
Luiz Capitulinoefab7672011-09-13 17:16:25 -030079
Fam Zheng9c5ce8d2016-09-21 12:27:22 +080080 info->UUID = qemu_uuid_unparse_strdup(&qemu_uuid);
Luiz Capitulinoefab7672011-09-13 17:16:25 -030081 return info;
82}
83
Markus Armbruster7daecb32014-05-02 13:26:31 +020084void qmp_quit(Error **errp)
Luiz Capitulino7a7f3252011-09-15 14:20:28 -030085{
86 no_shutdown = 0;
Eric Blakecf83f142017-05-15 16:41:13 -050087 qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_QMP);
Luiz Capitulino7a7f3252011-09-15 14:20:28 -030088}
89
Luiz Capitulino5f158f22011-09-15 14:34:39 -030090void qmp_stop(Error **errp)
91{
Peter Xu65d64f32016-02-18 13:16:49 +080092 /* if there is a dump in background, we should wait until the dump
93 * finished */
94 if (dump_in_progress()) {
95 error_setg(errp, "There is a dump in process, please wait.");
96 return;
97 }
98
Paolo Bonzini1e998142012-10-23 14:54:21 +020099 if (runstate_check(RUN_STATE_INMIGRATE)) {
100 autostart = 0;
101 } else {
102 vm_stop(RUN_STATE_PAUSED);
103 }
Luiz Capitulino5f158f22011-09-15 14:34:39 -0300104}
105
Luiz Capitulino38d22652011-09-15 14:41:46 -0300106void qmp_system_reset(Error **errp)
107{
Eric Blakecf83f142017-05-15 16:41:13 -0500108 qemu_system_reset_request(SHUTDOWN_CAUSE_HOST_QMP);
Luiz Capitulino38d22652011-09-15 14:41:46 -0300109}
Luiz Capitulino5bc465e2011-09-28 11:06:15 -0300110
111void qmp_system_powerdown(Error **erp)
112{
113 qemu_system_powerdown_request();
114}
Luiz Capitulino755f1962011-10-06 14:31:39 -0300115
Igor Mammedov69ca3ea2013-04-30 15:41:25 +0200116void qmp_cpu_add(int64_t id, Error **errp)
117{
Marcel Apfelbaum0056ae22014-03-05 19:30:47 +0200118 MachineClass *mc;
119
120 mc = MACHINE_GET_CLASS(current_machine);
Marcel Apfelbaum958db902014-04-09 20:34:53 +0300121 if (mc->hot_add_cpu) {
122 mc->hot_add_cpu(id, errp);
Igor Mammedov69ca3ea2013-04-30 15:41:25 +0200123 } else {
124 error_setg(errp, "Not supported");
125 }
126}
127
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200128#ifndef CONFIG_VNC
129/* If VNC support is enabled, the "true" query-vnc command is
130 defined in the VNC subsystem */
131VncInfo *qmp_query_vnc(Error **errp)
132{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100133 error_setg(errp, QERR_FEATURE_DISABLED, "vnc");
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200134 return NULL;
135};
Leon Yu89db21772015-02-02 05:08:51 +0000136
137VncInfo2List *qmp_query_vnc_servers(Error **errp)
138{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100139 error_setg(errp, QERR_FEATURE_DISABLED, "vnc");
Leon Yu89db21772015-02-02 05:08:51 +0000140 return NULL;
141};
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200142#endif
Luiz Capitulinod1f29642011-10-20 17:01:33 -0200143
144#ifndef CONFIG_SPICE
Markus Armbrusterad0ec142015-01-13 15:56:11 +0100145/*
146 * qmp-commands.hx ensures that QMP command query-spice exists only
147 * #ifdef CONFIG_SPICE. Necessary for an accurate query-commands
148 * result. However, the QAPI schema is blissfully unaware of that,
149 * and the QAPI code generator happily generates a dead
Markus Armbruster7fad30f2015-09-16 13:06:19 +0200150 * qmp_marshal_query_spice() that calls qmp_query_spice(). Provide it
151 * one, or else linking fails. FIXME Educate the QAPI schema on
152 * CONFIG_SPICE.
Markus Armbrusterad0ec142015-01-13 15:56:11 +0100153 */
Luiz Capitulinod1f29642011-10-20 17:01:33 -0200154SpiceInfo *qmp_query_spice(Error **errp)
155{
Markus Armbrusterad0ec142015-01-13 15:56:11 +0100156 abort();
Luiz Capitulinod1f29642011-10-20 17:01:33 -0200157};
158#endif
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200159
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200160void qmp_cont(Error **errp)
161{
Max Reitz373340b2015-10-19 17:53:22 +0200162 BlockBackend *blk;
Daniel P. Berrange788cf9f2017-06-23 17:24:15 +0100163 Error *local_err = NULL;
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200164
Peter Xu65d64f32016-02-18 13:16:49 +0800165 /* if there is a dump in background, we should wait until the dump
166 * finished */
167 if (dump_in_progress()) {
168 error_setg(errp, "There is a dump in process, please wait.");
169 return;
170 }
171
Hu Taoede085b2013-04-26 11:24:40 +0800172 if (runstate_needs_reset()) {
Cole Robinsonf231b882014-03-21 19:42:26 -0400173 error_setg(errp, "Resetting the Virtual Machine is required");
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200174 return;
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300175 } else if (runstate_check(RUN_STATE_SUSPENDED)) {
176 return;
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200177 }
178
Max Reitz373340b2015-10-19 17:53:22 +0200179 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
180 blk_iostatus_reset(blk);
Markus Armbrusterab319792014-05-02 13:26:42 +0200181 }
Kevin Wolf7c8eece2016-03-22 18:58:50 +0100182
Kevin Wolf76b1c7f2015-12-22 14:07:08 +0100183 /* Continuing after completed migration. Images have been inactivated to
Kevin Wolface21a52017-05-04 18:52:36 +0200184 * allow the destination to take control. Need to get control back now.
185 *
186 * If there are no inactive block nodes (e.g. because the VM was just
187 * paused rather than completing a migration), bdrv_inactivate_all() simply
188 * doesn't do anything. */
189 bdrv_invalidate_cache_all(&local_err);
190 if (local_err) {
191 error_propagate(errp, local_err);
192 return;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +0100193 }
194
Paolo Bonzini1e998142012-10-23 14:54:21 +0200195 if (runstate_check(RUN_STATE_INMIGRATE)) {
196 autostart = 1;
197 } else {
198 vm_start();
199 }
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200200}
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600201
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100202void qmp_system_wakeup(Error **errp)
203{
204 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
205}
206
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600207ObjectPropertyInfoList *qmp_qom_list(const char *path, Error **errp)
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600208{
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600209 Object *obj;
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600210 bool ambiguous = false;
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600211 ObjectPropertyInfoList *props = NULL;
212 ObjectProperty *prop;
Daniel P. Berrange7746abd2015-12-09 12:34:02 +0000213 ObjectPropertyIterator iter;
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600214
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600215 obj = object_resolve_path(path, &ambiguous);
216 if (obj == NULL) {
Michael Tokarev79772082014-05-04 12:23:59 +0400217 if (ambiguous) {
218 error_setg(errp, "Path '%s' is ambiguous", path);
219 } else {
Markus Armbruster75158eb2015-03-16 08:57:47 +0100220 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
221 "Device '%s' not found", path);
Michael Tokarev79772082014-05-04 12:23:59 +0400222 }
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600223 return NULL;
224 }
225
Daniel P. Berrange7746abd2015-12-09 12:34:02 +0000226 object_property_iter_init(&iter, obj);
227 while ((prop = object_property_iter_next(&iter))) {
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600228 ObjectPropertyInfoList *entry = g_malloc0(sizeof(*entry));
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600229
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600230 entry->value = g_malloc0(sizeof(ObjectPropertyInfo));
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600231 entry->next = props;
232 props = entry;
233
234 entry->value->name = g_strdup(prop->name);
235 entry->value->type = g_strdup(prop->type);
236 }
237
238 return props;
239}
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600240
Markus Armbruster6eb39372015-09-16 13:06:25 +0200241void qmp_qom_set(const char *path, const char *property, QObject *value,
242 Error **errp)
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600243{
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600244 Object *obj;
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600245
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600246 obj = object_resolve_path(path, NULL);
247 if (!obj) {
Markus Armbruster485febc2015-03-13 17:25:50 +0100248 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
Markus Armbruster75158eb2015-03-16 08:57:47 +0100249 "Device '%s' not found", path);
Markus Armbruster485febc2015-03-13 17:25:50 +0100250 return;
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600251 }
252
Markus Armbruster485febc2015-03-13 17:25:50 +0100253 object_property_set_qobject(obj, value, property, errp);
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600254}
255
Markus Armbruster6eb39372015-09-16 13:06:25 +0200256QObject *qmp_qom_get(const char *path, const char *property, Error **errp)
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600257{
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600258 Object *obj;
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600259
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600260 obj = object_resolve_path(path, NULL);
261 if (!obj) {
Markus Armbruster485febc2015-03-13 17:25:50 +0100262 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
Markus Armbruster75158eb2015-03-16 08:57:47 +0100263 "Device '%s' not found", path);
Markus Armbruster6eb39372015-09-16 13:06:25 +0200264 return NULL;
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600265 }
266
Markus Armbruster6eb39372015-09-16 13:06:25 +0200267 return object_property_get_qobject(obj, property, errp);
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600268}
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200269
270void qmp_set_password(const char *protocol, const char *password,
271 bool has_connected, const char *connected, Error **errp)
272{
273 int disconnect_if_connected = 0;
274 int fail_if_connected = 0;
275 int rc;
276
277 if (has_connected) {
278 if (strcmp(connected, "fail") == 0) {
279 fail_if_connected = 1;
280 } else if (strcmp(connected, "disconnect") == 0) {
281 disconnect_if_connected = 1;
282 } else if (strcmp(connected, "keep") == 0) {
283 /* nothing */
284 } else {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100285 error_setg(errp, QERR_INVALID_PARAMETER, "connected");
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200286 return;
287 }
288 }
289
290 if (strcmp(protocol, "spice") == 0) {
Markus Armbrusterb25d81b2015-01-13 17:07:15 +0100291 if (!qemu_using_spice(errp)) {
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200292 return;
293 }
294 rc = qemu_spice_set_passwd(password, fail_if_connected,
295 disconnect_if_connected);
296 if (rc != 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100297 error_setg(errp, QERR_SET_PASSWD_FAILED);
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200298 }
299 return;
300 }
301
302 if (strcmp(protocol, "vnc") == 0) {
303 if (fail_if_connected || disconnect_if_connected) {
304 /* vnc supports "connected=keep" only */
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100305 error_setg(errp, QERR_INVALID_PARAMETER, "connected");
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200306 return;
307 }
308 /* Note that setting an empty password will not disable login through
309 * this interface. */
310 rc = vnc_display_password(NULL, password);
311 if (rc < 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100312 error_setg(errp, QERR_SET_PASSWD_FAILED);
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200313 }
314 return;
315 }
316
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100317 error_setg(errp, QERR_INVALID_PARAMETER, "protocol");
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200318}
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200319
320void qmp_expire_password(const char *protocol, const char *whenstr,
321 Error **errp)
322{
323 time_t when;
324 int rc;
325
326 if (strcmp(whenstr, "now") == 0) {
327 when = 0;
328 } else if (strcmp(whenstr, "never") == 0) {
329 when = TIME_MAX;
330 } else if (whenstr[0] == '+') {
331 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
332 } else {
333 when = strtoull(whenstr, NULL, 10);
334 }
335
336 if (strcmp(protocol, "spice") == 0) {
Markus Armbrusterb25d81b2015-01-13 17:07:15 +0100337 if (!qemu_using_spice(errp)) {
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200338 return;
339 }
340 rc = qemu_spice_set_pw_expire(when);
341 if (rc != 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100342 error_setg(errp, QERR_SET_PASSWD_FAILED);
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200343 }
344 return;
345 }
346
347 if (strcmp(protocol, "vnc") == 0) {
348 rc = vnc_display_pw_expire(NULL, when);
349 if (rc != 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100350 error_setg(errp, QERR_SET_PASSWD_FAILED);
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200351 }
352 return;
353 }
354
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100355 error_setg(errp, QERR_INVALID_PARAMETER, "protocol");
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200356}
Luiz Capitulino270b2432011-12-08 11:45:55 -0200357
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200358#ifdef CONFIG_VNC
Luiz Capitulino270b2432011-12-08 11:45:55 -0200359void qmp_change_vnc_password(const char *password, Error **errp)
360{
361 if (vnc_display_password(NULL, password) < 0) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100362 error_setg(errp, QERR_SET_PASSWD_FAILED);
Luiz Capitulino270b2432011-12-08 11:45:55 -0200363 }
364}
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200365
Paolo Bonzini007fcd3e2012-10-18 09:01:01 +0200366static void qmp_change_vnc_listen(const char *target, Error **errp)
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200367{
Gerd Hoffmann4db14622014-09-16 12:33:03 +0200368 QemuOptsList *olist = qemu_find_opts("vnc");
369 QemuOpts *opts;
370
371 if (strstr(target, "id=")) {
372 error_setg(errp, "id not supported");
373 return;
374 }
375
376 opts = qemu_opts_find(olist, "default");
377 if (opts) {
378 qemu_opts_del(opts);
379 }
Markus Armbruster70b94332015-02-13 12:50:26 +0100380 opts = vnc_parse(target, errp);
Gongleif7801c52015-02-05 17:43:35 +0800381 if (!opts) {
382 return;
383 }
384
Gerd Hoffmann4db14622014-09-16 12:33:03 +0200385 vnc_display_open("default", errp);
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200386}
387
388static void qmp_change_vnc(const char *target, bool has_arg, const char *arg,
389 Error **errp)
390{
391 if (strcmp(target, "passwd") == 0 || strcmp(target, "password") == 0) {
392 if (!has_arg) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100393 error_setg(errp, QERR_MISSING_PARAMETER, "password");
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200394 } else {
395 qmp_change_vnc_password(arg, errp);
396 }
397 } else {
398 qmp_change_vnc_listen(target, errp);
399 }
400}
401#else
402void qmp_change_vnc_password(const char *password, Error **errp)
403{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100404 error_setg(errp, QERR_FEATURE_DISABLED, "vnc");
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200405}
406static void qmp_change_vnc(const char *target, bool has_arg, const char *arg,
407 Error **errp)
408{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100409 error_setg(errp, QERR_FEATURE_DISABLED, "vnc");
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200410}
411#endif /* !CONFIG_VNC */
412
413void qmp_change(const char *device, const char *target,
Markus Armbruster7daecb32014-05-02 13:26:31 +0200414 bool has_arg, const char *arg, Error **errp)
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200415{
416 if (strcmp(device, "vnc") == 0) {
Markus Armbruster7daecb32014-05-02 13:26:31 +0200417 qmp_change_vnc(target, has_arg, arg, errp);
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200418 } else {
Kevin Wolf70e2cb32016-09-20 13:38:47 +0200419 qmp_blockdev_change_medium(true, device, false, NULL, target,
420 has_arg, arg, false, 0, errp);
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200421 }
422}
Anthony Liguori5eeee3f2011-12-22 14:40:54 -0600423
424static void qom_list_types_tramp(ObjectClass *klass, void *data)
425{
426 ObjectTypeInfoList *e, **pret = data;
427 ObjectTypeInfo *info;
Eduardo Habkostf86285c2017-07-07 09:22:15 -0300428 ObjectClass *parent = object_class_get_parent(klass);
Anthony Liguori5eeee3f2011-12-22 14:40:54 -0600429
430 info = g_malloc0(sizeof(*info));
431 info->name = g_strdup(object_class_get_name(klass));
Eduardo Habkost87467ea2017-07-07 09:22:14 -0300432 info->has_abstract = info->abstract = object_class_is_abstract(klass);
Eduardo Habkostf86285c2017-07-07 09:22:15 -0300433 if (parent) {
434 info->has_parent = true;
435 info->parent = g_strdup(object_class_get_name(parent));
436 }
Anthony Liguori5eeee3f2011-12-22 14:40:54 -0600437
438 e = g_malloc0(sizeof(*e));
439 e->value = info;
440 e->next = *pret;
441 *pret = e;
442}
443
444ObjectTypeInfoList *qmp_qom_list_types(bool has_implements,
445 const char *implements,
446 bool has_abstract,
447 bool abstract,
448 Error **errp)
449{
450 ObjectTypeInfoList *ret = NULL;
451
452 object_class_foreach(qom_list_types_tramp, implements, abstract, &ret);
453
454 return ret;
455}
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500456
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200457/* Return a DevicePropertyInfo for a qdev property.
458 *
459 * If a qdev property with the given name does not exist, use the given default
460 * type. If the qdev property info should not be shown, return NULL.
461 *
462 * The caller must free the return value.
463 */
464static DevicePropertyInfo *make_device_property_info(ObjectClass *klass,
465 const char *name,
Gonglei07d09c52014-10-07 14:33:23 +0800466 const char *default_type,
467 const char *description)
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200468{
469 DevicePropertyInfo *info;
470 Property *prop;
471
472 do {
473 for (prop = DEVICE_CLASS(klass)->props; prop && prop->name; prop++) {
474 if (strcmp(name, prop->name) != 0) {
475 continue;
476 }
477
478 /*
479 * TODO Properties without a parser are just for dirty hacks.
480 * qdev_prop_ptr is the only such PropertyInfo. It's marked
481 * for removal. This conditional should be removed along with
482 * it.
483 */
Fam Zhengfaabdbb2017-07-14 10:14:51 +0800484 if (!prop->info->set && !prop->info->create) {
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200485 return NULL; /* no way to set it, don't show */
486 }
487
488 info = g_malloc0(sizeof(*info));
489 info->name = g_strdup(prop->name);
Fam Zheng75ab9052017-07-14 10:14:53 +0800490 info->type = default_type ? g_strdup(default_type)
491 : g_strdup(prop->info->name);
Gonglei07d09c52014-10-07 14:33:23 +0800492 info->has_description = !!prop->info->description;
493 info->description = g_strdup(prop->info->description);
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200494 return info;
495 }
496 klass = object_class_get_parent(klass);
497 } while (klass != object_class_by_name(TYPE_DEVICE));
498
499 /* Not a qdev property, use the default type */
500 info = g_malloc0(sizeof(*info));
501 info->name = g_strdup(name);
502 info->type = g_strdup(default_type);
Gonglei07d09c52014-10-07 14:33:23 +0800503 info->has_description = !!description;
504 info->description = g_strdup(description);
505
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200506 return info;
507}
508
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500509DevicePropertyInfoList *qmp_device_list_properties(const char *typename,
510 Error **errp)
511{
512 ObjectClass *klass;
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200513 Object *obj;
514 ObjectProperty *prop;
Daniel P. Berrange7746abd2015-12-09 12:34:02 +0000515 ObjectPropertyIterator iter;
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500516 DevicePropertyInfoList *prop_list = NULL;
517
518 klass = object_class_by_name(typename);
519 if (klass == NULL) {
Markus Armbruster75158eb2015-03-16 08:57:47 +0100520 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
521 "Device '%s' not found", typename);
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500522 return NULL;
523 }
524
525 klass = object_class_dynamic_cast(klass, TYPE_DEVICE);
526 if (klass == NULL) {
Lin Ma7a8c1532017-01-25 13:27:03 +0800527 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "typename", TYPE_DEVICE);
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500528 return NULL;
529 }
530
Markus Armbrusteredb15232015-10-01 10:59:57 +0200531 if (object_class_is_abstract(klass)) {
Lin Ma7a8c1532017-01-25 13:27:03 +0800532 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "typename",
Markus Armbrusteredb15232015-10-01 10:59:57 +0200533 "non-abstract device type");
534 return NULL;
535 }
536
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200537 obj = object_new(typename);
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500538
Daniel P. Berrange7746abd2015-12-09 12:34:02 +0000539 object_property_iter_init(&iter, obj);
540 while ((prop = object_property_iter_next(&iter))) {
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200541 DevicePropertyInfo *info;
542 DevicePropertyInfoList *entry;
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500543
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200544 /* Skip Object and DeviceState properties */
545 if (strcmp(prop->name, "type") == 0 ||
546 strcmp(prop->name, "realized") == 0 ||
547 strcmp(prop->name, "hotpluggable") == 0 ||
Stefan Hajnoczi4115dd62014-07-09 14:01:31 +0200548 strcmp(prop->name, "hotplugged") == 0 ||
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200549 strcmp(prop->name, "parent_bus") == 0) {
550 continue;
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500551 }
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200552
553 /* Skip legacy properties since they are just string versions of
554 * properties that we already list.
555 */
556 if (strstart(prop->name, "legacy-", NULL)) {
557 continue;
558 }
559
Gonglei07d09c52014-10-07 14:33:23 +0800560 info = make_device_property_info(klass, prop->name, prop->type,
561 prop->description);
Stefan Hajnoczif4eb32b2014-05-20 14:29:01 +0200562 if (!info) {
563 continue;
564 }
565
566 entry = g_malloc0(sizeof(*entry));
567 entry->value = info;
568 entry->next = prop_list;
569 prop_list = entry;
570 }
571
572 object_unref(obj);
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500573
574 return prop_list;
575}
Anthony Liguorie4e31c62012-08-10 11:04:13 -0500576
Anthony Liguori76b64a72012-08-14 22:17:36 -0500577CpuDefinitionInfoList *qmp_query_cpu_definitions(Error **errp)
578{
579 return arch_query_cpu_definitions(errp);
580}
581
David Hildenbrande09484e2016-09-05 10:52:39 +0200582CpuModelExpansionInfo *qmp_query_cpu_model_expansion(CpuModelExpansionType type,
583 CpuModelInfo *model,
584 Error **errp)
585{
586 return arch_query_cpu_model_expansion(type, model, errp);
587}
588
David Hildenbrand0031e0d2016-09-05 10:52:40 +0200589CpuModelCompareInfo *qmp_query_cpu_model_comparison(CpuModelInfo *modela,
590 CpuModelInfo *modelb,
591 Error **errp)
592{
593 return arch_query_cpu_model_comparison(modela, modelb, errp);
594}
595
David Hildenbrandb18b6042016-09-05 10:52:41 +0200596CpuModelBaselineInfo *qmp_query_cpu_model_baseline(CpuModelInfo *modela,
597 CpuModelInfo *modelb,
598 Error **errp)
599{
600 return arch_query_cpu_model_baseline(modela, modelb, errp);
601}
602
Luiz Capitulinob224e5e2012-09-13 16:52:20 -0300603void qmp_add_client(const char *protocol, const char *fdname,
604 bool has_skipauth, bool skipauth, bool has_tls, bool tls,
605 Error **errp)
606{
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +0300607 Chardev *s;
Luiz Capitulinob224e5e2012-09-13 16:52:20 -0300608 int fd;
609
610 fd = monitor_get_fd(cur_mon, fdname, errp);
611 if (fd < 0) {
612 return;
613 }
614
615 if (strcmp(protocol, "spice") == 0) {
Markus Armbrusterb25d81b2015-01-13 17:07:15 +0100616 if (!qemu_using_spice(errp)) {
Luiz Capitulinob224e5e2012-09-13 16:52:20 -0300617 close(fd);
618 return;
619 }
620 skipauth = has_skipauth ? skipauth : false;
621 tls = has_tls ? tls : false;
622 if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) {
623 error_setg(errp, "spice failed to add client");
624 close(fd);
625 }
626 return;
627#ifdef CONFIG_VNC
628 } else if (strcmp(protocol, "vnc") == 0) {
629 skipauth = has_skipauth ? skipauth : false;
630 vnc_display_add_client(NULL, fd, skipauth);
631 return;
632#endif
633 } else if ((s = qemu_chr_find(protocol)) != NULL) {
634 if (qemu_chr_add_client(s, fd) < 0) {
635 error_setg(errp, "failed to add client");
636 close(fd);
637 return;
638 }
639 return;
640 }
641
642 error_setg(errp, "protocol '%s' is invalid", protocol);
643 close(fd);
644}
Paolo Bonziniab2d0532013-12-20 23:21:09 +0100645
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100646
Markus Armbruster6eb39372015-09-16 13:06:25 +0200647void qmp_object_add(const char *type, const char *id,
648 bool has_props, QObject *props, Error **errp)
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100649{
Marc-André Lureaue64c75a2016-09-23 00:39:25 +0400650 QDict *pdict;
Eric Blakeb70ce102016-06-09 10:48:38 -0600651 Visitor *v;
Daniel P. Berrange90998d52016-02-10 18:40:59 +0000652 Object *obj;
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100653
654 if (props) {
655 pdict = qobject_to_qdict(props);
656 if (!pdict) {
Markus Armbruster485febc2015-03-13 17:25:50 +0100657 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, "props", "dict");
658 return;
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100659 }
Marc-André Lureaue64c75a2016-09-23 00:39:25 +0400660 QINCREF(pdict);
661 } else {
662 pdict = qdict_new();
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100663 }
664
Markus Armbruster048abb72017-03-03 13:32:39 +0100665 v = qobject_input_visitor_new(QOBJECT(pdict));
Eric Blakeb70ce102016-06-09 10:48:38 -0600666 obj = user_creatable_add_type(type, id, pdict, v, errp);
667 visit_free(v);
Daniel P. Berrange90998d52016-02-10 18:40:59 +0000668 if (obj) {
669 object_unref(obj);
670 }
Marc-André Lureaue64c75a2016-09-23 00:39:25 +0400671 QDECREF(pdict);
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100672}
673
Paolo Bonziniab2d0532013-12-20 23:21:09 +0100674void qmp_object_del(const char *id, Error **errp)
675{
Daniel P. Berrange90998d52016-02-10 18:40:59 +0000676 user_creatable_del(id, errp);
Paolo Bonziniab2d0532013-12-20 23:21:09 +0100677}
Igor Mammedov6f2e2732014-06-16 19:12:25 +0200678
679MemoryDeviceInfoList *qmp_query_memory_devices(Error **errp)
680{
681 MemoryDeviceInfoList *head = NULL;
682 MemoryDeviceInfoList **prev = &head;
683
684 qmp_pc_dimm_device_list(qdev_get_machine(), &prev);
685
686 return head;
687}
Igor Mammedov02419bc2014-06-16 19:12:28 +0200688
689ACPIOSTInfoList *qmp_query_acpi_ospm_status(Error **errp)
690{
691 bool ambig;
692 ACPIOSTInfoList *head = NULL;
693 ACPIOSTInfoList **prev = &head;
694 Object *obj = object_resolve_path_type("", TYPE_ACPI_DEVICE_IF, &ambig);
695
696 if (obj) {
697 AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_GET_CLASS(obj);
698 AcpiDeviceIf *adev = ACPI_DEVICE_IF(obj);
699
700 adevc->ospm_status(adev, &prev);
701 } else {
702 error_setg(errp, "command is not supported, missing ACPI device");
703 }
704
705 return head;
706}
Vadim Galitsyn9aa33972017-08-29 17:30:21 +0200707
708MemoryInfo *qmp_query_memory_size_summary(Error **errp)
709{
710 MemoryInfo *mem_info = g_malloc0(sizeof(MemoryInfo));
711
712 mem_info->base_memory = ram_size;
713
714 mem_info->plugged_memory = get_plugged_memory_size();
715 mem_info->has_plugged_memory =
716 mem_info->plugged_memory != (uint64_t)-1;
717
718 return mem_info;
719}