blob: e3a7f0b21771aaf94f503f31c683bbcd5a4ff55f [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
16#include "qemu-common.h"
17#include "sysemu.h"
18#include "qmp-commands.h"
Luiz Capitulinofbf796f2011-12-07 11:17:51 -020019#include "ui/qemu-spice.h"
20#include "ui/vnc.h"
Luiz Capitulino292a2602011-09-12 15:10:53 -030021#include "kvm.h"
22#include "arch_init.h"
Anthony Liguorib4b12c62011-12-12 14:29:34 -060023#include "hw/qdev.h"
Luiz Capitulino333a96e2011-12-08 11:13:50 -020024#include "blockdev.h"
Paolo Bonzini9f5f1352012-02-01 16:58:47 +010025#include "qemu/qom-qobject.h"
Anthony Liguori48a32be2011-09-02 12:34:48 -050026
27NameInfo *qmp_query_name(Error **errp)
28{
29 NameInfo *info = g_malloc0(sizeof(*info));
30
31 if (qemu_name) {
32 info->has_name = true;
33 info->name = g_strdup(qemu_name);
34 }
35
36 return info;
37}
Luiz Capitulinob9c15f12011-08-26 17:38:13 -030038
39VersionInfo *qmp_query_version(Error **err)
40{
41 VersionInfo *info = g_malloc0(sizeof(*info));
42 const char *version = QEMU_VERSION;
43 char *tmp;
44
45 info->qemu.major = strtol(version, &tmp, 10);
46 tmp++;
47 info->qemu.minor = strtol(tmp, &tmp, 10);
48 tmp++;
49 info->qemu.micro = strtol(tmp, &tmp, 10);
50 info->package = g_strdup(QEMU_PKGVERSION);
51
52 return info;
53}
Luiz Capitulino292a2602011-09-12 15:10:53 -030054
55KvmInfo *qmp_query_kvm(Error **errp)
56{
57 KvmInfo *info = g_malloc0(sizeof(*info));
58
59 info->enabled = kvm_enabled();
60 info->present = kvm_available();
61
62 return info;
63}
64
Luiz Capitulinoefab7672011-09-13 17:16:25 -030065UuidInfo *qmp_query_uuid(Error **errp)
66{
67 UuidInfo *info = g_malloc0(sizeof(*info));
68 char uuid[64];
69
70 snprintf(uuid, sizeof(uuid), UUID_FMT, qemu_uuid[0], qemu_uuid[1],
71 qemu_uuid[2], qemu_uuid[3], qemu_uuid[4], qemu_uuid[5],
72 qemu_uuid[6], qemu_uuid[7], qemu_uuid[8], qemu_uuid[9],
73 qemu_uuid[10], qemu_uuid[11], qemu_uuid[12], qemu_uuid[13],
74 qemu_uuid[14], qemu_uuid[15]);
75
76 info->UUID = g_strdup(uuid);
77 return info;
78}
79
Luiz Capitulino7a7f3252011-09-15 14:20:28 -030080void qmp_quit(Error **err)
81{
82 no_shutdown = 0;
83 qemu_system_shutdown_request();
84}
85
Luiz Capitulino5f158f22011-09-15 14:34:39 -030086void qmp_stop(Error **errp)
87{
Paolo Bonzini1e998142012-10-23 14:54:21 +020088 if (runstate_check(RUN_STATE_INMIGRATE)) {
89 autostart = 0;
90 } else {
91 vm_stop(RUN_STATE_PAUSED);
92 }
Luiz Capitulino5f158f22011-09-15 14:34:39 -030093}
94
Luiz Capitulino38d22652011-09-15 14:41:46 -030095void qmp_system_reset(Error **errp)
96{
97 qemu_system_reset_request();
98}
Luiz Capitulino5bc465e2011-09-28 11:06:15 -030099
100void qmp_system_powerdown(Error **erp)
101{
102 qemu_system_powerdown_request();
103}
Luiz Capitulino755f1962011-10-06 14:31:39 -0300104
105void qmp_cpu(int64_t index, Error **errp)
106{
107 /* Just do nothing */
108}
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200109
110#ifndef CONFIG_VNC
111/* If VNC support is enabled, the "true" query-vnc command is
112 defined in the VNC subsystem */
113VncInfo *qmp_query_vnc(Error **errp)
114{
115 error_set(errp, QERR_FEATURE_DISABLED, "vnc");
116 return NULL;
117};
118#endif
Luiz Capitulinod1f29642011-10-20 17:01:33 -0200119
120#ifndef CONFIG_SPICE
121/* If SPICE support is enabled, the "true" query-spice command is
122 defined in the SPICE subsystem. Also note that we use a small
123 trick to maintain query-spice's original behavior, which is not
124 to be available in the namespace if SPICE is not compiled in */
125SpiceInfo *qmp_query_spice(Error **errp)
126{
127 error_set(errp, QERR_COMMAND_NOT_FOUND, "query-spice");
128 return NULL;
129};
130#endif
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200131
132static void iostatus_bdrv_it(void *opaque, BlockDriverState *bs)
133{
134 bdrv_iostatus_reset(bs);
135}
136
137static void encrypted_bdrv_it(void *opaque, BlockDriverState *bs)
138{
139 Error **err = opaque;
140
141 if (!error_is_set(err) && bdrv_key_required(bs)) {
Luiz Capitulino903a8812011-12-13 17:18:30 -0200142 error_set(err, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
143 bdrv_get_encrypted_filename(bs));
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200144 }
145}
146
147void qmp_cont(Error **errp)
148{
149 Error *local_err = NULL;
150
Paolo Bonzini1e998142012-10-23 14:54:21 +0200151 if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200152 runstate_check(RUN_STATE_SHUTDOWN)) {
153 error_set(errp, QERR_RESET_REQUIRED);
154 return;
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300155 } else if (runstate_check(RUN_STATE_SUSPENDED)) {
156 return;
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200157 }
158
159 bdrv_iterate(iostatus_bdrv_it, NULL);
160 bdrv_iterate(encrypted_bdrv_it, &local_err);
161 if (local_err) {
162 error_propagate(errp, local_err);
163 return;
164 }
165
Paolo Bonzini1e998142012-10-23 14:54:21 +0200166 if (runstate_check(RUN_STATE_INMIGRATE)) {
167 autostart = 1;
168 } else {
169 vm_start();
170 }
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200171}
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600172
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100173void qmp_system_wakeup(Error **errp)
174{
175 qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
176}
177
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600178ObjectPropertyInfoList *qmp_qom_list(const char *path, Error **errp)
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600179{
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600180 Object *obj;
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600181 bool ambiguous = false;
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600182 ObjectPropertyInfoList *props = NULL;
183 ObjectProperty *prop;
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600184
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600185 obj = object_resolve_path(path, &ambiguous);
186 if (obj == NULL) {
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600187 error_set(errp, QERR_DEVICE_NOT_FOUND, path);
188 return NULL;
189 }
190
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600191 QTAILQ_FOREACH(prop, &obj->properties, node) {
192 ObjectPropertyInfoList *entry = g_malloc0(sizeof(*entry));
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600193
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600194 entry->value = g_malloc0(sizeof(ObjectPropertyInfo));
Anthony Liguorib4b12c62011-12-12 14:29:34 -0600195 entry->next = props;
196 props = entry;
197
198 entry->value->name = g_strdup(prop->name);
199 entry->value->type = g_strdup(prop->type);
200 }
201
202 return props;
203}
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600204
205/* FIXME: teach qapi about how to pass through Visitors */
206int qmp_qom_set(Monitor *mon, const QDict *qdict, QObject **ret)
207{
208 const char *path = qdict_get_str(qdict, "path");
209 const char *property = qdict_get_str(qdict, "property");
210 QObject *value = qdict_get(qdict, "value");
211 Error *local_err = NULL;
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600212 Object *obj;
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600213
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600214 obj = object_resolve_path(path, NULL);
215 if (!obj) {
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600216 error_set(&local_err, QERR_DEVICE_NOT_FOUND, path);
217 goto out;
218 }
219
Paolo Bonzini9f5f1352012-02-01 16:58:47 +0100220 object_property_set_qobject(obj, value, property, &local_err);
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600221
222out:
223 if (local_err) {
224 qerror_report_err(local_err);
225 error_free(local_err);
226 return -1;
227 }
228
229 return 0;
230}
231
232int qmp_qom_get(Monitor *mon, const QDict *qdict, QObject **ret)
233{
234 const char *path = qdict_get_str(qdict, "path");
235 const char *property = qdict_get_str(qdict, "property");
236 Error *local_err = NULL;
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600237 Object *obj;
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600238
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600239 obj = object_resolve_path(path, NULL);
240 if (!obj) {
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600241 error_set(&local_err, QERR_DEVICE_NOT_FOUND, path);
242 goto out;
243 }
244
Paolo Bonzini9f5f1352012-02-01 16:58:47 +0100245 *ret = object_property_get_qobject(obj, property, &local_err);
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -0600246
247out:
248 if (local_err) {
249 qerror_report_err(local_err);
250 error_free(local_err);
251 return -1;
252 }
253
254 return 0;
255}
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200256
257void qmp_set_password(const char *protocol, const char *password,
258 bool has_connected, const char *connected, Error **errp)
259{
260 int disconnect_if_connected = 0;
261 int fail_if_connected = 0;
262 int rc;
263
264 if (has_connected) {
265 if (strcmp(connected, "fail") == 0) {
266 fail_if_connected = 1;
267 } else if (strcmp(connected, "disconnect") == 0) {
268 disconnect_if_connected = 1;
269 } else if (strcmp(connected, "keep") == 0) {
270 /* nothing */
271 } else {
272 error_set(errp, QERR_INVALID_PARAMETER, "connected");
273 return;
274 }
275 }
276
277 if (strcmp(protocol, "spice") == 0) {
278 if (!using_spice) {
279 /* correct one? spice isn't a device ,,, */
280 error_set(errp, QERR_DEVICE_NOT_ACTIVE, "spice");
281 return;
282 }
283 rc = qemu_spice_set_passwd(password, fail_if_connected,
284 disconnect_if_connected);
285 if (rc != 0) {
286 error_set(errp, QERR_SET_PASSWD_FAILED);
287 }
288 return;
289 }
290
291 if (strcmp(protocol, "vnc") == 0) {
292 if (fail_if_connected || disconnect_if_connected) {
293 /* vnc supports "connected=keep" only */
294 error_set(errp, QERR_INVALID_PARAMETER, "connected");
295 return;
296 }
297 /* Note that setting an empty password will not disable login through
298 * this interface. */
299 rc = vnc_display_password(NULL, password);
300 if (rc < 0) {
301 error_set(errp, QERR_SET_PASSWD_FAILED);
302 }
303 return;
304 }
305
306 error_set(errp, QERR_INVALID_PARAMETER, "protocol");
307}
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200308
309void qmp_expire_password(const char *protocol, const char *whenstr,
310 Error **errp)
311{
312 time_t when;
313 int rc;
314
315 if (strcmp(whenstr, "now") == 0) {
316 when = 0;
317 } else if (strcmp(whenstr, "never") == 0) {
318 when = TIME_MAX;
319 } else if (whenstr[0] == '+') {
320 when = time(NULL) + strtoull(whenstr+1, NULL, 10);
321 } else {
322 when = strtoull(whenstr, NULL, 10);
323 }
324
325 if (strcmp(protocol, "spice") == 0) {
326 if (!using_spice) {
327 /* correct one? spice isn't a device ,,, */
328 error_set(errp, QERR_DEVICE_NOT_ACTIVE, "spice");
329 return;
330 }
331 rc = qemu_spice_set_pw_expire(when);
332 if (rc != 0) {
333 error_set(errp, QERR_SET_PASSWD_FAILED);
334 }
335 return;
336 }
337
338 if (strcmp(protocol, "vnc") == 0) {
339 rc = vnc_display_pw_expire(NULL, when);
340 if (rc != 0) {
341 error_set(errp, QERR_SET_PASSWD_FAILED);
342 }
343 return;
344 }
345
346 error_set(errp, QERR_INVALID_PARAMETER, "protocol");
347}
Luiz Capitulino270b2432011-12-08 11:45:55 -0200348
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200349#ifdef CONFIG_VNC
Luiz Capitulino270b2432011-12-08 11:45:55 -0200350void qmp_change_vnc_password(const char *password, Error **errp)
351{
352 if (vnc_display_password(NULL, password) < 0) {
353 error_set(errp, QERR_SET_PASSWD_FAILED);
354 }
355}
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200356
Paolo Bonzini007fcd32012-10-18 09:01:01 +0200357static void qmp_change_vnc_listen(const char *target, Error **errp)
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200358{
Paolo Bonzini007fcd32012-10-18 09:01:01 +0200359 vnc_display_open(NULL, target, errp);
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200360}
361
362static void qmp_change_vnc(const char *target, bool has_arg, const char *arg,
363 Error **errp)
364{
365 if (strcmp(target, "passwd") == 0 || strcmp(target, "password") == 0) {
366 if (!has_arg) {
367 error_set(errp, QERR_MISSING_PARAMETER, "password");
368 } else {
369 qmp_change_vnc_password(arg, errp);
370 }
371 } else {
372 qmp_change_vnc_listen(target, errp);
373 }
374}
375#else
376void qmp_change_vnc_password(const char *password, Error **errp)
377{
378 error_set(errp, QERR_FEATURE_DISABLED, "vnc");
379}
380static void qmp_change_vnc(const char *target, bool has_arg, const char *arg,
381 Error **errp)
382{
383 error_set(errp, QERR_FEATURE_DISABLED, "vnc");
384}
385#endif /* !CONFIG_VNC */
386
387void qmp_change(const char *device, const char *target,
388 bool has_arg, const char *arg, Error **err)
389{
390 if (strcmp(device, "vnc") == 0) {
391 qmp_change_vnc(target, has_arg, arg, err);
392 } else {
393 qmp_change_blockdev(device, target, has_arg, arg, err);
394 }
395}
Anthony Liguori5eeee3f2011-12-22 14:40:54 -0600396
397static void qom_list_types_tramp(ObjectClass *klass, void *data)
398{
399 ObjectTypeInfoList *e, **pret = data;
400 ObjectTypeInfo *info;
401
402 info = g_malloc0(sizeof(*info));
403 info->name = g_strdup(object_class_get_name(klass));
404
405 e = g_malloc0(sizeof(*e));
406 e->value = info;
407 e->next = *pret;
408 *pret = e;
409}
410
411ObjectTypeInfoList *qmp_qom_list_types(bool has_implements,
412 const char *implements,
413 bool has_abstract,
414 bool abstract,
415 Error **errp)
416{
417 ObjectTypeInfoList *ret = NULL;
418
419 object_class_foreach(qom_list_types_tramp, implements, abstract, &ret);
420
421 return ret;
422}
Anthony Liguori1daa31b2012-08-10 11:04:09 -0500423
424DevicePropertyInfoList *qmp_device_list_properties(const char *typename,
425 Error **errp)
426{
427 ObjectClass *klass;
428 Property *prop;
429 DevicePropertyInfoList *prop_list = NULL;
430
431 klass = object_class_by_name(typename);
432 if (klass == NULL) {
433 error_set(errp, QERR_DEVICE_NOT_FOUND, typename);
434 return NULL;
435 }
436
437 klass = object_class_dynamic_cast(klass, TYPE_DEVICE);
438 if (klass == NULL) {
439 error_set(errp, QERR_INVALID_PARAMETER_VALUE,
440 "name", TYPE_DEVICE);
441 return NULL;
442 }
443
444 do {
445 for (prop = DEVICE_CLASS(klass)->props; prop && prop->name; prop++) {
446 DevicePropertyInfoList *entry;
447 DevicePropertyInfo *info;
448
449 /*
450 * TODO Properties without a parser are just for dirty hacks.
451 * qdev_prop_ptr is the only such PropertyInfo. It's marked
452 * for removal. This conditional should be removed along with
453 * it.
454 */
455 if (!prop->info->set) {
456 continue; /* no way to set it, don't show */
457 }
458
459 info = g_malloc0(sizeof(*info));
460 info->name = g_strdup(prop->name);
461 info->type = g_strdup(prop->info->legacy_name ?: prop->info->name);
462
463 entry = g_malloc0(sizeof(*entry));
464 entry->value = info;
465 entry->next = prop_list;
466 prop_list = entry;
467 }
468 klass = object_class_get_parent(klass);
469 } while (klass != object_class_by_name(TYPE_DEVICE));
470
471 return prop_list;
472}
Anthony Liguorie4e31c62012-08-10 11:04:13 -0500473
Anthony Liguori76b64a72012-08-14 22:17:36 -0500474CpuDefinitionInfoList *qmp_query_cpu_definitions(Error **errp)
475{
476 return arch_query_cpu_definitions(errp);
477}
478
Luiz Capitulinob224e5e2012-09-13 16:52:20 -0300479void qmp_add_client(const char *protocol, const char *fdname,
480 bool has_skipauth, bool skipauth, bool has_tls, bool tls,
481 Error **errp)
482{
483 CharDriverState *s;
484 int fd;
485
486 fd = monitor_get_fd(cur_mon, fdname, errp);
487 if (fd < 0) {
488 return;
489 }
490
491 if (strcmp(protocol, "spice") == 0) {
492 if (!using_spice) {
493 error_set(errp, QERR_DEVICE_NOT_ACTIVE, "spice");
494 close(fd);
495 return;
496 }
497 skipauth = has_skipauth ? skipauth : false;
498 tls = has_tls ? tls : false;
499 if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) {
500 error_setg(errp, "spice failed to add client");
501 close(fd);
502 }
503 return;
504#ifdef CONFIG_VNC
505 } else if (strcmp(protocol, "vnc") == 0) {
506 skipauth = has_skipauth ? skipauth : false;
507 vnc_display_add_client(NULL, fd, skipauth);
508 return;
509#endif
510 } else if ((s = qemu_chr_find(protocol)) != NULL) {
511 if (qemu_chr_add_client(s, fd) < 0) {
512 error_setg(errp, "failed to add client");
513 close(fd);
514 return;
515 }
516 return;
517 }
518
519 error_setg(errp, "protocol '%s' is invalid", protocol);
520 close(fd);
521}