2 * Human Monitor Interface commands
4 * Copyright IBM, Corp. 2011
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"
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"
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"
62 #include <spice/enums.h>
65 void hmp_handle_error(Monitor
*mon
, Error
*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
)
79 strList
**hook
= &res
;
82 char *comma
= strchr(in
, ',');
83 *hook
= g_new0(strList
, 1);
86 (*hook
)->value
= g_strndup(in
, comma
- in
);
87 in
= comma
+ 1; /* skip the , */
89 (*hook
)->value
= g_strdup(in
);
92 hook
= &(*hook
)->next
;
98 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
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
)
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
,
119 qapi_free_VersionInfo(info
);
122 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
126 info
= qmp_query_kvm(NULL
);
127 monitor_printf(mon
, "kvm support: ");
129 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
131 monitor_printf(mon
, "not compiled\n");
134 qapi_free_KvmInfo(info
);
137 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
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
)
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
);
184 monitor_printf(mon
, "No mouse devices connected\n");
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",
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",
215 return g_strdup("unknown address type");
219 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
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
);
234 monitor_printf(mon
, "\n");
237 monitor_printf(mon
, "total time: %" PRIu64
" milliseconds\n",
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",
247 if (info
->has_setup_time
) {
248 monitor_printf(mon
, "setup: %" PRIu64
" milliseconds\n",
254 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
255 info
->ram
->transferred
>> 10);
256 monitor_printf(mon
, "throughput: %0.2f mbps\n",
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",
266 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
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
) {
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
);
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
);
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
);
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
);
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
),
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
);
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
496 monitor_printf(mon
, ": %s (%s%s%s)\n",
499 inserted
->ro
? ", read-only" : "",
500 inserted
->encrypted
? ", encrypted" : "");
502 monitor_printf(mon
, ": [not inserted]\n");
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");
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
) {
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
550 " bps_rd_max=%" PRId64
551 " bps_wr_max=%" PRId64
552 " iops=%" PRId64
" iops_rd=%" PRId64
555 " iops_rd_max=%" PRId64
556 " iops_wr_max=%" PRId64
557 " iops_size=%" PRId64
563 inserted
->bps_rd_max
,
564 inserted
->bps_wr_max
,
569 inserted
->iops_rd_max
,
570 inserted
->iops_wr_max
,
576 monitor_printf(mon
, "\nImages:\n");
577 image_info
= inserted
->image
;
579 bdrv_image_info_dump(image_info
);
580 if (image_info
->has_backing_image
) {
581 image_info
= image_info
->backing_image
;
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 */
600 block_list
= qmp_query_block(NULL
);
605 for (info
= block_list
; info
; info
= info
->next
) {
606 if (device
&& strcmp(device
, info
->value
->device
)) {
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
,
620 qapi_free_BlockInfoList(block_list
);
622 if ((!device
&& !nodes
) || printed
) {
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
)) {
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
) {
654 monitor_printf(mon
, "%s:", stats
->value
->device
);
655 monitor_printf(mon
, " rd_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
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
);
684 /* Helper for hmp_info_vnc_clients, _servers */
685 static void hmp_info_VncBasicInfo(Monitor
*mon
, VncBasicInfo
*info
,
688 monitor_printf(mon
, " %s: %s:%s (%s%s)\n",
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
,
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
)
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
)
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
;
739 info2l
= qmp_query_vnc_servers(&err
);
741 hmp_handle_error(mon
, err
);
745 monitor_printf(mon
, "None\n");
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
);
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
);
774 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
776 SpiceChannelList
*chan
;
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",
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",
798 info
= qmp_query_spice(NULL
);
800 if (!info
->enabled
) {
801 monitor_printf(mon
, "Server: disabled\n");
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");
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
);
846 qapi_free_SpiceInfo(info
);
850 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
855 info
= qmp_query_balloon(&err
);
857 hmp_handle_error(mon
, err
);
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
);
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
);
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
);
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
) {
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);
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
)) {
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
,
972 monitor_printf(mon
, "IRQ statistics not available for %s.\n",
973 object_get_typename(obj
));
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
);
996 k
->print_info(intc
, mon
);
998 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
999 object_get_typename(obj
));
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
)
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
);
1024 monitor_printf(mon
, "RDMA statistics not available for %s.\n",
1025 object_get_typename(obj
));
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
;
1043 info_list
= qmp_query_pci(&err
);
1045 monitor_printf(mon
, "PCI devices not supported\n");
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
;
1066 list
= qmp_query_block_jobs(&err
);
1070 monitor_printf(mon
, "No active jobs\n");
1075 if (strcmp(list
->value
->type
, "stream") == 0) {
1076 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
1077 " of %" PRId64
" bytes, speed limit %" PRId64
1079 list
->value
->device
,
1080 list
->value
->offset
,
1082 list
->value
->speed
);
1084 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
1085 " of %" PRId64
" bytes, speed limit %" PRId64
1088 list
->value
->device
,
1089 list
->value
->offset
,
1091 list
->value
->speed
);
1096 qapi_free_BlockJobInfoList(list
);
1099 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
1101 TPMInfoList
*info_list
, *info
;
1104 TPMPassthroughOptions
*tpo
;
1105 TPMEmulatorOptions
*teo
;
1107 info_list
= qmp_query_tpm(&err
);
1109 monitor_printf(mon
, "TPM device not supported\n");
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
: "");
1135 case TPM_TYPE_OPTIONS_KIND_EMULATOR
:
1136 teo
= ti
->options
->u
.emulator
.data
;
1137 monitor_printf(mon
, ",chardev=%s", teo
->chardev
);
1139 case TPM_TYPE_OPTIONS_KIND__MAX
:
1142 monitor_printf(mon
, "\n");
1145 qapi_free_TPMInfoList(info_list
);
1148 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
1150 monitor_suspend(mon
);
1154 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
1159 void hmp_sync_profile(Monitor
*mon
, const QDict
*qdict
)
1161 const char *op
= qdict_get_try_str(qdict
, "op");
1164 bool on
= qsp_is_enabled();
1166 monitor_printf(mon
, "sync-profile is %s\n", on
? "on" : "off");
1169 if (!strcmp(op
, "on")) {
1171 } else if (!strcmp(op
, "off")) {
1173 } else if (!strcmp(op
, "reset")) {
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
)
1197 qmp_x_exit_preconfig(&err
);
1198 hmp_handle_error(mon
, err
);
1201 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
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");
1219 int cpu_index
= monitor_get_cpu_index();
1221 if (cpu_index
< 0) {
1222 monitor_printf(mon
, "No CPU available\n");
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");
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");
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");
1260 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1262 hmp_handle_error(mon
, err
);
1266 for (i
= 0; data
[i
]; i
++) {
1267 unsigned char ch
= data
[i
];
1270 monitor_printf(mon
, "\\\\");
1271 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1272 monitor_printf(mon
, "\\u%04X", ch
);
1274 monitor_printf(mon
, "%c", ch
);
1278 monitor_printf(mon
, "\n");
1282 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1287 hmp_handle_error(mon
, err
);
1290 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1294 qmp_system_wakeup(&err
);
1295 hmp_handle_error(mon
, err
);
1298 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
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");
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");
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");
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");
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);
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
,
1359 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1364 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1365 hmp_handle_error(mon
, err
);
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);
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
,
1388 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1389 .has_compress
= !!compress
,
1390 .compress
= compress
,
1394 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1395 hmp_handle_error(mon
, err
);
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
;
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
);
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
,
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");
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");
1445 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
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");
1456 vm_stop(RUN_STATE_RESTORE_VM
);
1458 if (load_snapshot(name
, &err
) == 0 && saved_vm_running
) {
1461 hmp_handle_error(mon
, err
);
1464 void hmp_savevm(Monitor
*mon
, const QDict
*qdict
)
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
;
1476 const char *name
= qdict_get_str(qdict
, "name");
1478 if (bdrv_all_delete_snapshot(name
, &bs
, &err
) < 0) {
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;
1494 int *global_snapshots
;
1495 AioContext
*aio_context
;
1497 typedef struct SnapshotEntry
{
1498 QEMUSnapshotInfo sn
;
1499 QTAILQ_ENTRY(SnapshotEntry
) next
;
1502 typedef struct ImageEntry
{
1503 const char *imagename
;
1504 QTAILQ_ENTRY(ImageEntry
) next
;
1505 QTAILQ_HEAD(, SnapshotEntry
) snapshots
;
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();
1516 monitor_printf(mon
, "No available block device supports snapshots\n");
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
);
1526 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1530 for (bs1
= bdrv_first(&it1
); bs1
; bs1
= bdrv_next(&it1
)) {
1534 AioContext
*ctx
= bdrv_get_aio_context(bs1
);
1536 aio_context_acquire(ctx
);
1537 if (bdrv_can_snapshot(bs1
)) {
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);
1549 QTAILQ_INSERT_TAIL(&ie
->snapshots
, se
, next
);
1554 aio_context_release(ctx
);
1558 monitor_printf(mon
, "There is no snapshot available.\n");
1562 global_snapshots
= g_new0(int, nb_sns
);
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
;
1569 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1570 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
,
1572 if (!strcmp(sn_tab
[i
].name
, snapshot_entry
->sn
.name
)) {
1573 QTAILQ_REMOVE(&image_entry
->snapshots
, snapshot_entry
,
1575 g_free(snapshot_entry
);
1582 monitor_printf(mon
, "List of snapshots present on all disks:\n");
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
1592 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), "--");
1593 bdrv_snapshot_dump(sn
);
1594 monitor_printf(mon
, "\n");
1597 monitor_printf(mon
, "None\n");
1600 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1601 if (QTAILQ_EMPTY(&image_entry
->snapshots
)) {
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
,
1619 g_free(snapshot_entry
);
1621 g_free(image_entry
);
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
)
1652 const char *state
= qdict_get_str(qdict
, "state");
1653 int val
= qapi_enum_parse(&MigrationStatus_lookup
, state
, -1, &err
);
1656 qmp_migrate_continue(val
, &err
);
1659 hmp_handle_error(mon
, err
);
1662 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
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
)
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
)
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");
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");
1719 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1722 val
= qapi_enum_parse(&MigrationCapability_lookup
, cap
, -1, &err
);
1727 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1728 caps
->value
->capability
= val
;
1729 caps
->value
->state
= state
;
1731 qmp_migrate_set_capabilities(caps
, &err
);
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
;
1750 val
= qapi_enum_parse(&MigrationParameter_lookup
, param
, -1, &err
);
1756 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1757 p
->has_compress_level
= true;
1758 visit_type_int(v
, param
, &p
->compress_level
, &err
);
1760 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1761 p
->has_compress_threads
= true;
1762 visit_type_int(v
, param
, &p
->compress_threads
, &err
);
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
);
1768 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1769 p
->has_decompress_threads
= true;
1770 visit_type_int(v
, param
, &p
->decompress_threads
, &err
);
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
);
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
);
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
);
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
);
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
);
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
);
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
);
1814 p
->max_bandwidth
= valuebw
;
1816 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1817 p
->has_downtime_limit
= true;
1818 visit_type_int(v
, param
, &p
->downtime_limit
, &err
);
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
);
1824 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL
:
1825 p
->has_block_incremental
= true;
1826 visit_type_bool(v
, param
, &p
->block_incremental
, &err
);
1828 case MIGRATION_PARAMETER_MULTIFD_CHANNELS
:
1829 p
->has_multifd_channels
= true;
1830 visit_type_int(v
, param
, &p
->multifd_channels
, &err
);
1832 case MIGRATION_PARAMETER_MULTIFD_COMPRESSION
:
1833 p
->has_multifd_compression
= true;
1834 visit_type_MultiFDCompression(v
, param
, &compress_type
, &err
);
1838 p
->multifd_compression
= compress_type
;
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
);
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
);
1848 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
:
1849 p
->has_xbzrle_cache_size
= true;
1850 visit_type_size(v
, param
, &cache_size
, &err
);
1854 if (cache_size
> INT64_MAX
|| (size_t)cache_size
!= cache_size
) {
1855 error_setg(&err
, "Invalid size %s", valuestr
);
1858 p
->xbzrle_cache_size
= cache_size
;
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
);
1864 case MIGRATION_PARAMETER_ANNOUNCE_INITIAL
:
1865 p
->has_announce_initial
= true;
1866 visit_type_size(v
, param
, &p
->announce_initial
, &err
);
1868 case MIGRATION_PARAMETER_ANNOUNCE_MAX
:
1869 p
->has_announce_max
= true;
1870 visit_type_size(v
, param
, &p
->announce_max
, &err
);
1872 case MIGRATION_PARAMETER_ANNOUNCE_ROUNDS
:
1873 p
->has_announce_rounds
= true;
1874 visit_type_size(v
, param
, &p
->announce_rounds
, &err
);
1876 case MIGRATION_PARAMETER_ANNOUNCE_STEP
:
1877 p
->has_announce_step
= true;
1878 visit_type_size(v
, param
, &p
->announce_step
, &err
);
1888 qmp_migrate_set_parameters(p
, &err
);
1891 qapi_free_MigrateSetParameters(p
);
1893 hmp_handle_error(mon
, err
);
1896 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
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
)
1916 qmp_migrate_start_postcopy(&err
);
1917 hmp_handle_error(mon
, err
);
1920 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
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");
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");
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");
1955 qmp_eject(true, device
, false, NULL
, true, force
, &err
);
1956 hmp_handle_error(mon
, err
);
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);
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;
1978 if (strcmp(device
, "vnc") == 0) {
1981 "Parameter 'read-only-mode' is invalid for VNC\n");
1984 if (strcmp(target
, "passwd") == 0 ||
1985 strcmp(target
, "password") == 0) {
1987 MonitorHMP
*hmp_mon
= container_of(mon
, MonitorHMP
, common
);
1988 monitor_read_password(hmp_mon
, hmp_change_read_arg
, NULL
);
1992 qmp_change("vnc", target
, !!arg
, arg
, &err
);
1998 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup
,
2000 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
2002 hmp_handle_error(mon
, err
);
2007 qmp_blockdev_change_medium(true, device
, false, NULL
, target
,
2008 !!arg
, arg
, !!read_only
, read_only_mode
,
2012 hmp_handle_error(mon
, err
);
2015 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
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
;
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,
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
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
) {
2128 if (info
->disk
->remaining
) {
2129 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
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);
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
);
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");
2164 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
,
2165 false, false, true, resume
, &err
);
2167 hmp_handle_error(mon
, err
);
2172 HMPMigrationStatus
*status
;
2174 if (monitor_suspend(mon
) < 0) {
2175 monitor_printf(mon
, "terminal does not allow synchronous "
2176 "migration, continuing detached\n");
2180 status
= g_malloc0(sizeof(*status
));
2182 status
->is_block_migration
= blk
|| inc
;
2183 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
2185 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
2189 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
2194 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
2199 netdev_add(opts
, &err
);
2201 qemu_opts_del(opts
);
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");
2213 qmp_netdev_del(id
, &err
);
2214 hmp_handle_error(mon
, err
);
2217 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
2223 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
2225 hmp_handle_error(mon
, err
);
2229 obj
= user_creatable_add_opts(opts
, &err
);
2230 qemu_opts_del(opts
);
2233 hmp_handle_error(mon
, err
);
2240 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
2242 const char *fdname
= qdict_get_str(qdict
, "fdname");
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");
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);
2265 const char *separator
;
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) {
2278 keylist
= g_malloc0(sizeof(*keylist
));
2279 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
2285 tmp
->next
= keylist
;
2289 if (strstart(keys
, "0x", NULL
)) {
2291 int value
= strtoul(keys
, &endp
, 0);
2292 assert(endp
<= keys
+ keyname_len
);
2293 if (endp
!= keys
+ keyname_len
) {
2296 keylist
->value
->type
= KEY_VALUE_KIND_NUMBER
;
2297 keylist
->value
->u
.number
.data
= value
;
2299 int idx
= index_from_key(keys
, keyname_len
);
2300 if (idx
== Q_KEY_CODE__MAX
) {
2303 keylist
->value
->type
= KEY_VALUE_KIND_QCODE
;
2304 keylist
->value
->u
.qcode
.data
= idx
;
2310 keys
= separator
+ 1;
2313 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
2314 hmp_handle_error(mon
, err
);
2317 qapi_free_KeyValueList(head
);
2321 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
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);
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
;
2345 if (writable
&& !all
) {
2346 error_setg(&local_err
, "-w only valid together with -a");
2350 /* First check if the address is valid and start the server. */
2351 addr
= socket_parse(uri
, &local_err
);
2352 if (local_err
!= NULL
) {
2356 nbd_server_start(addr
, NULL
, NULL
, &local_err
);
2357 qapi_free_SocketAddress(addr
);
2358 if (local_err
!= NULL
) {
2366 /* Then try adding all block devices. If one fails, close all and
2369 block_list
= qmp_query_block(NULL
);
2371 for (info
= block_list
; info
; info
= info
->next
) {
2372 if (!info
->value
->has_inserted
) {
2376 qmp_nbd_server_add(info
->value
->device
, false, NULL
, false, NULL
,
2377 true, writable
, false, NULL
, &local_err
);
2379 if (local_err
!= NULL
) {
2380 qmp_nbd_server_stop(NULL
);
2385 qapi_free_BlockInfoList(block_list
);
2388 hmp_handle_error(mon
, local_err
);
2391 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
2393 const char *device
= qdict_get_str(qdict
, "device");
2394 const char *name
= qdict_get_try_str(qdict
, "name");
2395 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2396 Error
*local_err
= NULL
;
2398 qmp_nbd_server_add(device
, !!name
, name
, false, NULL
, true, writable
,
2399 false, NULL
, &local_err
);
2400 hmp_handle_error(mon
, local_err
);
2403 void hmp_nbd_server_remove(Monitor
*mon
, const QDict
*qdict
)
2405 const char *name
= qdict_get_str(qdict
, "name");
2406 bool force
= qdict_get_try_bool(qdict
, "force", false);
2409 /* Rely on NBD_SERVER_REMOVE_MODE_SAFE being the default */
2410 qmp_nbd_server_remove(name
, force
, NBD_SERVER_REMOVE_MODE_HARD
, &err
);
2411 hmp_handle_error(mon
, err
);
2414 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
2418 qmp_nbd_server_stop(&err
);
2419 hmp_handle_error(mon
, err
);
2422 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
2424 const char *args
= qdict_get_str(qdict
, "args");
2428 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
2430 error_setg(&err
, "Parsing chardev args failed");
2432 qemu_chr_new_from_opts(opts
, NULL
, &err
);
2433 qemu_opts_del(opts
);
2435 hmp_handle_error(mon
, err
);
2438 void hmp_chardev_change(Monitor
*mon
, const QDict
*qdict
)
2440 const char *args
= qdict_get_str(qdict
, "args");
2443 ChardevBackend
*backend
= NULL
;
2444 ChardevReturn
*ret
= NULL
;
2445 QemuOpts
*opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
,
2448 error_setg(&err
, "Parsing chardev args failed");
2452 id
= qdict_get_str(qdict
, "id");
2453 if (qemu_opts_id(opts
)) {
2454 error_setg(&err
, "Unexpected 'id' parameter");
2458 backend
= qemu_chr_parse_opts(opts
, &err
);
2463 ret
= qmp_chardev_change(id
, backend
, &err
);
2466 qapi_free_ChardevReturn(ret
);
2467 qapi_free_ChardevBackend(backend
);
2468 qemu_opts_del(opts
);
2469 hmp_handle_error(mon
, err
);
2472 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
2474 Error
*local_err
= NULL
;
2476 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
2477 hmp_handle_error(mon
, local_err
);
2480 void hmp_chardev_send_break(Monitor
*mon
, const QDict
*qdict
)
2482 Error
*local_err
= NULL
;
2484 qmp_chardev_send_break(qdict_get_str(qdict
, "id"), &local_err
);
2485 hmp_handle_error(mon
, local_err
);
2488 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
2491 BlockBackend
*local_blk
= NULL
;
2492 bool qdev
= qdict_get_try_bool(qdict
, "qdev", false);
2493 const char* device
= qdict_get_str(qdict
, "device");
2494 const char* command
= qdict_get_str(qdict
, "command");
2499 blk
= blk_by_qdev_id(device
, &err
);
2504 blk
= blk_by_name(device
);
2506 BlockDriverState
*bs
= bdrv_lookup_bs(NULL
, device
, &err
);
2508 blk
= local_blk
= blk_new(bdrv_get_aio_context(bs
),
2510 ret
= blk_insert_bs(blk
, bs
, &err
);
2521 * Notably absent: Proper permission management. This is sad, but it seems
2522 * almost impossible to achieve without changing the semantics and thereby
2523 * limiting the use cases of the qemu-io HMP command.
2525 * In an ideal world we would unconditionally create a new BlockBackend for
2526 * qemuio_command(), but we have commands like 'reopen' and want them to
2527 * take effect on the exact BlockBackend whose name the user passed instead
2528 * of just on a temporary copy of it.
2530 * Another problem is that deleting the temporary BlockBackend involves
2531 * draining all requests on it first, but some qemu-iotests cases want to
2532 * issue multiple aio_read/write requests and expect them to complete in
2533 * the background while the monitor has already returned.
2535 * This is also what prevents us from saving the original permissions and
2536 * restoring them later: We can't revoke permissions until all requests
2537 * have completed, and we don't know when that is nor can we really let
2538 * anything else run before we have revoken them to avoid race conditions.
2540 * What happens now is that command() in qemu-io-cmds.c can extend the
2541 * permissions if necessary for the qemu-io command. And they simply stay
2542 * extended, possibly resulting in a read-only guest device keeping write
2543 * permissions. Ugly, but it appears to be the lesser evil.
2545 qemuio_command(blk
, command
);
2548 blk_unref(local_blk
);
2549 hmp_handle_error(mon
, err
);
2552 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
2554 const char *id
= qdict_get_str(qdict
, "id");
2557 user_creatable_del(id
, &err
);
2558 hmp_handle_error(mon
, err
);
2561 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
2564 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
2565 MemoryDeviceInfoList
*info
;
2566 VirtioPMEMDeviceInfo
*vpi
;
2567 MemoryDeviceInfo
*value
;
2568 PCDIMMDeviceInfo
*di
;
2570 for (info
= info_list
; info
; info
= info
->next
) {
2571 value
= info
->value
;
2574 switch (value
->type
) {
2575 case MEMORY_DEVICE_INFO_KIND_DIMM
:
2576 case MEMORY_DEVICE_INFO_KIND_NVDIMM
:
2577 di
= value
->type
== MEMORY_DEVICE_INFO_KIND_DIMM
?
2578 value
->u
.dimm
.data
: value
->u
.nvdimm
.data
;
2579 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2580 MemoryDeviceInfoKind_str(value
->type
),
2581 di
->id
? di
->id
: "");
2582 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
2583 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
2584 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
2585 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
2586 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
2587 monitor_printf(mon
, " hotplugged: %s\n",
2588 di
->hotplugged
? "true" : "false");
2589 monitor_printf(mon
, " hotpluggable: %s\n",
2590 di
->hotpluggable
? "true" : "false");
2592 case MEMORY_DEVICE_INFO_KIND_VIRTIO_PMEM
:
2593 vpi
= value
->u
.virtio_pmem
.data
;
2594 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2595 MemoryDeviceInfoKind_str(value
->type
),
2596 vpi
->id
? vpi
->id
: "");
2597 monitor_printf(mon
, " memaddr: 0x%" PRIx64
"\n", vpi
->memaddr
);
2598 monitor_printf(mon
, " size: %" PRIu64
"\n", vpi
->size
);
2599 monitor_printf(mon
, " memdev: %s\n", vpi
->memdev
);
2602 g_assert_not_reached();
2607 qapi_free_MemoryDeviceInfoList(info_list
);
2608 hmp_handle_error(mon
, err
);
2611 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
2613 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
2614 IOThreadInfoList
*info
;
2615 IOThreadInfo
*value
;
2617 for (info
= info_list
; info
; info
= info
->next
) {
2618 value
= info
->value
;
2619 monitor_printf(mon
, "%s:\n", value
->id
);
2620 monitor_printf(mon
, " thread_id=%" PRId64
"\n", value
->thread_id
);
2621 monitor_printf(mon
, " poll-max-ns=%" PRId64
"\n", value
->poll_max_ns
);
2622 monitor_printf(mon
, " poll-grow=%" PRId64
"\n", value
->poll_grow
);
2623 monitor_printf(mon
, " poll-shrink=%" PRId64
"\n", value
->poll_shrink
);
2626 qapi_free_IOThreadInfoList(info_list
);
2629 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
2631 const char *name
= qdict_get_str(qdict
, "name");
2632 RockerSwitch
*rocker
;
2635 rocker
= qmp_query_rocker(name
, &err
);
2637 hmp_handle_error(mon
, err
);
2641 monitor_printf(mon
, "name: %s\n", rocker
->name
);
2642 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
2643 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
2645 qapi_free_RockerSwitch(rocker
);
2648 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
2650 RockerPortList
*list
, *port
;
2651 const char *name
= qdict_get_str(qdict
, "name");
2654 list
= qmp_query_rocker_ports(name
, &err
);
2656 hmp_handle_error(mon
, err
);
2660 monitor_printf(mon
, " ena/ speed/ auto\n");
2661 monitor_printf(mon
, " port link duplex neg?\n");
2663 for (port
= list
; port
; port
= port
->next
) {
2664 monitor_printf(mon
, "%10s %-4s %-3s %2s %-3s\n",
2666 port
->value
->enabled
? port
->value
->link_up
?
2667 "up" : "down" : "!ena",
2668 port
->value
->speed
== 10000 ? "10G" : "??",
2669 port
->value
->duplex
? "FD" : "HD",
2670 port
->value
->autoneg
? "Yes" : "No");
2673 qapi_free_RockerPortList(list
);
2676 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
2678 RockerOfDpaFlowList
*list
, *info
;
2679 const char *name
= qdict_get_str(qdict
, "name");
2680 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
2683 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
2685 hmp_handle_error(mon
, err
);
2689 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
2691 for (info
= list
; info
; info
= info
->next
) {
2692 RockerOfDpaFlow
*flow
= info
->value
;
2693 RockerOfDpaFlowKey
*key
= flow
->key
;
2694 RockerOfDpaFlowMask
*mask
= flow
->mask
;
2695 RockerOfDpaFlowAction
*action
= flow
->action
;
2698 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
2699 key
->priority
, key
->tbl_id
, flow
->hits
);
2701 monitor_printf(mon
, "%-4d %-3d ",
2702 key
->priority
, key
->tbl_id
);
2705 if (key
->has_in_pport
) {
2706 monitor_printf(mon
, " pport %d", key
->in_pport
);
2707 if (mask
->has_in_pport
) {
2708 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
2712 if (key
->has_vlan_id
) {
2713 monitor_printf(mon
, " vlan %d",
2714 key
->vlan_id
& VLAN_VID_MASK
);
2715 if (mask
->has_vlan_id
) {
2716 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
2720 if (key
->has_tunnel_id
) {
2721 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
2722 if (mask
->has_tunnel_id
) {
2723 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
2727 if (key
->has_eth_type
) {
2728 switch (key
->eth_type
) {
2730 monitor_printf(mon
, " ARP");
2733 monitor_printf(mon
, " IP");
2736 monitor_printf(mon
, " IPv6");
2739 monitor_printf(mon
, " LACP");
2742 monitor_printf(mon
, " LLDP");
2745 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2750 if (key
->has_eth_src
) {
2751 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2752 (mask
->has_eth_src
) &&
2753 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2754 monitor_printf(mon
, " src <any mcast/bcast>");
2755 } else if ((strcmp(key
->eth_src
, "00:00:00:00:00:00") == 0) &&
2756 (mask
->has_eth_src
) &&
2757 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2758 monitor_printf(mon
, " src <any ucast>");
2760 monitor_printf(mon
, " src %s", key
->eth_src
);
2761 if (mask
->has_eth_src
) {
2762 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2767 if (key
->has_eth_dst
) {
2768 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2769 (mask
->has_eth_dst
) &&
2770 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2771 monitor_printf(mon
, " dst <any mcast/bcast>");
2772 } else if ((strcmp(key
->eth_dst
, "00:00:00:00:00:00") == 0) &&
2773 (mask
->has_eth_dst
) &&
2774 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2775 monitor_printf(mon
, " dst <any ucast>");
2777 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2778 if (mask
->has_eth_dst
) {
2779 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2784 if (key
->has_ip_proto
) {
2785 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2786 if (mask
->has_ip_proto
) {
2787 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2791 if (key
->has_ip_tos
) {
2792 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2793 if (mask
->has_ip_tos
) {
2794 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2798 if (key
->has_ip_dst
) {
2799 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2802 if (action
->has_goto_tbl
|| action
->has_group_id
||
2803 action
->has_new_vlan_id
) {
2804 monitor_printf(mon
, " -->");
2807 if (action
->has_new_vlan_id
) {
2808 monitor_printf(mon
, " apply new vlan %d",
2809 ntohs(action
->new_vlan_id
));
2812 if (action
->has_group_id
) {
2813 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2816 if (action
->has_goto_tbl
) {
2817 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2820 monitor_printf(mon
, "\n");
2823 qapi_free_RockerOfDpaFlowList(list
);
2826 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2828 RockerOfDpaGroupList
*list
, *g
;
2829 const char *name
= qdict_get_str(qdict
, "name");
2830 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2834 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2836 hmp_handle_error(mon
, err
);
2840 monitor_printf(mon
, "id (decode) --> buckets\n");
2842 for (g
= list
; g
; g
= g
->next
) {
2843 RockerOfDpaGroup
*group
= g
->value
;
2845 monitor_printf(mon
, "0x%08x", group
->id
);
2847 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2848 group
->type
== 1 ? "L2 rewrite" :
2849 group
->type
== 2 ? "L3 unicast" :
2850 group
->type
== 3 ? "L2 multicast" :
2851 group
->type
== 4 ? "L2 flood" :
2852 group
->type
== 5 ? "L3 interface" :
2853 group
->type
== 6 ? "L3 multicast" :
2854 group
->type
== 7 ? "L3 ECMP" :
2855 group
->type
== 8 ? "L2 overlay" :
2858 if (group
->has_vlan_id
) {
2859 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2862 if (group
->has_pport
) {
2863 monitor_printf(mon
, " pport %d", group
->pport
);
2866 if (group
->has_index
) {
2867 monitor_printf(mon
, " index %d", group
->index
);
2870 monitor_printf(mon
, ") -->");
2872 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2874 monitor_printf(mon
, " set vlan %d",
2875 group
->set_vlan_id
& VLAN_VID_MASK
);
2878 if (group
->has_set_eth_src
) {
2881 monitor_printf(mon
, " set");
2883 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2886 if (group
->has_set_eth_dst
) {
2889 monitor_printf(mon
, " set");
2891 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2896 if (group
->has_ttl_check
&& group
->ttl_check
) {
2897 monitor_printf(mon
, " check TTL");
2900 if (group
->has_group_id
&& group
->group_id
) {
2901 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2904 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2905 monitor_printf(mon
, " pop vlan");
2908 if (group
->has_out_pport
) {
2909 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2912 if (group
->has_group_ids
) {
2913 struct uint32List
*id
;
2915 monitor_printf(mon
, " groups [");
2916 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2917 monitor_printf(mon
, "0x%08x", id
->value
);
2919 monitor_printf(mon
, ",");
2922 monitor_printf(mon
, "]");
2925 monitor_printf(mon
, "\n");
2928 qapi_free_RockerOfDpaGroupList(list
);
2931 void hmp_info_ramblock(Monitor
*mon
, const QDict
*qdict
)
2933 ram_block_dump(mon
);
2936 void hmp_info_vm_generation_id(Monitor
*mon
, const QDict
*qdict
)
2939 GuidInfo
*info
= qmp_query_vm_generation_id(&err
);
2941 monitor_printf(mon
, "%s\n", info
->guid
);
2943 hmp_handle_error(mon
, err
);
2944 qapi_free_GuidInfo(info
);
2947 void hmp_info_memory_size_summary(Monitor
*mon
, const QDict
*qdict
)
2950 MemoryInfo
*info
= qmp_query_memory_size_summary(&err
);
2952 monitor_printf(mon
, "base memory: %" PRIu64
"\n",
2955 if (info
->has_plugged_memory
) {
2956 monitor_printf(mon
, "plugged memory: %" PRIu64
"\n",
2957 info
->plugged_memory
);
2960 qapi_free_MemoryInfo(info
);
2962 hmp_handle_error(mon
, err
);