2 * Human Monitor Interface
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"
20 #include "chardev/char.h"
21 #include "sysemu/block-backend.h"
22 #include "sysemu/sysemu.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.h"
28 #include "monitor/qdev.h"
29 #include "qapi/error.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-migration.h"
35 #include "qapi/qapi-commands-misc.h"
36 #include "qapi/qapi-commands-net.h"
37 #include "qapi/qapi-commands-rocker.h"
38 #include "qapi/qapi-commands-run-state.h"
39 #include "qapi/qapi-commands-tpm.h"
40 #include "qapi/qapi-commands-ui.h"
41 #include "qapi/qmp/qdict.h"
42 #include "qapi/qmp/qerror.h"
43 #include "qapi/string-input-visitor.h"
44 #include "qapi/string-output-visitor.h"
45 #include "qom/object_interfaces.h"
46 #include "ui/console.h"
47 #include "block/nbd.h"
48 #include "block/qapi.h"
50 #include "qemu/cutils.h"
51 #include "qemu/error-report.h"
52 #include "exec/ramlist.h"
53 #include "hw/intc/intc.h"
54 #include "migration/snapshot.h"
55 #include "migration/misc.h"
58 #include <spice/enums.h>
61 static void hmp_handle_error(Monitor
*mon
, Error
**errp
)
65 error_report_err(*errp
);
69 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
73 info
= qmp_query_name(NULL
);
75 monitor_printf(mon
, "%s\n", info
->name
);
77 qapi_free_NameInfo(info
);
80 void hmp_info_version(Monitor
*mon
, const QDict
*qdict
)
84 info
= qmp_query_version(NULL
);
86 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
87 info
->qemu
->major
, info
->qemu
->minor
, info
->qemu
->micro
,
90 qapi_free_VersionInfo(info
);
93 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
97 info
= qmp_query_kvm(NULL
);
98 monitor_printf(mon
, "kvm support: ");
100 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
102 monitor_printf(mon
, "not compiled\n");
105 qapi_free_KvmInfo(info
);
108 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
112 info
= qmp_query_status(NULL
);
114 monitor_printf(mon
, "VM status: %s%s",
115 info
->running
? "running" : "paused",
116 info
->singlestep
? " (single step mode)" : "");
118 if (!info
->running
&& info
->status
!= RUN_STATE_PAUSED
) {
119 monitor_printf(mon
, " (%s)", RunState_str(info
->status
));
122 monitor_printf(mon
, "\n");
124 qapi_free_StatusInfo(info
);
127 void hmp_info_uuid(Monitor
*mon
, const QDict
*qdict
)
131 info
= qmp_query_uuid(NULL
);
132 monitor_printf(mon
, "%s\n", info
->UUID
);
133 qapi_free_UuidInfo(info
);
136 void hmp_info_chardev(Monitor
*mon
, const QDict
*qdict
)
138 ChardevInfoList
*char_info
, *info
;
140 char_info
= qmp_query_chardev(NULL
);
141 for (info
= char_info
; info
; info
= info
->next
) {
142 monitor_printf(mon
, "%s: filename=%s\n", info
->value
->label
,
143 info
->value
->filename
);
146 qapi_free_ChardevInfoList(char_info
);
149 void hmp_info_mice(Monitor
*mon
, const QDict
*qdict
)
151 MouseInfoList
*mice_list
, *mouse
;
153 mice_list
= qmp_query_mice(NULL
);
155 monitor_printf(mon
, "No mouse devices connected\n");
159 for (mouse
= mice_list
; mouse
; mouse
= mouse
->next
) {
160 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s%s\n",
161 mouse
->value
->current
? '*' : ' ',
162 mouse
->value
->index
, mouse
->value
->name
,
163 mouse
->value
->absolute
? " (absolute)" : "");
166 qapi_free_MouseInfoList(mice_list
);
169 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
172 MigrationCapabilityStatusList
*caps
, *cap
;
174 info
= qmp_query_migrate(NULL
);
175 caps
= qmp_query_migrate_capabilities(NULL
);
177 migration_global_dump(mon
);
179 /* do not display parameters during setup */
180 if (info
->has_status
&& caps
) {
181 monitor_printf(mon
, "capabilities: ");
182 for (cap
= caps
; cap
; cap
= cap
->next
) {
183 monitor_printf(mon
, "%s: %s ",
184 MigrationCapability_str(cap
->value
->capability
),
185 cap
->value
->state
? "on" : "off");
187 monitor_printf(mon
, "\n");
190 if (info
->has_status
) {
191 monitor_printf(mon
, "Migration status: %s",
192 MigrationStatus_str(info
->status
));
193 if (info
->status
== MIGRATION_STATUS_FAILED
&&
194 info
->has_error_desc
) {
195 monitor_printf(mon
, " (%s)\n", info
->error_desc
);
197 monitor_printf(mon
, "\n");
200 monitor_printf(mon
, "total time: %" PRIu64
" milliseconds\n",
202 if (info
->has_expected_downtime
) {
203 monitor_printf(mon
, "expected downtime: %" PRIu64
" milliseconds\n",
204 info
->expected_downtime
);
206 if (info
->has_downtime
) {
207 monitor_printf(mon
, "downtime: %" PRIu64
" milliseconds\n",
210 if (info
->has_setup_time
) {
211 monitor_printf(mon
, "setup: %" PRIu64
" milliseconds\n",
217 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
218 info
->ram
->transferred
>> 10);
219 monitor_printf(mon
, "throughput: %0.2f mbps\n",
221 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n",
222 info
->ram
->remaining
>> 10);
223 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n",
224 info
->ram
->total
>> 10);
225 monitor_printf(mon
, "duplicate: %" PRIu64
" pages\n",
226 info
->ram
->duplicate
);
227 monitor_printf(mon
, "skipped: %" PRIu64
" pages\n",
229 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
231 monitor_printf(mon
, "normal bytes: %" PRIu64
" kbytes\n",
232 info
->ram
->normal_bytes
>> 10);
233 monitor_printf(mon
, "dirty sync count: %" PRIu64
"\n",
234 info
->ram
->dirty_sync_count
);
235 monitor_printf(mon
, "page size: %" PRIu64
" kbytes\n",
236 info
->ram
->page_size
>> 10);
237 monitor_printf(mon
, "multifd bytes: %" PRIu64
" kbytes\n",
238 info
->ram
->multifd_bytes
>> 10);
240 if (info
->ram
->dirty_pages_rate
) {
241 monitor_printf(mon
, "dirty pages rate: %" PRIu64
" pages\n",
242 info
->ram
->dirty_pages_rate
);
244 if (info
->ram
->postcopy_requests
) {
245 monitor_printf(mon
, "postcopy request count: %" PRIu64
"\n",
246 info
->ram
->postcopy_requests
);
250 if (info
->has_disk
) {
251 monitor_printf(mon
, "transferred disk: %" PRIu64
" kbytes\n",
252 info
->disk
->transferred
>> 10);
253 monitor_printf(mon
, "remaining disk: %" PRIu64
" kbytes\n",
254 info
->disk
->remaining
>> 10);
255 monitor_printf(mon
, "total disk: %" PRIu64
" kbytes\n",
256 info
->disk
->total
>> 10);
259 if (info
->has_xbzrle_cache
) {
260 monitor_printf(mon
, "cache size: %" PRIu64
" bytes\n",
261 info
->xbzrle_cache
->cache_size
);
262 monitor_printf(mon
, "xbzrle transferred: %" PRIu64
" kbytes\n",
263 info
->xbzrle_cache
->bytes
>> 10);
264 monitor_printf(mon
, "xbzrle pages: %" PRIu64
" pages\n",
265 info
->xbzrle_cache
->pages
);
266 monitor_printf(mon
, "xbzrle cache miss: %" PRIu64
"\n",
267 info
->xbzrle_cache
->cache_miss
);
268 monitor_printf(mon
, "xbzrle cache miss rate: %0.2f\n",
269 info
->xbzrle_cache
->cache_miss_rate
);
270 monitor_printf(mon
, "xbzrle overflow : %" PRIu64
"\n",
271 info
->xbzrle_cache
->overflow
);
274 if (info
->has_compression
) {
275 monitor_printf(mon
, "compression pages: %" PRIu64
" pages\n",
276 info
->compression
->pages
);
277 monitor_printf(mon
, "compression busy: %" PRIu64
"\n",
278 info
->compression
->busy
);
279 monitor_printf(mon
, "compression busy rate: %0.2f\n",
280 info
->compression
->busy_rate
);
281 monitor_printf(mon
, "compressed size: %" PRIu64
"\n",
282 info
->compression
->compressed_size
);
283 monitor_printf(mon
, "compression rate: %0.2f\n",
284 info
->compression
->compression_rate
);
287 if (info
->has_cpu_throttle_percentage
) {
288 monitor_printf(mon
, "cpu throttle percentage: %" PRIu64
"\n",
289 info
->cpu_throttle_percentage
);
292 if (info
->has_postcopy_blocktime
) {
293 monitor_printf(mon
, "postcopy blocktime: %u\n",
294 info
->postcopy_blocktime
);
297 if (info
->has_postcopy_vcpu_blocktime
) {
300 v
= string_output_visitor_new(false, &str
);
301 visit_type_uint32List(v
, NULL
, &info
->postcopy_vcpu_blocktime
, NULL
);
302 visit_complete(v
, &str
);
303 monitor_printf(mon
, "postcopy vcpu blocktime: %s\n", str
);
307 qapi_free_MigrationInfo(info
);
308 qapi_free_MigrationCapabilityStatusList(caps
);
311 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
313 MigrationCapabilityStatusList
*caps
, *cap
;
315 caps
= qmp_query_migrate_capabilities(NULL
);
318 for (cap
= caps
; cap
; cap
= cap
->next
) {
319 monitor_printf(mon
, "%s: %s\n",
320 MigrationCapability_str(cap
->value
->capability
),
321 cap
->value
->state
? "on" : "off");
325 qapi_free_MigrationCapabilityStatusList(caps
);
328 void hmp_info_migrate_parameters(Monitor
*mon
, const QDict
*qdict
)
330 MigrationParameters
*params
;
332 params
= qmp_query_migrate_parameters(NULL
);
335 assert(params
->has_compress_level
);
336 monitor_printf(mon
, "%s: %u\n",
337 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL
),
338 params
->compress_level
);
339 assert(params
->has_compress_threads
);
340 monitor_printf(mon
, "%s: %u\n",
341 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_THREADS
),
342 params
->compress_threads
);
343 assert(params
->has_compress_wait_thread
);
344 monitor_printf(mon
, "%s: %s\n",
345 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_WAIT_THREAD
),
346 params
->compress_wait_thread
? "on" : "off");
347 assert(params
->has_decompress_threads
);
348 monitor_printf(mon
, "%s: %u\n",
349 MigrationParameter_str(MIGRATION_PARAMETER_DECOMPRESS_THREADS
),
350 params
->decompress_threads
);
351 assert(params
->has_cpu_throttle_initial
);
352 monitor_printf(mon
, "%s: %u\n",
353 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
),
354 params
->cpu_throttle_initial
);
355 assert(params
->has_cpu_throttle_increment
);
356 monitor_printf(mon
, "%s: %u\n",
357 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
),
358 params
->cpu_throttle_increment
);
359 assert(params
->has_max_cpu_throttle
);
360 monitor_printf(mon
, "%s: %u\n",
361 MigrationParameter_str(MIGRATION_PARAMETER_MAX_CPU_THROTTLE
),
362 params
->max_cpu_throttle
);
363 assert(params
->has_tls_creds
);
364 monitor_printf(mon
, "%s: '%s'\n",
365 MigrationParameter_str(MIGRATION_PARAMETER_TLS_CREDS
),
367 assert(params
->has_tls_hostname
);
368 monitor_printf(mon
, "%s: '%s'\n",
369 MigrationParameter_str(MIGRATION_PARAMETER_TLS_HOSTNAME
),
370 params
->tls_hostname
);
371 assert(params
->has_max_bandwidth
);
372 monitor_printf(mon
, "%s: %" PRIu64
" bytes/second\n",
373 MigrationParameter_str(MIGRATION_PARAMETER_MAX_BANDWIDTH
),
374 params
->max_bandwidth
);
375 assert(params
->has_downtime_limit
);
376 monitor_printf(mon
, "%s: %" PRIu64
" milliseconds\n",
377 MigrationParameter_str(MIGRATION_PARAMETER_DOWNTIME_LIMIT
),
378 params
->downtime_limit
);
379 assert(params
->has_x_checkpoint_delay
);
380 monitor_printf(mon
, "%s: %u\n",
381 MigrationParameter_str(MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
),
382 params
->x_checkpoint_delay
);
383 assert(params
->has_block_incremental
);
384 monitor_printf(mon
, "%s: %s\n",
385 MigrationParameter_str(MIGRATION_PARAMETER_BLOCK_INCREMENTAL
),
386 params
->block_incremental
? "on" : "off");
387 monitor_printf(mon
, "%s: %u\n",
388 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_CHANNELS
),
389 params
->x_multifd_channels
);
390 monitor_printf(mon
, "%s: %u\n",
391 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT
),
392 params
->x_multifd_page_count
);
393 monitor_printf(mon
, "%s: %" PRIu64
"\n",
394 MigrationParameter_str(MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
),
395 params
->xbzrle_cache_size
);
396 monitor_printf(mon
, "%s: %" PRIu64
"\n",
397 MigrationParameter_str(MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH
),
398 params
->max_postcopy_bandwidth
);
401 qapi_free_MigrationParameters(params
);
404 void hmp_info_migrate_cache_size(Monitor
*mon
, const QDict
*qdict
)
406 monitor_printf(mon
, "xbzrel cache size: %" PRId64
" kbytes\n",
407 qmp_query_migrate_cache_size(NULL
) >> 10);
410 void hmp_info_cpus(Monitor
*mon
, const QDict
*qdict
)
412 CpuInfoFastList
*cpu_list
, *cpu
;
414 cpu_list
= qmp_query_cpus_fast(NULL
);
416 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
419 if (cpu
->value
->cpu_index
== monitor_get_cpu_index()) {
423 monitor_printf(mon
, "%c CPU #%" PRId64
":", active
,
424 cpu
->value
->cpu_index
);
425 monitor_printf(mon
, " thread_id=%" PRId64
"\n", cpu
->value
->thread_id
);
428 qapi_free_CpuInfoFastList(cpu_list
);
431 static void print_block_info(Monitor
*mon
, BlockInfo
*info
,
432 BlockDeviceInfo
*inserted
, bool verbose
)
434 ImageInfo
*image_info
;
436 assert(!info
|| !info
->has_inserted
|| info
->inserted
== inserted
);
438 if (info
&& *info
->device
) {
439 monitor_printf(mon
, "%s", info
->device
);
440 if (inserted
&& inserted
->has_node_name
) {
441 monitor_printf(mon
, " (%s)", inserted
->node_name
);
444 assert(info
|| inserted
);
445 monitor_printf(mon
, "%s",
446 inserted
&& inserted
->has_node_name
? inserted
->node_name
447 : info
&& info
->has_qdev
? info
->qdev
452 monitor_printf(mon
, ": %s (%s%s%s)\n",
455 inserted
->ro
? ", read-only" : "",
456 inserted
->encrypted
? ", encrypted" : "");
458 monitor_printf(mon
, ": [not inserted]\n");
462 if (info
->has_qdev
) {
463 monitor_printf(mon
, " Attached to: %s\n", info
->qdev
);
465 if (info
->has_io_status
&& info
->io_status
!= BLOCK_DEVICE_IO_STATUS_OK
) {
466 monitor_printf(mon
, " I/O status: %s\n",
467 BlockDeviceIoStatus_str(info
->io_status
));
470 if (info
->removable
) {
471 monitor_printf(mon
, " Removable device: %slocked, tray %s\n",
472 info
->locked
? "" : "not ",
473 info
->tray_open
? "open" : "closed");
482 monitor_printf(mon
, " Cache mode: %s%s%s\n",
483 inserted
->cache
->writeback
? "writeback" : "writethrough",
484 inserted
->cache
->direct
? ", direct" : "",
485 inserted
->cache
->no_flush
? ", ignore flushes" : "");
487 if (inserted
->has_backing_file
) {
490 "(chain depth: %" PRId64
")\n",
491 inserted
->backing_file
,
492 inserted
->backing_file_depth
);
495 if (inserted
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
) {
496 monitor_printf(mon
, " Detect zeroes: %s\n",
497 BlockdevDetectZeroesOptions_str(inserted
->detect_zeroes
));
500 if (inserted
->bps
|| inserted
->bps_rd
|| inserted
->bps_wr
||
501 inserted
->iops
|| inserted
->iops_rd
|| inserted
->iops_wr
)
503 monitor_printf(mon
, " I/O throttling: bps=%" PRId64
504 " bps_rd=%" PRId64
" bps_wr=%" PRId64
506 " bps_rd_max=%" PRId64
507 " bps_wr_max=%" PRId64
508 " iops=%" PRId64
" iops_rd=%" PRId64
511 " iops_rd_max=%" PRId64
512 " iops_wr_max=%" PRId64
513 " iops_size=%" PRId64
519 inserted
->bps_rd_max
,
520 inserted
->bps_wr_max
,
525 inserted
->iops_rd_max
,
526 inserted
->iops_wr_max
,
532 monitor_printf(mon
, "\nImages:\n");
533 image_info
= inserted
->image
;
535 bdrv_image_info_dump((fprintf_function
)monitor_printf
,
537 if (image_info
->has_backing_image
) {
538 image_info
= image_info
->backing_image
;
546 void hmp_info_block(Monitor
*mon
, const QDict
*qdict
)
548 BlockInfoList
*block_list
, *info
;
549 BlockDeviceInfoList
*blockdev_list
, *blockdev
;
550 const char *device
= qdict_get_try_str(qdict
, "device");
551 bool verbose
= qdict_get_try_bool(qdict
, "verbose", false);
552 bool nodes
= qdict_get_try_bool(qdict
, "nodes", false);
553 bool printed
= false;
555 /* Print BlockBackend information */
557 block_list
= qmp_query_block(NULL
);
562 for (info
= block_list
; info
; info
= info
->next
) {
563 if (device
&& strcmp(device
, info
->value
->device
)) {
567 if (info
!= block_list
) {
568 monitor_printf(mon
, "\n");
571 print_block_info(mon
, info
->value
, info
->value
->has_inserted
572 ? info
->value
->inserted
: NULL
,
577 qapi_free_BlockInfoList(block_list
);
579 if ((!device
&& !nodes
) || printed
) {
583 /* Print node information */
584 blockdev_list
= qmp_query_named_block_nodes(NULL
);
585 for (blockdev
= blockdev_list
; blockdev
; blockdev
= blockdev
->next
) {
586 assert(blockdev
->value
->has_node_name
);
587 if (device
&& strcmp(device
, blockdev
->value
->node_name
)) {
591 if (blockdev
!= blockdev_list
) {
592 monitor_printf(mon
, "\n");
595 print_block_info(mon
, NULL
, blockdev
->value
, verbose
);
597 qapi_free_BlockDeviceInfoList(blockdev_list
);
600 void hmp_info_blockstats(Monitor
*mon
, const QDict
*qdict
)
602 BlockStatsList
*stats_list
, *stats
;
604 stats_list
= qmp_query_blockstats(false, false, NULL
);
606 for (stats
= stats_list
; stats
; stats
= stats
->next
) {
607 if (!stats
->value
->has_device
) {
611 monitor_printf(mon
, "%s:", stats
->value
->device
);
612 monitor_printf(mon
, " rd_bytes=%" PRId64
614 " rd_operations=%" PRId64
615 " wr_operations=%" PRId64
616 " flush_operations=%" PRId64
617 " wr_total_time_ns=%" PRId64
618 " rd_total_time_ns=%" PRId64
619 " flush_total_time_ns=%" PRId64
620 " rd_merged=%" PRId64
621 " wr_merged=%" PRId64
622 " idle_time_ns=%" PRId64
624 stats
->value
->stats
->rd_bytes
,
625 stats
->value
->stats
->wr_bytes
,
626 stats
->value
->stats
->rd_operations
,
627 stats
->value
->stats
->wr_operations
,
628 stats
->value
->stats
->flush_operations
,
629 stats
->value
->stats
->wr_total_time_ns
,
630 stats
->value
->stats
->rd_total_time_ns
,
631 stats
->value
->stats
->flush_total_time_ns
,
632 stats
->value
->stats
->rd_merged
,
633 stats
->value
->stats
->wr_merged
,
634 stats
->value
->stats
->idle_time_ns
);
637 qapi_free_BlockStatsList(stats_list
);
641 /* Helper for hmp_info_vnc_clients, _servers */
642 static void hmp_info_VncBasicInfo(Monitor
*mon
, VncBasicInfo
*info
,
645 monitor_printf(mon
, " %s: %s:%s (%s%s)\n",
649 NetworkAddressFamily_str(info
->family
),
650 info
->websocket
? " (Websocket)" : "");
653 /* Helper displaying and auth and crypt info */
654 static void hmp_info_vnc_authcrypt(Monitor
*mon
, const char *indent
,
656 VncVencryptSubAuth
*vencrypt
)
658 monitor_printf(mon
, "%sAuth: %s (Sub: %s)\n", indent
,
659 VncPrimaryAuth_str(auth
),
660 vencrypt
? VncVencryptSubAuth_str(*vencrypt
) : "none");
663 static void hmp_info_vnc_clients(Monitor
*mon
, VncClientInfoList
*client
)
666 VncClientInfo
*cinfo
= client
->value
;
668 hmp_info_VncBasicInfo(mon
, qapi_VncClientInfo_base(cinfo
), "Client");
669 monitor_printf(mon
, " x509_dname: %s\n",
670 cinfo
->has_x509_dname
?
671 cinfo
->x509_dname
: "none");
672 monitor_printf(mon
, " sasl_username: %s\n",
673 cinfo
->has_sasl_username
?
674 cinfo
->sasl_username
: "none");
676 client
= client
->next
;
680 static void hmp_info_vnc_servers(Monitor
*mon
, VncServerInfo2List
*server
)
683 VncServerInfo2
*sinfo
= server
->value
;
684 hmp_info_VncBasicInfo(mon
, qapi_VncServerInfo2_base(sinfo
), "Server");
685 hmp_info_vnc_authcrypt(mon
, " ", sinfo
->auth
,
686 sinfo
->has_vencrypt
? &sinfo
->vencrypt
: NULL
);
687 server
= server
->next
;
691 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
693 VncInfo2List
*info2l
;
696 info2l
= qmp_query_vnc_servers(&err
);
698 hmp_handle_error(mon
, &err
);
702 monitor_printf(mon
, "None\n");
707 VncInfo2
*info
= info2l
->value
;
708 monitor_printf(mon
, "%s:\n", info
->id
);
709 hmp_info_vnc_servers(mon
, info
->server
);
710 hmp_info_vnc_clients(mon
, info
->clients
);
712 /* The server entry displays its auth, we only
713 * need to display in the case of 'reverse' connections
714 * where there's no server.
716 hmp_info_vnc_authcrypt(mon
, " ", info
->auth
,
717 info
->has_vencrypt
? &info
->vencrypt
: NULL
);
719 if (info
->has_display
) {
720 monitor_printf(mon
, " Display: %s\n", info
->display
);
722 info2l
= info2l
->next
;
725 qapi_free_VncInfo2List(info2l
);
731 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
733 SpiceChannelList
*chan
;
735 const char *channel_name
;
736 const char * const channel_names
[] = {
737 [SPICE_CHANNEL_MAIN
] = "main",
738 [SPICE_CHANNEL_DISPLAY
] = "display",
739 [SPICE_CHANNEL_INPUTS
] = "inputs",
740 [SPICE_CHANNEL_CURSOR
] = "cursor",
741 [SPICE_CHANNEL_PLAYBACK
] = "playback",
742 [SPICE_CHANNEL_RECORD
] = "record",
743 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
744 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
745 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
746 [SPICE_CHANNEL_PORT
] = "port",
748 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
749 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
750 * as quick fix for build failures with older versions. */
751 [SPICE_CHANNEL_WEBDAV
] = "webdav",
755 info
= qmp_query_spice(NULL
);
757 if (!info
->enabled
) {
758 monitor_printf(mon
, "Server: disabled\n");
762 monitor_printf(mon
, "Server:\n");
763 if (info
->has_port
) {
764 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
765 info
->host
, info
->port
);
767 if (info
->has_tls_port
) {
768 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
769 info
->host
, info
->tls_port
);
771 monitor_printf(mon
, " migrated: %s\n",
772 info
->migrated
? "true" : "false");
773 monitor_printf(mon
, " auth: %s\n", info
->auth
);
774 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
775 monitor_printf(mon
, " mouse-mode: %s\n",
776 SpiceQueryMouseMode_str(info
->mouse_mode
));
778 if (!info
->has_channels
|| info
->channels
== NULL
) {
779 monitor_printf(mon
, "Channels: none\n");
781 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
782 monitor_printf(mon
, "Channel:\n");
783 monitor_printf(mon
, " address: %s:%s%s\n",
784 chan
->value
->host
, chan
->value
->port
,
785 chan
->value
->tls
? " [tls]" : "");
786 monitor_printf(mon
, " session: %" PRId64
"\n",
787 chan
->value
->connection_id
);
788 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
789 chan
->value
->channel_type
, chan
->value
->channel_id
);
791 channel_name
= "unknown";
792 if (chan
->value
->channel_type
> 0 &&
793 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
794 channel_names
[chan
->value
->channel_type
]) {
795 channel_name
= channel_names
[chan
->value
->channel_type
];
798 monitor_printf(mon
, " channel name: %s\n", channel_name
);
803 qapi_free_SpiceInfo(info
);
807 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
812 info
= qmp_query_balloon(&err
);
814 hmp_handle_error(mon
, &err
);
818 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
820 qapi_free_BalloonInfo(info
);
823 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
825 PciMemoryRegionList
*region
;
827 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
828 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
829 dev
->slot
, dev
->function
);
830 monitor_printf(mon
, " ");
832 if (dev
->class_info
->has_desc
) {
833 monitor_printf(mon
, "%s", dev
->class_info
->desc
);
835 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
->q_class
);
838 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
839 dev
->id
->vendor
, dev
->id
->device
);
840 if (dev
->id
->has_subsystem_vendor
&& dev
->id
->has_subsystem
) {
841 monitor_printf(mon
, " PCI subsystem %04" PRIx64
":%04" PRIx64
"\n",
842 dev
->id
->subsystem_vendor
, dev
->id
->subsystem
);
846 monitor_printf(mon
, " IRQ %" PRId64
".\n", dev
->irq
);
849 if (dev
->has_pci_bridge
) {
850 monitor_printf(mon
, " BUS %" PRId64
".\n",
851 dev
->pci_bridge
->bus
->number
);
852 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
853 dev
->pci_bridge
->bus
->secondary
);
854 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
855 dev
->pci_bridge
->bus
->subordinate
);
857 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
858 dev
->pci_bridge
->bus
->io_range
->base
,
859 dev
->pci_bridge
->bus
->io_range
->limit
);
862 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
863 dev
->pci_bridge
->bus
->memory_range
->base
,
864 dev
->pci_bridge
->bus
->memory_range
->limit
);
866 monitor_printf(mon
, " prefetchable memory range "
867 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
868 dev
->pci_bridge
->bus
->prefetchable_range
->base
,
869 dev
->pci_bridge
->bus
->prefetchable_range
->limit
);
872 for (region
= dev
->regions
; region
; region
= region
->next
) {
875 addr
= region
->value
->address
;
876 size
= region
->value
->size
;
878 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
880 if (!strcmp(region
->value
->type
, "io")) {
881 monitor_printf(mon
, "I/O at 0x%04" PRIx64
882 " [0x%04" PRIx64
"].\n",
883 addr
, addr
+ size
- 1);
885 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
886 " [0x%08" PRIx64
"].\n",
887 region
->value
->mem_type_64
? 64 : 32,
888 region
->value
->prefetch
? " prefetchable" : "",
889 addr
, addr
+ size
- 1);
893 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
895 if (dev
->has_pci_bridge
) {
896 if (dev
->pci_bridge
->has_devices
) {
897 PciDeviceInfoList
*cdev
;
898 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
899 hmp_info_pci_device(mon
, cdev
->value
);
905 static int hmp_info_irq_foreach(Object
*obj
, void *opaque
)
907 InterruptStatsProvider
*intc
;
908 InterruptStatsProviderClass
*k
;
909 Monitor
*mon
= opaque
;
911 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
912 intc
= INTERRUPT_STATS_PROVIDER(obj
);
913 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
914 uint64_t *irq_counts
;
915 unsigned int nb_irqs
, i
;
916 if (k
->get_statistics
&&
917 k
->get_statistics(intc
, &irq_counts
, &nb_irqs
)) {
919 monitor_printf(mon
, "IRQ statistics for %s:\n",
920 object_get_typename(obj
));
921 for (i
= 0; i
< nb_irqs
; i
++) {
922 if (irq_counts
[i
] > 0) {
923 monitor_printf(mon
, "%2d: %" PRId64
"\n", i
,
929 monitor_printf(mon
, "IRQ statistics not available for %s.\n",
930 object_get_typename(obj
));
937 void hmp_info_irq(Monitor
*mon
, const QDict
*qdict
)
939 object_child_foreach_recursive(object_get_root(),
940 hmp_info_irq_foreach
, mon
);
943 static int hmp_info_pic_foreach(Object
*obj
, void *opaque
)
945 InterruptStatsProvider
*intc
;
946 InterruptStatsProviderClass
*k
;
947 Monitor
*mon
= opaque
;
949 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
950 intc
= INTERRUPT_STATS_PROVIDER(obj
);
951 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
953 k
->print_info(intc
, mon
);
955 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
956 object_get_typename(obj
));
963 void hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
965 object_child_foreach_recursive(object_get_root(),
966 hmp_info_pic_foreach
, mon
);
969 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
971 PciInfoList
*info_list
, *info
;
974 info_list
= qmp_query_pci(&err
);
976 monitor_printf(mon
, "PCI devices not supported\n");
981 for (info
= info_list
; info
; info
= info
->next
) {
982 PciDeviceInfoList
*dev
;
984 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
985 hmp_info_pci_device(mon
, dev
->value
);
989 qapi_free_PciInfoList(info_list
);
992 void hmp_info_block_jobs(Monitor
*mon
, const QDict
*qdict
)
994 BlockJobInfoList
*list
;
997 list
= qmp_query_block_jobs(&err
);
1001 monitor_printf(mon
, "No active jobs\n");
1006 if (strcmp(list
->value
->type
, "stream") == 0) {
1007 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
1008 " of %" PRId64
" bytes, speed limit %" PRId64
1010 list
->value
->device
,
1011 list
->value
->offset
,
1013 list
->value
->speed
);
1015 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
1016 " of %" PRId64
" bytes, speed limit %" PRId64
1019 list
->value
->device
,
1020 list
->value
->offset
,
1022 list
->value
->speed
);
1027 qapi_free_BlockJobInfoList(list
);
1030 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
1032 TPMInfoList
*info_list
, *info
;
1035 TPMPassthroughOptions
*tpo
;
1036 TPMEmulatorOptions
*teo
;
1038 info_list
= qmp_query_tpm(&err
);
1040 monitor_printf(mon
, "TPM device not supported\n");
1046 monitor_printf(mon
, "TPM device:\n");
1049 for (info
= info_list
; info
; info
= info
->next
) {
1050 TPMInfo
*ti
= info
->value
;
1051 monitor_printf(mon
, " tpm%d: model=%s\n",
1052 c
, TpmModel_str(ti
->model
));
1054 monitor_printf(mon
, " \\ %s: type=%s",
1055 ti
->id
, TpmTypeOptionsKind_str(ti
->options
->type
));
1057 switch (ti
->options
->type
) {
1058 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH
:
1059 tpo
= ti
->options
->u
.passthrough
.data
;
1060 monitor_printf(mon
, "%s%s%s%s",
1061 tpo
->has_path
? ",path=" : "",
1062 tpo
->has_path
? tpo
->path
: "",
1063 tpo
->has_cancel_path
? ",cancel-path=" : "",
1064 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
1066 case TPM_TYPE_OPTIONS_KIND_EMULATOR
:
1067 teo
= ti
->options
->u
.emulator
.data
;
1068 monitor_printf(mon
, ",chardev=%s", teo
->chardev
);
1070 case TPM_TYPE_OPTIONS_KIND__MAX
:
1073 monitor_printf(mon
, "\n");
1076 qapi_free_TPMInfoList(info_list
);
1079 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
1081 monitor_suspend(mon
);
1085 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
1090 void hmp_sync_profile(Monitor
*mon
, const QDict
*qdict
)
1092 const char *op
= qdict_get_try_str(qdict
, "op");
1095 bool on
= qsp_is_enabled();
1097 monitor_printf(mon
, "sync-profile is %s\n", on
? "on" : "off");
1100 if (!strcmp(op
, "on")) {
1102 } else if (!strcmp(op
, "off")) {
1104 } else if (!strcmp(op
, "reset")) {
1109 error_setg(&err
, QERR_INVALID_PARAMETER
, op
);
1110 hmp_handle_error(mon
, &err
);
1114 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
1116 qmp_system_reset(NULL
);
1119 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
1121 qmp_system_powerdown(NULL
);
1124 void hmp_exit_preconfig(Monitor
*mon
, const QDict
*qdict
)
1128 qmp_x_exit_preconfig(&err
);
1129 hmp_handle_error(mon
, &err
);
1132 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
1136 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1137 use it are converted to the QAPI */
1138 cpu_index
= qdict_get_int(qdict
, "index");
1139 if (monitor_set_cpu(cpu_index
) < 0) {
1140 monitor_printf(mon
, "invalid CPU index\n");
1144 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
1146 uint32_t size
= qdict_get_int(qdict
, "size");
1147 const char *filename
= qdict_get_str(qdict
, "filename");
1148 uint64_t addr
= qdict_get_int(qdict
, "val");
1150 int cpu_index
= monitor_get_cpu_index();
1152 if (cpu_index
< 0) {
1153 monitor_printf(mon
, "No CPU available\n");
1157 qmp_memsave(addr
, size
, filename
, true, cpu_index
, &err
);
1158 hmp_handle_error(mon
, &err
);
1161 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
1163 uint32_t size
= qdict_get_int(qdict
, "size");
1164 const char *filename
= qdict_get_str(qdict
, "filename");
1165 uint64_t addr
= qdict_get_int(qdict
, "val");
1168 qmp_pmemsave(addr
, size
, filename
, &err
);
1169 hmp_handle_error(mon
, &err
);
1172 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
1174 const char *chardev
= qdict_get_str(qdict
, "device");
1175 const char *data
= qdict_get_str(qdict
, "data");
1178 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
1180 hmp_handle_error(mon
, &err
);
1183 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
1185 uint32_t size
= qdict_get_int(qdict
, "size");
1186 const char *chardev
= qdict_get_str(qdict
, "device");
1191 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1193 hmp_handle_error(mon
, &err
);
1197 for (i
= 0; data
[i
]; i
++) {
1198 unsigned char ch
= data
[i
];
1201 monitor_printf(mon
, "\\\\");
1202 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1203 monitor_printf(mon
, "\\u%04X", ch
);
1205 monitor_printf(mon
, "%c", ch
);
1209 monitor_printf(mon
, "\n");
1213 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1218 hmp_handle_error(mon
, &err
);
1221 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1225 qmp_system_wakeup(&err
);
1226 hmp_handle_error(mon
, &err
);
1229 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
1233 qmp_inject_nmi(&err
);
1234 hmp_handle_error(mon
, &err
);
1237 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
1239 const char *name
= qdict_get_str(qdict
, "name");
1240 bool up
= qdict_get_bool(qdict
, "up");
1243 qmp_set_link(name
, up
, &err
);
1244 hmp_handle_error(mon
, &err
);
1247 void hmp_block_passwd(Monitor
*mon
, const QDict
*qdict
)
1249 const char *device
= qdict_get_str(qdict
, "device");
1250 const char *password
= qdict_get_str(qdict
, "password");
1253 qmp_block_passwd(true, device
, false, NULL
, password
, &err
);
1254 hmp_handle_error(mon
, &err
);
1257 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
1259 int64_t value
= qdict_get_int(qdict
, "value");
1262 qmp_balloon(value
, &err
);
1263 hmp_handle_error(mon
, &err
);
1266 void hmp_block_resize(Monitor
*mon
, const QDict
*qdict
)
1268 const char *device
= qdict_get_str(qdict
, "device");
1269 int64_t size
= qdict_get_int(qdict
, "size");
1272 qmp_block_resize(true, device
, false, NULL
, size
, &err
);
1273 hmp_handle_error(mon
, &err
);
1276 void hmp_drive_mirror(Monitor
*mon
, const QDict
*qdict
)
1278 const char *filename
= qdict_get_str(qdict
, "target");
1279 const char *format
= qdict_get_try_str(qdict
, "format");
1280 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1281 bool full
= qdict_get_try_bool(qdict
, "full", false);
1283 DriveMirror mirror
= {
1284 .device
= (char *)qdict_get_str(qdict
, "device"),
1285 .target
= (char *)filename
,
1286 .has_format
= !!format
,
1287 .format
= (char *)format
,
1288 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1290 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1295 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1296 hmp_handle_error(mon
, &err
);
1299 qmp_drive_mirror(&mirror
, &err
);
1300 hmp_handle_error(mon
, &err
);
1303 void hmp_drive_backup(Monitor
*mon
, const QDict
*qdict
)
1305 const char *device
= qdict_get_str(qdict
, "device");
1306 const char *filename
= qdict_get_str(qdict
, "target");
1307 const char *format
= qdict_get_try_str(qdict
, "format");
1308 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1309 bool full
= qdict_get_try_bool(qdict
, "full", false);
1310 bool compress
= qdict_get_try_bool(qdict
, "compress", false);
1312 DriveBackup backup
= {
1313 .device
= (char *)device
,
1314 .target
= (char *)filename
,
1315 .has_format
= !!format
,
1316 .format
= (char *)format
,
1317 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1319 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1320 .has_compress
= !!compress
,
1321 .compress
= compress
,
1325 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1326 hmp_handle_error(mon
, &err
);
1330 qmp_drive_backup(&backup
, &err
);
1331 hmp_handle_error(mon
, &err
);
1334 void hmp_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
)
1336 const char *device
= qdict_get_str(qdict
, "device");
1337 const char *filename
= qdict_get_try_str(qdict
, "snapshot-file");
1338 const char *format
= qdict_get_try_str(qdict
, "format");
1339 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1340 enum NewImageMode mode
;
1344 /* In the future, if 'snapshot-file' is not specified, the snapshot
1345 will be taken internally. Today it's actually required. */
1346 error_setg(&err
, QERR_MISSING_PARAMETER
, "snapshot-file");
1347 hmp_handle_error(mon
, &err
);
1351 mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1352 qmp_blockdev_snapshot_sync(true, device
, false, NULL
,
1353 filename
, false, NULL
,
1356 hmp_handle_error(mon
, &err
);
1359 void hmp_snapshot_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1361 const char *device
= qdict_get_str(qdict
, "device");
1362 const char *name
= qdict_get_str(qdict
, "name");
1365 qmp_blockdev_snapshot_internal_sync(device
, name
, &err
);
1366 hmp_handle_error(mon
, &err
);
1369 void hmp_snapshot_delete_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1371 const char *device
= qdict_get_str(qdict
, "device");
1372 const char *name
= qdict_get_str(qdict
, "name");
1373 const char *id
= qdict_get_try_str(qdict
, "id");
1376 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
1378 hmp_handle_error(mon
, &err
);
1381 void hmp_loadvm(Monitor
*mon
, const QDict
*qdict
)
1383 int saved_vm_running
= runstate_is_running();
1384 const char *name
= qdict_get_str(qdict
, "name");
1387 vm_stop(RUN_STATE_RESTORE_VM
);
1389 if (load_snapshot(name
, &err
) == 0 && saved_vm_running
) {
1392 hmp_handle_error(mon
, &err
);
1395 void hmp_savevm(Monitor
*mon
, const QDict
*qdict
)
1399 save_snapshot(qdict_get_try_str(qdict
, "name"), &err
);
1400 hmp_handle_error(mon
, &err
);
1403 void hmp_delvm(Monitor
*mon
, const QDict
*qdict
)
1405 BlockDriverState
*bs
;
1407 const char *name
= qdict_get_str(qdict
, "name");
1409 if (bdrv_all_delete_snapshot(name
, &bs
, &err
) < 0) {
1410 error_reportf_err(err
,
1411 "Error while deleting snapshot on device '%s': ",
1412 bdrv_get_device_name(bs
));
1416 void hmp_info_snapshots(Monitor
*mon
, const QDict
*qdict
)
1418 BlockDriverState
*bs
, *bs1
;
1419 BdrvNextIterator it1
;
1420 QEMUSnapshotInfo
*sn_tab
, *sn
;
1421 bool no_snapshot
= true;
1424 int *global_snapshots
;
1425 AioContext
*aio_context
;
1427 typedef struct SnapshotEntry
{
1428 QEMUSnapshotInfo sn
;
1429 QTAILQ_ENTRY(SnapshotEntry
) next
;
1432 typedef struct ImageEntry
{
1433 const char *imagename
;
1434 QTAILQ_ENTRY(ImageEntry
) next
;
1435 QTAILQ_HEAD(, SnapshotEntry
) snapshots
;
1438 QTAILQ_HEAD(, ImageEntry
) image_list
=
1439 QTAILQ_HEAD_INITIALIZER(image_list
);
1441 ImageEntry
*image_entry
, *next_ie
;
1442 SnapshotEntry
*snapshot_entry
;
1444 bs
= bdrv_all_find_vmstate_bs();
1446 monitor_printf(mon
, "No available block device supports snapshots\n");
1449 aio_context
= bdrv_get_aio_context(bs
);
1451 aio_context_acquire(aio_context
);
1452 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1453 aio_context_release(aio_context
);
1456 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1460 for (bs1
= bdrv_first(&it1
); bs1
; bs1
= bdrv_next(&it1
)) {
1464 AioContext
*ctx
= bdrv_get_aio_context(bs1
);
1466 aio_context_acquire(ctx
);
1467 if (bdrv_can_snapshot(bs1
)) {
1469 bs1_nb_sns
= bdrv_snapshot_list(bs1
, &sn
);
1470 if (bs1_nb_sns
> 0) {
1471 no_snapshot
= false;
1472 ie
= g_new0(ImageEntry
, 1);
1473 ie
->imagename
= bdrv_get_device_name(bs1
);
1474 QTAILQ_INIT(&ie
->snapshots
);
1475 QTAILQ_INSERT_TAIL(&image_list
, ie
, next
);
1476 for (i
= 0; i
< bs1_nb_sns
; i
++) {
1477 se
= g_new0(SnapshotEntry
, 1);
1479 QTAILQ_INSERT_TAIL(&ie
->snapshots
, se
, next
);
1484 aio_context_release(ctx
);
1488 monitor_printf(mon
, "There is no snapshot available.\n");
1492 global_snapshots
= g_new0(int, nb_sns
);
1494 for (i
= 0; i
< nb_sns
; i
++) {
1495 SnapshotEntry
*next_sn
;
1496 if (bdrv_all_find_snapshot(sn_tab
[i
].name
, &bs1
) == 0) {
1497 global_snapshots
[total
] = i
;
1499 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1500 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
,
1502 if (!strcmp(sn_tab
[i
].name
, snapshot_entry
->sn
.name
)) {
1503 QTAILQ_REMOVE(&image_entry
->snapshots
, snapshot_entry
,
1505 g_free(snapshot_entry
);
1512 monitor_printf(mon
, "List of snapshots present on all disks:\n");
1515 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1516 monitor_printf(mon
, "\n");
1517 for (i
= 0; i
< total
; i
++) {
1518 sn
= &sn_tab
[global_snapshots
[i
]];
1519 /* The ID is not guaranteed to be the same on all images, so
1522 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), "--");
1523 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, sn
);
1524 monitor_printf(mon
, "\n");
1527 monitor_printf(mon
, "None\n");
1530 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1531 if (QTAILQ_EMPTY(&image_entry
->snapshots
)) {
1535 "\nList of partial (non-loadable) snapshots on '%s':\n",
1536 image_entry
->imagename
);
1537 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1538 monitor_printf(mon
, "\n");
1539 QTAILQ_FOREACH(snapshot_entry
, &image_entry
->snapshots
, next
) {
1540 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
,
1541 &snapshot_entry
->sn
);
1542 monitor_printf(mon
, "\n");
1546 QTAILQ_FOREACH_SAFE(image_entry
, &image_list
, next
, next_ie
) {
1547 SnapshotEntry
*next_sn
;
1548 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
, next
,
1550 g_free(snapshot_entry
);
1552 g_free(image_entry
);
1555 g_free(global_snapshots
);
1559 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1561 qmp_migrate_cancel(NULL
);
1564 void hmp_migrate_continue(Monitor
*mon
, const QDict
*qdict
)
1567 const char *state
= qdict_get_str(qdict
, "state");
1568 int val
= qapi_enum_parse(&MigrationStatus_lookup
, state
, -1, &err
);
1571 qmp_migrate_continue(val
, &err
);
1574 hmp_handle_error(mon
, &err
);
1577 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
1580 const char *uri
= qdict_get_str(qdict
, "uri");
1582 qmp_migrate_incoming(uri
, &err
);
1584 hmp_handle_error(mon
, &err
);
1587 void hmp_migrate_recover(Monitor
*mon
, const QDict
*qdict
)
1590 const char *uri
= qdict_get_str(qdict
, "uri");
1592 qmp_migrate_recover(uri
, &err
);
1594 hmp_handle_error(mon
, &err
);
1597 void hmp_migrate_pause(Monitor
*mon
, const QDict
*qdict
)
1601 qmp_migrate_pause(&err
);
1603 hmp_handle_error(mon
, &err
);
1606 /* Kept for backwards compatibility */
1607 void hmp_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
1609 double value
= qdict_get_double(qdict
, "value");
1610 qmp_migrate_set_downtime(value
, NULL
);
1613 void hmp_migrate_set_cache_size(Monitor
*mon
, const QDict
*qdict
)
1615 int64_t value
= qdict_get_int(qdict
, "value");
1618 qmp_migrate_set_cache_size(value
, &err
);
1619 hmp_handle_error(mon
, &err
);
1622 /* Kept for backwards compatibility */
1623 void hmp_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
1625 int64_t value
= qdict_get_int(qdict
, "value");
1626 qmp_migrate_set_speed(value
, NULL
);
1629 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1631 const char *cap
= qdict_get_str(qdict
, "capability");
1632 bool state
= qdict_get_bool(qdict
, "state");
1634 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1637 val
= qapi_enum_parse(&MigrationCapability_lookup
, cap
, -1, &err
);
1642 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1643 caps
->value
->capability
= val
;
1644 caps
->value
->state
= state
;
1646 qmp_migrate_set_capabilities(caps
, &err
);
1649 qapi_free_MigrationCapabilityStatusList(caps
);
1650 hmp_handle_error(mon
, &err
);
1653 void hmp_migrate_set_parameter(Monitor
*mon
, const QDict
*qdict
)
1655 const char *param
= qdict_get_str(qdict
, "parameter");
1656 const char *valuestr
= qdict_get_str(qdict
, "value");
1657 Visitor
*v
= string_input_visitor_new(valuestr
);
1658 MigrateSetParameters
*p
= g_new0(MigrateSetParameters
, 1);
1659 uint64_t valuebw
= 0;
1660 uint64_t cache_size
;
1664 val
= qapi_enum_parse(&MigrationParameter_lookup
, param
, -1, &err
);
1670 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1671 p
->has_compress_level
= true;
1672 visit_type_int(v
, param
, &p
->compress_level
, &err
);
1674 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1675 p
->has_compress_threads
= true;
1676 visit_type_int(v
, param
, &p
->compress_threads
, &err
);
1678 case MIGRATION_PARAMETER_COMPRESS_WAIT_THREAD
:
1679 p
->has_compress_wait_thread
= true;
1680 visit_type_bool(v
, param
, &p
->compress_wait_thread
, &err
);
1682 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1683 p
->has_decompress_threads
= true;
1684 visit_type_int(v
, param
, &p
->decompress_threads
, &err
);
1686 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
:
1687 p
->has_cpu_throttle_initial
= true;
1688 visit_type_int(v
, param
, &p
->cpu_throttle_initial
, &err
);
1690 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
:
1691 p
->has_cpu_throttle_increment
= true;
1692 visit_type_int(v
, param
, &p
->cpu_throttle_increment
, &err
);
1694 case MIGRATION_PARAMETER_MAX_CPU_THROTTLE
:
1695 p
->has_max_cpu_throttle
= true;
1696 visit_type_int(v
, param
, &p
->max_cpu_throttle
, &err
);
1698 case MIGRATION_PARAMETER_TLS_CREDS
:
1699 p
->has_tls_creds
= true;
1700 p
->tls_creds
= g_new0(StrOrNull
, 1);
1701 p
->tls_creds
->type
= QTYPE_QSTRING
;
1702 visit_type_str(v
, param
, &p
->tls_creds
->u
.s
, &err
);
1704 case MIGRATION_PARAMETER_TLS_HOSTNAME
:
1705 p
->has_tls_hostname
= true;
1706 p
->tls_hostname
= g_new0(StrOrNull
, 1);
1707 p
->tls_hostname
->type
= QTYPE_QSTRING
;
1708 visit_type_str(v
, param
, &p
->tls_hostname
->u
.s
, &err
);
1710 case MIGRATION_PARAMETER_MAX_BANDWIDTH
:
1711 p
->has_max_bandwidth
= true;
1713 * Can't use visit_type_size() here, because it
1714 * defaults to Bytes rather than Mebibytes.
1716 ret
= qemu_strtosz_MiB(valuestr
, NULL
, &valuebw
);
1717 if (ret
< 0 || valuebw
> INT64_MAX
1718 || (size_t)valuebw
!= valuebw
) {
1719 error_setg(&err
, "Invalid size %s", valuestr
);
1722 p
->max_bandwidth
= valuebw
;
1724 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1725 p
->has_downtime_limit
= true;
1726 visit_type_int(v
, param
, &p
->downtime_limit
, &err
);
1728 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
:
1729 p
->has_x_checkpoint_delay
= true;
1730 visit_type_int(v
, param
, &p
->x_checkpoint_delay
, &err
);
1732 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL
:
1733 p
->has_block_incremental
= true;
1734 visit_type_bool(v
, param
, &p
->block_incremental
, &err
);
1736 case MIGRATION_PARAMETER_X_MULTIFD_CHANNELS
:
1737 p
->has_x_multifd_channels
= true;
1738 visit_type_int(v
, param
, &p
->x_multifd_channels
, &err
);
1740 case MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT
:
1741 p
->has_x_multifd_page_count
= true;
1742 visit_type_int(v
, param
, &p
->x_multifd_page_count
, &err
);
1744 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
:
1745 p
->has_xbzrle_cache_size
= true;
1746 visit_type_size(v
, param
, &cache_size
, &err
);
1747 if (err
|| cache_size
> INT64_MAX
1748 || (size_t)cache_size
!= cache_size
) {
1749 error_setg(&err
, "Invalid size %s", valuestr
);
1752 p
->xbzrle_cache_size
= cache_size
;
1754 case MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH
:
1755 p
->has_max_postcopy_bandwidth
= true;
1756 visit_type_size(v
, param
, &p
->max_postcopy_bandwidth
, &err
);
1766 qmp_migrate_set_parameters(p
, &err
);
1769 qapi_free_MigrateSetParameters(p
);
1771 hmp_handle_error(mon
, &err
);
1774 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
1777 const char *protocol
= qdict_get_str(qdict
, "protocol");
1778 const char *hostname
= qdict_get_str(qdict
, "hostname");
1779 bool has_port
= qdict_haskey(qdict
, "port");
1780 int port
= qdict_get_try_int(qdict
, "port", -1);
1781 bool has_tls_port
= qdict_haskey(qdict
, "tls-port");
1782 int tls_port
= qdict_get_try_int(qdict
, "tls-port", -1);
1783 const char *cert_subject
= qdict_get_try_str(qdict
, "cert-subject");
1785 qmp_client_migrate_info(protocol
, hostname
,
1786 has_port
, port
, has_tls_port
, tls_port
,
1787 !!cert_subject
, cert_subject
, &err
);
1788 hmp_handle_error(mon
, &err
);
1791 void hmp_migrate_start_postcopy(Monitor
*mon
, const QDict
*qdict
)
1794 qmp_migrate_start_postcopy(&err
);
1795 hmp_handle_error(mon
, &err
);
1798 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
1802 qmp_x_colo_lost_heartbeat(&err
);
1803 hmp_handle_error(mon
, &err
);
1806 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1808 const char *protocol
= qdict_get_str(qdict
, "protocol");
1809 const char *password
= qdict_get_str(qdict
, "password");
1810 const char *connected
= qdict_get_try_str(qdict
, "connected");
1813 qmp_set_password(protocol
, password
, !!connected
, connected
, &err
);
1814 hmp_handle_error(mon
, &err
);
1817 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1819 const char *protocol
= qdict_get_str(qdict
, "protocol");
1820 const char *whenstr
= qdict_get_str(qdict
, "time");
1823 qmp_expire_password(protocol
, whenstr
, &err
);
1824 hmp_handle_error(mon
, &err
);
1827 void hmp_eject(Monitor
*mon
, const QDict
*qdict
)
1829 bool force
= qdict_get_try_bool(qdict
, "force", false);
1830 const char *device
= qdict_get_str(qdict
, "device");
1833 qmp_eject(true, device
, false, NULL
, true, force
, &err
);
1834 hmp_handle_error(mon
, &err
);
1838 static void hmp_change_read_arg(void *opaque
, const char *password
,
1839 void *readline_opaque
)
1841 qmp_change_vnc_password(password
, NULL
);
1842 monitor_read_command(opaque
, 1);
1846 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1848 const char *device
= qdict_get_str(qdict
, "device");
1849 const char *target
= qdict_get_str(qdict
, "target");
1850 const char *arg
= qdict_get_try_str(qdict
, "arg");
1851 const char *read_only
= qdict_get_try_str(qdict
, "read-only-mode");
1852 BlockdevChangeReadOnlyMode read_only_mode
= 0;
1856 if (strcmp(device
, "vnc") == 0) {
1859 "Parameter 'read-only-mode' is invalid for VNC\n");
1862 if (strcmp(target
, "passwd") == 0 ||
1863 strcmp(target
, "password") == 0) {
1865 monitor_read_password(mon
, hmp_change_read_arg
, NULL
);
1869 qmp_change("vnc", target
, !!arg
, arg
, &err
);
1875 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup
,
1877 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
1879 hmp_handle_error(mon
, &err
);
1884 qmp_blockdev_change_medium(true, device
, false, NULL
, target
,
1885 !!arg
, arg
, !!read_only
, read_only_mode
,
1889 hmp_handle_error(mon
, &err
);
1892 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
1895 char *device
= (char *) qdict_get_str(qdict
, "device");
1896 BlockIOThrottle throttle
= {
1897 .bps
= qdict_get_int(qdict
, "bps"),
1898 .bps_rd
= qdict_get_int(qdict
, "bps_rd"),
1899 .bps_wr
= qdict_get_int(qdict
, "bps_wr"),
1900 .iops
= qdict_get_int(qdict
, "iops"),
1901 .iops_rd
= qdict_get_int(qdict
, "iops_rd"),
1902 .iops_wr
= qdict_get_int(qdict
, "iops_wr"),
1905 /* qmp_block_set_io_throttle has separate parameters for the
1906 * (deprecated) block device name and the qdev ID but the HMP
1907 * version has only one, so we must decide which one to pass. */
1908 if (blk_by_name(device
)) {
1909 throttle
.has_device
= true;
1910 throttle
.device
= device
;
1912 throttle
.has_id
= true;
1913 throttle
.id
= device
;
1916 qmp_block_set_io_throttle(&throttle
, &err
);
1917 hmp_handle_error(mon
, &err
);
1920 void hmp_block_stream(Monitor
*mon
, const QDict
*qdict
)
1922 Error
*error
= NULL
;
1923 const char *device
= qdict_get_str(qdict
, "device");
1924 const char *base
= qdict_get_try_str(qdict
, "base");
1925 int64_t speed
= qdict_get_try_int(qdict
, "speed", 0);
1927 qmp_block_stream(true, device
, device
, base
!= NULL
, base
, false, NULL
,
1928 false, NULL
, qdict_haskey(qdict
, "speed"), speed
, true,
1929 BLOCKDEV_ON_ERROR_REPORT
, false, false, false, false,
1932 hmp_handle_error(mon
, &error
);
1935 void hmp_block_job_set_speed(Monitor
*mon
, const QDict
*qdict
)
1937 Error
*error
= NULL
;
1938 const char *device
= qdict_get_str(qdict
, "device");
1939 int64_t value
= qdict_get_int(qdict
, "speed");
1941 qmp_block_job_set_speed(device
, value
, &error
);
1943 hmp_handle_error(mon
, &error
);
1946 void hmp_block_job_cancel(Monitor
*mon
, const QDict
*qdict
)
1948 Error
*error
= NULL
;
1949 const char *device
= qdict_get_str(qdict
, "device");
1950 bool force
= qdict_get_try_bool(qdict
, "force", false);
1952 qmp_block_job_cancel(device
, true, force
, &error
);
1954 hmp_handle_error(mon
, &error
);
1957 void hmp_block_job_pause(Monitor
*mon
, const QDict
*qdict
)
1959 Error
*error
= NULL
;
1960 const char *device
= qdict_get_str(qdict
, "device");
1962 qmp_block_job_pause(device
, &error
);
1964 hmp_handle_error(mon
, &error
);
1967 void hmp_block_job_resume(Monitor
*mon
, const QDict
*qdict
)
1969 Error
*error
= NULL
;
1970 const char *device
= qdict_get_str(qdict
, "device");
1972 qmp_block_job_resume(device
, &error
);
1974 hmp_handle_error(mon
, &error
);
1977 void hmp_block_job_complete(Monitor
*mon
, const QDict
*qdict
)
1979 Error
*error
= NULL
;
1980 const char *device
= qdict_get_str(qdict
, "device");
1982 qmp_block_job_complete(device
, &error
);
1984 hmp_handle_error(mon
, &error
);
1987 typedef struct HMPMigrationStatus
1991 bool is_block_migration
;
1992 } HMPMigrationStatus
;
1994 static void hmp_migrate_status_cb(void *opaque
)
1996 HMPMigrationStatus
*status
= opaque
;
1997 MigrationInfo
*info
;
1999 info
= qmp_query_migrate(NULL
);
2000 if (!info
->has_status
|| info
->status
== MIGRATION_STATUS_ACTIVE
||
2001 info
->status
== MIGRATION_STATUS_SETUP
) {
2002 if (info
->has_disk
) {
2005 if (info
->disk
->remaining
) {
2006 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
2011 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
2012 monitor_flush(status
->mon
);
2015 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
2017 if (status
->is_block_migration
) {
2018 monitor_printf(status
->mon
, "\n");
2020 if (info
->has_error_desc
) {
2021 error_report("%s", info
->error_desc
);
2023 monitor_resume(status
->mon
);
2024 timer_del(status
->timer
);
2025 timer_free(status
->timer
);
2029 qapi_free_MigrationInfo(info
);
2032 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
2034 bool detach
= qdict_get_try_bool(qdict
, "detach", false);
2035 bool blk
= qdict_get_try_bool(qdict
, "blk", false);
2036 bool inc
= qdict_get_try_bool(qdict
, "inc", false);
2037 bool resume
= qdict_get_try_bool(qdict
, "resume", false);
2038 const char *uri
= qdict_get_str(qdict
, "uri");
2041 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
,
2042 false, false, true, resume
, &err
);
2044 hmp_handle_error(mon
, &err
);
2049 HMPMigrationStatus
*status
;
2051 if (monitor_suspend(mon
) < 0) {
2052 monitor_printf(mon
, "terminal does not allow synchronous "
2053 "migration, continuing detached\n");
2057 status
= g_malloc0(sizeof(*status
));
2059 status
->is_block_migration
= blk
|| inc
;
2060 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
2062 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
2066 void hmp_device_add(Monitor
*mon
, const QDict
*qdict
)
2070 qmp_device_add((QDict
*)qdict
, NULL
, &err
);
2071 hmp_handle_error(mon
, &err
);
2074 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
2076 const char *id
= qdict_get_str(qdict
, "id");
2079 qmp_device_del(id
, &err
);
2080 hmp_handle_error(mon
, &err
);
2083 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
2086 bool win_dmp
= qdict_get_try_bool(qdict
, "windmp", false);
2087 bool paging
= qdict_get_try_bool(qdict
, "paging", false);
2088 bool zlib
= qdict_get_try_bool(qdict
, "zlib", false);
2089 bool lzo
= qdict_get_try_bool(qdict
, "lzo", false);
2090 bool snappy
= qdict_get_try_bool(qdict
, "snappy", false);
2091 const char *file
= qdict_get_str(qdict
, "filename");
2092 bool has_begin
= qdict_haskey(qdict
, "begin");
2093 bool has_length
= qdict_haskey(qdict
, "length");
2094 bool has_detach
= qdict_haskey(qdict
, "detach");
2097 bool detach
= false;
2098 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
2101 if (zlib
+ lzo
+ snappy
+ win_dmp
> 1) {
2102 error_setg(&err
, "only one of '-z|-l|-s|-w' can be set");
2103 hmp_handle_error(mon
, &err
);
2108 dump_format
= DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
;
2112 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
2116 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
2120 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
2124 begin
= qdict_get_int(qdict
, "begin");
2127 length
= qdict_get_int(qdict
, "length");
2130 detach
= qdict_get_bool(qdict
, "detach");
2133 prot
= g_strconcat("file:", file
, NULL
);
2135 qmp_dump_guest_memory(paging
, prot
, true, detach
, has_begin
, begin
,
2136 has_length
, length
, true, dump_format
, &err
);
2137 hmp_handle_error(mon
, &err
);
2141 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
2146 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
2151 netdev_add(opts
, &err
);
2153 qemu_opts_del(opts
);
2157 hmp_handle_error(mon
, &err
);
2160 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
2162 const char *id
= qdict_get_str(qdict
, "id");
2165 qmp_netdev_del(id
, &err
);
2166 hmp_handle_error(mon
, &err
);
2169 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
2175 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
2177 hmp_handle_error(mon
, &err
);
2181 obj
= user_creatable_add_opts(opts
, &err
);
2182 qemu_opts_del(opts
);
2185 hmp_handle_error(mon
, &err
);
2192 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
2194 const char *fdname
= qdict_get_str(qdict
, "fdname");
2197 qmp_getfd(fdname
, &err
);
2198 hmp_handle_error(mon
, &err
);
2201 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
2203 const char *fdname
= qdict_get_str(qdict
, "fdname");
2206 qmp_closefd(fdname
, &err
);
2207 hmp_handle_error(mon
, &err
);
2210 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
2212 const char *keys
= qdict_get_str(qdict
, "keys");
2213 KeyValueList
*keylist
, *head
= NULL
, *tmp
= NULL
;
2214 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
2215 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
2217 const char *separator
;
2221 separator
= qemu_strchrnul(keys
, '-');
2222 keyname_len
= separator
- keys
;
2224 /* Be compatible with old interface, convert user inputted "<" */
2225 if (keys
[0] == '<' && keyname_len
== 1) {
2230 keylist
= g_malloc0(sizeof(*keylist
));
2231 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
2237 tmp
->next
= keylist
;
2241 if (strstart(keys
, "0x", NULL
)) {
2243 int value
= strtoul(keys
, &endp
, 0);
2244 assert(endp
<= keys
+ keyname_len
);
2245 if (endp
!= keys
+ keyname_len
) {
2248 keylist
->value
->type
= KEY_VALUE_KIND_NUMBER
;
2249 keylist
->value
->u
.number
.data
= value
;
2251 int idx
= index_from_key(keys
, keyname_len
);
2252 if (idx
== Q_KEY_CODE__MAX
) {
2255 keylist
->value
->type
= KEY_VALUE_KIND_QCODE
;
2256 keylist
->value
->u
.qcode
.data
= idx
;
2262 keys
= separator
+ 1;
2265 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
2266 hmp_handle_error(mon
, &err
);
2269 qapi_free_KeyValueList(head
);
2273 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
2277 void hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
2279 const char *filename
= qdict_get_str(qdict
, "filename");
2280 const char *id
= qdict_get_try_str(qdict
, "device");
2281 int64_t head
= qdict_get_try_int(qdict
, "head", 0);
2284 qmp_screendump(filename
, id
!= NULL
, id
, id
!= NULL
, head
, &err
);
2285 hmp_handle_error(mon
, &err
);
2288 void hmp_nbd_server_start(Monitor
*mon
, const QDict
*qdict
)
2290 const char *uri
= qdict_get_str(qdict
, "uri");
2291 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2292 bool all
= qdict_get_try_bool(qdict
, "all", false);
2293 Error
*local_err
= NULL
;
2294 BlockInfoList
*block_list
, *info
;
2295 SocketAddress
*addr
;
2297 if (writable
&& !all
) {
2298 error_setg(&local_err
, "-w only valid together with -a");
2302 /* First check if the address is valid and start the server. */
2303 addr
= socket_parse(uri
, &local_err
);
2304 if (local_err
!= NULL
) {
2308 nbd_server_start(addr
, NULL
, &local_err
);
2309 qapi_free_SocketAddress(addr
);
2310 if (local_err
!= NULL
) {
2318 /* Then try adding all block devices. If one fails, close all and
2321 block_list
= qmp_query_block(NULL
);
2323 for (info
= block_list
; info
; info
= info
->next
) {
2324 if (!info
->value
->has_inserted
) {
2328 qmp_nbd_server_add(info
->value
->device
, false, NULL
,
2329 true, writable
, false, NULL
, &local_err
);
2331 if (local_err
!= NULL
) {
2332 qmp_nbd_server_stop(NULL
);
2337 qapi_free_BlockInfoList(block_list
);
2340 hmp_handle_error(mon
, &local_err
);
2343 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
2345 const char *device
= qdict_get_str(qdict
, "device");
2346 const char *name
= qdict_get_try_str(qdict
, "name");
2347 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2348 Error
*local_err
= NULL
;
2350 qmp_nbd_server_add(device
, !!name
, name
, true, writable
,
2351 false, NULL
, &local_err
);
2352 hmp_handle_error(mon
, &local_err
);
2355 void hmp_nbd_server_remove(Monitor
*mon
, const QDict
*qdict
)
2357 const char *name
= qdict_get_str(qdict
, "name");
2358 bool force
= qdict_get_try_bool(qdict
, "force", false);
2361 /* Rely on NBD_SERVER_REMOVE_MODE_SAFE being the default */
2362 qmp_nbd_server_remove(name
, force
, NBD_SERVER_REMOVE_MODE_HARD
, &err
);
2363 hmp_handle_error(mon
, &err
);
2366 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
2370 qmp_nbd_server_stop(&err
);
2371 hmp_handle_error(mon
, &err
);
2374 void hmp_cpu_add(Monitor
*mon
, const QDict
*qdict
)
2379 error_report("cpu_add is deprecated, please use device_add instead");
2381 cpuid
= qdict_get_int(qdict
, "id");
2382 qmp_cpu_add(cpuid
, &err
);
2383 hmp_handle_error(mon
, &err
);
2386 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
2388 const char *args
= qdict_get_str(qdict
, "args");
2392 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
2394 error_setg(&err
, "Parsing chardev args failed");
2396 qemu_chr_new_from_opts(opts
, &err
);
2397 qemu_opts_del(opts
);
2399 hmp_handle_error(mon
, &err
);
2402 void hmp_chardev_change(Monitor
*mon
, const QDict
*qdict
)
2404 const char *args
= qdict_get_str(qdict
, "args");
2407 ChardevBackend
*backend
= NULL
;
2408 ChardevReturn
*ret
= NULL
;
2409 QemuOpts
*opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
,
2412 error_setg(&err
, "Parsing chardev args failed");
2416 id
= qdict_get_str(qdict
, "id");
2417 if (qemu_opts_id(opts
)) {
2418 error_setg(&err
, "Unexpected 'id' parameter");
2422 backend
= qemu_chr_parse_opts(opts
, &err
);
2427 ret
= qmp_chardev_change(id
, backend
, &err
);
2430 qapi_free_ChardevReturn(ret
);
2431 qapi_free_ChardevBackend(backend
);
2432 qemu_opts_del(opts
);
2433 hmp_handle_error(mon
, &err
);
2436 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
2438 Error
*local_err
= NULL
;
2440 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
2441 hmp_handle_error(mon
, &local_err
);
2444 void hmp_chardev_send_break(Monitor
*mon
, const QDict
*qdict
)
2446 Error
*local_err
= NULL
;
2448 qmp_chardev_send_break(qdict_get_str(qdict
, "id"), &local_err
);
2449 hmp_handle_error(mon
, &local_err
);
2452 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
2455 BlockBackend
*local_blk
= NULL
;
2456 const char* device
= qdict_get_str(qdict
, "device");
2457 const char* command
= qdict_get_str(qdict
, "command");
2461 blk
= blk_by_name(device
);
2463 BlockDriverState
*bs
= bdrv_lookup_bs(NULL
, device
, &err
);
2465 blk
= local_blk
= blk_new(0, BLK_PERM_ALL
);
2466 ret
= blk_insert_bs(blk
, bs
, &err
);
2476 * Notably absent: Proper permission management. This is sad, but it seems
2477 * almost impossible to achieve without changing the semantics and thereby
2478 * limiting the use cases of the qemu-io HMP command.
2480 * In an ideal world we would unconditionally create a new BlockBackend for
2481 * qemuio_command(), but we have commands like 'reopen' and want them to
2482 * take effect on the exact BlockBackend whose name the user passed instead
2483 * of just on a temporary copy of it.
2485 * Another problem is that deleting the temporary BlockBackend involves
2486 * draining all requests on it first, but some qemu-iotests cases want to
2487 * issue multiple aio_read/write requests and expect them to complete in
2488 * the background while the monitor has already returned.
2490 * This is also what prevents us from saving the original permissions and
2491 * restoring them later: We can't revoke permissions until all requests
2492 * have completed, and we don't know when that is nor can we really let
2493 * anything else run before we have revoken them to avoid race conditions.
2495 * What happens now is that command() in qemu-io-cmds.c can extend the
2496 * permissions if necessary for the qemu-io command. And they simply stay
2497 * extended, possibly resulting in a read-only guest device keeping write
2498 * permissions. Ugly, but it appears to be the lesser evil.
2500 qemuio_command(blk
, command
);
2503 blk_unref(local_blk
);
2504 hmp_handle_error(mon
, &err
);
2507 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
2509 const char *id
= qdict_get_str(qdict
, "id");
2512 user_creatable_del(id
, &err
);
2513 hmp_handle_error(mon
, &err
);
2516 void hmp_info_memdev(Monitor
*mon
, const QDict
*qdict
)
2519 MemdevList
*memdev_list
= qmp_query_memdev(&err
);
2520 MemdevList
*m
= memdev_list
;
2525 v
= string_output_visitor_new(false, &str
);
2526 visit_type_uint16List(v
, NULL
, &m
->value
->host_nodes
, NULL
);
2527 monitor_printf(mon
, "memory backend: %s\n", m
->value
->id
);
2528 monitor_printf(mon
, " size: %" PRId64
"\n", m
->value
->size
);
2529 monitor_printf(mon
, " merge: %s\n",
2530 m
->value
->merge
? "true" : "false");
2531 monitor_printf(mon
, " dump: %s\n",
2532 m
->value
->dump
? "true" : "false");
2533 monitor_printf(mon
, " prealloc: %s\n",
2534 m
->value
->prealloc
? "true" : "false");
2535 monitor_printf(mon
, " policy: %s\n",
2536 HostMemPolicy_str(m
->value
->policy
));
2537 visit_complete(v
, &str
);
2538 monitor_printf(mon
, " host nodes: %s\n", str
);
2545 monitor_printf(mon
, "\n");
2547 qapi_free_MemdevList(memdev_list
);
2548 hmp_handle_error(mon
, &err
);
2551 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
2554 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
2555 MemoryDeviceInfoList
*info
;
2556 MemoryDeviceInfo
*value
;
2557 PCDIMMDeviceInfo
*di
;
2559 for (info
= info_list
; info
; info
= info
->next
) {
2560 value
= info
->value
;
2563 switch (value
->type
) {
2564 case MEMORY_DEVICE_INFO_KIND_DIMM
:
2565 di
= value
->u
.dimm
.data
;
2568 case MEMORY_DEVICE_INFO_KIND_NVDIMM
:
2569 di
= value
->u
.nvdimm
.data
;
2578 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2579 MemoryDeviceInfoKind_str(value
->type
),
2580 di
->id
? di
->id
: "");
2581 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
2582 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
2583 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
2584 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
2585 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
2586 monitor_printf(mon
, " hotplugged: %s\n",
2587 di
->hotplugged
? "true" : "false");
2588 monitor_printf(mon
, " hotpluggable: %s\n",
2589 di
->hotpluggable
? "true" : "false");
2594 qapi_free_MemoryDeviceInfoList(info_list
);
2595 hmp_handle_error(mon
, &err
);
2598 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
2600 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
2601 IOThreadInfoList
*info
;
2602 IOThreadInfo
*value
;
2604 for (info
= info_list
; info
; info
= info
->next
) {
2605 value
= info
->value
;
2606 monitor_printf(mon
, "%s:\n", value
->id
);
2607 monitor_printf(mon
, " thread_id=%" PRId64
"\n", value
->thread_id
);
2608 monitor_printf(mon
, " poll-max-ns=%" PRId64
"\n", value
->poll_max_ns
);
2609 monitor_printf(mon
, " poll-grow=%" PRId64
"\n", value
->poll_grow
);
2610 monitor_printf(mon
, " poll-shrink=%" PRId64
"\n", value
->poll_shrink
);
2613 qapi_free_IOThreadInfoList(info_list
);
2616 void hmp_qom_list(Monitor
*mon
, const QDict
*qdict
)
2618 const char *path
= qdict_get_try_str(qdict
, "path");
2619 ObjectPropertyInfoList
*list
;
2623 monitor_printf(mon
, "/\n");
2627 list
= qmp_qom_list(path
, &err
);
2629 ObjectPropertyInfoList
*start
= list
;
2630 while (list
!= NULL
) {
2631 ObjectPropertyInfo
*value
= list
->value
;
2633 monitor_printf(mon
, "%s (%s)\n",
2634 value
->name
, value
->type
);
2637 qapi_free_ObjectPropertyInfoList(start
);
2639 hmp_handle_error(mon
, &err
);
2642 void hmp_qom_set(Monitor
*mon
, const QDict
*qdict
)
2644 const char *path
= qdict_get_str(qdict
, "path");
2645 const char *property
= qdict_get_str(qdict
, "property");
2646 const char *value
= qdict_get_str(qdict
, "value");
2648 bool ambiguous
= false;
2651 obj
= object_resolve_path(path
, &ambiguous
);
2653 error_set(&err
, ERROR_CLASS_DEVICE_NOT_FOUND
,
2654 "Device '%s' not found", path
);
2657 monitor_printf(mon
, "Warning: Path '%s' is ambiguous\n", path
);
2659 object_property_parse(obj
, value
, property
, &err
);
2661 hmp_handle_error(mon
, &err
);
2664 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
2666 const char *name
= qdict_get_str(qdict
, "name");
2667 RockerSwitch
*rocker
;
2670 rocker
= qmp_query_rocker(name
, &err
);
2672 hmp_handle_error(mon
, &err
);
2676 monitor_printf(mon
, "name: %s\n", rocker
->name
);
2677 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
2678 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
2680 qapi_free_RockerSwitch(rocker
);
2683 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
2685 RockerPortList
*list
, *port
;
2686 const char *name
= qdict_get_str(qdict
, "name");
2689 list
= qmp_query_rocker_ports(name
, &err
);
2691 hmp_handle_error(mon
, &err
);
2695 monitor_printf(mon
, " ena/ speed/ auto\n");
2696 monitor_printf(mon
, " port link duplex neg?\n");
2698 for (port
= list
; port
; port
= port
->next
) {
2699 monitor_printf(mon
, "%10s %-4s %-3s %2s %-3s\n",
2701 port
->value
->enabled
? port
->value
->link_up
?
2702 "up" : "down" : "!ena",
2703 port
->value
->speed
== 10000 ? "10G" : "??",
2704 port
->value
->duplex
? "FD" : "HD",
2705 port
->value
->autoneg
? "Yes" : "No");
2708 qapi_free_RockerPortList(list
);
2711 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
2713 RockerOfDpaFlowList
*list
, *info
;
2714 const char *name
= qdict_get_str(qdict
, "name");
2715 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
2718 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
2720 hmp_handle_error(mon
, &err
);
2724 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
2726 for (info
= list
; info
; info
= info
->next
) {
2727 RockerOfDpaFlow
*flow
= info
->value
;
2728 RockerOfDpaFlowKey
*key
= flow
->key
;
2729 RockerOfDpaFlowMask
*mask
= flow
->mask
;
2730 RockerOfDpaFlowAction
*action
= flow
->action
;
2733 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
2734 key
->priority
, key
->tbl_id
, flow
->hits
);
2736 monitor_printf(mon
, "%-4d %-3d ",
2737 key
->priority
, key
->tbl_id
);
2740 if (key
->has_in_pport
) {
2741 monitor_printf(mon
, " pport %d", key
->in_pport
);
2742 if (mask
->has_in_pport
) {
2743 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
2747 if (key
->has_vlan_id
) {
2748 monitor_printf(mon
, " vlan %d",
2749 key
->vlan_id
& VLAN_VID_MASK
);
2750 if (mask
->has_vlan_id
) {
2751 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
2755 if (key
->has_tunnel_id
) {
2756 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
2757 if (mask
->has_tunnel_id
) {
2758 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
2762 if (key
->has_eth_type
) {
2763 switch (key
->eth_type
) {
2765 monitor_printf(mon
, " ARP");
2768 monitor_printf(mon
, " IP");
2771 monitor_printf(mon
, " IPv6");
2774 monitor_printf(mon
, " LACP");
2777 monitor_printf(mon
, " LLDP");
2780 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2785 if (key
->has_eth_src
) {
2786 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2787 (mask
->has_eth_src
) &&
2788 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2789 monitor_printf(mon
, " src <any mcast/bcast>");
2790 } else if ((strcmp(key
->eth_src
, "00:00:00:00:00:00") == 0) &&
2791 (mask
->has_eth_src
) &&
2792 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2793 monitor_printf(mon
, " src <any ucast>");
2795 monitor_printf(mon
, " src %s", key
->eth_src
);
2796 if (mask
->has_eth_src
) {
2797 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2802 if (key
->has_eth_dst
) {
2803 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2804 (mask
->has_eth_dst
) &&
2805 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2806 monitor_printf(mon
, " dst <any mcast/bcast>");
2807 } else if ((strcmp(key
->eth_dst
, "00:00:00:00:00:00") == 0) &&
2808 (mask
->has_eth_dst
) &&
2809 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2810 monitor_printf(mon
, " dst <any ucast>");
2812 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2813 if (mask
->has_eth_dst
) {
2814 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2819 if (key
->has_ip_proto
) {
2820 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2821 if (mask
->has_ip_proto
) {
2822 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2826 if (key
->has_ip_tos
) {
2827 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2828 if (mask
->has_ip_tos
) {
2829 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2833 if (key
->has_ip_dst
) {
2834 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2837 if (action
->has_goto_tbl
|| action
->has_group_id
||
2838 action
->has_new_vlan_id
) {
2839 monitor_printf(mon
, " -->");
2842 if (action
->has_new_vlan_id
) {
2843 monitor_printf(mon
, " apply new vlan %d",
2844 ntohs(action
->new_vlan_id
));
2847 if (action
->has_group_id
) {
2848 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2851 if (action
->has_goto_tbl
) {
2852 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2855 monitor_printf(mon
, "\n");
2858 qapi_free_RockerOfDpaFlowList(list
);
2861 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2863 RockerOfDpaGroupList
*list
, *g
;
2864 const char *name
= qdict_get_str(qdict
, "name");
2865 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2869 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2871 hmp_handle_error(mon
, &err
);
2875 monitor_printf(mon
, "id (decode) --> buckets\n");
2877 for (g
= list
; g
; g
= g
->next
) {
2878 RockerOfDpaGroup
*group
= g
->value
;
2880 monitor_printf(mon
, "0x%08x", group
->id
);
2882 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2883 group
->type
== 1 ? "L2 rewrite" :
2884 group
->type
== 2 ? "L3 unicast" :
2885 group
->type
== 3 ? "L2 multicast" :
2886 group
->type
== 4 ? "L2 flood" :
2887 group
->type
== 5 ? "L3 interface" :
2888 group
->type
== 6 ? "L3 multicast" :
2889 group
->type
== 7 ? "L3 ECMP" :
2890 group
->type
== 8 ? "L2 overlay" :
2893 if (group
->has_vlan_id
) {
2894 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2897 if (group
->has_pport
) {
2898 monitor_printf(mon
, " pport %d", group
->pport
);
2901 if (group
->has_index
) {
2902 monitor_printf(mon
, " index %d", group
->index
);
2905 monitor_printf(mon
, ") -->");
2907 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2909 monitor_printf(mon
, " set vlan %d",
2910 group
->set_vlan_id
& VLAN_VID_MASK
);
2913 if (group
->has_set_eth_src
) {
2916 monitor_printf(mon
, " set");
2918 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2921 if (group
->has_set_eth_dst
) {
2924 monitor_printf(mon
, " set");
2926 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2931 if (group
->has_ttl_check
&& group
->ttl_check
) {
2932 monitor_printf(mon
, " check TTL");
2935 if (group
->has_group_id
&& group
->group_id
) {
2936 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2939 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2940 monitor_printf(mon
, " pop vlan");
2943 if (group
->has_out_pport
) {
2944 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2947 if (group
->has_group_ids
) {
2948 struct uint32List
*id
;
2950 monitor_printf(mon
, " groups [");
2951 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2952 monitor_printf(mon
, "0x%08x", id
->value
);
2954 monitor_printf(mon
, ",");
2957 monitor_printf(mon
, "]");
2960 monitor_printf(mon
, "\n");
2963 qapi_free_RockerOfDpaGroupList(list
);
2966 void hmp_info_dump(Monitor
*mon
, const QDict
*qdict
)
2968 DumpQueryResult
*result
= qmp_query_dump(NULL
);
2970 assert(result
&& result
->status
< DUMP_STATUS__MAX
);
2971 monitor_printf(mon
, "Status: %s\n", DumpStatus_str(result
->status
));
2973 if (result
->status
== DUMP_STATUS_ACTIVE
) {
2975 assert(result
->total
!= 0);
2976 percent
= 100.0 * result
->completed
/ result
->total
;
2977 monitor_printf(mon
, "Finished: %.2f %%\n", percent
);
2980 qapi_free_DumpQueryResult(result
);
2983 void hmp_info_ramblock(Monitor
*mon
, const QDict
*qdict
)
2985 ram_block_dump(mon
);
2988 void hmp_hotpluggable_cpus(Monitor
*mon
, const QDict
*qdict
)
2991 HotpluggableCPUList
*l
= qmp_query_hotpluggable_cpus(&err
);
2992 HotpluggableCPUList
*saved
= l
;
2993 CpuInstanceProperties
*c
;
2996 hmp_handle_error(mon
, &err
);
3000 monitor_printf(mon
, "Hotpluggable CPUs:\n");
3002 monitor_printf(mon
, " type: \"%s\"\n", l
->value
->type
);
3003 monitor_printf(mon
, " vcpus_count: \"%" PRIu64
"\"\n",
3004 l
->value
->vcpus_count
);
3005 if (l
->value
->has_qom_path
) {
3006 monitor_printf(mon
, " qom_path: \"%s\"\n", l
->value
->qom_path
);
3009 c
= l
->value
->props
;
3010 monitor_printf(mon
, " CPUInstance Properties:\n");
3011 if (c
->has_node_id
) {
3012 monitor_printf(mon
, " node-id: \"%" PRIu64
"\"\n", c
->node_id
);
3014 if (c
->has_socket_id
) {
3015 monitor_printf(mon
, " socket-id: \"%" PRIu64
"\"\n", c
->socket_id
);
3017 if (c
->has_core_id
) {
3018 monitor_printf(mon
, " core-id: \"%" PRIu64
"\"\n", c
->core_id
);
3020 if (c
->has_thread_id
) {
3021 monitor_printf(mon
, " thread-id: \"%" PRIu64
"\"\n", c
->thread_id
);
3027 qapi_free_HotpluggableCPUList(saved
);
3030 void hmp_info_vm_generation_id(Monitor
*mon
, const QDict
*qdict
)
3033 GuidInfo
*info
= qmp_query_vm_generation_id(&err
);
3035 monitor_printf(mon
, "%s\n", info
->guid
);
3037 hmp_handle_error(mon
, &err
);
3038 qapi_free_GuidInfo(info
);
3041 void hmp_info_memory_size_summary(Monitor
*mon
, const QDict
*qdict
)
3044 MemoryInfo
*info
= qmp_query_memory_size_summary(&err
);
3046 monitor_printf(mon
, "base memory: %" PRIu64
"\n",
3049 if (info
->has_plugged_memory
) {
3050 monitor_printf(mon
, "plugged memory: %" PRIu64
"\n",
3051 info
->plugged_memory
);
3054 qapi_free_MemoryInfo(info
);
3056 hmp_handle_error(mon
, &err
);