qmp: add SUSPEND_DISK event
[qemu/ar7.git] / hmp.c
blob9b44dfcf3a41b34f1aafbba1d24fd834f20664c3
1 /*
2 * Human Monitor Interface
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "hmp.h"
17 #include "net.h"
18 #include "qemu-option.h"
19 #include "qemu-timer.h"
20 #include "qmp-commands.h"
21 #include "monitor.h"
23 static void hmp_handle_error(Monitor *mon, Error **errp)
25 if (error_is_set(errp)) {
26 monitor_printf(mon, "%s\n", error_get_pretty(*errp));
27 error_free(*errp);
31 void hmp_info_name(Monitor *mon)
33 NameInfo *info;
35 info = qmp_query_name(NULL);
36 if (info->has_name) {
37 monitor_printf(mon, "%s\n", info->name);
39 qapi_free_NameInfo(info);
42 void hmp_info_version(Monitor *mon)
44 VersionInfo *info;
46 info = qmp_query_version(NULL);
48 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
49 info->qemu.major, info->qemu.minor, info->qemu.micro,
50 info->package);
52 qapi_free_VersionInfo(info);
55 void hmp_info_kvm(Monitor *mon)
57 KvmInfo *info;
59 info = qmp_query_kvm(NULL);
60 monitor_printf(mon, "kvm support: ");
61 if (info->present) {
62 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
63 } else {
64 monitor_printf(mon, "not compiled\n");
67 qapi_free_KvmInfo(info);
70 void hmp_info_status(Monitor *mon)
72 StatusInfo *info;
74 info = qmp_query_status(NULL);
76 monitor_printf(mon, "VM status: %s%s",
77 info->running ? "running" : "paused",
78 info->singlestep ? " (single step mode)" : "");
80 if (!info->running && info->status != RUN_STATE_PAUSED) {
81 monitor_printf(mon, " (%s)", RunState_lookup[info->status]);
84 monitor_printf(mon, "\n");
86 qapi_free_StatusInfo(info);
89 void hmp_info_uuid(Monitor *mon)
91 UuidInfo *info;
93 info = qmp_query_uuid(NULL);
94 monitor_printf(mon, "%s\n", info->UUID);
95 qapi_free_UuidInfo(info);
98 void hmp_info_chardev(Monitor *mon)
100 ChardevInfoList *char_info, *info;
102 char_info = qmp_query_chardev(NULL);
103 for (info = char_info; info; info = info->next) {
104 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
105 info->value->filename);
108 qapi_free_ChardevInfoList(char_info);
111 void hmp_info_mice(Monitor *mon)
113 MouseInfoList *mice_list, *mouse;
115 mice_list = qmp_query_mice(NULL);
116 if (!mice_list) {
117 monitor_printf(mon, "No mouse devices connected\n");
118 return;
121 for (mouse = mice_list; mouse; mouse = mouse->next) {
122 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
123 mouse->value->current ? '*' : ' ',
124 mouse->value->index, mouse->value->name,
125 mouse->value->absolute ? " (absolute)" : "");
128 qapi_free_MouseInfoList(mice_list);
131 void hmp_info_migrate(Monitor *mon)
133 MigrationInfo *info;
135 info = qmp_query_migrate(NULL);
137 if (info->has_status) {
138 monitor_printf(mon, "Migration status: %s\n", info->status);
141 if (info->has_ram) {
142 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
143 info->ram->transferred >> 10);
144 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
145 info->ram->remaining >> 10);
146 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
147 info->ram->total >> 10);
148 monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
149 info->ram->total_time);
152 if (info->has_disk) {
153 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
154 info->disk->transferred >> 10);
155 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
156 info->disk->remaining >> 10);
157 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
158 info->disk->total >> 10);
161 qapi_free_MigrationInfo(info);
164 void hmp_info_cpus(Monitor *mon)
166 CpuInfoList *cpu_list, *cpu;
168 cpu_list = qmp_query_cpus(NULL);
170 for (cpu = cpu_list; cpu; cpu = cpu->next) {
171 int active = ' ';
173 if (cpu->value->CPU == monitor_get_cpu_index()) {
174 active = '*';
177 monitor_printf(mon, "%c CPU #%" PRId64 ": ", active, cpu->value->CPU);
179 if (cpu->value->has_pc) {
180 monitor_printf(mon, "pc=0x%016" PRIx64, cpu->value->pc);
182 if (cpu->value->has_nip) {
183 monitor_printf(mon, "nip=0x%016" PRIx64, cpu->value->nip);
185 if (cpu->value->has_npc) {
186 monitor_printf(mon, "pc=0x%016" PRIx64, cpu->value->pc);
187 monitor_printf(mon, "npc=0x%016" PRIx64, cpu->value->npc);
189 if (cpu->value->has_PC) {
190 monitor_printf(mon, "PC=0x%016" PRIx64, cpu->value->PC);
193 if (cpu->value->halted) {
194 monitor_printf(mon, " (halted)");
197 monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
200 qapi_free_CpuInfoList(cpu_list);
203 void hmp_info_block(Monitor *mon)
205 BlockInfoList *block_list, *info;
207 block_list = qmp_query_block(NULL);
209 for (info = block_list; info; info = info->next) {
210 monitor_printf(mon, "%s: removable=%d",
211 info->value->device, info->value->removable);
213 if (info->value->removable) {
214 monitor_printf(mon, " locked=%d", info->value->locked);
215 monitor_printf(mon, " tray-open=%d", info->value->tray_open);
218 if (info->value->has_io_status) {
219 monitor_printf(mon, " io-status=%s",
220 BlockDeviceIoStatus_lookup[info->value->io_status]);
223 if (info->value->has_inserted) {
224 monitor_printf(mon, " file=");
225 monitor_print_filename(mon, info->value->inserted->file);
227 if (info->value->inserted->has_backing_file) {
228 monitor_printf(mon, " backing_file=");
229 monitor_print_filename(mon, info->value->inserted->backing_file);
230 monitor_printf(mon, " backing_file_depth=%" PRId64,
231 info->value->inserted->backing_file_depth);
233 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
234 info->value->inserted->ro,
235 info->value->inserted->drv,
236 info->value->inserted->encrypted);
238 monitor_printf(mon, " bps=%" PRId64 " bps_rd=%" PRId64
239 " bps_wr=%" PRId64 " iops=%" PRId64
240 " iops_rd=%" PRId64 " iops_wr=%" PRId64,
241 info->value->inserted->bps,
242 info->value->inserted->bps_rd,
243 info->value->inserted->bps_wr,
244 info->value->inserted->iops,
245 info->value->inserted->iops_rd,
246 info->value->inserted->iops_wr);
247 } else {
248 monitor_printf(mon, " [not inserted]");
251 monitor_printf(mon, "\n");
254 qapi_free_BlockInfoList(block_list);
257 void hmp_info_blockstats(Monitor *mon)
259 BlockStatsList *stats_list, *stats;
261 stats_list = qmp_query_blockstats(NULL);
263 for (stats = stats_list; stats; stats = stats->next) {
264 if (!stats->value->has_device) {
265 continue;
268 monitor_printf(mon, "%s:", stats->value->device);
269 monitor_printf(mon, " rd_bytes=%" PRId64
270 " wr_bytes=%" PRId64
271 " rd_operations=%" PRId64
272 " wr_operations=%" PRId64
273 " flush_operations=%" PRId64
274 " wr_total_time_ns=%" PRId64
275 " rd_total_time_ns=%" PRId64
276 " flush_total_time_ns=%" PRId64
277 "\n",
278 stats->value->stats->rd_bytes,
279 stats->value->stats->wr_bytes,
280 stats->value->stats->rd_operations,
281 stats->value->stats->wr_operations,
282 stats->value->stats->flush_operations,
283 stats->value->stats->wr_total_time_ns,
284 stats->value->stats->rd_total_time_ns,
285 stats->value->stats->flush_total_time_ns);
288 qapi_free_BlockStatsList(stats_list);
291 void hmp_info_vnc(Monitor *mon)
293 VncInfo *info;
294 Error *err = NULL;
295 VncClientInfoList *client;
297 info = qmp_query_vnc(&err);
298 if (err) {
299 monitor_printf(mon, "%s\n", error_get_pretty(err));
300 error_free(err);
301 return;
304 if (!info->enabled) {
305 monitor_printf(mon, "Server: disabled\n");
306 goto out;
309 monitor_printf(mon, "Server:\n");
310 if (info->has_host && info->has_service) {
311 monitor_printf(mon, " address: %s:%s\n", info->host, info->service);
313 if (info->has_auth) {
314 monitor_printf(mon, " auth: %s\n", info->auth);
317 if (!info->has_clients || info->clients == NULL) {
318 monitor_printf(mon, "Client: none\n");
319 } else {
320 for (client = info->clients; client; client = client->next) {
321 monitor_printf(mon, "Client:\n");
322 monitor_printf(mon, " address: %s:%s\n",
323 client->value->host, client->value->service);
324 monitor_printf(mon, " x509_dname: %s\n",
325 client->value->x509_dname ?
326 client->value->x509_dname : "none");
327 monitor_printf(mon, " username: %s\n",
328 client->value->has_sasl_username ?
329 client->value->sasl_username : "none");
333 out:
334 qapi_free_VncInfo(info);
337 void hmp_info_spice(Monitor *mon)
339 SpiceChannelList *chan;
340 SpiceInfo *info;
342 info = qmp_query_spice(NULL);
344 if (!info->enabled) {
345 monitor_printf(mon, "Server: disabled\n");
346 goto out;
349 monitor_printf(mon, "Server:\n");
350 if (info->has_port) {
351 monitor_printf(mon, " address: %s:%" PRId64 "\n",
352 info->host, info->port);
354 if (info->has_tls_port) {
355 monitor_printf(mon, " address: %s:%" PRId64 " [tls]\n",
356 info->host, info->tls_port);
358 monitor_printf(mon, " auth: %s\n", info->auth);
359 monitor_printf(mon, " compiled: %s\n", info->compiled_version);
360 monitor_printf(mon, " mouse-mode: %s\n",
361 SpiceQueryMouseMode_lookup[info->mouse_mode]);
363 if (!info->has_channels || info->channels == NULL) {
364 monitor_printf(mon, "Channels: none\n");
365 } else {
366 for (chan = info->channels; chan; chan = chan->next) {
367 monitor_printf(mon, "Channel:\n");
368 monitor_printf(mon, " address: %s:%s%s\n",
369 chan->value->host, chan->value->port,
370 chan->value->tls ? " [tls]" : "");
371 monitor_printf(mon, " session: %" PRId64 "\n",
372 chan->value->connection_id);
373 monitor_printf(mon, " channel: %" PRId64 ":%" PRId64 "\n",
374 chan->value->channel_type, chan->value->channel_id);
378 out:
379 qapi_free_SpiceInfo(info);
382 void hmp_info_balloon(Monitor *mon)
384 BalloonInfo *info;
385 Error *err = NULL;
387 info = qmp_query_balloon(&err);
388 if (err) {
389 monitor_printf(mon, "%s\n", error_get_pretty(err));
390 error_free(err);
391 return;
394 monitor_printf(mon, "balloon: actual=%" PRId64, info->actual >> 20);
395 if (info->has_mem_swapped_in) {
396 monitor_printf(mon, " mem_swapped_in=%" PRId64, info->mem_swapped_in);
398 if (info->has_mem_swapped_out) {
399 monitor_printf(mon, " mem_swapped_out=%" PRId64, info->mem_swapped_out);
401 if (info->has_major_page_faults) {
402 monitor_printf(mon, " major_page_faults=%" PRId64,
403 info->major_page_faults);
405 if (info->has_minor_page_faults) {
406 monitor_printf(mon, " minor_page_faults=%" PRId64,
407 info->minor_page_faults);
409 if (info->has_free_mem) {
410 monitor_printf(mon, " free_mem=%" PRId64, info->free_mem);
412 if (info->has_total_mem) {
413 monitor_printf(mon, " total_mem=%" PRId64, info->total_mem);
416 monitor_printf(mon, "\n");
418 qapi_free_BalloonInfo(info);
421 static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
423 PciMemoryRegionList *region;
425 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
426 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
427 dev->slot, dev->function);
428 monitor_printf(mon, " ");
430 if (dev->class_info.has_desc) {
431 monitor_printf(mon, "%s", dev->class_info.desc);
432 } else {
433 monitor_printf(mon, "Class %04" PRId64, dev->class_info.class);
436 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
437 dev->id.vendor, dev->id.device);
439 if (dev->has_irq) {
440 monitor_printf(mon, " IRQ %" PRId64 ".\n", dev->irq);
443 if (dev->has_pci_bridge) {
444 monitor_printf(mon, " BUS %" PRId64 ".\n",
445 dev->pci_bridge->bus.number);
446 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
447 dev->pci_bridge->bus.secondary);
448 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
449 dev->pci_bridge->bus.subordinate);
451 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
452 dev->pci_bridge->bus.io_range->base,
453 dev->pci_bridge->bus.io_range->limit);
455 monitor_printf(mon,
456 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
457 dev->pci_bridge->bus.memory_range->base,
458 dev->pci_bridge->bus.memory_range->limit);
460 monitor_printf(mon, " prefetchable memory range "
461 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
462 dev->pci_bridge->bus.prefetchable_range->base,
463 dev->pci_bridge->bus.prefetchable_range->limit);
466 for (region = dev->regions; region; region = region->next) {
467 uint64_t addr, size;
469 addr = region->value->address;
470 size = region->value->size;
472 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
474 if (!strcmp(region->value->type, "io")) {
475 monitor_printf(mon, "I/O at 0x%04" PRIx64
476 " [0x%04" PRIx64 "].\n",
477 addr, addr + size - 1);
478 } else {
479 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
480 " [0x%08" PRIx64 "].\n",
481 region->value->mem_type_64 ? 64 : 32,
482 region->value->prefetch ? " prefetchable" : "",
483 addr, addr + size - 1);
487 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
489 if (dev->has_pci_bridge) {
490 if (dev->pci_bridge->has_devices) {
491 PciDeviceInfoList *cdev;
492 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
493 hmp_info_pci_device(mon, cdev->value);
499 void hmp_info_pci(Monitor *mon)
501 PciInfoList *info_list, *info;
502 Error *err = NULL;
504 info_list = qmp_query_pci(&err);
505 if (err) {
506 monitor_printf(mon, "PCI devices not supported\n");
507 error_free(err);
508 return;
511 for (info = info_list; info; info = info->next) {
512 PciDeviceInfoList *dev;
514 for (dev = info->value->devices; dev; dev = dev->next) {
515 hmp_info_pci_device(mon, dev->value);
519 qapi_free_PciInfoList(info_list);
522 void hmp_info_block_jobs(Monitor *mon)
524 BlockJobInfoList *list;
525 Error *err = NULL;
527 list = qmp_query_block_jobs(&err);
528 assert(!err);
530 if (!list) {
531 monitor_printf(mon, "No active jobs\n");
532 return;
535 while (list) {
536 if (strcmp(list->value->type, "stream") == 0) {
537 monitor_printf(mon, "Streaming device %s: Completed %" PRId64
538 " of %" PRId64 " bytes, speed limit %" PRId64
539 " bytes/s\n",
540 list->value->device,
541 list->value->offset,
542 list->value->len,
543 list->value->speed);
544 } else {
545 monitor_printf(mon, "Type %s, device %s: Completed %" PRId64
546 " of %" PRId64 " bytes, speed limit %" PRId64
547 " bytes/s\n",
548 list->value->type,
549 list->value->device,
550 list->value->offset,
551 list->value->len,
552 list->value->speed);
554 list = list->next;
558 void hmp_quit(Monitor *mon, const QDict *qdict)
560 monitor_suspend(mon);
561 qmp_quit(NULL);
564 void hmp_stop(Monitor *mon, const QDict *qdict)
566 qmp_stop(NULL);
569 void hmp_system_reset(Monitor *mon, const QDict *qdict)
571 qmp_system_reset(NULL);
574 void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
576 qmp_system_powerdown(NULL);
579 void hmp_cpu(Monitor *mon, const QDict *qdict)
581 int64_t cpu_index;
583 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
584 use it are converted to the QAPI */
585 cpu_index = qdict_get_int(qdict, "index");
586 if (monitor_set_cpu(cpu_index) < 0) {
587 monitor_printf(mon, "invalid CPU index\n");
591 void hmp_memsave(Monitor *mon, const QDict *qdict)
593 uint32_t size = qdict_get_int(qdict, "size");
594 const char *filename = qdict_get_str(qdict, "filename");
595 uint64_t addr = qdict_get_int(qdict, "val");
596 Error *errp = NULL;
598 qmp_memsave(addr, size, filename, true, monitor_get_cpu_index(), &errp);
599 hmp_handle_error(mon, &errp);
602 void hmp_pmemsave(Monitor *mon, const QDict *qdict)
604 uint32_t size = qdict_get_int(qdict, "size");
605 const char *filename = qdict_get_str(qdict, "filename");
606 uint64_t addr = qdict_get_int(qdict, "val");
607 Error *errp = NULL;
609 qmp_pmemsave(addr, size, filename, &errp);
610 hmp_handle_error(mon, &errp);
613 static void hmp_cont_cb(void *opaque, int err)
615 if (!err) {
616 qmp_cont(NULL);
620 static bool key_is_missing(const BlockInfo *bdev)
622 return (bdev->inserted && bdev->inserted->encryption_key_missing);
625 void hmp_cont(Monitor *mon, const QDict *qdict)
627 BlockInfoList *bdev_list, *bdev;
628 Error *errp = NULL;
630 bdev_list = qmp_query_block(NULL);
631 for (bdev = bdev_list; bdev; bdev = bdev->next) {
632 if (key_is_missing(bdev->value)) {
633 monitor_read_block_device_key(mon, bdev->value->device,
634 hmp_cont_cb, NULL);
635 goto out;
639 qmp_cont(&errp);
640 hmp_handle_error(mon, &errp);
642 out:
643 qapi_free_BlockInfoList(bdev_list);
646 void hmp_system_wakeup(Monitor *mon, const QDict *qdict)
648 qmp_system_wakeup(NULL);
651 void hmp_inject_nmi(Monitor *mon, const QDict *qdict)
653 Error *errp = NULL;
655 qmp_inject_nmi(&errp);
656 hmp_handle_error(mon, &errp);
659 void hmp_set_link(Monitor *mon, const QDict *qdict)
661 const char *name = qdict_get_str(qdict, "name");
662 int up = qdict_get_bool(qdict, "up");
663 Error *errp = NULL;
665 qmp_set_link(name, up, &errp);
666 hmp_handle_error(mon, &errp);
669 void hmp_block_passwd(Monitor *mon, const QDict *qdict)
671 const char *device = qdict_get_str(qdict, "device");
672 const char *password = qdict_get_str(qdict, "password");
673 Error *errp = NULL;
675 qmp_block_passwd(device, password, &errp);
676 hmp_handle_error(mon, &errp);
679 void hmp_balloon(Monitor *mon, const QDict *qdict)
681 int64_t value = qdict_get_int(qdict, "value");
682 Error *errp = NULL;
684 qmp_balloon(value, &errp);
685 if (error_is_set(&errp)) {
686 monitor_printf(mon, "balloon: %s\n", error_get_pretty(errp));
687 error_free(errp);
691 void hmp_block_resize(Monitor *mon, const QDict *qdict)
693 const char *device = qdict_get_str(qdict, "device");
694 int64_t size = qdict_get_int(qdict, "size");
695 Error *errp = NULL;
697 qmp_block_resize(device, size, &errp);
698 hmp_handle_error(mon, &errp);
701 void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict)
703 const char *device = qdict_get_str(qdict, "device");
704 const char *filename = qdict_get_try_str(qdict, "snapshot-file");
705 const char *format = qdict_get_try_str(qdict, "format");
706 int reuse = qdict_get_try_bool(qdict, "reuse", 0);
707 enum NewImageMode mode;
708 Error *errp = NULL;
710 if (!filename) {
711 /* In the future, if 'snapshot-file' is not specified, the snapshot
712 will be taken internally. Today it's actually required. */
713 error_set(&errp, QERR_MISSING_PARAMETER, "snapshot-file");
714 hmp_handle_error(mon, &errp);
715 return;
718 mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
719 qmp_blockdev_snapshot_sync(device, filename, !!format, format,
720 true, mode, &errp);
721 hmp_handle_error(mon, &errp);
724 void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
726 qmp_migrate_cancel(NULL);
729 void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
731 double value = qdict_get_double(qdict, "value");
732 qmp_migrate_set_downtime(value, NULL);
735 void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
737 int64_t value = qdict_get_int(qdict, "value");
738 qmp_migrate_set_speed(value, NULL);
741 void hmp_set_password(Monitor *mon, const QDict *qdict)
743 const char *protocol = qdict_get_str(qdict, "protocol");
744 const char *password = qdict_get_str(qdict, "password");
745 const char *connected = qdict_get_try_str(qdict, "connected");
746 Error *err = NULL;
748 qmp_set_password(protocol, password, !!connected, connected, &err);
749 hmp_handle_error(mon, &err);
752 void hmp_expire_password(Monitor *mon, const QDict *qdict)
754 const char *protocol = qdict_get_str(qdict, "protocol");
755 const char *whenstr = qdict_get_str(qdict, "time");
756 Error *err = NULL;
758 qmp_expire_password(protocol, whenstr, &err);
759 hmp_handle_error(mon, &err);
762 void hmp_eject(Monitor *mon, const QDict *qdict)
764 int force = qdict_get_try_bool(qdict, "force", 0);
765 const char *device = qdict_get_str(qdict, "device");
766 Error *err = NULL;
768 qmp_eject(device, true, force, &err);
769 hmp_handle_error(mon, &err);
772 static void hmp_change_read_arg(Monitor *mon, const char *password,
773 void *opaque)
775 qmp_change_vnc_password(password, NULL);
776 monitor_read_command(mon, 1);
779 void hmp_change(Monitor *mon, const QDict *qdict)
781 const char *device = qdict_get_str(qdict, "device");
782 const char *target = qdict_get_str(qdict, "target");
783 const char *arg = qdict_get_try_str(qdict, "arg");
784 Error *err = NULL;
786 if (strcmp(device, "vnc") == 0 &&
787 (strcmp(target, "passwd") == 0 ||
788 strcmp(target, "password") == 0)) {
789 if (!arg) {
790 monitor_read_password(mon, hmp_change_read_arg, NULL);
791 return;
795 qmp_change(device, target, !!arg, arg, &err);
796 if (error_is_set(&err) &&
797 error_get_class(err) == ERROR_CLASS_DEVICE_ENCRYPTED) {
798 error_free(err);
799 monitor_read_block_device_key(mon, device, NULL, NULL);
800 return;
802 hmp_handle_error(mon, &err);
805 void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
807 Error *err = NULL;
809 qmp_block_set_io_throttle(qdict_get_str(qdict, "device"),
810 qdict_get_int(qdict, "bps"),
811 qdict_get_int(qdict, "bps_rd"),
812 qdict_get_int(qdict, "bps_wr"),
813 qdict_get_int(qdict, "iops"),
814 qdict_get_int(qdict, "iops_rd"),
815 qdict_get_int(qdict, "iops_wr"), &err);
816 hmp_handle_error(mon, &err);
819 void hmp_block_stream(Monitor *mon, const QDict *qdict)
821 Error *error = NULL;
822 const char *device = qdict_get_str(qdict, "device");
823 const char *base = qdict_get_try_str(qdict, "base");
824 int64_t speed = qdict_get_try_int(qdict, "speed", 0);
826 qmp_block_stream(device, base != NULL, base,
827 qdict_haskey(qdict, "speed"), speed, &error);
829 hmp_handle_error(mon, &error);
832 void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
834 Error *error = NULL;
835 const char *device = qdict_get_str(qdict, "device");
836 int64_t value = qdict_get_int(qdict, "speed");
838 qmp_block_job_set_speed(device, value, &error);
840 hmp_handle_error(mon, &error);
843 void hmp_block_job_cancel(Monitor *mon, const QDict *qdict)
845 Error *error = NULL;
846 const char *device = qdict_get_str(qdict, "device");
848 qmp_block_job_cancel(device, &error);
850 hmp_handle_error(mon, &error);
853 typedef struct MigrationStatus
855 QEMUTimer *timer;
856 Monitor *mon;
857 bool is_block_migration;
858 } MigrationStatus;
860 static void hmp_migrate_status_cb(void *opaque)
862 MigrationStatus *status = opaque;
863 MigrationInfo *info;
865 info = qmp_query_migrate(NULL);
866 if (!info->has_status || strcmp(info->status, "active") == 0) {
867 if (info->has_disk) {
868 int progress;
870 if (info->disk->remaining) {
871 progress = info->disk->transferred * 100 / info->disk->total;
872 } else {
873 progress = 100;
876 monitor_printf(status->mon, "Completed %d %%\r", progress);
877 monitor_flush(status->mon);
880 qemu_mod_timer(status->timer, qemu_get_clock_ms(rt_clock) + 1000);
881 } else {
882 if (status->is_block_migration) {
883 monitor_printf(status->mon, "\n");
885 monitor_resume(status->mon);
886 qemu_del_timer(status->timer);
887 g_free(status);
890 qapi_free_MigrationInfo(info);
893 void hmp_migrate(Monitor *mon, const QDict *qdict)
895 int detach = qdict_get_try_bool(qdict, "detach", 0);
896 int blk = qdict_get_try_bool(qdict, "blk", 0);
897 int inc = qdict_get_try_bool(qdict, "inc", 0);
898 const char *uri = qdict_get_str(qdict, "uri");
899 Error *err = NULL;
901 qmp_migrate(uri, !!blk, blk, !!inc, inc, false, false, &err);
902 if (err) {
903 monitor_printf(mon, "migrate: %s\n", error_get_pretty(err));
904 error_free(err);
905 return;
908 if (!detach) {
909 MigrationStatus *status;
911 if (monitor_suspend(mon) < 0) {
912 monitor_printf(mon, "terminal does not allow synchronous "
913 "migration, continuing detached\n");
914 return;
917 status = g_malloc0(sizeof(*status));
918 status->mon = mon;
919 status->is_block_migration = blk || inc;
920 status->timer = qemu_new_timer_ms(rt_clock, hmp_migrate_status_cb,
921 status);
922 qemu_mod_timer(status->timer, qemu_get_clock_ms(rt_clock));
926 void hmp_device_del(Monitor *mon, const QDict *qdict)
928 const char *id = qdict_get_str(qdict, "id");
929 Error *err = NULL;
931 qmp_device_del(id, &err);
932 hmp_handle_error(mon, &err);
935 void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict)
937 Error *errp = NULL;
938 int paging = qdict_get_try_bool(qdict, "paging", 0);
939 const char *file = qdict_get_str(qdict, "protocol");
940 bool has_begin = qdict_haskey(qdict, "begin");
941 bool has_length = qdict_haskey(qdict, "length");
942 int64_t begin = 0;
943 int64_t length = 0;
945 if (has_begin) {
946 begin = qdict_get_int(qdict, "begin");
948 if (has_length) {
949 length = qdict_get_int(qdict, "length");
952 qmp_dump_guest_memory(paging, file, has_begin, begin, has_length, length,
953 &errp);
954 hmp_handle_error(mon, &errp);
957 void hmp_netdev_add(Monitor *mon, const QDict *qdict)
959 Error *err = NULL;
960 QemuOpts *opts;
962 opts = qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict, &err);
963 if (error_is_set(&err)) {
964 goto out;
967 netdev_add(opts, &err);
968 if (error_is_set(&err)) {
969 qemu_opts_del(opts);
972 out:
973 hmp_handle_error(mon, &err);
976 void hmp_netdev_del(Monitor *mon, const QDict *qdict)
978 const char *id = qdict_get_str(qdict, "id");
979 Error *err = NULL;
981 qmp_netdev_del(id, &err);
982 hmp_handle_error(mon, &err);
985 void hmp_getfd(Monitor *mon, const QDict *qdict)
987 const char *fdname = qdict_get_str(qdict, "fdname");
988 Error *errp = NULL;
990 qmp_getfd(fdname, &errp);
991 hmp_handle_error(mon, &errp);
994 void hmp_closefd(Monitor *mon, const QDict *qdict)
996 const char *fdname = qdict_get_str(qdict, "fdname");
997 Error *errp = NULL;
999 qmp_closefd(fdname, &errp);
1000 hmp_handle_error(mon, &errp);