monitor/hmp: inline add_init_drive
[qemu/ar7.git] / monitor / hmp-cmds.c
blob6fd7aca5007b42196177be75c259292757a0876c
1 /*
2 * Human Monitor Interface commands
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 "qemu/osdep.h"
17 #include "monitor/hmp.h"
18 #include "net/net.h"
19 #include "net/eth.h"
20 #include "chardev/char.h"
21 #include "sysemu/block-backend.h"
22 #include "sysemu/runstate.h"
23 #include "qemu/config-file.h"
24 #include "qemu/option.h"
25 #include "qemu/timer.h"
26 #include "qemu/sockets.h"
27 #include "monitor/monitor-internal.h"
28 #include "qapi/error.h"
29 #include "qapi/clone-visitor.h"
30 #include "qapi/opts-visitor.h"
31 #include "qapi/qapi-builtin-visit.h"
32 #include "qapi/qapi-commands-block.h"
33 #include "qapi/qapi-commands-char.h"
34 #include "qapi/qapi-commands-control.h"
35 #include "qapi/qapi-commands-migration.h"
36 #include "qapi/qapi-commands-misc.h"
37 #include "qapi/qapi-commands-net.h"
38 #include "qapi/qapi-commands-rocker.h"
39 #include "qapi/qapi-commands-run-state.h"
40 #include "qapi/qapi-commands-tpm.h"
41 #include "qapi/qapi-commands-ui.h"
42 #include "qapi/qapi-visit-net.h"
43 #include "qapi/qapi-visit-migration.h"
44 #include "qapi/qmp/qdict.h"
45 #include "qapi/qmp/qerror.h"
46 #include "qapi/string-input-visitor.h"
47 #include "qapi/string-output-visitor.h"
48 #include "qom/object_interfaces.h"
49 #include "ui/console.h"
50 #include "block/nbd.h"
51 #include "block/qapi.h"
52 #include "qemu-io.h"
53 #include "qemu/cutils.h"
54 #include "qemu/error-report.h"
55 #include "exec/ramlist.h"
56 #include "hw/intc/intc.h"
57 #include "hw/rdma/rdma.h"
58 #include "migration/snapshot.h"
59 #include "migration/misc.h"
61 #ifdef CONFIG_SPICE
62 #include <spice/enums.h>
63 #endif
65 void hmp_handle_error(Monitor *mon, Error *err)
67 if (err) {
68 error_reportf_err(err, "Error: ");
73 * Produce a strList from a comma separated list.
74 * A NULL or empty input string return NULL.
76 static strList *strList_from_comma_list(const char *in)
78 strList *res = NULL;
79 strList **hook = &res;
81 while (in && in[0]) {
82 char *comma = strchr(in, ',');
83 *hook = g_new0(strList, 1);
85 if (comma) {
86 (*hook)->value = g_strndup(in, comma - in);
87 in = comma + 1; /* skip the , */
88 } else {
89 (*hook)->value = g_strdup(in);
90 in = NULL;
92 hook = &(*hook)->next;
95 return res;
98 void hmp_info_name(Monitor *mon, const QDict *qdict)
100 NameInfo *info;
102 info = qmp_query_name(NULL);
103 if (info->has_name) {
104 monitor_printf(mon, "%s\n", info->name);
106 qapi_free_NameInfo(info);
109 void hmp_info_version(Monitor *mon, const QDict *qdict)
111 VersionInfo *info;
113 info = qmp_query_version(NULL);
115 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
116 info->qemu->major, info->qemu->minor, info->qemu->micro,
117 info->package);
119 qapi_free_VersionInfo(info);
122 void hmp_info_kvm(Monitor *mon, const QDict *qdict)
124 KvmInfo *info;
126 info = qmp_query_kvm(NULL);
127 monitor_printf(mon, "kvm support: ");
128 if (info->present) {
129 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
130 } else {
131 monitor_printf(mon, "not compiled\n");
134 qapi_free_KvmInfo(info);
137 void hmp_info_status(Monitor *mon, const QDict *qdict)
139 StatusInfo *info;
141 info = qmp_query_status(NULL);
143 monitor_printf(mon, "VM status: %s%s",
144 info->running ? "running" : "paused",
145 info->singlestep ? " (single step mode)" : "");
147 if (!info->running && info->status != RUN_STATE_PAUSED) {
148 monitor_printf(mon, " (%s)", RunState_str(info->status));
151 monitor_printf(mon, "\n");
153 qapi_free_StatusInfo(info);
156 void hmp_info_uuid(Monitor *mon, const QDict *qdict)
158 UuidInfo *info;
160 info = qmp_query_uuid(NULL);
161 monitor_printf(mon, "%s\n", info->UUID);
162 qapi_free_UuidInfo(info);
165 void hmp_info_chardev(Monitor *mon, const QDict *qdict)
167 ChardevInfoList *char_info, *info;
169 char_info = qmp_query_chardev(NULL);
170 for (info = char_info; info; info = info->next) {
171 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
172 info->value->filename);
175 qapi_free_ChardevInfoList(char_info);
178 void hmp_info_mice(Monitor *mon, const QDict *qdict)
180 MouseInfoList *mice_list, *mouse;
182 mice_list = qmp_query_mice(NULL);
183 if (!mice_list) {
184 monitor_printf(mon, "No mouse devices connected\n");
185 return;
188 for (mouse = mice_list; mouse; mouse = mouse->next) {
189 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
190 mouse->value->current ? '*' : ' ',
191 mouse->value->index, mouse->value->name,
192 mouse->value->absolute ? " (absolute)" : "");
195 qapi_free_MouseInfoList(mice_list);
198 static char *SocketAddress_to_str(SocketAddress *addr)
200 switch (addr->type) {
201 case SOCKET_ADDRESS_TYPE_INET:
202 return g_strdup_printf("tcp:%s:%s",
203 addr->u.inet.host,
204 addr->u.inet.port);
205 case SOCKET_ADDRESS_TYPE_UNIX:
206 return g_strdup_printf("unix:%s",
207 addr->u.q_unix.path);
208 case SOCKET_ADDRESS_TYPE_FD:
209 return g_strdup_printf("fd:%s", addr->u.fd.str);
210 case SOCKET_ADDRESS_TYPE_VSOCK:
211 return g_strdup_printf("tcp:%s:%s",
212 addr->u.vsock.cid,
213 addr->u.vsock.port);
214 default:
215 return g_strdup("unknown address type");
219 void hmp_info_migrate(Monitor *mon, const QDict *qdict)
221 MigrationInfo *info;
223 info = qmp_query_migrate(NULL);
225 migration_global_dump(mon);
227 if (info->has_status) {
228 monitor_printf(mon, "Migration status: %s",
229 MigrationStatus_str(info->status));
230 if (info->status == MIGRATION_STATUS_FAILED &&
231 info->has_error_desc) {
232 monitor_printf(mon, " (%s)\n", info->error_desc);
233 } else {
234 monitor_printf(mon, "\n");
237 monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
238 info->total_time);
239 if (info->has_expected_downtime) {
240 monitor_printf(mon, "expected downtime: %" PRIu64 " milliseconds\n",
241 info->expected_downtime);
243 if (info->has_downtime) {
244 monitor_printf(mon, "downtime: %" PRIu64 " milliseconds\n",
245 info->downtime);
247 if (info->has_setup_time) {
248 monitor_printf(mon, "setup: %" PRIu64 " milliseconds\n",
249 info->setup_time);
253 if (info->has_ram) {
254 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
255 info->ram->transferred >> 10);
256 monitor_printf(mon, "throughput: %0.2f mbps\n",
257 info->ram->mbps);
258 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
259 info->ram->remaining >> 10);
260 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
261 info->ram->total >> 10);
262 monitor_printf(mon, "duplicate: %" PRIu64 " pages\n",
263 info->ram->duplicate);
264 monitor_printf(mon, "skipped: %" PRIu64 " pages\n",
265 info->ram->skipped);
266 monitor_printf(mon, "normal: %" PRIu64 " pages\n",
267 info->ram->normal);
268 monitor_printf(mon, "normal bytes: %" PRIu64 " kbytes\n",
269 info->ram->normal_bytes >> 10);
270 monitor_printf(mon, "dirty sync count: %" PRIu64 "\n",
271 info->ram->dirty_sync_count);
272 monitor_printf(mon, "page size: %" PRIu64 " kbytes\n",
273 info->ram->page_size >> 10);
274 monitor_printf(mon, "multifd bytes: %" PRIu64 " kbytes\n",
275 info->ram->multifd_bytes >> 10);
276 monitor_printf(mon, "pages-per-second: %" PRIu64 "\n",
277 info->ram->pages_per_second);
279 if (info->ram->dirty_pages_rate) {
280 monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
281 info->ram->dirty_pages_rate);
283 if (info->ram->postcopy_requests) {
284 monitor_printf(mon, "postcopy request count: %" PRIu64 "\n",
285 info->ram->postcopy_requests);
289 if (info->has_disk) {
290 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
291 info->disk->transferred >> 10);
292 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
293 info->disk->remaining >> 10);
294 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
295 info->disk->total >> 10);
298 if (info->has_xbzrle_cache) {
299 monitor_printf(mon, "cache size: %" PRIu64 " bytes\n",
300 info->xbzrle_cache->cache_size);
301 monitor_printf(mon, "xbzrle transferred: %" PRIu64 " kbytes\n",
302 info->xbzrle_cache->bytes >> 10);
303 monitor_printf(mon, "xbzrle pages: %" PRIu64 " pages\n",
304 info->xbzrle_cache->pages);
305 monitor_printf(mon, "xbzrle cache miss: %" PRIu64 "\n",
306 info->xbzrle_cache->cache_miss);
307 monitor_printf(mon, "xbzrle cache miss rate: %0.2f\n",
308 info->xbzrle_cache->cache_miss_rate);
309 monitor_printf(mon, "xbzrle overflow : %" PRIu64 "\n",
310 info->xbzrle_cache->overflow);
313 if (info->has_compression) {
314 monitor_printf(mon, "compression pages: %" PRIu64 " pages\n",
315 info->compression->pages);
316 monitor_printf(mon, "compression busy: %" PRIu64 "\n",
317 info->compression->busy);
318 monitor_printf(mon, "compression busy rate: %0.2f\n",
319 info->compression->busy_rate);
320 monitor_printf(mon, "compressed size: %" PRIu64 "\n",
321 info->compression->compressed_size);
322 monitor_printf(mon, "compression rate: %0.2f\n",
323 info->compression->compression_rate);
326 if (info->has_cpu_throttle_percentage) {
327 monitor_printf(mon, "cpu throttle percentage: %" PRIu64 "\n",
328 info->cpu_throttle_percentage);
331 if (info->has_postcopy_blocktime) {
332 monitor_printf(mon, "postcopy blocktime: %u\n",
333 info->postcopy_blocktime);
336 if (info->has_postcopy_vcpu_blocktime) {
337 Visitor *v;
338 char *str;
339 v = string_output_visitor_new(false, &str);
340 visit_type_uint32List(v, NULL, &info->postcopy_vcpu_blocktime, NULL);
341 visit_complete(v, &str);
342 monitor_printf(mon, "postcopy vcpu blocktime: %s\n", str);
343 g_free(str);
344 visit_free(v);
346 if (info->has_socket_address) {
347 SocketAddressList *addr;
349 monitor_printf(mon, "socket address: [\n");
351 for (addr = info->socket_address; addr; addr = addr->next) {
352 char *s = SocketAddress_to_str(addr->value);
353 monitor_printf(mon, "\t%s\n", s);
354 g_free(s);
356 monitor_printf(mon, "]\n");
358 qapi_free_MigrationInfo(info);
361 void hmp_info_migrate_capabilities(Monitor *mon, const QDict *qdict)
363 MigrationCapabilityStatusList *caps, *cap;
365 caps = qmp_query_migrate_capabilities(NULL);
367 if (caps) {
368 for (cap = caps; cap; cap = cap->next) {
369 monitor_printf(mon, "%s: %s\n",
370 MigrationCapability_str(cap->value->capability),
371 cap->value->state ? "on" : "off");
375 qapi_free_MigrationCapabilityStatusList(caps);
378 void hmp_info_migrate_parameters(Monitor *mon, const QDict *qdict)
380 MigrationParameters *params;
382 params = qmp_query_migrate_parameters(NULL);
384 if (params) {
385 monitor_printf(mon, "%s: %" PRIu64 " ms\n",
386 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_INITIAL),
387 params->announce_initial);
388 monitor_printf(mon, "%s: %" PRIu64 " ms\n",
389 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_MAX),
390 params->announce_max);
391 monitor_printf(mon, "%s: %" PRIu64 "\n",
392 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_ROUNDS),
393 params->announce_rounds);
394 monitor_printf(mon, "%s: %" PRIu64 " ms\n",
395 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_STEP),
396 params->announce_step);
397 assert(params->has_compress_level);
398 monitor_printf(mon, "%s: %u\n",
399 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL),
400 params->compress_level);
401 assert(params->has_compress_threads);
402 monitor_printf(mon, "%s: %u\n",
403 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_THREADS),
404 params->compress_threads);
405 assert(params->has_compress_wait_thread);
406 monitor_printf(mon, "%s: %s\n",
407 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_WAIT_THREAD),
408 params->compress_wait_thread ? "on" : "off");
409 assert(params->has_decompress_threads);
410 monitor_printf(mon, "%s: %u\n",
411 MigrationParameter_str(MIGRATION_PARAMETER_DECOMPRESS_THREADS),
412 params->decompress_threads);
413 assert(params->has_cpu_throttle_initial);
414 monitor_printf(mon, "%s: %u\n",
415 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL),
416 params->cpu_throttle_initial);
417 assert(params->has_cpu_throttle_increment);
418 monitor_printf(mon, "%s: %u\n",
419 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT),
420 params->cpu_throttle_increment);
421 assert(params->has_max_cpu_throttle);
422 monitor_printf(mon, "%s: %u\n",
423 MigrationParameter_str(MIGRATION_PARAMETER_MAX_CPU_THROTTLE),
424 params->max_cpu_throttle);
425 assert(params->has_tls_creds);
426 monitor_printf(mon, "%s: '%s'\n",
427 MigrationParameter_str(MIGRATION_PARAMETER_TLS_CREDS),
428 params->tls_creds);
429 assert(params->has_tls_hostname);
430 monitor_printf(mon, "%s: '%s'\n",
431 MigrationParameter_str(MIGRATION_PARAMETER_TLS_HOSTNAME),
432 params->tls_hostname);
433 assert(params->has_max_bandwidth);
434 monitor_printf(mon, "%s: %" PRIu64 " bytes/second\n",
435 MigrationParameter_str(MIGRATION_PARAMETER_MAX_BANDWIDTH),
436 params->max_bandwidth);
437 assert(params->has_downtime_limit);
438 monitor_printf(mon, "%s: %" PRIu64 " milliseconds\n",
439 MigrationParameter_str(MIGRATION_PARAMETER_DOWNTIME_LIMIT),
440 params->downtime_limit);
441 assert(params->has_x_checkpoint_delay);
442 monitor_printf(mon, "%s: %u\n",
443 MigrationParameter_str(MIGRATION_PARAMETER_X_CHECKPOINT_DELAY),
444 params->x_checkpoint_delay);
445 assert(params->has_block_incremental);
446 monitor_printf(mon, "%s: %s\n",
447 MigrationParameter_str(MIGRATION_PARAMETER_BLOCK_INCREMENTAL),
448 params->block_incremental ? "on" : "off");
449 monitor_printf(mon, "%s: %u\n",
450 MigrationParameter_str(MIGRATION_PARAMETER_MULTIFD_CHANNELS),
451 params->multifd_channels);
452 monitor_printf(mon, "%s: %s\n",
453 MigrationParameter_str(MIGRATION_PARAMETER_MULTIFD_COMPRESSION),
454 MultiFDCompression_str(params->multifd_compression));
455 monitor_printf(mon, "%s: %" PRIu64 "\n",
456 MigrationParameter_str(MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE),
457 params->xbzrle_cache_size);
458 monitor_printf(mon, "%s: %" PRIu64 "\n",
459 MigrationParameter_str(MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH),
460 params->max_postcopy_bandwidth);
461 monitor_printf(mon, " %s: '%s'\n",
462 MigrationParameter_str(MIGRATION_PARAMETER_TLS_AUTHZ),
463 params->has_tls_authz ? params->tls_authz : "");
466 qapi_free_MigrationParameters(params);
469 void hmp_info_migrate_cache_size(Monitor *mon, const QDict *qdict)
471 monitor_printf(mon, "xbzrel cache size: %" PRId64 " kbytes\n",
472 qmp_query_migrate_cache_size(NULL) >> 10);
475 static void print_block_info(Monitor *mon, BlockInfo *info,
476 BlockDeviceInfo *inserted, bool verbose)
478 ImageInfo *image_info;
480 assert(!info || !info->has_inserted || info->inserted == inserted);
482 if (info && *info->device) {
483 monitor_printf(mon, "%s", info->device);
484 if (inserted && inserted->has_node_name) {
485 monitor_printf(mon, " (%s)", inserted->node_name);
487 } else {
488 assert(info || inserted);
489 monitor_printf(mon, "%s",
490 inserted && inserted->has_node_name ? inserted->node_name
491 : info && info->has_qdev ? info->qdev
492 : "<anonymous>");
495 if (inserted) {
496 monitor_printf(mon, ": %s (%s%s%s)\n",
497 inserted->file,
498 inserted->drv,
499 inserted->ro ? ", read-only" : "",
500 inserted->encrypted ? ", encrypted" : "");
501 } else {
502 monitor_printf(mon, ": [not inserted]\n");
505 if (info) {
506 if (info->has_qdev) {
507 monitor_printf(mon, " Attached to: %s\n", info->qdev);
509 if (info->has_io_status && info->io_status != BLOCK_DEVICE_IO_STATUS_OK) {
510 monitor_printf(mon, " I/O status: %s\n",
511 BlockDeviceIoStatus_str(info->io_status));
514 if (info->removable) {
515 monitor_printf(mon, " Removable device: %slocked, tray %s\n",
516 info->locked ? "" : "not ",
517 info->tray_open ? "open" : "closed");
522 if (!inserted) {
523 return;
526 monitor_printf(mon, " Cache mode: %s%s%s\n",
527 inserted->cache->writeback ? "writeback" : "writethrough",
528 inserted->cache->direct ? ", direct" : "",
529 inserted->cache->no_flush ? ", ignore flushes" : "");
531 if (inserted->has_backing_file) {
532 monitor_printf(mon,
533 " Backing file: %s "
534 "(chain depth: %" PRId64 ")\n",
535 inserted->backing_file,
536 inserted->backing_file_depth);
539 if (inserted->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF) {
540 monitor_printf(mon, " Detect zeroes: %s\n",
541 BlockdevDetectZeroesOptions_str(inserted->detect_zeroes));
544 if (inserted->bps || inserted->bps_rd || inserted->bps_wr ||
545 inserted->iops || inserted->iops_rd || inserted->iops_wr)
547 monitor_printf(mon, " I/O throttling: bps=%" PRId64
548 " bps_rd=%" PRId64 " bps_wr=%" PRId64
549 " bps_max=%" PRId64
550 " bps_rd_max=%" PRId64
551 " bps_wr_max=%" PRId64
552 " iops=%" PRId64 " iops_rd=%" PRId64
553 " iops_wr=%" PRId64
554 " iops_max=%" PRId64
555 " iops_rd_max=%" PRId64
556 " iops_wr_max=%" PRId64
557 " iops_size=%" PRId64
558 " group=%s\n",
559 inserted->bps,
560 inserted->bps_rd,
561 inserted->bps_wr,
562 inserted->bps_max,
563 inserted->bps_rd_max,
564 inserted->bps_wr_max,
565 inserted->iops,
566 inserted->iops_rd,
567 inserted->iops_wr,
568 inserted->iops_max,
569 inserted->iops_rd_max,
570 inserted->iops_wr_max,
571 inserted->iops_size,
572 inserted->group);
575 if (verbose) {
576 monitor_printf(mon, "\nImages:\n");
577 image_info = inserted->image;
578 while (1) {
579 bdrv_image_info_dump(image_info);
580 if (image_info->has_backing_image) {
581 image_info = image_info->backing_image;
582 } else {
583 break;
589 void hmp_info_block(Monitor *mon, const QDict *qdict)
591 BlockInfoList *block_list, *info;
592 BlockDeviceInfoList *blockdev_list, *blockdev;
593 const char *device = qdict_get_try_str(qdict, "device");
594 bool verbose = qdict_get_try_bool(qdict, "verbose", false);
595 bool nodes = qdict_get_try_bool(qdict, "nodes", false);
596 bool printed = false;
598 /* Print BlockBackend information */
599 if (!nodes) {
600 block_list = qmp_query_block(NULL);
601 } else {
602 block_list = NULL;
605 for (info = block_list; info; info = info->next) {
606 if (device && strcmp(device, info->value->device)) {
607 continue;
610 if (info != block_list) {
611 monitor_printf(mon, "\n");
614 print_block_info(mon, info->value, info->value->has_inserted
615 ? info->value->inserted : NULL,
616 verbose);
617 printed = true;
620 qapi_free_BlockInfoList(block_list);
622 if ((!device && !nodes) || printed) {
623 return;
626 /* Print node information */
627 blockdev_list = qmp_query_named_block_nodes(false, false, NULL);
628 for (blockdev = blockdev_list; blockdev; blockdev = blockdev->next) {
629 assert(blockdev->value->has_node_name);
630 if (device && strcmp(device, blockdev->value->node_name)) {
631 continue;
634 if (blockdev != blockdev_list) {
635 monitor_printf(mon, "\n");
638 print_block_info(mon, NULL, blockdev->value, verbose);
640 qapi_free_BlockDeviceInfoList(blockdev_list);
643 void hmp_info_blockstats(Monitor *mon, const QDict *qdict)
645 BlockStatsList *stats_list, *stats;
647 stats_list = qmp_query_blockstats(false, false, NULL);
649 for (stats = stats_list; stats; stats = stats->next) {
650 if (!stats->value->has_device) {
651 continue;
654 monitor_printf(mon, "%s:", stats->value->device);
655 monitor_printf(mon, " rd_bytes=%" PRId64
656 " wr_bytes=%" PRId64
657 " rd_operations=%" PRId64
658 " wr_operations=%" PRId64
659 " flush_operations=%" PRId64
660 " wr_total_time_ns=%" PRId64
661 " rd_total_time_ns=%" PRId64
662 " flush_total_time_ns=%" PRId64
663 " rd_merged=%" PRId64
664 " wr_merged=%" PRId64
665 " idle_time_ns=%" PRId64
666 "\n",
667 stats->value->stats->rd_bytes,
668 stats->value->stats->wr_bytes,
669 stats->value->stats->rd_operations,
670 stats->value->stats->wr_operations,
671 stats->value->stats->flush_operations,
672 stats->value->stats->wr_total_time_ns,
673 stats->value->stats->rd_total_time_ns,
674 stats->value->stats->flush_total_time_ns,
675 stats->value->stats->rd_merged,
676 stats->value->stats->wr_merged,
677 stats->value->stats->idle_time_ns);
680 qapi_free_BlockStatsList(stats_list);
683 #ifdef CONFIG_VNC
684 /* Helper for hmp_info_vnc_clients, _servers */
685 static void hmp_info_VncBasicInfo(Monitor *mon, VncBasicInfo *info,
686 const char *name)
688 monitor_printf(mon, " %s: %s:%s (%s%s)\n",
689 name,
690 info->host,
691 info->service,
692 NetworkAddressFamily_str(info->family),
693 info->websocket ? " (Websocket)" : "");
696 /* Helper displaying and auth and crypt info */
697 static void hmp_info_vnc_authcrypt(Monitor *mon, const char *indent,
698 VncPrimaryAuth auth,
699 VncVencryptSubAuth *vencrypt)
701 monitor_printf(mon, "%sAuth: %s (Sub: %s)\n", indent,
702 VncPrimaryAuth_str(auth),
703 vencrypt ? VncVencryptSubAuth_str(*vencrypt) : "none");
706 static void hmp_info_vnc_clients(Monitor *mon, VncClientInfoList *client)
708 while (client) {
709 VncClientInfo *cinfo = client->value;
711 hmp_info_VncBasicInfo(mon, qapi_VncClientInfo_base(cinfo), "Client");
712 monitor_printf(mon, " x509_dname: %s\n",
713 cinfo->has_x509_dname ?
714 cinfo->x509_dname : "none");
715 monitor_printf(mon, " sasl_username: %s\n",
716 cinfo->has_sasl_username ?
717 cinfo->sasl_username : "none");
719 client = client->next;
723 static void hmp_info_vnc_servers(Monitor *mon, VncServerInfo2List *server)
725 while (server) {
726 VncServerInfo2 *sinfo = server->value;
727 hmp_info_VncBasicInfo(mon, qapi_VncServerInfo2_base(sinfo), "Server");
728 hmp_info_vnc_authcrypt(mon, " ", sinfo->auth,
729 sinfo->has_vencrypt ? &sinfo->vencrypt : NULL);
730 server = server->next;
734 void hmp_info_vnc(Monitor *mon, const QDict *qdict)
736 VncInfo2List *info2l;
737 Error *err = NULL;
739 info2l = qmp_query_vnc_servers(&err);
740 if (err) {
741 hmp_handle_error(mon, err);
742 return;
744 if (!info2l) {
745 monitor_printf(mon, "None\n");
746 return;
749 while (info2l) {
750 VncInfo2 *info = info2l->value;
751 monitor_printf(mon, "%s:\n", info->id);
752 hmp_info_vnc_servers(mon, info->server);
753 hmp_info_vnc_clients(mon, info->clients);
754 if (!info->server) {
755 /* The server entry displays its auth, we only
756 * need to display in the case of 'reverse' connections
757 * where there's no server.
759 hmp_info_vnc_authcrypt(mon, " ", info->auth,
760 info->has_vencrypt ? &info->vencrypt : NULL);
762 if (info->has_display) {
763 monitor_printf(mon, " Display: %s\n", info->display);
765 info2l = info2l->next;
768 qapi_free_VncInfo2List(info2l);
771 #endif
773 #ifdef CONFIG_SPICE
774 void hmp_info_spice(Monitor *mon, const QDict *qdict)
776 SpiceChannelList *chan;
777 SpiceInfo *info;
778 const char *channel_name;
779 const char * const channel_names[] = {
780 [SPICE_CHANNEL_MAIN] = "main",
781 [SPICE_CHANNEL_DISPLAY] = "display",
782 [SPICE_CHANNEL_INPUTS] = "inputs",
783 [SPICE_CHANNEL_CURSOR] = "cursor",
784 [SPICE_CHANNEL_PLAYBACK] = "playback",
785 [SPICE_CHANNEL_RECORD] = "record",
786 [SPICE_CHANNEL_TUNNEL] = "tunnel",
787 [SPICE_CHANNEL_SMARTCARD] = "smartcard",
788 [SPICE_CHANNEL_USBREDIR] = "usbredir",
789 [SPICE_CHANNEL_PORT] = "port",
790 #if 0
791 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
792 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
793 * as quick fix for build failures with older versions. */
794 [SPICE_CHANNEL_WEBDAV] = "webdav",
795 #endif
798 info = qmp_query_spice(NULL);
800 if (!info->enabled) {
801 monitor_printf(mon, "Server: disabled\n");
802 goto out;
805 monitor_printf(mon, "Server:\n");
806 if (info->has_port) {
807 monitor_printf(mon, " address: %s:%" PRId64 "\n",
808 info->host, info->port);
810 if (info->has_tls_port) {
811 monitor_printf(mon, " address: %s:%" PRId64 " [tls]\n",
812 info->host, info->tls_port);
814 monitor_printf(mon, " migrated: %s\n",
815 info->migrated ? "true" : "false");
816 monitor_printf(mon, " auth: %s\n", info->auth);
817 monitor_printf(mon, " compiled: %s\n", info->compiled_version);
818 monitor_printf(mon, " mouse-mode: %s\n",
819 SpiceQueryMouseMode_str(info->mouse_mode));
821 if (!info->has_channels || info->channels == NULL) {
822 monitor_printf(mon, "Channels: none\n");
823 } else {
824 for (chan = info->channels; chan; chan = chan->next) {
825 monitor_printf(mon, "Channel:\n");
826 monitor_printf(mon, " address: %s:%s%s\n",
827 chan->value->host, chan->value->port,
828 chan->value->tls ? " [tls]" : "");
829 monitor_printf(mon, " session: %" PRId64 "\n",
830 chan->value->connection_id);
831 monitor_printf(mon, " channel: %" PRId64 ":%" PRId64 "\n",
832 chan->value->channel_type, chan->value->channel_id);
834 channel_name = "unknown";
835 if (chan->value->channel_type > 0 &&
836 chan->value->channel_type < ARRAY_SIZE(channel_names) &&
837 channel_names[chan->value->channel_type]) {
838 channel_name = channel_names[chan->value->channel_type];
841 monitor_printf(mon, " channel name: %s\n", channel_name);
845 out:
846 qapi_free_SpiceInfo(info);
848 #endif
850 void hmp_info_balloon(Monitor *mon, const QDict *qdict)
852 BalloonInfo *info;
853 Error *err = NULL;
855 info = qmp_query_balloon(&err);
856 if (err) {
857 hmp_handle_error(mon, err);
858 return;
861 monitor_printf(mon, "balloon: actual=%" PRId64 "\n", info->actual >> 20);
863 qapi_free_BalloonInfo(info);
866 static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
868 PciMemoryRegionList *region;
870 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
871 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
872 dev->slot, dev->function);
873 monitor_printf(mon, " ");
875 if (dev->class_info->has_desc) {
876 monitor_printf(mon, "%s", dev->class_info->desc);
877 } else {
878 monitor_printf(mon, "Class %04" PRId64, dev->class_info->q_class);
881 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
882 dev->id->vendor, dev->id->device);
883 if (dev->id->has_subsystem_vendor && dev->id->has_subsystem) {
884 monitor_printf(mon, " PCI subsystem %04" PRIx64 ":%04" PRIx64 "\n",
885 dev->id->subsystem_vendor, dev->id->subsystem);
888 if (dev->has_irq) {
889 monitor_printf(mon, " IRQ %" PRId64 ".\n", dev->irq);
892 if (dev->has_pci_bridge) {
893 monitor_printf(mon, " BUS %" PRId64 ".\n",
894 dev->pci_bridge->bus->number);
895 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
896 dev->pci_bridge->bus->secondary);
897 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
898 dev->pci_bridge->bus->subordinate);
900 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
901 dev->pci_bridge->bus->io_range->base,
902 dev->pci_bridge->bus->io_range->limit);
904 monitor_printf(mon,
905 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
906 dev->pci_bridge->bus->memory_range->base,
907 dev->pci_bridge->bus->memory_range->limit);
909 monitor_printf(mon, " prefetchable memory range "
910 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
911 dev->pci_bridge->bus->prefetchable_range->base,
912 dev->pci_bridge->bus->prefetchable_range->limit);
915 for (region = dev->regions; region; region = region->next) {
916 uint64_t addr, size;
918 addr = region->value->address;
919 size = region->value->size;
921 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
923 if (!strcmp(region->value->type, "io")) {
924 monitor_printf(mon, "I/O at 0x%04" PRIx64
925 " [0x%04" PRIx64 "].\n",
926 addr, addr + size - 1);
927 } else {
928 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
929 " [0x%08" PRIx64 "].\n",
930 region->value->mem_type_64 ? 64 : 32,
931 region->value->prefetch ? " prefetchable" : "",
932 addr, addr + size - 1);
936 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
938 if (dev->has_pci_bridge) {
939 if (dev->pci_bridge->has_devices) {
940 PciDeviceInfoList *cdev;
941 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
942 hmp_info_pci_device(mon, cdev->value);
948 static int hmp_info_irq_foreach(Object *obj, void *opaque)
950 InterruptStatsProvider *intc;
951 InterruptStatsProviderClass *k;
952 Monitor *mon = opaque;
954 if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
955 intc = INTERRUPT_STATS_PROVIDER(obj);
956 k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
957 uint64_t *irq_counts;
958 unsigned int nb_irqs, i;
959 if (k->get_statistics &&
960 k->get_statistics(intc, &irq_counts, &nb_irqs)) {
961 if (nb_irqs > 0) {
962 monitor_printf(mon, "IRQ statistics for %s:\n",
963 object_get_typename(obj));
964 for (i = 0; i < nb_irqs; i++) {
965 if (irq_counts[i] > 0) {
966 monitor_printf(mon, "%2d: %" PRId64 "\n", i,
967 irq_counts[i]);
971 } else {
972 monitor_printf(mon, "IRQ statistics not available for %s.\n",
973 object_get_typename(obj));
977 return 0;
980 void hmp_info_irq(Monitor *mon, const QDict *qdict)
982 object_child_foreach_recursive(object_get_root(),
983 hmp_info_irq_foreach, mon);
986 static int hmp_info_pic_foreach(Object *obj, void *opaque)
988 InterruptStatsProvider *intc;
989 InterruptStatsProviderClass *k;
990 Monitor *mon = opaque;
992 if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
993 intc = INTERRUPT_STATS_PROVIDER(obj);
994 k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
995 if (k->print_info) {
996 k->print_info(intc, mon);
997 } else {
998 monitor_printf(mon, "Interrupt controller information not available for %s.\n",
999 object_get_typename(obj));
1003 return 0;
1006 void hmp_info_pic(Monitor *mon, const QDict *qdict)
1008 object_child_foreach_recursive(object_get_root(),
1009 hmp_info_pic_foreach, mon);
1012 static int hmp_info_rdma_foreach(Object *obj, void *opaque)
1014 RdmaProvider *rdma;
1015 RdmaProviderClass *k;
1016 Monitor *mon = opaque;
1018 if (object_dynamic_cast(obj, INTERFACE_RDMA_PROVIDER)) {
1019 rdma = RDMA_PROVIDER(obj);
1020 k = RDMA_PROVIDER_GET_CLASS(obj);
1021 if (k->print_statistics) {
1022 k->print_statistics(mon, rdma);
1023 } else {
1024 monitor_printf(mon, "RDMA statistics not available for %s.\n",
1025 object_get_typename(obj));
1029 return 0;
1032 void hmp_info_rdma(Monitor *mon, const QDict *qdict)
1034 object_child_foreach_recursive(object_get_root(),
1035 hmp_info_rdma_foreach, mon);
1038 void hmp_info_pci(Monitor *mon, const QDict *qdict)
1040 PciInfoList *info_list, *info;
1041 Error *err = NULL;
1043 info_list = qmp_query_pci(&err);
1044 if (err) {
1045 monitor_printf(mon, "PCI devices not supported\n");
1046 error_free(err);
1047 return;
1050 for (info = info_list; info; info = info->next) {
1051 PciDeviceInfoList *dev;
1053 for (dev = info->value->devices; dev; dev = dev->next) {
1054 hmp_info_pci_device(mon, dev->value);
1058 qapi_free_PciInfoList(info_list);
1061 void hmp_info_block_jobs(Monitor *mon, const QDict *qdict)
1063 BlockJobInfoList *list;
1064 Error *err = NULL;
1066 list = qmp_query_block_jobs(&err);
1067 assert(!err);
1069 if (!list) {
1070 monitor_printf(mon, "No active jobs\n");
1071 return;
1074 while (list) {
1075 if (strcmp(list->value->type, "stream") == 0) {
1076 monitor_printf(mon, "Streaming device %s: Completed %" PRId64
1077 " of %" PRId64 " bytes, speed limit %" PRId64
1078 " bytes/s\n",
1079 list->value->device,
1080 list->value->offset,
1081 list->value->len,
1082 list->value->speed);
1083 } else {
1084 monitor_printf(mon, "Type %s, device %s: Completed %" PRId64
1085 " of %" PRId64 " bytes, speed limit %" PRId64
1086 " bytes/s\n",
1087 list->value->type,
1088 list->value->device,
1089 list->value->offset,
1090 list->value->len,
1091 list->value->speed);
1093 list = list->next;
1096 qapi_free_BlockJobInfoList(list);
1099 void hmp_info_tpm(Monitor *mon, const QDict *qdict)
1101 TPMInfoList *info_list, *info;
1102 Error *err = NULL;
1103 unsigned int c = 0;
1104 TPMPassthroughOptions *tpo;
1105 TPMEmulatorOptions *teo;
1107 info_list = qmp_query_tpm(&err);
1108 if (err) {
1109 monitor_printf(mon, "TPM device not supported\n");
1110 error_free(err);
1111 return;
1114 if (info_list) {
1115 monitor_printf(mon, "TPM device:\n");
1118 for (info = info_list; info; info = info->next) {
1119 TPMInfo *ti = info->value;
1120 monitor_printf(mon, " tpm%d: model=%s\n",
1121 c, TpmModel_str(ti->model));
1123 monitor_printf(mon, " \\ %s: type=%s",
1124 ti->id, TpmTypeOptionsKind_str(ti->options->type));
1126 switch (ti->options->type) {
1127 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH:
1128 tpo = ti->options->u.passthrough.data;
1129 monitor_printf(mon, "%s%s%s%s",
1130 tpo->has_path ? ",path=" : "",
1131 tpo->has_path ? tpo->path : "",
1132 tpo->has_cancel_path ? ",cancel-path=" : "",
1133 tpo->has_cancel_path ? tpo->cancel_path : "");
1134 break;
1135 case TPM_TYPE_OPTIONS_KIND_EMULATOR:
1136 teo = ti->options->u.emulator.data;
1137 monitor_printf(mon, ",chardev=%s", teo->chardev);
1138 break;
1139 case TPM_TYPE_OPTIONS_KIND__MAX:
1140 break;
1142 monitor_printf(mon, "\n");
1143 c++;
1145 qapi_free_TPMInfoList(info_list);
1148 void hmp_quit(Monitor *mon, const QDict *qdict)
1150 monitor_suspend(mon);
1151 qmp_quit(NULL);
1154 void hmp_stop(Monitor *mon, const QDict *qdict)
1156 qmp_stop(NULL);
1159 void hmp_sync_profile(Monitor *mon, const QDict *qdict)
1161 const char *op = qdict_get_try_str(qdict, "op");
1163 if (op == NULL) {
1164 bool on = qsp_is_enabled();
1166 monitor_printf(mon, "sync-profile is %s\n", on ? "on" : "off");
1167 return;
1169 if (!strcmp(op, "on")) {
1170 qsp_enable();
1171 } else if (!strcmp(op, "off")) {
1172 qsp_disable();
1173 } else if (!strcmp(op, "reset")) {
1174 qsp_reset();
1175 } else {
1176 Error *err = NULL;
1178 error_setg(&err, QERR_INVALID_PARAMETER, op);
1179 hmp_handle_error(mon, err);
1183 void hmp_system_reset(Monitor *mon, const QDict *qdict)
1185 qmp_system_reset(NULL);
1188 void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
1190 qmp_system_powerdown(NULL);
1193 void hmp_exit_preconfig(Monitor *mon, const QDict *qdict)
1195 Error *err = NULL;
1197 qmp_x_exit_preconfig(&err);
1198 hmp_handle_error(mon, err);
1201 void hmp_cpu(Monitor *mon, const QDict *qdict)
1203 int64_t cpu_index;
1205 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1206 use it are converted to the QAPI */
1207 cpu_index = qdict_get_int(qdict, "index");
1208 if (monitor_set_cpu(cpu_index) < 0) {
1209 monitor_printf(mon, "invalid CPU index\n");
1213 void hmp_memsave(Monitor *mon, const QDict *qdict)
1215 uint32_t size = qdict_get_int(qdict, "size");
1216 const char *filename = qdict_get_str(qdict, "filename");
1217 uint64_t addr = qdict_get_int(qdict, "val");
1218 Error *err = NULL;
1219 int cpu_index = monitor_get_cpu_index();
1221 if (cpu_index < 0) {
1222 monitor_printf(mon, "No CPU available\n");
1223 return;
1226 qmp_memsave(addr, size, filename, true, cpu_index, &err);
1227 hmp_handle_error(mon, err);
1230 void hmp_pmemsave(Monitor *mon, const QDict *qdict)
1232 uint32_t size = qdict_get_int(qdict, "size");
1233 const char *filename = qdict_get_str(qdict, "filename");
1234 uint64_t addr = qdict_get_int(qdict, "val");
1235 Error *err = NULL;
1237 qmp_pmemsave(addr, size, filename, &err);
1238 hmp_handle_error(mon, err);
1241 void hmp_ringbuf_write(Monitor *mon, const QDict *qdict)
1243 const char *chardev = qdict_get_str(qdict, "device");
1244 const char *data = qdict_get_str(qdict, "data");
1245 Error *err = NULL;
1247 qmp_ringbuf_write(chardev, data, false, 0, &err);
1249 hmp_handle_error(mon, err);
1252 void hmp_ringbuf_read(Monitor *mon, const QDict *qdict)
1254 uint32_t size = qdict_get_int(qdict, "size");
1255 const char *chardev = qdict_get_str(qdict, "device");
1256 char *data;
1257 Error *err = NULL;
1258 int i;
1260 data = qmp_ringbuf_read(chardev, size, false, 0, &err);
1261 if (err) {
1262 hmp_handle_error(mon, err);
1263 return;
1266 for (i = 0; data[i]; i++) {
1267 unsigned char ch = data[i];
1269 if (ch == '\\') {
1270 monitor_printf(mon, "\\\\");
1271 } else if ((ch < 0x20 && ch != '\n' && ch != '\t') || ch == 0x7F) {
1272 monitor_printf(mon, "\\u%04X", ch);
1273 } else {
1274 monitor_printf(mon, "%c", ch);
1278 monitor_printf(mon, "\n");
1279 g_free(data);
1282 void hmp_cont(Monitor *mon, const QDict *qdict)
1284 Error *err = NULL;
1286 qmp_cont(&err);
1287 hmp_handle_error(mon, err);
1290 void hmp_system_wakeup(Monitor *mon, const QDict *qdict)
1292 Error *err = NULL;
1294 qmp_system_wakeup(&err);
1295 hmp_handle_error(mon, err);
1298 void hmp_nmi(Monitor *mon, const QDict *qdict)
1300 Error *err = NULL;
1302 qmp_inject_nmi(&err);
1303 hmp_handle_error(mon, err);
1306 void hmp_set_link(Monitor *mon, const QDict *qdict)
1308 const char *name = qdict_get_str(qdict, "name");
1309 bool up = qdict_get_bool(qdict, "up");
1310 Error *err = NULL;
1312 qmp_set_link(name, up, &err);
1313 hmp_handle_error(mon, err);
1316 void hmp_block_passwd(Monitor *mon, const QDict *qdict)
1318 const char *device = qdict_get_str(qdict, "device");
1319 const char *password = qdict_get_str(qdict, "password");
1320 Error *err = NULL;
1322 qmp_block_passwd(true, device, false, NULL, password, &err);
1323 hmp_handle_error(mon, err);
1326 void hmp_balloon(Monitor *mon, const QDict *qdict)
1328 int64_t value = qdict_get_int(qdict, "value");
1329 Error *err = NULL;
1331 qmp_balloon(value, &err);
1332 hmp_handle_error(mon, err);
1335 void hmp_block_resize(Monitor *mon, const QDict *qdict)
1337 const char *device = qdict_get_str(qdict, "device");
1338 int64_t size = qdict_get_int(qdict, "size");
1339 Error *err = NULL;
1341 qmp_block_resize(true, device, false, NULL, size, &err);
1342 hmp_handle_error(mon, err);
1345 void hmp_drive_mirror(Monitor *mon, const QDict *qdict)
1347 const char *filename = qdict_get_str(qdict, "target");
1348 const char *format = qdict_get_try_str(qdict, "format");
1349 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1350 bool full = qdict_get_try_bool(qdict, "full", false);
1351 Error *err = NULL;
1352 DriveMirror mirror = {
1353 .device = (char *)qdict_get_str(qdict, "device"),
1354 .target = (char *)filename,
1355 .has_format = !!format,
1356 .format = (char *)format,
1357 .sync = full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
1358 .has_mode = true,
1359 .mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS,
1360 .unmap = true,
1363 if (!filename) {
1364 error_setg(&err, QERR_MISSING_PARAMETER, "target");
1365 hmp_handle_error(mon, err);
1366 return;
1368 qmp_drive_mirror(&mirror, &err);
1369 hmp_handle_error(mon, err);
1372 void hmp_drive_backup(Monitor *mon, const QDict *qdict)
1374 const char *device = qdict_get_str(qdict, "device");
1375 const char *filename = qdict_get_str(qdict, "target");
1376 const char *format = qdict_get_try_str(qdict, "format");
1377 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1378 bool full = qdict_get_try_bool(qdict, "full", false);
1379 bool compress = qdict_get_try_bool(qdict, "compress", false);
1380 Error *err = NULL;
1381 DriveBackup backup = {
1382 .device = (char *)device,
1383 .target = (char *)filename,
1384 .has_format = !!format,
1385 .format = (char *)format,
1386 .sync = full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
1387 .has_mode = true,
1388 .mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS,
1389 .has_compress = !!compress,
1390 .compress = compress,
1393 if (!filename) {
1394 error_setg(&err, QERR_MISSING_PARAMETER, "target");
1395 hmp_handle_error(mon, err);
1396 return;
1399 qmp_drive_backup(&backup, &err);
1400 hmp_handle_error(mon, err);
1403 void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict)
1405 const char *device = qdict_get_str(qdict, "device");
1406 const char *filename = qdict_get_try_str(qdict, "snapshot-file");
1407 const char *format = qdict_get_try_str(qdict, "format");
1408 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1409 enum NewImageMode mode;
1410 Error *err = NULL;
1412 if (!filename) {
1413 /* In the future, if 'snapshot-file' is not specified, the snapshot
1414 will be taken internally. Today it's actually required. */
1415 error_setg(&err, QERR_MISSING_PARAMETER, "snapshot-file");
1416 hmp_handle_error(mon, err);
1417 return;
1420 mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1421 qmp_blockdev_snapshot_sync(true, device, false, NULL,
1422 filename, false, NULL,
1423 !!format, format,
1424 true, mode, &err);
1425 hmp_handle_error(mon, err);
1428 void hmp_snapshot_blkdev_internal(Monitor *mon, const QDict *qdict)
1430 const char *device = qdict_get_str(qdict, "device");
1431 const char *name = qdict_get_str(qdict, "name");
1432 Error *err = NULL;
1434 qmp_blockdev_snapshot_internal_sync(device, name, &err);
1435 hmp_handle_error(mon, err);
1438 void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict)
1440 const char *device = qdict_get_str(qdict, "device");
1441 const char *name = qdict_get_str(qdict, "name");
1442 const char *id = qdict_get_try_str(qdict, "id");
1443 Error *err = NULL;
1445 qmp_blockdev_snapshot_delete_internal_sync(device, !!id, id,
1446 true, name, &err);
1447 hmp_handle_error(mon, err);
1450 void hmp_loadvm(Monitor *mon, const QDict *qdict)
1452 int saved_vm_running = runstate_is_running();
1453 const char *name = qdict_get_str(qdict, "name");
1454 Error *err = NULL;
1456 vm_stop(RUN_STATE_RESTORE_VM);
1458 if (load_snapshot(name, &err) == 0 && saved_vm_running) {
1459 vm_start();
1461 hmp_handle_error(mon, err);
1464 void hmp_savevm(Monitor *mon, const QDict *qdict)
1466 Error *err = NULL;
1468 save_snapshot(qdict_get_try_str(qdict, "name"), &err);
1469 hmp_handle_error(mon, err);
1472 void hmp_delvm(Monitor *mon, const QDict *qdict)
1474 BlockDriverState *bs;
1475 Error *err = NULL;
1476 const char *name = qdict_get_str(qdict, "name");
1478 if (bdrv_all_delete_snapshot(name, &bs, &err) < 0) {
1479 error_prepend(&err,
1480 "deleting snapshot on device '%s': ",
1481 bdrv_get_device_name(bs));
1483 hmp_handle_error(mon, err);
1486 void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
1488 BlockDriverState *bs, *bs1;
1489 BdrvNextIterator it1;
1490 QEMUSnapshotInfo *sn_tab, *sn;
1491 bool no_snapshot = true;
1492 int nb_sns, i;
1493 int total;
1494 int *global_snapshots;
1495 AioContext *aio_context;
1497 typedef struct SnapshotEntry {
1498 QEMUSnapshotInfo sn;
1499 QTAILQ_ENTRY(SnapshotEntry) next;
1500 } SnapshotEntry;
1502 typedef struct ImageEntry {
1503 const char *imagename;
1504 QTAILQ_ENTRY(ImageEntry) next;
1505 QTAILQ_HEAD(, SnapshotEntry) snapshots;
1506 } ImageEntry;
1508 QTAILQ_HEAD(, ImageEntry) image_list =
1509 QTAILQ_HEAD_INITIALIZER(image_list);
1511 ImageEntry *image_entry, *next_ie;
1512 SnapshotEntry *snapshot_entry;
1514 bs = bdrv_all_find_vmstate_bs();
1515 if (!bs) {
1516 monitor_printf(mon, "No available block device supports snapshots\n");
1517 return;
1519 aio_context = bdrv_get_aio_context(bs);
1521 aio_context_acquire(aio_context);
1522 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1523 aio_context_release(aio_context);
1525 if (nb_sns < 0) {
1526 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
1527 return;
1530 for (bs1 = bdrv_first(&it1); bs1; bs1 = bdrv_next(&it1)) {
1531 int bs1_nb_sns = 0;
1532 ImageEntry *ie;
1533 SnapshotEntry *se;
1534 AioContext *ctx = bdrv_get_aio_context(bs1);
1536 aio_context_acquire(ctx);
1537 if (bdrv_can_snapshot(bs1)) {
1538 sn = NULL;
1539 bs1_nb_sns = bdrv_snapshot_list(bs1, &sn);
1540 if (bs1_nb_sns > 0) {
1541 no_snapshot = false;
1542 ie = g_new0(ImageEntry, 1);
1543 ie->imagename = bdrv_get_device_name(bs1);
1544 QTAILQ_INIT(&ie->snapshots);
1545 QTAILQ_INSERT_TAIL(&image_list, ie, next);
1546 for (i = 0; i < bs1_nb_sns; i++) {
1547 se = g_new0(SnapshotEntry, 1);
1548 se->sn = sn[i];
1549 QTAILQ_INSERT_TAIL(&ie->snapshots, se, next);
1552 g_free(sn);
1554 aio_context_release(ctx);
1557 if (no_snapshot) {
1558 monitor_printf(mon, "There is no snapshot available.\n");
1559 return;
1562 global_snapshots = g_new0(int, nb_sns);
1563 total = 0;
1564 for (i = 0; i < nb_sns; i++) {
1565 SnapshotEntry *next_sn;
1566 if (bdrv_all_find_snapshot(sn_tab[i].name, &bs1) == 0) {
1567 global_snapshots[total] = i;
1568 total++;
1569 QTAILQ_FOREACH(image_entry, &image_list, next) {
1570 QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots,
1571 next, next_sn) {
1572 if (!strcmp(sn_tab[i].name, snapshot_entry->sn.name)) {
1573 QTAILQ_REMOVE(&image_entry->snapshots, snapshot_entry,
1574 next);
1575 g_free(snapshot_entry);
1582 monitor_printf(mon, "List of snapshots present on all disks:\n");
1584 if (total > 0) {
1585 bdrv_snapshot_dump(NULL);
1586 monitor_printf(mon, "\n");
1587 for (i = 0; i < total; i++) {
1588 sn = &sn_tab[global_snapshots[i]];
1589 /* The ID is not guaranteed to be the same on all images, so
1590 * overwrite it.
1592 pstrcpy(sn->id_str, sizeof(sn->id_str), "--");
1593 bdrv_snapshot_dump(sn);
1594 monitor_printf(mon, "\n");
1596 } else {
1597 monitor_printf(mon, "None\n");
1600 QTAILQ_FOREACH(image_entry, &image_list, next) {
1601 if (QTAILQ_EMPTY(&image_entry->snapshots)) {
1602 continue;
1604 monitor_printf(mon,
1605 "\nList of partial (non-loadable) snapshots on '%s':\n",
1606 image_entry->imagename);
1607 bdrv_snapshot_dump(NULL);
1608 monitor_printf(mon, "\n");
1609 QTAILQ_FOREACH(snapshot_entry, &image_entry->snapshots, next) {
1610 bdrv_snapshot_dump(&snapshot_entry->sn);
1611 monitor_printf(mon, "\n");
1615 QTAILQ_FOREACH_SAFE(image_entry, &image_list, next, next_ie) {
1616 SnapshotEntry *next_sn;
1617 QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots, next,
1618 next_sn) {
1619 g_free(snapshot_entry);
1621 g_free(image_entry);
1623 g_free(sn_tab);
1624 g_free(global_snapshots);
1628 void hmp_announce_self(Monitor *mon, const QDict *qdict)
1630 const char *interfaces_str = qdict_get_try_str(qdict, "interfaces");
1631 const char *id = qdict_get_try_str(qdict, "id");
1632 AnnounceParameters *params = QAPI_CLONE(AnnounceParameters,
1633 migrate_announce_params());
1635 qapi_free_strList(params->interfaces);
1636 params->interfaces = strList_from_comma_list(interfaces_str);
1637 params->has_interfaces = params->interfaces != NULL;
1638 params->id = g_strdup(id);
1639 params->has_id = !!params->id;
1640 qmp_announce_self(params, NULL);
1641 qapi_free_AnnounceParameters(params);
1644 void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
1646 qmp_migrate_cancel(NULL);
1649 void hmp_migrate_continue(Monitor *mon, const QDict *qdict)
1651 Error *err = NULL;
1652 const char *state = qdict_get_str(qdict, "state");
1653 int val = qapi_enum_parse(&MigrationStatus_lookup, state, -1, &err);
1655 if (val >= 0) {
1656 qmp_migrate_continue(val, &err);
1659 hmp_handle_error(mon, err);
1662 void hmp_migrate_incoming(Monitor *mon, const QDict *qdict)
1664 Error *err = NULL;
1665 const char *uri = qdict_get_str(qdict, "uri");
1667 qmp_migrate_incoming(uri, &err);
1669 hmp_handle_error(mon, err);
1672 void hmp_migrate_recover(Monitor *mon, const QDict *qdict)
1674 Error *err = NULL;
1675 const char *uri = qdict_get_str(qdict, "uri");
1677 qmp_migrate_recover(uri, &err);
1679 hmp_handle_error(mon, err);
1682 void hmp_migrate_pause(Monitor *mon, const QDict *qdict)
1684 Error *err = NULL;
1686 qmp_migrate_pause(&err);
1688 hmp_handle_error(mon, err);
1691 /* Kept for backwards compatibility */
1692 void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
1694 double value = qdict_get_double(qdict, "value");
1695 qmp_migrate_set_downtime(value, NULL);
1698 void hmp_migrate_set_cache_size(Monitor *mon, const QDict *qdict)
1700 int64_t value = qdict_get_int(qdict, "value");
1701 Error *err = NULL;
1703 qmp_migrate_set_cache_size(value, &err);
1704 hmp_handle_error(mon, err);
1707 /* Kept for backwards compatibility */
1708 void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
1710 int64_t value = qdict_get_int(qdict, "value");
1711 qmp_migrate_set_speed(value, NULL);
1714 void hmp_migrate_set_capability(Monitor *mon, const QDict *qdict)
1716 const char *cap = qdict_get_str(qdict, "capability");
1717 bool state = qdict_get_bool(qdict, "state");
1718 Error *err = NULL;
1719 MigrationCapabilityStatusList *caps = g_malloc0(sizeof(*caps));
1720 int val;
1722 val = qapi_enum_parse(&MigrationCapability_lookup, cap, -1, &err);
1723 if (val < 0) {
1724 goto end;
1727 caps->value = g_malloc0(sizeof(*caps->value));
1728 caps->value->capability = val;
1729 caps->value->state = state;
1730 caps->next = NULL;
1731 qmp_migrate_set_capabilities(caps, &err);
1733 end:
1734 qapi_free_MigrationCapabilityStatusList(caps);
1735 hmp_handle_error(mon, err);
1738 void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
1740 const char *param = qdict_get_str(qdict, "parameter");
1741 const char *valuestr = qdict_get_str(qdict, "value");
1742 Visitor *v = string_input_visitor_new(valuestr);
1743 MigrateSetParameters *p = g_new0(MigrateSetParameters, 1);
1744 uint64_t valuebw = 0;
1745 uint64_t cache_size;
1746 MultiFDCompression compress_type;
1747 Error *err = NULL;
1748 int val, ret;
1750 val = qapi_enum_parse(&MigrationParameter_lookup, param, -1, &err);
1751 if (val < 0) {
1752 goto cleanup;
1755 switch (val) {
1756 case MIGRATION_PARAMETER_COMPRESS_LEVEL:
1757 p->has_compress_level = true;
1758 visit_type_int(v, param, &p->compress_level, &err);
1759 break;
1760 case MIGRATION_PARAMETER_COMPRESS_THREADS:
1761 p->has_compress_threads = true;
1762 visit_type_int(v, param, &p->compress_threads, &err);
1763 break;
1764 case MIGRATION_PARAMETER_COMPRESS_WAIT_THREAD:
1765 p->has_compress_wait_thread = true;
1766 visit_type_bool(v, param, &p->compress_wait_thread, &err);
1767 break;
1768 case MIGRATION_PARAMETER_DECOMPRESS_THREADS:
1769 p->has_decompress_threads = true;
1770 visit_type_int(v, param, &p->decompress_threads, &err);
1771 break;
1772 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL:
1773 p->has_cpu_throttle_initial = true;
1774 visit_type_int(v, param, &p->cpu_throttle_initial, &err);
1775 break;
1776 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT:
1777 p->has_cpu_throttle_increment = true;
1778 visit_type_int(v, param, &p->cpu_throttle_increment, &err);
1779 break;
1780 case MIGRATION_PARAMETER_MAX_CPU_THROTTLE:
1781 p->has_max_cpu_throttle = true;
1782 visit_type_int(v, param, &p->max_cpu_throttle, &err);
1783 break;
1784 case MIGRATION_PARAMETER_TLS_CREDS:
1785 p->has_tls_creds = true;
1786 p->tls_creds = g_new0(StrOrNull, 1);
1787 p->tls_creds->type = QTYPE_QSTRING;
1788 visit_type_str(v, param, &p->tls_creds->u.s, &err);
1789 break;
1790 case MIGRATION_PARAMETER_TLS_HOSTNAME:
1791 p->has_tls_hostname = true;
1792 p->tls_hostname = g_new0(StrOrNull, 1);
1793 p->tls_hostname->type = QTYPE_QSTRING;
1794 visit_type_str(v, param, &p->tls_hostname->u.s, &err);
1795 break;
1796 case MIGRATION_PARAMETER_TLS_AUTHZ:
1797 p->has_tls_authz = true;
1798 p->tls_authz = g_new0(StrOrNull, 1);
1799 p->tls_authz->type = QTYPE_QSTRING;
1800 visit_type_str(v, param, &p->tls_authz->u.s, &err);
1801 break;
1802 case MIGRATION_PARAMETER_MAX_BANDWIDTH:
1803 p->has_max_bandwidth = true;
1805 * Can't use visit_type_size() here, because it
1806 * defaults to Bytes rather than Mebibytes.
1808 ret = qemu_strtosz_MiB(valuestr, NULL, &valuebw);
1809 if (ret < 0 || valuebw > INT64_MAX
1810 || (size_t)valuebw != valuebw) {
1811 error_setg(&err, "Invalid size %s", valuestr);
1812 break;
1814 p->max_bandwidth = valuebw;
1815 break;
1816 case MIGRATION_PARAMETER_DOWNTIME_LIMIT:
1817 p->has_downtime_limit = true;
1818 visit_type_int(v, param, &p->downtime_limit, &err);
1819 break;
1820 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY:
1821 p->has_x_checkpoint_delay = true;
1822 visit_type_int(v, param, &p->x_checkpoint_delay, &err);
1823 break;
1824 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL:
1825 p->has_block_incremental = true;
1826 visit_type_bool(v, param, &p->block_incremental, &err);
1827 break;
1828 case MIGRATION_PARAMETER_MULTIFD_CHANNELS:
1829 p->has_multifd_channels = true;
1830 visit_type_int(v, param, &p->multifd_channels, &err);
1831 break;
1832 case MIGRATION_PARAMETER_MULTIFD_COMPRESSION:
1833 p->has_multifd_compression = true;
1834 visit_type_MultiFDCompression(v, param, &compress_type, &err);
1835 if (err) {
1836 break;
1838 p->multifd_compression = compress_type;
1839 break;
1840 case MIGRATION_PARAMETER_MULTIFD_ZLIB_LEVEL:
1841 p->has_multifd_zlib_level = true;
1842 visit_type_int(v, param, &p->multifd_zlib_level, &err);
1843 break;
1844 case MIGRATION_PARAMETER_MULTIFD_ZSTD_LEVEL:
1845 p->has_multifd_zstd_level = true;
1846 visit_type_int(v, param, &p->multifd_zstd_level, &err);
1847 break;
1848 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE:
1849 p->has_xbzrle_cache_size = true;
1850 visit_type_size(v, param, &cache_size, &err);
1851 if (err) {
1852 break;
1854 if (cache_size > INT64_MAX || (size_t)cache_size != cache_size) {
1855 error_setg(&err, "Invalid size %s", valuestr);
1856 break;
1858 p->xbzrle_cache_size = cache_size;
1859 break;
1860 case MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH:
1861 p->has_max_postcopy_bandwidth = true;
1862 visit_type_size(v, param, &p->max_postcopy_bandwidth, &err);
1863 break;
1864 case MIGRATION_PARAMETER_ANNOUNCE_INITIAL:
1865 p->has_announce_initial = true;
1866 visit_type_size(v, param, &p->announce_initial, &err);
1867 break;
1868 case MIGRATION_PARAMETER_ANNOUNCE_MAX:
1869 p->has_announce_max = true;
1870 visit_type_size(v, param, &p->announce_max, &err);
1871 break;
1872 case MIGRATION_PARAMETER_ANNOUNCE_ROUNDS:
1873 p->has_announce_rounds = true;
1874 visit_type_size(v, param, &p->announce_rounds, &err);
1875 break;
1876 case MIGRATION_PARAMETER_ANNOUNCE_STEP:
1877 p->has_announce_step = true;
1878 visit_type_size(v, param, &p->announce_step, &err);
1879 break;
1880 default:
1881 assert(0);
1884 if (err) {
1885 goto cleanup;
1888 qmp_migrate_set_parameters(p, &err);
1890 cleanup:
1891 qapi_free_MigrateSetParameters(p);
1892 visit_free(v);
1893 hmp_handle_error(mon, err);
1896 void hmp_client_migrate_info(Monitor *mon, const QDict *qdict)
1898 Error *err = NULL;
1899 const char *protocol = qdict_get_str(qdict, "protocol");
1900 const char *hostname = qdict_get_str(qdict, "hostname");
1901 bool has_port = qdict_haskey(qdict, "port");
1902 int port = qdict_get_try_int(qdict, "port", -1);
1903 bool has_tls_port = qdict_haskey(qdict, "tls-port");
1904 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1905 const char *cert_subject = qdict_get_try_str(qdict, "cert-subject");
1907 qmp_client_migrate_info(protocol, hostname,
1908 has_port, port, has_tls_port, tls_port,
1909 !!cert_subject, cert_subject, &err);
1910 hmp_handle_error(mon, err);
1913 void hmp_migrate_start_postcopy(Monitor *mon, const QDict *qdict)
1915 Error *err = NULL;
1916 qmp_migrate_start_postcopy(&err);
1917 hmp_handle_error(mon, err);
1920 void hmp_x_colo_lost_heartbeat(Monitor *mon, const QDict *qdict)
1922 Error *err = NULL;
1924 qmp_x_colo_lost_heartbeat(&err);
1925 hmp_handle_error(mon, err);
1928 void hmp_set_password(Monitor *mon, const QDict *qdict)
1930 const char *protocol = qdict_get_str(qdict, "protocol");
1931 const char *password = qdict_get_str(qdict, "password");
1932 const char *connected = qdict_get_try_str(qdict, "connected");
1933 Error *err = NULL;
1935 qmp_set_password(protocol, password, !!connected, connected, &err);
1936 hmp_handle_error(mon, err);
1939 void hmp_expire_password(Monitor *mon, const QDict *qdict)
1941 const char *protocol = qdict_get_str(qdict, "protocol");
1942 const char *whenstr = qdict_get_str(qdict, "time");
1943 Error *err = NULL;
1945 qmp_expire_password(protocol, whenstr, &err);
1946 hmp_handle_error(mon, err);
1949 void hmp_eject(Monitor *mon, const QDict *qdict)
1951 bool force = qdict_get_try_bool(qdict, "force", false);
1952 const char *device = qdict_get_str(qdict, "device");
1953 Error *err = NULL;
1955 qmp_eject(true, device, false, NULL, true, force, &err);
1956 hmp_handle_error(mon, err);
1959 #ifdef CONFIG_VNC
1960 static void hmp_change_read_arg(void *opaque, const char *password,
1961 void *readline_opaque)
1963 qmp_change_vnc_password(password, NULL);
1964 monitor_read_command(opaque, 1);
1966 #endif
1968 void hmp_change(Monitor *mon, const QDict *qdict)
1970 const char *device = qdict_get_str(qdict, "device");
1971 const char *target = qdict_get_str(qdict, "target");
1972 const char *arg = qdict_get_try_str(qdict, "arg");
1973 const char *read_only = qdict_get_try_str(qdict, "read-only-mode");
1974 BlockdevChangeReadOnlyMode read_only_mode = 0;
1975 Error *err = NULL;
1977 #ifdef CONFIG_VNC
1978 if (strcmp(device, "vnc") == 0) {
1979 if (read_only) {
1980 monitor_printf(mon,
1981 "Parameter 'read-only-mode' is invalid for VNC\n");
1982 return;
1984 if (strcmp(target, "passwd") == 0 ||
1985 strcmp(target, "password") == 0) {
1986 if (!arg) {
1987 MonitorHMP *hmp_mon = container_of(mon, MonitorHMP, common);
1988 monitor_read_password(hmp_mon, hmp_change_read_arg, NULL);
1989 return;
1992 qmp_change("vnc", target, !!arg, arg, &err);
1993 } else
1994 #endif
1996 if (read_only) {
1997 read_only_mode =
1998 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup,
1999 read_only,
2000 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN, &err);
2001 if (err) {
2002 hmp_handle_error(mon, err);
2003 return;
2007 qmp_blockdev_change_medium(true, device, false, NULL, target,
2008 !!arg, arg, !!read_only, read_only_mode,
2009 &err);
2012 hmp_handle_error(mon, err);
2015 void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
2017 Error *err = NULL;
2018 char *device = (char *) qdict_get_str(qdict, "device");
2019 BlockIOThrottle throttle = {
2020 .bps = qdict_get_int(qdict, "bps"),
2021 .bps_rd = qdict_get_int(qdict, "bps_rd"),
2022 .bps_wr = qdict_get_int(qdict, "bps_wr"),
2023 .iops = qdict_get_int(qdict, "iops"),
2024 .iops_rd = qdict_get_int(qdict, "iops_rd"),
2025 .iops_wr = qdict_get_int(qdict, "iops_wr"),
2028 /* qmp_block_set_io_throttle has separate parameters for the
2029 * (deprecated) block device name and the qdev ID but the HMP
2030 * version has only one, so we must decide which one to pass. */
2031 if (blk_by_name(device)) {
2032 throttle.has_device = true;
2033 throttle.device = device;
2034 } else {
2035 throttle.has_id = true;
2036 throttle.id = device;
2039 qmp_block_set_io_throttle(&throttle, &err);
2040 hmp_handle_error(mon, err);
2043 void hmp_block_stream(Monitor *mon, const QDict *qdict)
2045 Error *error = NULL;
2046 const char *device = qdict_get_str(qdict, "device");
2047 const char *base = qdict_get_try_str(qdict, "base");
2048 int64_t speed = qdict_get_try_int(qdict, "speed", 0);
2050 qmp_block_stream(true, device, device, base != NULL, base, false, NULL,
2051 false, NULL, qdict_haskey(qdict, "speed"), speed, true,
2052 BLOCKDEV_ON_ERROR_REPORT, false, false, false, false,
2053 &error);
2055 hmp_handle_error(mon, error);
2058 void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
2060 Error *error = NULL;
2061 const char *device = qdict_get_str(qdict, "device");
2062 int64_t value = qdict_get_int(qdict, "speed");
2064 qmp_block_job_set_speed(device, value, &error);
2066 hmp_handle_error(mon, error);
2069 void hmp_block_job_cancel(Monitor *mon, const QDict *qdict)
2071 Error *error = NULL;
2072 const char *device = qdict_get_str(qdict, "device");
2073 bool force = qdict_get_try_bool(qdict, "force", false);
2075 qmp_block_job_cancel(device, true, force, &error);
2077 hmp_handle_error(mon, error);
2080 void hmp_block_job_pause(Monitor *mon, const QDict *qdict)
2082 Error *error = NULL;
2083 const char *device = qdict_get_str(qdict, "device");
2085 qmp_block_job_pause(device, &error);
2087 hmp_handle_error(mon, error);
2090 void hmp_block_job_resume(Monitor *mon, const QDict *qdict)
2092 Error *error = NULL;
2093 const char *device = qdict_get_str(qdict, "device");
2095 qmp_block_job_resume(device, &error);
2097 hmp_handle_error(mon, error);
2100 void hmp_block_job_complete(Monitor *mon, const QDict *qdict)
2102 Error *error = NULL;
2103 const char *device = qdict_get_str(qdict, "device");
2105 qmp_block_job_complete(device, &error);
2107 hmp_handle_error(mon, error);
2110 typedef struct HMPMigrationStatus
2112 QEMUTimer *timer;
2113 Monitor *mon;
2114 bool is_block_migration;
2115 } HMPMigrationStatus;
2117 static void hmp_migrate_status_cb(void *opaque)
2119 HMPMigrationStatus *status = opaque;
2120 MigrationInfo *info;
2122 info = qmp_query_migrate(NULL);
2123 if (!info->has_status || info->status == MIGRATION_STATUS_ACTIVE ||
2124 info->status == MIGRATION_STATUS_SETUP) {
2125 if (info->has_disk) {
2126 int progress;
2128 if (info->disk->remaining) {
2129 progress = info->disk->transferred * 100 / info->disk->total;
2130 } else {
2131 progress = 100;
2134 monitor_printf(status->mon, "Completed %d %%\r", progress);
2135 monitor_flush(status->mon);
2138 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
2139 } else {
2140 if (status->is_block_migration) {
2141 monitor_printf(status->mon, "\n");
2143 if (info->has_error_desc) {
2144 error_report("%s", info->error_desc);
2146 monitor_resume(status->mon);
2147 timer_del(status->timer);
2148 timer_free(status->timer);
2149 g_free(status);
2152 qapi_free_MigrationInfo(info);
2155 void hmp_migrate(Monitor *mon, const QDict *qdict)
2157 bool detach = qdict_get_try_bool(qdict, "detach", false);
2158 bool blk = qdict_get_try_bool(qdict, "blk", false);
2159 bool inc = qdict_get_try_bool(qdict, "inc", false);
2160 bool resume = qdict_get_try_bool(qdict, "resume", false);
2161 const char *uri = qdict_get_str(qdict, "uri");
2162 Error *err = NULL;
2164 qmp_migrate(uri, !!blk, blk, !!inc, inc,
2165 false, false, true, resume, &err);
2166 if (err) {
2167 hmp_handle_error(mon, err);
2168 return;
2171 if (!detach) {
2172 HMPMigrationStatus *status;
2174 if (monitor_suspend(mon) < 0) {
2175 monitor_printf(mon, "terminal does not allow synchronous "
2176 "migration, continuing detached\n");
2177 return;
2180 status = g_malloc0(sizeof(*status));
2181 status->mon = mon;
2182 status->is_block_migration = blk || inc;
2183 status->timer = timer_new_ms(QEMU_CLOCK_REALTIME, hmp_migrate_status_cb,
2184 status);
2185 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
2189 void hmp_netdev_add(Monitor *mon, const QDict *qdict)
2191 Error *err = NULL;
2192 QemuOpts *opts;
2194 opts = qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict, &err);
2195 if (err) {
2196 goto out;
2199 netdev_add(opts, &err);
2200 if (err) {
2201 qemu_opts_del(opts);
2204 out:
2205 hmp_handle_error(mon, err);
2208 void hmp_netdev_del(Monitor *mon, const QDict *qdict)
2210 const char *id = qdict_get_str(qdict, "id");
2211 Error *err = NULL;
2213 qmp_netdev_del(id, &err);
2214 hmp_handle_error(mon, err);
2217 void hmp_object_add(Monitor *mon, const QDict *qdict)
2219 Error *err = NULL;
2220 QemuOpts *opts;
2221 Object *obj = NULL;
2223 opts = qemu_opts_from_qdict(qemu_find_opts("object"), qdict, &err);
2224 if (err) {
2225 hmp_handle_error(mon, err);
2226 return;
2229 obj = user_creatable_add_opts(opts, &err);
2230 qemu_opts_del(opts);
2232 if (err) {
2233 hmp_handle_error(mon, err);
2235 if (obj) {
2236 object_unref(obj);
2240 void hmp_getfd(Monitor *mon, const QDict *qdict)
2242 const char *fdname = qdict_get_str(qdict, "fdname");
2243 Error *err = NULL;
2245 qmp_getfd(fdname, &err);
2246 hmp_handle_error(mon, err);
2249 void hmp_closefd(Monitor *mon, const QDict *qdict)
2251 const char *fdname = qdict_get_str(qdict, "fdname");
2252 Error *err = NULL;
2254 qmp_closefd(fdname, &err);
2255 hmp_handle_error(mon, err);
2258 void hmp_sendkey(Monitor *mon, const QDict *qdict)
2260 const char *keys = qdict_get_str(qdict, "keys");
2261 KeyValueList *keylist, *head = NULL, *tmp = NULL;
2262 int has_hold_time = qdict_haskey(qdict, "hold-time");
2263 int hold_time = qdict_get_try_int(qdict, "hold-time", -1);
2264 Error *err = NULL;
2265 const char *separator;
2266 int keyname_len;
2268 while (1) {
2269 separator = qemu_strchrnul(keys, '-');
2270 keyname_len = separator - keys;
2272 /* Be compatible with old interface, convert user inputted "<" */
2273 if (keys[0] == '<' && keyname_len == 1) {
2274 keys = "less";
2275 keyname_len = 4;
2278 keylist = g_malloc0(sizeof(*keylist));
2279 keylist->value = g_malloc0(sizeof(*keylist->value));
2281 if (!head) {
2282 head = keylist;
2284 if (tmp) {
2285 tmp->next = keylist;
2287 tmp = keylist;
2289 if (strstart(keys, "0x", NULL)) {
2290 char *endp;
2291 int value = strtoul(keys, &endp, 0);
2292 assert(endp <= keys + keyname_len);
2293 if (endp != keys + keyname_len) {
2294 goto err_out;
2296 keylist->value->type = KEY_VALUE_KIND_NUMBER;
2297 keylist->value->u.number.data = value;
2298 } else {
2299 int idx = index_from_key(keys, keyname_len);
2300 if (idx == Q_KEY_CODE__MAX) {
2301 goto err_out;
2303 keylist->value->type = KEY_VALUE_KIND_QCODE;
2304 keylist->value->u.qcode.data = idx;
2307 if (!*separator) {
2308 break;
2310 keys = separator + 1;
2313 qmp_send_key(head, has_hold_time, hold_time, &err);
2314 hmp_handle_error(mon, err);
2316 out:
2317 qapi_free_KeyValueList(head);
2318 return;
2320 err_out:
2321 monitor_printf(mon, "invalid parameter: %.*s\n", keyname_len, keys);
2322 goto out;
2325 void hmp_screendump(Monitor *mon, const QDict *qdict)
2327 const char *filename = qdict_get_str(qdict, "filename");
2328 const char *id = qdict_get_try_str(qdict, "device");
2329 int64_t head = qdict_get_try_int(qdict, "head", 0);
2330 Error *err = NULL;
2332 qmp_screendump(filename, id != NULL, id, id != NULL, head, &err);
2333 hmp_handle_error(mon, err);
2336 void hmp_nbd_server_start(Monitor *mon, const QDict *qdict)
2338 const char *uri = qdict_get_str(qdict, "uri");
2339 bool writable = qdict_get_try_bool(qdict, "writable", false);
2340 bool all = qdict_get_try_bool(qdict, "all", false);
2341 Error *local_err = NULL;
2342 BlockInfoList *block_list, *info;
2343 SocketAddress *addr;
2344 BlockExportNbd export;
2346 if (writable && !all) {
2347 error_setg(&local_err, "-w only valid together with -a");
2348 goto exit;
2351 /* First check if the address is valid and start the server. */
2352 addr = socket_parse(uri, &local_err);
2353 if (local_err != NULL) {
2354 goto exit;
2357 nbd_server_start(addr, NULL, NULL, &local_err);
2358 qapi_free_SocketAddress(addr);
2359 if (local_err != NULL) {
2360 goto exit;
2363 if (!all) {
2364 return;
2367 /* Then try adding all block devices. If one fails, close all and
2368 * exit.
2370 block_list = qmp_query_block(NULL);
2372 for (info = block_list; info; info = info->next) {
2373 if (!info->value->has_inserted) {
2374 continue;
2377 export = (BlockExportNbd) {
2378 .device = info->value->device,
2379 .has_writable = true,
2380 .writable = writable,
2383 qmp_nbd_server_add(&export, &local_err);
2385 if (local_err != NULL) {
2386 qmp_nbd_server_stop(NULL);
2387 break;
2391 qapi_free_BlockInfoList(block_list);
2393 exit:
2394 hmp_handle_error(mon, local_err);
2397 void hmp_nbd_server_add(Monitor *mon, const QDict *qdict)
2399 const char *device = qdict_get_str(qdict, "device");
2400 const char *name = qdict_get_try_str(qdict, "name");
2401 bool writable = qdict_get_try_bool(qdict, "writable", false);
2402 Error *local_err = NULL;
2404 BlockExportNbd export = {
2405 .device = (char *) device,
2406 .has_name = !!name,
2407 .name = (char *) name,
2408 .has_writable = true,
2409 .writable = writable,
2412 qmp_nbd_server_add(&export, &local_err);
2413 hmp_handle_error(mon, local_err);
2416 void hmp_nbd_server_remove(Monitor *mon, const QDict *qdict)
2418 const char *name = qdict_get_str(qdict, "name");
2419 bool force = qdict_get_try_bool(qdict, "force", false);
2420 Error *err = NULL;
2422 /* Rely on NBD_SERVER_REMOVE_MODE_SAFE being the default */
2423 qmp_nbd_server_remove(name, force, NBD_SERVER_REMOVE_MODE_HARD, &err);
2424 hmp_handle_error(mon, err);
2427 void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict)
2429 Error *err = NULL;
2431 qmp_nbd_server_stop(&err);
2432 hmp_handle_error(mon, err);
2435 void hmp_chardev_add(Monitor *mon, const QDict *qdict)
2437 const char *args = qdict_get_str(qdict, "args");
2438 Error *err = NULL;
2439 QemuOpts *opts;
2441 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args, true);
2442 if (opts == NULL) {
2443 error_setg(&err, "Parsing chardev args failed");
2444 } else {
2445 qemu_chr_new_from_opts(opts, NULL, &err);
2446 qemu_opts_del(opts);
2448 hmp_handle_error(mon, err);
2451 void hmp_chardev_change(Monitor *mon, const QDict *qdict)
2453 const char *args = qdict_get_str(qdict, "args");
2454 const char *id;
2455 Error *err = NULL;
2456 ChardevBackend *backend = NULL;
2457 ChardevReturn *ret = NULL;
2458 QemuOpts *opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args,
2459 true);
2460 if (!opts) {
2461 error_setg(&err, "Parsing chardev args failed");
2462 goto end;
2465 id = qdict_get_str(qdict, "id");
2466 if (qemu_opts_id(opts)) {
2467 error_setg(&err, "Unexpected 'id' parameter");
2468 goto end;
2471 backend = qemu_chr_parse_opts(opts, &err);
2472 if (!backend) {
2473 goto end;
2476 ret = qmp_chardev_change(id, backend, &err);
2478 end:
2479 qapi_free_ChardevReturn(ret);
2480 qapi_free_ChardevBackend(backend);
2481 qemu_opts_del(opts);
2482 hmp_handle_error(mon, err);
2485 void hmp_chardev_remove(Monitor *mon, const QDict *qdict)
2487 Error *local_err = NULL;
2489 qmp_chardev_remove(qdict_get_str(qdict, "id"), &local_err);
2490 hmp_handle_error(mon, local_err);
2493 void hmp_chardev_send_break(Monitor *mon, const QDict *qdict)
2495 Error *local_err = NULL;
2497 qmp_chardev_send_break(qdict_get_str(qdict, "id"), &local_err);
2498 hmp_handle_error(mon, local_err);
2501 void hmp_qemu_io(Monitor *mon, const QDict *qdict)
2503 BlockBackend *blk;
2504 BlockBackend *local_blk = NULL;
2505 bool qdev = qdict_get_try_bool(qdict, "qdev", false);
2506 const char* device = qdict_get_str(qdict, "device");
2507 const char* command = qdict_get_str(qdict, "command");
2508 Error *err = NULL;
2509 int ret;
2511 if (qdev) {
2512 blk = blk_by_qdev_id(device, &err);
2513 if (!blk) {
2514 goto fail;
2516 } else {
2517 blk = blk_by_name(device);
2518 if (!blk) {
2519 BlockDriverState *bs = bdrv_lookup_bs(NULL, device, &err);
2520 if (bs) {
2521 blk = local_blk = blk_new(bdrv_get_aio_context(bs),
2522 0, BLK_PERM_ALL);
2523 ret = blk_insert_bs(blk, bs, &err);
2524 if (ret < 0) {
2525 goto fail;
2527 } else {
2528 goto fail;
2534 * Notably absent: Proper permission management. This is sad, but it seems
2535 * almost impossible to achieve without changing the semantics and thereby
2536 * limiting the use cases of the qemu-io HMP command.
2538 * In an ideal world we would unconditionally create a new BlockBackend for
2539 * qemuio_command(), but we have commands like 'reopen' and want them to
2540 * take effect on the exact BlockBackend whose name the user passed instead
2541 * of just on a temporary copy of it.
2543 * Another problem is that deleting the temporary BlockBackend involves
2544 * draining all requests on it first, but some qemu-iotests cases want to
2545 * issue multiple aio_read/write requests and expect them to complete in
2546 * the background while the monitor has already returned.
2548 * This is also what prevents us from saving the original permissions and
2549 * restoring them later: We can't revoke permissions until all requests
2550 * have completed, and we don't know when that is nor can we really let
2551 * anything else run before we have revoken them to avoid race conditions.
2553 * What happens now is that command() in qemu-io-cmds.c can extend the
2554 * permissions if necessary for the qemu-io command. And they simply stay
2555 * extended, possibly resulting in a read-only guest device keeping write
2556 * permissions. Ugly, but it appears to be the lesser evil.
2558 qemuio_command(blk, command);
2560 fail:
2561 blk_unref(local_blk);
2562 hmp_handle_error(mon, err);
2565 void hmp_object_del(Monitor *mon, const QDict *qdict)
2567 const char *id = qdict_get_str(qdict, "id");
2568 Error *err = NULL;
2570 user_creatable_del(id, &err);
2571 hmp_handle_error(mon, err);
2574 void hmp_info_memory_devices(Monitor *mon, const QDict *qdict)
2576 Error *err = NULL;
2577 MemoryDeviceInfoList *info_list = qmp_query_memory_devices(&err);
2578 MemoryDeviceInfoList *info;
2579 VirtioPMEMDeviceInfo *vpi;
2580 MemoryDeviceInfo *value;
2581 PCDIMMDeviceInfo *di;
2583 for (info = info_list; info; info = info->next) {
2584 value = info->value;
2586 if (value) {
2587 switch (value->type) {
2588 case MEMORY_DEVICE_INFO_KIND_DIMM:
2589 case MEMORY_DEVICE_INFO_KIND_NVDIMM:
2590 di = value->type == MEMORY_DEVICE_INFO_KIND_DIMM ?
2591 value->u.dimm.data : value->u.nvdimm.data;
2592 monitor_printf(mon, "Memory device [%s]: \"%s\"\n",
2593 MemoryDeviceInfoKind_str(value->type),
2594 di->id ? di->id : "");
2595 monitor_printf(mon, " addr: 0x%" PRIx64 "\n", di->addr);
2596 monitor_printf(mon, " slot: %" PRId64 "\n", di->slot);
2597 monitor_printf(mon, " node: %" PRId64 "\n", di->node);
2598 monitor_printf(mon, " size: %" PRIu64 "\n", di->size);
2599 monitor_printf(mon, " memdev: %s\n", di->memdev);
2600 monitor_printf(mon, " hotplugged: %s\n",
2601 di->hotplugged ? "true" : "false");
2602 monitor_printf(mon, " hotpluggable: %s\n",
2603 di->hotpluggable ? "true" : "false");
2604 break;
2605 case MEMORY_DEVICE_INFO_KIND_VIRTIO_PMEM:
2606 vpi = value->u.virtio_pmem.data;
2607 monitor_printf(mon, "Memory device [%s]: \"%s\"\n",
2608 MemoryDeviceInfoKind_str(value->type),
2609 vpi->id ? vpi->id : "");
2610 monitor_printf(mon, " memaddr: 0x%" PRIx64 "\n", vpi->memaddr);
2611 monitor_printf(mon, " size: %" PRIu64 "\n", vpi->size);
2612 monitor_printf(mon, " memdev: %s\n", vpi->memdev);
2613 break;
2614 default:
2615 g_assert_not_reached();
2620 qapi_free_MemoryDeviceInfoList(info_list);
2621 hmp_handle_error(mon, err);
2624 void hmp_info_iothreads(Monitor *mon, const QDict *qdict)
2626 IOThreadInfoList *info_list = qmp_query_iothreads(NULL);
2627 IOThreadInfoList *info;
2628 IOThreadInfo *value;
2630 for (info = info_list; info; info = info->next) {
2631 value = info->value;
2632 monitor_printf(mon, "%s:\n", value->id);
2633 monitor_printf(mon, " thread_id=%" PRId64 "\n", value->thread_id);
2634 monitor_printf(mon, " poll-max-ns=%" PRId64 "\n", value->poll_max_ns);
2635 monitor_printf(mon, " poll-grow=%" PRId64 "\n", value->poll_grow);
2636 monitor_printf(mon, " poll-shrink=%" PRId64 "\n", value->poll_shrink);
2639 qapi_free_IOThreadInfoList(info_list);
2642 void hmp_rocker(Monitor *mon, const QDict *qdict)
2644 const char *name = qdict_get_str(qdict, "name");
2645 RockerSwitch *rocker;
2646 Error *err = NULL;
2648 rocker = qmp_query_rocker(name, &err);
2649 if (err != NULL) {
2650 hmp_handle_error(mon, err);
2651 return;
2654 monitor_printf(mon, "name: %s\n", rocker->name);
2655 monitor_printf(mon, "id: 0x%" PRIx64 "\n", rocker->id);
2656 monitor_printf(mon, "ports: %d\n", rocker->ports);
2658 qapi_free_RockerSwitch(rocker);
2661 void hmp_rocker_ports(Monitor *mon, const QDict *qdict)
2663 RockerPortList *list, *port;
2664 const char *name = qdict_get_str(qdict, "name");
2665 Error *err = NULL;
2667 list = qmp_query_rocker_ports(name, &err);
2668 if (err != NULL) {
2669 hmp_handle_error(mon, err);
2670 return;
2673 monitor_printf(mon, " ena/ speed/ auto\n");
2674 monitor_printf(mon, " port link duplex neg?\n");
2676 for (port = list; port; port = port->next) {
2677 monitor_printf(mon, "%10s %-4s %-3s %2s %-3s\n",
2678 port->value->name,
2679 port->value->enabled ? port->value->link_up ?
2680 "up" : "down" : "!ena",
2681 port->value->speed == 10000 ? "10G" : "??",
2682 port->value->duplex ? "FD" : "HD",
2683 port->value->autoneg ? "Yes" : "No");
2686 qapi_free_RockerPortList(list);
2689 void hmp_rocker_of_dpa_flows(Monitor *mon, const QDict *qdict)
2691 RockerOfDpaFlowList *list, *info;
2692 const char *name = qdict_get_str(qdict, "name");
2693 uint32_t tbl_id = qdict_get_try_int(qdict, "tbl_id", -1);
2694 Error *err = NULL;
2696 list = qmp_query_rocker_of_dpa_flows(name, tbl_id != -1, tbl_id, &err);
2697 if (err != NULL) {
2698 hmp_handle_error(mon, err);
2699 return;
2702 monitor_printf(mon, "prio tbl hits key(mask) --> actions\n");
2704 for (info = list; info; info = info->next) {
2705 RockerOfDpaFlow *flow = info->value;
2706 RockerOfDpaFlowKey *key = flow->key;
2707 RockerOfDpaFlowMask *mask = flow->mask;
2708 RockerOfDpaFlowAction *action = flow->action;
2710 if (flow->hits) {
2711 monitor_printf(mon, "%-4d %-3d %-4" PRIu64,
2712 key->priority, key->tbl_id, flow->hits);
2713 } else {
2714 monitor_printf(mon, "%-4d %-3d ",
2715 key->priority, key->tbl_id);
2718 if (key->has_in_pport) {
2719 monitor_printf(mon, " pport %d", key->in_pport);
2720 if (mask->has_in_pport) {
2721 monitor_printf(mon, "(0x%x)", mask->in_pport);
2725 if (key->has_vlan_id) {
2726 monitor_printf(mon, " vlan %d",
2727 key->vlan_id & VLAN_VID_MASK);
2728 if (mask->has_vlan_id) {
2729 monitor_printf(mon, "(0x%x)", mask->vlan_id);
2733 if (key->has_tunnel_id) {
2734 monitor_printf(mon, " tunnel %d", key->tunnel_id);
2735 if (mask->has_tunnel_id) {
2736 monitor_printf(mon, "(0x%x)", mask->tunnel_id);
2740 if (key->has_eth_type) {
2741 switch (key->eth_type) {
2742 case 0x0806:
2743 monitor_printf(mon, " ARP");
2744 break;
2745 case 0x0800:
2746 monitor_printf(mon, " IP");
2747 break;
2748 case 0x86dd:
2749 monitor_printf(mon, " IPv6");
2750 break;
2751 case 0x8809:
2752 monitor_printf(mon, " LACP");
2753 break;
2754 case 0x88cc:
2755 monitor_printf(mon, " LLDP");
2756 break;
2757 default:
2758 monitor_printf(mon, " eth type 0x%04x", key->eth_type);
2759 break;
2763 if (key->has_eth_src) {
2764 if ((strcmp(key->eth_src, "01:00:00:00:00:00") == 0) &&
2765 (mask->has_eth_src) &&
2766 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2767 monitor_printf(mon, " src <any mcast/bcast>");
2768 } else if ((strcmp(key->eth_src, "00:00:00:00:00:00") == 0) &&
2769 (mask->has_eth_src) &&
2770 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2771 monitor_printf(mon, " src <any ucast>");
2772 } else {
2773 monitor_printf(mon, " src %s", key->eth_src);
2774 if (mask->has_eth_src) {
2775 monitor_printf(mon, "(%s)", mask->eth_src);
2780 if (key->has_eth_dst) {
2781 if ((strcmp(key->eth_dst, "01:00:00:00:00:00") == 0) &&
2782 (mask->has_eth_dst) &&
2783 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2784 monitor_printf(mon, " dst <any mcast/bcast>");
2785 } else if ((strcmp(key->eth_dst, "00:00:00:00:00:00") == 0) &&
2786 (mask->has_eth_dst) &&
2787 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2788 monitor_printf(mon, " dst <any ucast>");
2789 } else {
2790 monitor_printf(mon, " dst %s", key->eth_dst);
2791 if (mask->has_eth_dst) {
2792 monitor_printf(mon, "(%s)", mask->eth_dst);
2797 if (key->has_ip_proto) {
2798 monitor_printf(mon, " proto %d", key->ip_proto);
2799 if (mask->has_ip_proto) {
2800 monitor_printf(mon, "(0x%x)", mask->ip_proto);
2804 if (key->has_ip_tos) {
2805 monitor_printf(mon, " TOS %d", key->ip_tos);
2806 if (mask->has_ip_tos) {
2807 monitor_printf(mon, "(0x%x)", mask->ip_tos);
2811 if (key->has_ip_dst) {
2812 monitor_printf(mon, " dst %s", key->ip_dst);
2815 if (action->has_goto_tbl || action->has_group_id ||
2816 action->has_new_vlan_id) {
2817 monitor_printf(mon, " -->");
2820 if (action->has_new_vlan_id) {
2821 monitor_printf(mon, " apply new vlan %d",
2822 ntohs(action->new_vlan_id));
2825 if (action->has_group_id) {
2826 monitor_printf(mon, " write group 0x%08x", action->group_id);
2829 if (action->has_goto_tbl) {
2830 monitor_printf(mon, " goto tbl %d", action->goto_tbl);
2833 monitor_printf(mon, "\n");
2836 qapi_free_RockerOfDpaFlowList(list);
2839 void hmp_rocker_of_dpa_groups(Monitor *mon, const QDict *qdict)
2841 RockerOfDpaGroupList *list, *g;
2842 const char *name = qdict_get_str(qdict, "name");
2843 uint8_t type = qdict_get_try_int(qdict, "type", 9);
2844 Error *err = NULL;
2846 list = qmp_query_rocker_of_dpa_groups(name, type != 9, type, &err);
2847 if (err != NULL) {
2848 hmp_handle_error(mon, err);
2849 return;
2852 monitor_printf(mon, "id (decode) --> buckets\n");
2854 for (g = list; g; g = g->next) {
2855 RockerOfDpaGroup *group = g->value;
2856 bool set = false;
2858 monitor_printf(mon, "0x%08x", group->id);
2860 monitor_printf(mon, " (type %s", group->type == 0 ? "L2 interface" :
2861 group->type == 1 ? "L2 rewrite" :
2862 group->type == 2 ? "L3 unicast" :
2863 group->type == 3 ? "L2 multicast" :
2864 group->type == 4 ? "L2 flood" :
2865 group->type == 5 ? "L3 interface" :
2866 group->type == 6 ? "L3 multicast" :
2867 group->type == 7 ? "L3 ECMP" :
2868 group->type == 8 ? "L2 overlay" :
2869 "unknown");
2871 if (group->has_vlan_id) {
2872 monitor_printf(mon, " vlan %d", group->vlan_id);
2875 if (group->has_pport) {
2876 monitor_printf(mon, " pport %d", group->pport);
2879 if (group->has_index) {
2880 monitor_printf(mon, " index %d", group->index);
2883 monitor_printf(mon, ") -->");
2885 if (group->has_set_vlan_id && group->set_vlan_id) {
2886 set = true;
2887 monitor_printf(mon, " set vlan %d",
2888 group->set_vlan_id & VLAN_VID_MASK);
2891 if (group->has_set_eth_src) {
2892 if (!set) {
2893 set = true;
2894 monitor_printf(mon, " set");
2896 monitor_printf(mon, " src %s", group->set_eth_src);
2899 if (group->has_set_eth_dst) {
2900 if (!set) {
2901 monitor_printf(mon, " set");
2903 monitor_printf(mon, " dst %s", group->set_eth_dst);
2906 if (group->has_ttl_check && group->ttl_check) {
2907 monitor_printf(mon, " check TTL");
2910 if (group->has_group_id && group->group_id) {
2911 monitor_printf(mon, " group id 0x%08x", group->group_id);
2914 if (group->has_pop_vlan && group->pop_vlan) {
2915 monitor_printf(mon, " pop vlan");
2918 if (group->has_out_pport) {
2919 monitor_printf(mon, " out pport %d", group->out_pport);
2922 if (group->has_group_ids) {
2923 struct uint32List *id;
2925 monitor_printf(mon, " groups [");
2926 for (id = group->group_ids; id; id = id->next) {
2927 monitor_printf(mon, "0x%08x", id->value);
2928 if (id->next) {
2929 monitor_printf(mon, ",");
2932 monitor_printf(mon, "]");
2935 monitor_printf(mon, "\n");
2938 qapi_free_RockerOfDpaGroupList(list);
2941 void hmp_info_ramblock(Monitor *mon, const QDict *qdict)
2943 ram_block_dump(mon);
2946 void hmp_info_vm_generation_id(Monitor *mon, const QDict *qdict)
2948 Error *err = NULL;
2949 GuidInfo *info = qmp_query_vm_generation_id(&err);
2950 if (info) {
2951 monitor_printf(mon, "%s\n", info->guid);
2953 hmp_handle_error(mon, err);
2954 qapi_free_GuidInfo(info);
2957 void hmp_info_memory_size_summary(Monitor *mon, const QDict *qdict)
2959 Error *err = NULL;
2960 MemoryInfo *info = qmp_query_memory_size_summary(&err);
2961 if (info) {
2962 monitor_printf(mon, "base memory: %" PRIu64 "\n",
2963 info->base_memory);
2965 if (info->has_plugged_memory) {
2966 monitor_printf(mon, "plugged memory: %" PRIu64 "\n",
2967 info->plugged_memory);
2970 qapi_free_MemoryInfo(info);
2972 hmp_handle_error(mon, err);