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_cpu_throttle_percentage
) {
275 monitor_printf(mon
, "cpu throttle percentage: %" PRIu64
"\n",
276 info
->cpu_throttle_percentage
);
279 if (info
->has_postcopy_blocktime
) {
280 monitor_printf(mon
, "postcopy blocktime: %u\n",
281 info
->postcopy_blocktime
);
284 if (info
->has_postcopy_vcpu_blocktime
) {
287 v
= string_output_visitor_new(false, &str
);
288 visit_type_uint32List(v
, NULL
, &info
->postcopy_vcpu_blocktime
, NULL
);
289 visit_complete(v
, &str
);
290 monitor_printf(mon
, "postcopy vcpu blocktime: %s\n", str
);
294 qapi_free_MigrationInfo(info
);
295 qapi_free_MigrationCapabilityStatusList(caps
);
298 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
300 MigrationCapabilityStatusList
*caps
, *cap
;
302 caps
= qmp_query_migrate_capabilities(NULL
);
305 for (cap
= caps
; cap
; cap
= cap
->next
) {
306 monitor_printf(mon
, "%s: %s\n",
307 MigrationCapability_str(cap
->value
->capability
),
308 cap
->value
->state
? "on" : "off");
312 qapi_free_MigrationCapabilityStatusList(caps
);
315 void hmp_info_migrate_parameters(Monitor
*mon
, const QDict
*qdict
)
317 MigrationParameters
*params
;
319 params
= qmp_query_migrate_parameters(NULL
);
322 assert(params
->has_compress_level
);
323 monitor_printf(mon
, "%s: %u\n",
324 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL
),
325 params
->compress_level
);
326 assert(params
->has_compress_threads
);
327 monitor_printf(mon
, "%s: %u\n",
328 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_THREADS
),
329 params
->compress_threads
);
330 assert(params
->has_decompress_threads
);
331 monitor_printf(mon
, "%s: %u\n",
332 MigrationParameter_str(MIGRATION_PARAMETER_DECOMPRESS_THREADS
),
333 params
->decompress_threads
);
334 assert(params
->has_cpu_throttle_initial
);
335 monitor_printf(mon
, "%s: %u\n",
336 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
),
337 params
->cpu_throttle_initial
);
338 assert(params
->has_cpu_throttle_increment
);
339 monitor_printf(mon
, "%s: %u\n",
340 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
),
341 params
->cpu_throttle_increment
);
342 assert(params
->has_tls_creds
);
343 monitor_printf(mon
, "%s: '%s'\n",
344 MigrationParameter_str(MIGRATION_PARAMETER_TLS_CREDS
),
346 assert(params
->has_tls_hostname
);
347 monitor_printf(mon
, "%s: '%s'\n",
348 MigrationParameter_str(MIGRATION_PARAMETER_TLS_HOSTNAME
),
349 params
->tls_hostname
);
350 assert(params
->has_max_bandwidth
);
351 monitor_printf(mon
, "%s: %" PRIu64
" bytes/second\n",
352 MigrationParameter_str(MIGRATION_PARAMETER_MAX_BANDWIDTH
),
353 params
->max_bandwidth
);
354 assert(params
->has_downtime_limit
);
355 monitor_printf(mon
, "%s: %" PRIu64
" milliseconds\n",
356 MigrationParameter_str(MIGRATION_PARAMETER_DOWNTIME_LIMIT
),
357 params
->downtime_limit
);
358 assert(params
->has_x_checkpoint_delay
);
359 monitor_printf(mon
, "%s: %u\n",
360 MigrationParameter_str(MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
),
361 params
->x_checkpoint_delay
);
362 assert(params
->has_block_incremental
);
363 monitor_printf(mon
, "%s: %s\n",
364 MigrationParameter_str(MIGRATION_PARAMETER_BLOCK_INCREMENTAL
),
365 params
->block_incremental
? "on" : "off");
366 monitor_printf(mon
, "%s: %u\n",
367 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_CHANNELS
),
368 params
->x_multifd_channels
);
369 monitor_printf(mon
, "%s: %u\n",
370 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT
),
371 params
->x_multifd_page_count
);
372 monitor_printf(mon
, "%s: %" PRIu64
"\n",
373 MigrationParameter_str(MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
),
374 params
->xbzrle_cache_size
);
375 monitor_printf(mon
, "%s: %" PRIu64
"\n",
376 MigrationParameter_str(MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH
),
377 params
->max_postcopy_bandwidth
);
380 qapi_free_MigrationParameters(params
);
383 void hmp_info_migrate_cache_size(Monitor
*mon
, const QDict
*qdict
)
385 monitor_printf(mon
, "xbzrel cache size: %" PRId64
" kbytes\n",
386 qmp_query_migrate_cache_size(NULL
) >> 10);
389 void hmp_info_cpus(Monitor
*mon
, const QDict
*qdict
)
391 CpuInfoFastList
*cpu_list
, *cpu
;
393 cpu_list
= qmp_query_cpus_fast(NULL
);
395 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
398 if (cpu
->value
->cpu_index
== monitor_get_cpu_index()) {
402 monitor_printf(mon
, "%c CPU #%" PRId64
":", active
,
403 cpu
->value
->cpu_index
);
404 monitor_printf(mon
, " thread_id=%" PRId64
"\n", cpu
->value
->thread_id
);
407 qapi_free_CpuInfoFastList(cpu_list
);
410 static void print_block_info(Monitor
*mon
, BlockInfo
*info
,
411 BlockDeviceInfo
*inserted
, bool verbose
)
413 ImageInfo
*image_info
;
415 assert(!info
|| !info
->has_inserted
|| info
->inserted
== inserted
);
417 if (info
&& *info
->device
) {
418 monitor_printf(mon
, "%s", info
->device
);
419 if (inserted
&& inserted
->has_node_name
) {
420 monitor_printf(mon
, " (%s)", inserted
->node_name
);
423 assert(info
|| inserted
);
424 monitor_printf(mon
, "%s",
425 inserted
&& inserted
->has_node_name
? inserted
->node_name
426 : info
&& info
->has_qdev
? info
->qdev
431 monitor_printf(mon
, ": %s (%s%s%s)\n",
434 inserted
->ro
? ", read-only" : "",
435 inserted
->encrypted
? ", encrypted" : "");
437 monitor_printf(mon
, ": [not inserted]\n");
441 if (info
->has_qdev
) {
442 monitor_printf(mon
, " Attached to: %s\n", info
->qdev
);
444 if (info
->has_io_status
&& info
->io_status
!= BLOCK_DEVICE_IO_STATUS_OK
) {
445 monitor_printf(mon
, " I/O status: %s\n",
446 BlockDeviceIoStatus_str(info
->io_status
));
449 if (info
->removable
) {
450 monitor_printf(mon
, " Removable device: %slocked, tray %s\n",
451 info
->locked
? "" : "not ",
452 info
->tray_open
? "open" : "closed");
461 monitor_printf(mon
, " Cache mode: %s%s%s\n",
462 inserted
->cache
->writeback
? "writeback" : "writethrough",
463 inserted
->cache
->direct
? ", direct" : "",
464 inserted
->cache
->no_flush
? ", ignore flushes" : "");
466 if (inserted
->has_backing_file
) {
469 "(chain depth: %" PRId64
")\n",
470 inserted
->backing_file
,
471 inserted
->backing_file_depth
);
474 if (inserted
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
) {
475 monitor_printf(mon
, " Detect zeroes: %s\n",
476 BlockdevDetectZeroesOptions_str(inserted
->detect_zeroes
));
479 if (inserted
->bps
|| inserted
->bps_rd
|| inserted
->bps_wr
||
480 inserted
->iops
|| inserted
->iops_rd
|| inserted
->iops_wr
)
482 monitor_printf(mon
, " I/O throttling: bps=%" PRId64
483 " bps_rd=%" PRId64
" bps_wr=%" PRId64
485 " bps_rd_max=%" PRId64
486 " bps_wr_max=%" PRId64
487 " iops=%" PRId64
" iops_rd=%" PRId64
490 " iops_rd_max=%" PRId64
491 " iops_wr_max=%" PRId64
492 " iops_size=%" PRId64
498 inserted
->bps_rd_max
,
499 inserted
->bps_wr_max
,
504 inserted
->iops_rd_max
,
505 inserted
->iops_wr_max
,
511 monitor_printf(mon
, "\nImages:\n");
512 image_info
= inserted
->image
;
514 bdrv_image_info_dump((fprintf_function
)monitor_printf
,
516 if (image_info
->has_backing_image
) {
517 image_info
= image_info
->backing_image
;
525 void hmp_info_block(Monitor
*mon
, const QDict
*qdict
)
527 BlockInfoList
*block_list
, *info
;
528 BlockDeviceInfoList
*blockdev_list
, *blockdev
;
529 const char *device
= qdict_get_try_str(qdict
, "device");
530 bool verbose
= qdict_get_try_bool(qdict
, "verbose", false);
531 bool nodes
= qdict_get_try_bool(qdict
, "nodes", false);
532 bool printed
= false;
534 /* Print BlockBackend information */
536 block_list
= qmp_query_block(NULL
);
541 for (info
= block_list
; info
; info
= info
->next
) {
542 if (device
&& strcmp(device
, info
->value
->device
)) {
546 if (info
!= block_list
) {
547 monitor_printf(mon
, "\n");
550 print_block_info(mon
, info
->value
, info
->value
->has_inserted
551 ? info
->value
->inserted
: NULL
,
556 qapi_free_BlockInfoList(block_list
);
558 if ((!device
&& !nodes
) || printed
) {
562 /* Print node information */
563 blockdev_list
= qmp_query_named_block_nodes(NULL
);
564 for (blockdev
= blockdev_list
; blockdev
; blockdev
= blockdev
->next
) {
565 assert(blockdev
->value
->has_node_name
);
566 if (device
&& strcmp(device
, blockdev
->value
->node_name
)) {
570 if (blockdev
!= blockdev_list
) {
571 monitor_printf(mon
, "\n");
574 print_block_info(mon
, NULL
, blockdev
->value
, verbose
);
576 qapi_free_BlockDeviceInfoList(blockdev_list
);
579 void hmp_info_blockstats(Monitor
*mon
, const QDict
*qdict
)
581 BlockStatsList
*stats_list
, *stats
;
583 stats_list
= qmp_query_blockstats(false, false, NULL
);
585 for (stats
= stats_list
; stats
; stats
= stats
->next
) {
586 if (!stats
->value
->has_device
) {
590 monitor_printf(mon
, "%s:", stats
->value
->device
);
591 monitor_printf(mon
, " rd_bytes=%" PRId64
593 " rd_operations=%" PRId64
594 " wr_operations=%" PRId64
595 " flush_operations=%" PRId64
596 " wr_total_time_ns=%" PRId64
597 " rd_total_time_ns=%" PRId64
598 " flush_total_time_ns=%" PRId64
599 " rd_merged=%" PRId64
600 " wr_merged=%" PRId64
601 " idle_time_ns=%" PRId64
603 stats
->value
->stats
->rd_bytes
,
604 stats
->value
->stats
->wr_bytes
,
605 stats
->value
->stats
->rd_operations
,
606 stats
->value
->stats
->wr_operations
,
607 stats
->value
->stats
->flush_operations
,
608 stats
->value
->stats
->wr_total_time_ns
,
609 stats
->value
->stats
->rd_total_time_ns
,
610 stats
->value
->stats
->flush_total_time_ns
,
611 stats
->value
->stats
->rd_merged
,
612 stats
->value
->stats
->wr_merged
,
613 stats
->value
->stats
->idle_time_ns
);
616 qapi_free_BlockStatsList(stats_list
);
619 /* Helper for hmp_info_vnc_clients, _servers */
620 static void hmp_info_VncBasicInfo(Monitor
*mon
, VncBasicInfo
*info
,
623 monitor_printf(mon
, " %s: %s:%s (%s%s)\n",
627 NetworkAddressFamily_str(info
->family
),
628 info
->websocket
? " (Websocket)" : "");
631 /* Helper displaying and auth and crypt info */
632 static void hmp_info_vnc_authcrypt(Monitor
*mon
, const char *indent
,
634 VncVencryptSubAuth
*vencrypt
)
636 monitor_printf(mon
, "%sAuth: %s (Sub: %s)\n", indent
,
637 VncPrimaryAuth_str(auth
),
638 vencrypt
? VncVencryptSubAuth_str(*vencrypt
) : "none");
641 static void hmp_info_vnc_clients(Monitor
*mon
, VncClientInfoList
*client
)
644 VncClientInfo
*cinfo
= client
->value
;
646 hmp_info_VncBasicInfo(mon
, qapi_VncClientInfo_base(cinfo
), "Client");
647 monitor_printf(mon
, " x509_dname: %s\n",
648 cinfo
->has_x509_dname
?
649 cinfo
->x509_dname
: "none");
650 monitor_printf(mon
, " sasl_username: %s\n",
651 cinfo
->has_sasl_username
?
652 cinfo
->sasl_username
: "none");
654 client
= client
->next
;
658 static void hmp_info_vnc_servers(Monitor
*mon
, VncServerInfo2List
*server
)
661 VncServerInfo2
*sinfo
= server
->value
;
662 hmp_info_VncBasicInfo(mon
, qapi_VncServerInfo2_base(sinfo
), "Server");
663 hmp_info_vnc_authcrypt(mon
, " ", sinfo
->auth
,
664 sinfo
->has_vencrypt
? &sinfo
->vencrypt
: NULL
);
665 server
= server
->next
;
669 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
671 VncInfo2List
*info2l
;
674 info2l
= qmp_query_vnc_servers(&err
);
676 hmp_handle_error(mon
, &err
);
680 monitor_printf(mon
, "None\n");
685 VncInfo2
*info
= info2l
->value
;
686 monitor_printf(mon
, "%s:\n", info
->id
);
687 hmp_info_vnc_servers(mon
, info
->server
);
688 hmp_info_vnc_clients(mon
, info
->clients
);
690 /* The server entry displays its auth, we only
691 * need to display in the case of 'reverse' connections
692 * where there's no server.
694 hmp_info_vnc_authcrypt(mon
, " ", info
->auth
,
695 info
->has_vencrypt
? &info
->vencrypt
: NULL
);
697 if (info
->has_display
) {
698 monitor_printf(mon
, " Display: %s\n", info
->display
);
700 info2l
= info2l
->next
;
703 qapi_free_VncInfo2List(info2l
);
708 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
710 SpiceChannelList
*chan
;
712 const char *channel_name
;
713 const char * const channel_names
[] = {
714 [SPICE_CHANNEL_MAIN
] = "main",
715 [SPICE_CHANNEL_DISPLAY
] = "display",
716 [SPICE_CHANNEL_INPUTS
] = "inputs",
717 [SPICE_CHANNEL_CURSOR
] = "cursor",
718 [SPICE_CHANNEL_PLAYBACK
] = "playback",
719 [SPICE_CHANNEL_RECORD
] = "record",
720 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
721 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
722 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
723 [SPICE_CHANNEL_PORT
] = "port",
725 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
726 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
727 * as quick fix for build failures with older versions. */
728 [SPICE_CHANNEL_WEBDAV
] = "webdav",
732 info
= qmp_query_spice(NULL
);
734 if (!info
->enabled
) {
735 monitor_printf(mon
, "Server: disabled\n");
739 monitor_printf(mon
, "Server:\n");
740 if (info
->has_port
) {
741 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
742 info
->host
, info
->port
);
744 if (info
->has_tls_port
) {
745 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
746 info
->host
, info
->tls_port
);
748 monitor_printf(mon
, " migrated: %s\n",
749 info
->migrated
? "true" : "false");
750 monitor_printf(mon
, " auth: %s\n", info
->auth
);
751 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
752 monitor_printf(mon
, " mouse-mode: %s\n",
753 SpiceQueryMouseMode_str(info
->mouse_mode
));
755 if (!info
->has_channels
|| info
->channels
== NULL
) {
756 monitor_printf(mon
, "Channels: none\n");
758 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
759 monitor_printf(mon
, "Channel:\n");
760 monitor_printf(mon
, " address: %s:%s%s\n",
761 chan
->value
->host
, chan
->value
->port
,
762 chan
->value
->tls
? " [tls]" : "");
763 monitor_printf(mon
, " session: %" PRId64
"\n",
764 chan
->value
->connection_id
);
765 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
766 chan
->value
->channel_type
, chan
->value
->channel_id
);
768 channel_name
= "unknown";
769 if (chan
->value
->channel_type
> 0 &&
770 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
771 channel_names
[chan
->value
->channel_type
]) {
772 channel_name
= channel_names
[chan
->value
->channel_type
];
775 monitor_printf(mon
, " channel name: %s\n", channel_name
);
780 qapi_free_SpiceInfo(info
);
784 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
789 info
= qmp_query_balloon(&err
);
791 hmp_handle_error(mon
, &err
);
795 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
797 qapi_free_BalloonInfo(info
);
800 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
802 PciMemoryRegionList
*region
;
804 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
805 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
806 dev
->slot
, dev
->function
);
807 monitor_printf(mon
, " ");
809 if (dev
->class_info
->has_desc
) {
810 monitor_printf(mon
, "%s", dev
->class_info
->desc
);
812 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
->q_class
);
815 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
816 dev
->id
->vendor
, dev
->id
->device
);
819 monitor_printf(mon
, " IRQ %" PRId64
".\n", dev
->irq
);
822 if (dev
->has_pci_bridge
) {
823 monitor_printf(mon
, " BUS %" PRId64
".\n",
824 dev
->pci_bridge
->bus
->number
);
825 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
826 dev
->pci_bridge
->bus
->secondary
);
827 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
828 dev
->pci_bridge
->bus
->subordinate
);
830 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
831 dev
->pci_bridge
->bus
->io_range
->base
,
832 dev
->pci_bridge
->bus
->io_range
->limit
);
835 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
836 dev
->pci_bridge
->bus
->memory_range
->base
,
837 dev
->pci_bridge
->bus
->memory_range
->limit
);
839 monitor_printf(mon
, " prefetchable memory range "
840 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
841 dev
->pci_bridge
->bus
->prefetchable_range
->base
,
842 dev
->pci_bridge
->bus
->prefetchable_range
->limit
);
845 for (region
= dev
->regions
; region
; region
= region
->next
) {
848 addr
= region
->value
->address
;
849 size
= region
->value
->size
;
851 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
853 if (!strcmp(region
->value
->type
, "io")) {
854 monitor_printf(mon
, "I/O at 0x%04" PRIx64
855 " [0x%04" PRIx64
"].\n",
856 addr
, addr
+ size
- 1);
858 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
859 " [0x%08" PRIx64
"].\n",
860 region
->value
->mem_type_64
? 64 : 32,
861 region
->value
->prefetch
? " prefetchable" : "",
862 addr
, addr
+ size
- 1);
866 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
868 if (dev
->has_pci_bridge
) {
869 if (dev
->pci_bridge
->has_devices
) {
870 PciDeviceInfoList
*cdev
;
871 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
872 hmp_info_pci_device(mon
, cdev
->value
);
878 static int hmp_info_irq_foreach(Object
*obj
, void *opaque
)
880 InterruptStatsProvider
*intc
;
881 InterruptStatsProviderClass
*k
;
882 Monitor
*mon
= opaque
;
884 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
885 intc
= INTERRUPT_STATS_PROVIDER(obj
);
886 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
887 uint64_t *irq_counts
;
888 unsigned int nb_irqs
, i
;
889 if (k
->get_statistics
&&
890 k
->get_statistics(intc
, &irq_counts
, &nb_irqs
)) {
892 monitor_printf(mon
, "IRQ statistics for %s:\n",
893 object_get_typename(obj
));
894 for (i
= 0; i
< nb_irqs
; i
++) {
895 if (irq_counts
[i
] > 0) {
896 monitor_printf(mon
, "%2d: %" PRId64
"\n", i
,
902 monitor_printf(mon
, "IRQ statistics not available for %s.\n",
903 object_get_typename(obj
));
910 void hmp_info_irq(Monitor
*mon
, const QDict
*qdict
)
912 object_child_foreach_recursive(object_get_root(),
913 hmp_info_irq_foreach
, mon
);
916 static int hmp_info_pic_foreach(Object
*obj
, void *opaque
)
918 InterruptStatsProvider
*intc
;
919 InterruptStatsProviderClass
*k
;
920 Monitor
*mon
= opaque
;
922 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
923 intc
= INTERRUPT_STATS_PROVIDER(obj
);
924 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
926 k
->print_info(intc
, mon
);
928 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
929 object_get_typename(obj
));
936 void hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
938 object_child_foreach_recursive(object_get_root(),
939 hmp_info_pic_foreach
, mon
);
942 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
944 PciInfoList
*info_list
, *info
;
947 info_list
= qmp_query_pci(&err
);
949 monitor_printf(mon
, "PCI devices not supported\n");
954 for (info
= info_list
; info
; info
= info
->next
) {
955 PciDeviceInfoList
*dev
;
957 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
958 hmp_info_pci_device(mon
, dev
->value
);
962 qapi_free_PciInfoList(info_list
);
965 void hmp_info_block_jobs(Monitor
*mon
, const QDict
*qdict
)
967 BlockJobInfoList
*list
;
970 list
= qmp_query_block_jobs(&err
);
974 monitor_printf(mon
, "No active jobs\n");
979 if (strcmp(list
->value
->type
, "stream") == 0) {
980 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
981 " of %" PRId64
" bytes, speed limit %" PRId64
988 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
989 " of %" PRId64
" bytes, speed limit %" PRId64
1000 qapi_free_BlockJobInfoList(list
);
1003 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
1005 TPMInfoList
*info_list
, *info
;
1008 TPMPassthroughOptions
*tpo
;
1009 TPMEmulatorOptions
*teo
;
1011 info_list
= qmp_query_tpm(&err
);
1013 monitor_printf(mon
, "TPM device not supported\n");
1019 monitor_printf(mon
, "TPM device:\n");
1022 for (info
= info_list
; info
; info
= info
->next
) {
1023 TPMInfo
*ti
= info
->value
;
1024 monitor_printf(mon
, " tpm%d: model=%s\n",
1025 c
, TpmModel_str(ti
->model
));
1027 monitor_printf(mon
, " \\ %s: type=%s",
1028 ti
->id
, TpmTypeOptionsKind_str(ti
->options
->type
));
1030 switch (ti
->options
->type
) {
1031 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH
:
1032 tpo
= ti
->options
->u
.passthrough
.data
;
1033 monitor_printf(mon
, "%s%s%s%s",
1034 tpo
->has_path
? ",path=" : "",
1035 tpo
->has_path
? tpo
->path
: "",
1036 tpo
->has_cancel_path
? ",cancel-path=" : "",
1037 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
1039 case TPM_TYPE_OPTIONS_KIND_EMULATOR
:
1040 teo
= ti
->options
->u
.emulator
.data
;
1041 monitor_printf(mon
, ",chardev=%s", teo
->chardev
);
1043 case TPM_TYPE_OPTIONS_KIND__MAX
:
1046 monitor_printf(mon
, "\n");
1049 qapi_free_TPMInfoList(info_list
);
1052 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
1054 monitor_suspend(mon
);
1058 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
1063 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
1065 qmp_system_reset(NULL
);
1068 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
1070 qmp_system_powerdown(NULL
);
1073 void hmp_exit_preconfig(Monitor
*mon
, const QDict
*qdict
)
1077 qmp_exit_preconfig(&err
);
1078 hmp_handle_error(mon
, &err
);
1081 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
1085 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1086 use it are converted to the QAPI */
1087 cpu_index
= qdict_get_int(qdict
, "index");
1088 if (monitor_set_cpu(cpu_index
) < 0) {
1089 monitor_printf(mon
, "invalid CPU index\n");
1093 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
1095 uint32_t size
= qdict_get_int(qdict
, "size");
1096 const char *filename
= qdict_get_str(qdict
, "filename");
1097 uint64_t addr
= qdict_get_int(qdict
, "val");
1099 int cpu_index
= monitor_get_cpu_index();
1101 if (cpu_index
< 0) {
1102 monitor_printf(mon
, "No CPU available\n");
1106 qmp_memsave(addr
, size
, filename
, true, cpu_index
, &err
);
1107 hmp_handle_error(mon
, &err
);
1110 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
1112 uint32_t size
= qdict_get_int(qdict
, "size");
1113 const char *filename
= qdict_get_str(qdict
, "filename");
1114 uint64_t addr
= qdict_get_int(qdict
, "val");
1117 qmp_pmemsave(addr
, size
, filename
, &err
);
1118 hmp_handle_error(mon
, &err
);
1121 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
1123 const char *chardev
= qdict_get_str(qdict
, "device");
1124 const char *data
= qdict_get_str(qdict
, "data");
1127 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
1129 hmp_handle_error(mon
, &err
);
1132 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
1134 uint32_t size
= qdict_get_int(qdict
, "size");
1135 const char *chardev
= qdict_get_str(qdict
, "device");
1140 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1142 hmp_handle_error(mon
, &err
);
1146 for (i
= 0; data
[i
]; i
++) {
1147 unsigned char ch
= data
[i
];
1150 monitor_printf(mon
, "\\\\");
1151 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1152 monitor_printf(mon
, "\\u%04X", ch
);
1154 monitor_printf(mon
, "%c", ch
);
1158 monitor_printf(mon
, "\n");
1162 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1167 hmp_handle_error(mon
, &err
);
1170 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1172 qmp_system_wakeup(NULL
);
1175 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
1179 qmp_inject_nmi(&err
);
1180 hmp_handle_error(mon
, &err
);
1183 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
1185 const char *name
= qdict_get_str(qdict
, "name");
1186 bool up
= qdict_get_bool(qdict
, "up");
1189 qmp_set_link(name
, up
, &err
);
1190 hmp_handle_error(mon
, &err
);
1193 void hmp_block_passwd(Monitor
*mon
, const QDict
*qdict
)
1195 const char *device
= qdict_get_str(qdict
, "device");
1196 const char *password
= qdict_get_str(qdict
, "password");
1199 qmp_block_passwd(true, device
, false, NULL
, password
, &err
);
1200 hmp_handle_error(mon
, &err
);
1203 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
1205 int64_t value
= qdict_get_int(qdict
, "value");
1208 qmp_balloon(value
, &err
);
1209 hmp_handle_error(mon
, &err
);
1212 void hmp_block_resize(Monitor
*mon
, const QDict
*qdict
)
1214 const char *device
= qdict_get_str(qdict
, "device");
1215 int64_t size
= qdict_get_int(qdict
, "size");
1218 qmp_block_resize(true, device
, false, NULL
, size
, &err
);
1219 hmp_handle_error(mon
, &err
);
1222 void hmp_drive_mirror(Monitor
*mon
, const QDict
*qdict
)
1224 const char *filename
= qdict_get_str(qdict
, "target");
1225 const char *format
= qdict_get_try_str(qdict
, "format");
1226 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1227 bool full
= qdict_get_try_bool(qdict
, "full", false);
1229 DriveMirror mirror
= {
1230 .device
= (char *)qdict_get_str(qdict
, "device"),
1231 .target
= (char *)filename
,
1232 .has_format
= !!format
,
1233 .format
= (char *)format
,
1234 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1236 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1241 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1242 hmp_handle_error(mon
, &err
);
1245 qmp_drive_mirror(&mirror
, &err
);
1246 hmp_handle_error(mon
, &err
);
1249 void hmp_drive_backup(Monitor
*mon
, const QDict
*qdict
)
1251 const char *device
= qdict_get_str(qdict
, "device");
1252 const char *filename
= qdict_get_str(qdict
, "target");
1253 const char *format
= qdict_get_try_str(qdict
, "format");
1254 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1255 bool full
= qdict_get_try_bool(qdict
, "full", false);
1256 bool compress
= qdict_get_try_bool(qdict
, "compress", false);
1258 DriveBackup backup
= {
1259 .device
= (char *)device
,
1260 .target
= (char *)filename
,
1261 .has_format
= !!format
,
1262 .format
= (char *)format
,
1263 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1265 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1266 .has_compress
= !!compress
,
1267 .compress
= compress
,
1271 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1272 hmp_handle_error(mon
, &err
);
1276 qmp_drive_backup(&backup
, &err
);
1277 hmp_handle_error(mon
, &err
);
1280 void hmp_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
)
1282 const char *device
= qdict_get_str(qdict
, "device");
1283 const char *filename
= qdict_get_try_str(qdict
, "snapshot-file");
1284 const char *format
= qdict_get_try_str(qdict
, "format");
1285 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1286 enum NewImageMode mode
;
1290 /* In the future, if 'snapshot-file' is not specified, the snapshot
1291 will be taken internally. Today it's actually required. */
1292 error_setg(&err
, QERR_MISSING_PARAMETER
, "snapshot-file");
1293 hmp_handle_error(mon
, &err
);
1297 mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1298 qmp_blockdev_snapshot_sync(true, device
, false, NULL
,
1299 filename
, false, NULL
,
1302 hmp_handle_error(mon
, &err
);
1305 void hmp_snapshot_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1307 const char *device
= qdict_get_str(qdict
, "device");
1308 const char *name
= qdict_get_str(qdict
, "name");
1311 qmp_blockdev_snapshot_internal_sync(device
, name
, &err
);
1312 hmp_handle_error(mon
, &err
);
1315 void hmp_snapshot_delete_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1317 const char *device
= qdict_get_str(qdict
, "device");
1318 const char *name
= qdict_get_str(qdict
, "name");
1319 const char *id
= qdict_get_try_str(qdict
, "id");
1322 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
1324 hmp_handle_error(mon
, &err
);
1327 void hmp_loadvm(Monitor
*mon
, const QDict
*qdict
)
1329 int saved_vm_running
= runstate_is_running();
1330 const char *name
= qdict_get_str(qdict
, "name");
1333 vm_stop(RUN_STATE_RESTORE_VM
);
1335 if (load_snapshot(name
, &err
) == 0 && saved_vm_running
) {
1338 hmp_handle_error(mon
, &err
);
1341 void hmp_savevm(Monitor
*mon
, const QDict
*qdict
)
1345 save_snapshot(qdict_get_try_str(qdict
, "name"), &err
);
1346 hmp_handle_error(mon
, &err
);
1349 void hmp_delvm(Monitor
*mon
, const QDict
*qdict
)
1351 BlockDriverState
*bs
;
1353 const char *name
= qdict_get_str(qdict
, "name");
1355 if (bdrv_all_delete_snapshot(name
, &bs
, &err
) < 0) {
1356 error_reportf_err(err
,
1357 "Error while deleting snapshot on device '%s': ",
1358 bdrv_get_device_name(bs
));
1362 void hmp_info_snapshots(Monitor
*mon
, const QDict
*qdict
)
1364 BlockDriverState
*bs
, *bs1
;
1365 BdrvNextIterator it1
;
1366 QEMUSnapshotInfo
*sn_tab
, *sn
;
1367 bool no_snapshot
= true;
1370 int *global_snapshots
;
1371 AioContext
*aio_context
;
1373 typedef struct SnapshotEntry
{
1374 QEMUSnapshotInfo sn
;
1375 QTAILQ_ENTRY(SnapshotEntry
) next
;
1378 typedef struct ImageEntry
{
1379 const char *imagename
;
1380 QTAILQ_ENTRY(ImageEntry
) next
;
1381 QTAILQ_HEAD(, SnapshotEntry
) snapshots
;
1384 QTAILQ_HEAD(, ImageEntry
) image_list
=
1385 QTAILQ_HEAD_INITIALIZER(image_list
);
1387 ImageEntry
*image_entry
, *next_ie
;
1388 SnapshotEntry
*snapshot_entry
;
1390 bs
= bdrv_all_find_vmstate_bs();
1392 monitor_printf(mon
, "No available block device supports snapshots\n");
1395 aio_context
= bdrv_get_aio_context(bs
);
1397 aio_context_acquire(aio_context
);
1398 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1399 aio_context_release(aio_context
);
1402 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1406 for (bs1
= bdrv_first(&it1
); bs1
; bs1
= bdrv_next(&it1
)) {
1410 AioContext
*ctx
= bdrv_get_aio_context(bs1
);
1412 aio_context_acquire(ctx
);
1413 if (bdrv_can_snapshot(bs1
)) {
1415 bs1_nb_sns
= bdrv_snapshot_list(bs1
, &sn
);
1416 if (bs1_nb_sns
> 0) {
1417 no_snapshot
= false;
1418 ie
= g_new0(ImageEntry
, 1);
1419 ie
->imagename
= bdrv_get_device_name(bs1
);
1420 QTAILQ_INIT(&ie
->snapshots
);
1421 QTAILQ_INSERT_TAIL(&image_list
, ie
, next
);
1422 for (i
= 0; i
< bs1_nb_sns
; i
++) {
1423 se
= g_new0(SnapshotEntry
, 1);
1425 QTAILQ_INSERT_TAIL(&ie
->snapshots
, se
, next
);
1430 aio_context_release(ctx
);
1434 monitor_printf(mon
, "There is no snapshot available.\n");
1438 global_snapshots
= g_new0(int, nb_sns
);
1440 for (i
= 0; i
< nb_sns
; i
++) {
1441 SnapshotEntry
*next_sn
;
1442 if (bdrv_all_find_snapshot(sn_tab
[i
].name
, &bs1
) == 0) {
1443 global_snapshots
[total
] = i
;
1445 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1446 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
,
1448 if (!strcmp(sn_tab
[i
].name
, snapshot_entry
->sn
.name
)) {
1449 QTAILQ_REMOVE(&image_entry
->snapshots
, snapshot_entry
,
1451 g_free(snapshot_entry
);
1458 monitor_printf(mon
, "List of snapshots present on all disks:\n");
1461 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1462 monitor_printf(mon
, "\n");
1463 for (i
= 0; i
< total
; i
++) {
1464 sn
= &sn_tab
[global_snapshots
[i
]];
1465 /* The ID is not guaranteed to be the same on all images, so
1468 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), "--");
1469 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, sn
);
1470 monitor_printf(mon
, "\n");
1473 monitor_printf(mon
, "None\n");
1476 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1477 if (QTAILQ_EMPTY(&image_entry
->snapshots
)) {
1481 "\nList of partial (non-loadable) snapshots on '%s':\n",
1482 image_entry
->imagename
);
1483 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1484 monitor_printf(mon
, "\n");
1485 QTAILQ_FOREACH(snapshot_entry
, &image_entry
->snapshots
, next
) {
1486 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
,
1487 &snapshot_entry
->sn
);
1488 monitor_printf(mon
, "\n");
1492 QTAILQ_FOREACH_SAFE(image_entry
, &image_list
, next
, next_ie
) {
1493 SnapshotEntry
*next_sn
;
1494 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
, next
,
1496 g_free(snapshot_entry
);
1498 g_free(image_entry
);
1501 g_free(global_snapshots
);
1505 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1507 qmp_migrate_cancel(NULL
);
1510 void hmp_migrate_continue(Monitor
*mon
, const QDict
*qdict
)
1513 const char *state
= qdict_get_str(qdict
, "state");
1514 int val
= qapi_enum_parse(&MigrationStatus_lookup
, state
, -1, &err
);
1517 qmp_migrate_continue(val
, &err
);
1520 hmp_handle_error(mon
, &err
);
1523 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
1526 const char *uri
= qdict_get_str(qdict
, "uri");
1528 qmp_migrate_incoming(uri
, &err
);
1530 hmp_handle_error(mon
, &err
);
1533 void hmp_migrate_recover(Monitor
*mon
, const QDict
*qdict
)
1536 const char *uri
= qdict_get_str(qdict
, "uri");
1538 qmp_migrate_recover(uri
, &err
);
1540 hmp_handle_error(mon
, &err
);
1543 void hmp_migrate_pause(Monitor
*mon
, const QDict
*qdict
)
1547 qmp_migrate_pause(&err
);
1549 hmp_handle_error(mon
, &err
);
1552 /* Kept for backwards compatibility */
1553 void hmp_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
1555 double value
= qdict_get_double(qdict
, "value");
1556 qmp_migrate_set_downtime(value
, NULL
);
1559 void hmp_migrate_set_cache_size(Monitor
*mon
, const QDict
*qdict
)
1561 int64_t value
= qdict_get_int(qdict
, "value");
1564 qmp_migrate_set_cache_size(value
, &err
);
1565 hmp_handle_error(mon
, &err
);
1568 /* Kept for backwards compatibility */
1569 void hmp_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
1571 int64_t value
= qdict_get_int(qdict
, "value");
1572 qmp_migrate_set_speed(value
, NULL
);
1575 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1577 const char *cap
= qdict_get_str(qdict
, "capability");
1578 bool state
= qdict_get_bool(qdict
, "state");
1580 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1583 val
= qapi_enum_parse(&MigrationCapability_lookup
, cap
, -1, &err
);
1588 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1589 caps
->value
->capability
= val
;
1590 caps
->value
->state
= state
;
1592 qmp_migrate_set_capabilities(caps
, &err
);
1595 qapi_free_MigrationCapabilityStatusList(caps
);
1596 hmp_handle_error(mon
, &err
);
1599 void hmp_migrate_set_parameter(Monitor
*mon
, const QDict
*qdict
)
1601 const char *param
= qdict_get_str(qdict
, "parameter");
1602 const char *valuestr
= qdict_get_str(qdict
, "value");
1603 Visitor
*v
= string_input_visitor_new(valuestr
);
1604 MigrateSetParameters
*p
= g_new0(MigrateSetParameters
, 1);
1605 uint64_t valuebw
= 0;
1606 uint64_t cache_size
;
1610 val
= qapi_enum_parse(&MigrationParameter_lookup
, param
, -1, &err
);
1616 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1617 p
->has_compress_level
= true;
1618 visit_type_int(v
, param
, &p
->compress_level
, &err
);
1620 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1621 p
->has_compress_threads
= true;
1622 visit_type_int(v
, param
, &p
->compress_threads
, &err
);
1624 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1625 p
->has_decompress_threads
= true;
1626 visit_type_int(v
, param
, &p
->decompress_threads
, &err
);
1628 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
:
1629 p
->has_cpu_throttle_initial
= true;
1630 visit_type_int(v
, param
, &p
->cpu_throttle_initial
, &err
);
1632 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
:
1633 p
->has_cpu_throttle_increment
= true;
1634 visit_type_int(v
, param
, &p
->cpu_throttle_increment
, &err
);
1636 case MIGRATION_PARAMETER_TLS_CREDS
:
1637 p
->has_tls_creds
= true;
1638 p
->tls_creds
= g_new0(StrOrNull
, 1);
1639 p
->tls_creds
->type
= QTYPE_QSTRING
;
1640 visit_type_str(v
, param
, &p
->tls_creds
->u
.s
, &err
);
1642 case MIGRATION_PARAMETER_TLS_HOSTNAME
:
1643 p
->has_tls_hostname
= true;
1644 p
->tls_hostname
= g_new0(StrOrNull
, 1);
1645 p
->tls_hostname
->type
= QTYPE_QSTRING
;
1646 visit_type_str(v
, param
, &p
->tls_hostname
->u
.s
, &err
);
1648 case MIGRATION_PARAMETER_MAX_BANDWIDTH
:
1649 p
->has_max_bandwidth
= true;
1651 * Can't use visit_type_size() here, because it
1652 * defaults to Bytes rather than Mebibytes.
1654 ret
= qemu_strtosz_MiB(valuestr
, NULL
, &valuebw
);
1655 if (ret
< 0 || valuebw
> INT64_MAX
1656 || (size_t)valuebw
!= valuebw
) {
1657 error_setg(&err
, "Invalid size %s", valuestr
);
1660 p
->max_bandwidth
= valuebw
;
1662 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1663 p
->has_downtime_limit
= true;
1664 visit_type_int(v
, param
, &p
->downtime_limit
, &err
);
1666 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
:
1667 p
->has_x_checkpoint_delay
= true;
1668 visit_type_int(v
, param
, &p
->x_checkpoint_delay
, &err
);
1670 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL
:
1671 p
->has_block_incremental
= true;
1672 visit_type_bool(v
, param
, &p
->block_incremental
, &err
);
1674 case MIGRATION_PARAMETER_X_MULTIFD_CHANNELS
:
1675 p
->has_x_multifd_channels
= true;
1676 visit_type_int(v
, param
, &p
->x_multifd_channels
, &err
);
1678 case MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT
:
1679 p
->has_x_multifd_page_count
= true;
1680 visit_type_int(v
, param
, &p
->x_multifd_page_count
, &err
);
1682 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
:
1683 p
->has_xbzrle_cache_size
= true;
1684 visit_type_size(v
, param
, &cache_size
, &err
);
1685 if (err
|| cache_size
> INT64_MAX
1686 || (size_t)cache_size
!= cache_size
) {
1687 error_setg(&err
, "Invalid size %s", valuestr
);
1690 p
->xbzrle_cache_size
= cache_size
;
1692 case MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH
:
1693 p
->has_max_postcopy_bandwidth
= true;
1694 visit_type_size(v
, param
, &p
->max_postcopy_bandwidth
, &err
);
1704 qmp_migrate_set_parameters(p
, &err
);
1707 qapi_free_MigrateSetParameters(p
);
1709 hmp_handle_error(mon
, &err
);
1712 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
1715 const char *protocol
= qdict_get_str(qdict
, "protocol");
1716 const char *hostname
= qdict_get_str(qdict
, "hostname");
1717 bool has_port
= qdict_haskey(qdict
, "port");
1718 int port
= qdict_get_try_int(qdict
, "port", -1);
1719 bool has_tls_port
= qdict_haskey(qdict
, "tls-port");
1720 int tls_port
= qdict_get_try_int(qdict
, "tls-port", -1);
1721 const char *cert_subject
= qdict_get_try_str(qdict
, "cert-subject");
1723 qmp_client_migrate_info(protocol
, hostname
,
1724 has_port
, port
, has_tls_port
, tls_port
,
1725 !!cert_subject
, cert_subject
, &err
);
1726 hmp_handle_error(mon
, &err
);
1729 void hmp_migrate_start_postcopy(Monitor
*mon
, const QDict
*qdict
)
1732 qmp_migrate_start_postcopy(&err
);
1733 hmp_handle_error(mon
, &err
);
1736 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
1740 qmp_x_colo_lost_heartbeat(&err
);
1741 hmp_handle_error(mon
, &err
);
1744 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1746 const char *protocol
= qdict_get_str(qdict
, "protocol");
1747 const char *password
= qdict_get_str(qdict
, "password");
1748 const char *connected
= qdict_get_try_str(qdict
, "connected");
1751 qmp_set_password(protocol
, password
, !!connected
, connected
, &err
);
1752 hmp_handle_error(mon
, &err
);
1755 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1757 const char *protocol
= qdict_get_str(qdict
, "protocol");
1758 const char *whenstr
= qdict_get_str(qdict
, "time");
1761 qmp_expire_password(protocol
, whenstr
, &err
);
1762 hmp_handle_error(mon
, &err
);
1765 void hmp_eject(Monitor
*mon
, const QDict
*qdict
)
1767 bool force
= qdict_get_try_bool(qdict
, "force", false);
1768 const char *device
= qdict_get_str(qdict
, "device");
1771 qmp_eject(true, device
, false, NULL
, true, force
, &err
);
1772 hmp_handle_error(mon
, &err
);
1775 static void hmp_change_read_arg(void *opaque
, const char *password
,
1776 void *readline_opaque
)
1778 qmp_change_vnc_password(password
, NULL
);
1779 monitor_read_command(opaque
, 1);
1782 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1784 const char *device
= qdict_get_str(qdict
, "device");
1785 const char *target
= qdict_get_str(qdict
, "target");
1786 const char *arg
= qdict_get_try_str(qdict
, "arg");
1787 const char *read_only
= qdict_get_try_str(qdict
, "read-only-mode");
1788 BlockdevChangeReadOnlyMode read_only_mode
= 0;
1791 if (strcmp(device
, "vnc") == 0) {
1794 "Parameter 'read-only-mode' is invalid for VNC\n");
1797 if (strcmp(target
, "passwd") == 0 ||
1798 strcmp(target
, "password") == 0) {
1800 monitor_read_password(mon
, hmp_change_read_arg
, NULL
);
1804 qmp_change("vnc", target
, !!arg
, arg
, &err
);
1808 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup
,
1810 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
1812 hmp_handle_error(mon
, &err
);
1817 qmp_blockdev_change_medium(true, device
, false, NULL
, target
,
1818 !!arg
, arg
, !!read_only
, read_only_mode
,
1822 hmp_handle_error(mon
, &err
);
1825 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
1828 char *device
= (char *) qdict_get_str(qdict
, "device");
1829 BlockIOThrottle throttle
= {
1830 .bps
= qdict_get_int(qdict
, "bps"),
1831 .bps_rd
= qdict_get_int(qdict
, "bps_rd"),
1832 .bps_wr
= qdict_get_int(qdict
, "bps_wr"),
1833 .iops
= qdict_get_int(qdict
, "iops"),
1834 .iops_rd
= qdict_get_int(qdict
, "iops_rd"),
1835 .iops_wr
= qdict_get_int(qdict
, "iops_wr"),
1838 /* qmp_block_set_io_throttle has separate parameters for the
1839 * (deprecated) block device name and the qdev ID but the HMP
1840 * version has only one, so we must decide which one to pass. */
1841 if (blk_by_name(device
)) {
1842 throttle
.has_device
= true;
1843 throttle
.device
= device
;
1845 throttle
.has_id
= true;
1846 throttle
.id
= device
;
1849 qmp_block_set_io_throttle(&throttle
, &err
);
1850 hmp_handle_error(mon
, &err
);
1853 void hmp_block_stream(Monitor
*mon
, const QDict
*qdict
)
1855 Error
*error
= NULL
;
1856 const char *device
= qdict_get_str(qdict
, "device");
1857 const char *base
= qdict_get_try_str(qdict
, "base");
1858 int64_t speed
= qdict_get_try_int(qdict
, "speed", 0);
1860 qmp_block_stream(true, device
, device
, base
!= NULL
, base
, false, NULL
,
1861 false, NULL
, qdict_haskey(qdict
, "speed"), speed
,
1862 true, BLOCKDEV_ON_ERROR_REPORT
, &error
);
1864 hmp_handle_error(mon
, &error
);
1867 void hmp_block_job_set_speed(Monitor
*mon
, const QDict
*qdict
)
1869 Error
*error
= NULL
;
1870 const char *device
= qdict_get_str(qdict
, "device");
1871 int64_t value
= qdict_get_int(qdict
, "speed");
1873 qmp_block_job_set_speed(device
, value
, &error
);
1875 hmp_handle_error(mon
, &error
);
1878 void hmp_block_job_cancel(Monitor
*mon
, const QDict
*qdict
)
1880 Error
*error
= NULL
;
1881 const char *device
= qdict_get_str(qdict
, "device");
1882 bool force
= qdict_get_try_bool(qdict
, "force", false);
1884 qmp_block_job_cancel(device
, true, force
, &error
);
1886 hmp_handle_error(mon
, &error
);
1889 void hmp_block_job_pause(Monitor
*mon
, const QDict
*qdict
)
1891 Error
*error
= NULL
;
1892 const char *device
= qdict_get_str(qdict
, "device");
1894 qmp_block_job_pause(device
, &error
);
1896 hmp_handle_error(mon
, &error
);
1899 void hmp_block_job_resume(Monitor
*mon
, const QDict
*qdict
)
1901 Error
*error
= NULL
;
1902 const char *device
= qdict_get_str(qdict
, "device");
1904 qmp_block_job_resume(device
, &error
);
1906 hmp_handle_error(mon
, &error
);
1909 void hmp_block_job_complete(Monitor
*mon
, const QDict
*qdict
)
1911 Error
*error
= NULL
;
1912 const char *device
= qdict_get_str(qdict
, "device");
1914 qmp_block_job_complete(device
, &error
);
1916 hmp_handle_error(mon
, &error
);
1919 typedef struct HMPMigrationStatus
1923 bool is_block_migration
;
1924 } HMPMigrationStatus
;
1926 static void hmp_migrate_status_cb(void *opaque
)
1928 HMPMigrationStatus
*status
= opaque
;
1929 MigrationInfo
*info
;
1931 info
= qmp_query_migrate(NULL
);
1932 if (!info
->has_status
|| info
->status
== MIGRATION_STATUS_ACTIVE
||
1933 info
->status
== MIGRATION_STATUS_SETUP
) {
1934 if (info
->has_disk
) {
1937 if (info
->disk
->remaining
) {
1938 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
1943 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
1944 monitor_flush(status
->mon
);
1947 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1949 if (status
->is_block_migration
) {
1950 monitor_printf(status
->mon
, "\n");
1952 if (info
->has_error_desc
) {
1953 error_report("%s", info
->error_desc
);
1955 monitor_resume(status
->mon
);
1956 timer_del(status
->timer
);
1960 qapi_free_MigrationInfo(info
);
1963 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
1965 bool detach
= qdict_get_try_bool(qdict
, "detach", false);
1966 bool blk
= qdict_get_try_bool(qdict
, "blk", false);
1967 bool inc
= qdict_get_try_bool(qdict
, "inc", false);
1968 bool resume
= qdict_get_try_bool(qdict
, "resume", false);
1969 const char *uri
= qdict_get_str(qdict
, "uri");
1972 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
,
1973 false, false, true, resume
, &err
);
1975 hmp_handle_error(mon
, &err
);
1980 HMPMigrationStatus
*status
;
1982 if (monitor_suspend(mon
) < 0) {
1983 monitor_printf(mon
, "terminal does not allow synchronous "
1984 "migration, continuing detached\n");
1988 status
= g_malloc0(sizeof(*status
));
1990 status
->is_block_migration
= blk
|| inc
;
1991 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
1993 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
1997 void hmp_device_add(Monitor
*mon
, const QDict
*qdict
)
2001 qmp_device_add((QDict
*)qdict
, NULL
, &err
);
2002 hmp_handle_error(mon
, &err
);
2005 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
2007 const char *id
= qdict_get_str(qdict
, "id");
2010 qmp_device_del(id
, &err
);
2011 hmp_handle_error(mon
, &err
);
2014 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
2017 bool win_dmp
= qdict_get_try_bool(qdict
, "windmp", false);
2018 bool paging
= qdict_get_try_bool(qdict
, "paging", false);
2019 bool zlib
= qdict_get_try_bool(qdict
, "zlib", false);
2020 bool lzo
= qdict_get_try_bool(qdict
, "lzo", false);
2021 bool snappy
= qdict_get_try_bool(qdict
, "snappy", false);
2022 const char *file
= qdict_get_str(qdict
, "filename");
2023 bool has_begin
= qdict_haskey(qdict
, "begin");
2024 bool has_length
= qdict_haskey(qdict
, "length");
2025 bool has_detach
= qdict_haskey(qdict
, "detach");
2028 bool detach
= false;
2029 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
2032 if (zlib
+ lzo
+ snappy
+ win_dmp
> 1) {
2033 error_setg(&err
, "only one of '-z|-l|-s|-w' can be set");
2034 hmp_handle_error(mon
, &err
);
2039 dump_format
= DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
;
2043 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
2047 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
2051 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
2055 begin
= qdict_get_int(qdict
, "begin");
2058 length
= qdict_get_int(qdict
, "length");
2061 detach
= qdict_get_bool(qdict
, "detach");
2064 prot
= g_strconcat("file:", file
, NULL
);
2066 qmp_dump_guest_memory(paging
, prot
, true, detach
, has_begin
, begin
,
2067 has_length
, length
, true, dump_format
, &err
);
2068 hmp_handle_error(mon
, &err
);
2072 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
2077 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
2082 netdev_add(opts
, &err
);
2084 qemu_opts_del(opts
);
2088 hmp_handle_error(mon
, &err
);
2091 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
2093 const char *id
= qdict_get_str(qdict
, "id");
2096 qmp_netdev_del(id
, &err
);
2097 hmp_handle_error(mon
, &err
);
2100 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
2106 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
2108 hmp_handle_error(mon
, &err
);
2112 obj
= user_creatable_add_opts(opts
, &err
);
2113 qemu_opts_del(opts
);
2116 hmp_handle_error(mon
, &err
);
2123 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
2125 const char *fdname
= qdict_get_str(qdict
, "fdname");
2128 qmp_getfd(fdname
, &err
);
2129 hmp_handle_error(mon
, &err
);
2132 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
2134 const char *fdname
= qdict_get_str(qdict
, "fdname");
2137 qmp_closefd(fdname
, &err
);
2138 hmp_handle_error(mon
, &err
);
2141 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
2143 const char *keys
= qdict_get_str(qdict
, "keys");
2144 KeyValueList
*keylist
, *head
= NULL
, *tmp
= NULL
;
2145 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
2146 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
2152 separator
= strchr(keys
, '-');
2153 keyname_len
= separator
? separator
- keys
: strlen(keys
);
2155 /* Be compatible with old interface, convert user inputted "<" */
2156 if (keys
[0] == '<' && keyname_len
== 1) {
2161 keylist
= g_malloc0(sizeof(*keylist
));
2162 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
2168 tmp
->next
= keylist
;
2172 if (strstart(keys
, "0x", NULL
)) {
2174 int value
= strtoul(keys
, &endp
, 0);
2175 assert(endp
<= keys
+ keyname_len
);
2176 if (endp
!= keys
+ keyname_len
) {
2179 keylist
->value
->type
= KEY_VALUE_KIND_NUMBER
;
2180 keylist
->value
->u
.number
.data
= value
;
2182 int idx
= index_from_key(keys
, keyname_len
);
2183 if (idx
== Q_KEY_CODE__MAX
) {
2186 keylist
->value
->type
= KEY_VALUE_KIND_QCODE
;
2187 keylist
->value
->u
.qcode
.data
= idx
;
2193 keys
= separator
+ 1;
2196 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
2197 hmp_handle_error(mon
, &err
);
2200 qapi_free_KeyValueList(head
);
2204 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
2208 void hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
2210 const char *filename
= qdict_get_str(qdict
, "filename");
2211 const char *id
= qdict_get_try_str(qdict
, "device");
2212 int64_t head
= qdict_get_try_int(qdict
, "head", 0);
2215 qmp_screendump(filename
, id
!= NULL
, id
, id
!= NULL
, head
, &err
);
2216 hmp_handle_error(mon
, &err
);
2219 void hmp_nbd_server_start(Monitor
*mon
, const QDict
*qdict
)
2221 const char *uri
= qdict_get_str(qdict
, "uri");
2222 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2223 bool all
= qdict_get_try_bool(qdict
, "all", false);
2224 Error
*local_err
= NULL
;
2225 BlockInfoList
*block_list
, *info
;
2226 SocketAddress
*addr
;
2228 if (writable
&& !all
) {
2229 error_setg(&local_err
, "-w only valid together with -a");
2233 /* First check if the address is valid and start the server. */
2234 addr
= socket_parse(uri
, &local_err
);
2235 if (local_err
!= NULL
) {
2239 nbd_server_start(addr
, NULL
, &local_err
);
2240 qapi_free_SocketAddress(addr
);
2241 if (local_err
!= NULL
) {
2249 /* Then try adding all block devices. If one fails, close all and
2252 block_list
= qmp_query_block(NULL
);
2254 for (info
= block_list
; info
; info
= info
->next
) {
2255 if (!info
->value
->has_inserted
) {
2259 qmp_nbd_server_add(info
->value
->device
, false, NULL
,
2260 true, writable
, &local_err
);
2262 if (local_err
!= NULL
) {
2263 qmp_nbd_server_stop(NULL
);
2268 qapi_free_BlockInfoList(block_list
);
2271 hmp_handle_error(mon
, &local_err
);
2274 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
2276 const char *device
= qdict_get_str(qdict
, "device");
2277 const char *name
= qdict_get_try_str(qdict
, "name");
2278 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2279 Error
*local_err
= NULL
;
2281 qmp_nbd_server_add(device
, !!name
, name
, true, writable
, &local_err
);
2282 hmp_handle_error(mon
, &local_err
);
2285 void hmp_nbd_server_remove(Monitor
*mon
, const QDict
*qdict
)
2287 const char *name
= qdict_get_str(qdict
, "name");
2288 bool force
= qdict_get_try_bool(qdict
, "force", false);
2291 /* Rely on NBD_SERVER_REMOVE_MODE_SAFE being the default */
2292 qmp_nbd_server_remove(name
, force
, NBD_SERVER_REMOVE_MODE_HARD
, &err
);
2293 hmp_handle_error(mon
, &err
);
2296 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
2300 qmp_nbd_server_stop(&err
);
2301 hmp_handle_error(mon
, &err
);
2304 void hmp_cpu_add(Monitor
*mon
, const QDict
*qdict
)
2309 cpuid
= qdict_get_int(qdict
, "id");
2310 qmp_cpu_add(cpuid
, &err
);
2311 hmp_handle_error(mon
, &err
);
2314 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
2316 const char *args
= qdict_get_str(qdict
, "args");
2320 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
2322 error_setg(&err
, "Parsing chardev args failed");
2324 qemu_chr_new_from_opts(opts
, &err
);
2325 qemu_opts_del(opts
);
2327 hmp_handle_error(mon
, &err
);
2330 void hmp_chardev_change(Monitor
*mon
, const QDict
*qdict
)
2332 const char *args
= qdict_get_str(qdict
, "args");
2335 ChardevBackend
*backend
= NULL
;
2336 ChardevReturn
*ret
= NULL
;
2337 QemuOpts
*opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
,
2340 error_setg(&err
, "Parsing chardev args failed");
2344 id
= qdict_get_str(qdict
, "id");
2345 if (qemu_opts_id(opts
)) {
2346 error_setg(&err
, "Unexpected 'id' parameter");
2350 backend
= qemu_chr_parse_opts(opts
, &err
);
2355 ret
= qmp_chardev_change(id
, backend
, &err
);
2358 qapi_free_ChardevReturn(ret
);
2359 qapi_free_ChardevBackend(backend
);
2360 qemu_opts_del(opts
);
2361 hmp_handle_error(mon
, &err
);
2364 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
2366 Error
*local_err
= NULL
;
2368 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
2369 hmp_handle_error(mon
, &local_err
);
2372 void hmp_chardev_send_break(Monitor
*mon
, const QDict
*qdict
)
2374 Error
*local_err
= NULL
;
2376 qmp_chardev_send_break(qdict_get_str(qdict
, "id"), &local_err
);
2377 hmp_handle_error(mon
, &local_err
);
2380 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
2383 BlockBackend
*local_blk
= NULL
;
2384 const char* device
= qdict_get_str(qdict
, "device");
2385 const char* command
= qdict_get_str(qdict
, "command");
2389 blk
= blk_by_name(device
);
2391 BlockDriverState
*bs
= bdrv_lookup_bs(NULL
, device
, &err
);
2393 blk
= local_blk
= blk_new(0, BLK_PERM_ALL
);
2394 ret
= blk_insert_bs(blk
, bs
, &err
);
2404 * Notably absent: Proper permission management. This is sad, but it seems
2405 * almost impossible to achieve without changing the semantics and thereby
2406 * limiting the use cases of the qemu-io HMP command.
2408 * In an ideal world we would unconditionally create a new BlockBackend for
2409 * qemuio_command(), but we have commands like 'reopen' and want them to
2410 * take effect on the exact BlockBackend whose name the user passed instead
2411 * of just on a temporary copy of it.
2413 * Another problem is that deleting the temporary BlockBackend involves
2414 * draining all requests on it first, but some qemu-iotests cases want to
2415 * issue multiple aio_read/write requests and expect them to complete in
2416 * the background while the monitor has already returned.
2418 * This is also what prevents us from saving the original permissions and
2419 * restoring them later: We can't revoke permissions until all requests
2420 * have completed, and we don't know when that is nor can we really let
2421 * anything else run before we have revoken them to avoid race conditions.
2423 * What happens now is that command() in qemu-io-cmds.c can extend the
2424 * permissions if necessary for the qemu-io command. And they simply stay
2425 * extended, possibly resulting in a read-only guest device keeping write
2426 * permissions. Ugly, but it appears to be the lesser evil.
2428 qemuio_command(blk
, command
);
2431 blk_unref(local_blk
);
2432 hmp_handle_error(mon
, &err
);
2435 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
2437 const char *id
= qdict_get_str(qdict
, "id");
2440 user_creatable_del(id
, &err
);
2441 hmp_handle_error(mon
, &err
);
2444 void hmp_info_memdev(Monitor
*mon
, const QDict
*qdict
)
2447 MemdevList
*memdev_list
= qmp_query_memdev(&err
);
2448 MemdevList
*m
= memdev_list
;
2453 v
= string_output_visitor_new(false, &str
);
2454 visit_type_uint16List(v
, NULL
, &m
->value
->host_nodes
, NULL
);
2455 monitor_printf(mon
, "memory backend: %s\n", m
->value
->id
);
2456 monitor_printf(mon
, " size: %" PRId64
"\n", m
->value
->size
);
2457 monitor_printf(mon
, " merge: %s\n",
2458 m
->value
->merge
? "true" : "false");
2459 monitor_printf(mon
, " dump: %s\n",
2460 m
->value
->dump
? "true" : "false");
2461 monitor_printf(mon
, " prealloc: %s\n",
2462 m
->value
->prealloc
? "true" : "false");
2463 monitor_printf(mon
, " policy: %s\n",
2464 HostMemPolicy_str(m
->value
->policy
));
2465 visit_complete(v
, &str
);
2466 monitor_printf(mon
, " host nodes: %s\n", str
);
2473 monitor_printf(mon
, "\n");
2475 qapi_free_MemdevList(memdev_list
);
2476 hmp_handle_error(mon
, &err
);
2479 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
2482 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
2483 MemoryDeviceInfoList
*info
;
2484 MemoryDeviceInfo
*value
;
2485 PCDIMMDeviceInfo
*di
;
2487 for (info
= info_list
; info
; info
= info
->next
) {
2488 value
= info
->value
;
2491 switch (value
->type
) {
2492 case MEMORY_DEVICE_INFO_KIND_DIMM
:
2493 di
= value
->u
.dimm
.data
;
2496 case MEMORY_DEVICE_INFO_KIND_NVDIMM
:
2497 di
= value
->u
.nvdimm
.data
;
2506 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2507 MemoryDeviceInfoKind_str(value
->type
),
2508 di
->id
? di
->id
: "");
2509 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
2510 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
2511 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
2512 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
2513 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
2514 monitor_printf(mon
, " hotplugged: %s\n",
2515 di
->hotplugged
? "true" : "false");
2516 monitor_printf(mon
, " hotpluggable: %s\n",
2517 di
->hotpluggable
? "true" : "false");
2522 qapi_free_MemoryDeviceInfoList(info_list
);
2523 hmp_handle_error(mon
, &err
);
2526 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
2528 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
2529 IOThreadInfoList
*info
;
2530 IOThreadInfo
*value
;
2532 for (info
= info_list
; info
; info
= info
->next
) {
2533 value
= info
->value
;
2534 monitor_printf(mon
, "%s:\n", value
->id
);
2535 monitor_printf(mon
, " thread_id=%" PRId64
"\n", value
->thread_id
);
2536 monitor_printf(mon
, " poll-max-ns=%" PRId64
"\n", value
->poll_max_ns
);
2537 monitor_printf(mon
, " poll-grow=%" PRId64
"\n", value
->poll_grow
);
2538 monitor_printf(mon
, " poll-shrink=%" PRId64
"\n", value
->poll_shrink
);
2541 qapi_free_IOThreadInfoList(info_list
);
2544 void hmp_qom_list(Monitor
*mon
, const QDict
*qdict
)
2546 const char *path
= qdict_get_try_str(qdict
, "path");
2547 ObjectPropertyInfoList
*list
;
2551 monitor_printf(mon
, "/\n");
2555 list
= qmp_qom_list(path
, &err
);
2557 ObjectPropertyInfoList
*start
= list
;
2558 while (list
!= NULL
) {
2559 ObjectPropertyInfo
*value
= list
->value
;
2561 monitor_printf(mon
, "%s (%s)\n",
2562 value
->name
, value
->type
);
2565 qapi_free_ObjectPropertyInfoList(start
);
2567 hmp_handle_error(mon
, &err
);
2570 void hmp_qom_set(Monitor
*mon
, const QDict
*qdict
)
2572 const char *path
= qdict_get_str(qdict
, "path");
2573 const char *property
= qdict_get_str(qdict
, "property");
2574 const char *value
= qdict_get_str(qdict
, "value");
2576 bool ambiguous
= false;
2579 obj
= object_resolve_path(path
, &ambiguous
);
2581 error_set(&err
, ERROR_CLASS_DEVICE_NOT_FOUND
,
2582 "Device '%s' not found", path
);
2585 monitor_printf(mon
, "Warning: Path '%s' is ambiguous\n", path
);
2587 object_property_parse(obj
, value
, property
, &err
);
2589 hmp_handle_error(mon
, &err
);
2592 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
2594 const char *name
= qdict_get_str(qdict
, "name");
2595 RockerSwitch
*rocker
;
2598 rocker
= qmp_query_rocker(name
, &err
);
2600 hmp_handle_error(mon
, &err
);
2604 monitor_printf(mon
, "name: %s\n", rocker
->name
);
2605 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
2606 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
2608 qapi_free_RockerSwitch(rocker
);
2611 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
2613 RockerPortList
*list
, *port
;
2614 const char *name
= qdict_get_str(qdict
, "name");
2617 list
= qmp_query_rocker_ports(name
, &err
);
2619 hmp_handle_error(mon
, &err
);
2623 monitor_printf(mon
, " ena/ speed/ auto\n");
2624 monitor_printf(mon
, " port link duplex neg?\n");
2626 for (port
= list
; port
; port
= port
->next
) {
2627 monitor_printf(mon
, "%10s %-4s %-3s %2s %-3s\n",
2629 port
->value
->enabled
? port
->value
->link_up
?
2630 "up" : "down" : "!ena",
2631 port
->value
->speed
== 10000 ? "10G" : "??",
2632 port
->value
->duplex
? "FD" : "HD",
2633 port
->value
->autoneg
? "Yes" : "No");
2636 qapi_free_RockerPortList(list
);
2639 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
2641 RockerOfDpaFlowList
*list
, *info
;
2642 const char *name
= qdict_get_str(qdict
, "name");
2643 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
2646 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
2648 hmp_handle_error(mon
, &err
);
2652 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
2654 for (info
= list
; info
; info
= info
->next
) {
2655 RockerOfDpaFlow
*flow
= info
->value
;
2656 RockerOfDpaFlowKey
*key
= flow
->key
;
2657 RockerOfDpaFlowMask
*mask
= flow
->mask
;
2658 RockerOfDpaFlowAction
*action
= flow
->action
;
2661 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
2662 key
->priority
, key
->tbl_id
, flow
->hits
);
2664 monitor_printf(mon
, "%-4d %-3d ",
2665 key
->priority
, key
->tbl_id
);
2668 if (key
->has_in_pport
) {
2669 monitor_printf(mon
, " pport %d", key
->in_pport
);
2670 if (mask
->has_in_pport
) {
2671 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
2675 if (key
->has_vlan_id
) {
2676 monitor_printf(mon
, " vlan %d",
2677 key
->vlan_id
& VLAN_VID_MASK
);
2678 if (mask
->has_vlan_id
) {
2679 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
2683 if (key
->has_tunnel_id
) {
2684 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
2685 if (mask
->has_tunnel_id
) {
2686 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
2690 if (key
->has_eth_type
) {
2691 switch (key
->eth_type
) {
2693 monitor_printf(mon
, " ARP");
2696 monitor_printf(mon
, " IP");
2699 monitor_printf(mon
, " IPv6");
2702 monitor_printf(mon
, " LACP");
2705 monitor_printf(mon
, " LLDP");
2708 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2713 if (key
->has_eth_src
) {
2714 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2715 (mask
->has_eth_src
) &&
2716 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2717 monitor_printf(mon
, " src <any mcast/bcast>");
2718 } else if ((strcmp(key
->eth_src
, "00:00:00:00:00:00") == 0) &&
2719 (mask
->has_eth_src
) &&
2720 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2721 monitor_printf(mon
, " src <any ucast>");
2723 monitor_printf(mon
, " src %s", key
->eth_src
);
2724 if (mask
->has_eth_src
) {
2725 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2730 if (key
->has_eth_dst
) {
2731 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2732 (mask
->has_eth_dst
) &&
2733 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2734 monitor_printf(mon
, " dst <any mcast/bcast>");
2735 } else if ((strcmp(key
->eth_dst
, "00:00:00:00:00:00") == 0) &&
2736 (mask
->has_eth_dst
) &&
2737 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2738 monitor_printf(mon
, " dst <any ucast>");
2740 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2741 if (mask
->has_eth_dst
) {
2742 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2747 if (key
->has_ip_proto
) {
2748 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2749 if (mask
->has_ip_proto
) {
2750 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2754 if (key
->has_ip_tos
) {
2755 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2756 if (mask
->has_ip_tos
) {
2757 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2761 if (key
->has_ip_dst
) {
2762 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2765 if (action
->has_goto_tbl
|| action
->has_group_id
||
2766 action
->has_new_vlan_id
) {
2767 monitor_printf(mon
, " -->");
2770 if (action
->has_new_vlan_id
) {
2771 monitor_printf(mon
, " apply new vlan %d",
2772 ntohs(action
->new_vlan_id
));
2775 if (action
->has_group_id
) {
2776 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2779 if (action
->has_goto_tbl
) {
2780 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2783 monitor_printf(mon
, "\n");
2786 qapi_free_RockerOfDpaFlowList(list
);
2789 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2791 RockerOfDpaGroupList
*list
, *g
;
2792 const char *name
= qdict_get_str(qdict
, "name");
2793 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2797 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2799 hmp_handle_error(mon
, &err
);
2803 monitor_printf(mon
, "id (decode) --> buckets\n");
2805 for (g
= list
; g
; g
= g
->next
) {
2806 RockerOfDpaGroup
*group
= g
->value
;
2808 monitor_printf(mon
, "0x%08x", group
->id
);
2810 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2811 group
->type
== 1 ? "L2 rewrite" :
2812 group
->type
== 2 ? "L3 unicast" :
2813 group
->type
== 3 ? "L2 multicast" :
2814 group
->type
== 4 ? "L2 flood" :
2815 group
->type
== 5 ? "L3 interface" :
2816 group
->type
== 6 ? "L3 multicast" :
2817 group
->type
== 7 ? "L3 ECMP" :
2818 group
->type
== 8 ? "L2 overlay" :
2821 if (group
->has_vlan_id
) {
2822 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2825 if (group
->has_pport
) {
2826 monitor_printf(mon
, " pport %d", group
->pport
);
2829 if (group
->has_index
) {
2830 monitor_printf(mon
, " index %d", group
->index
);
2833 monitor_printf(mon
, ") -->");
2835 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2837 monitor_printf(mon
, " set vlan %d",
2838 group
->set_vlan_id
& VLAN_VID_MASK
);
2841 if (group
->has_set_eth_src
) {
2844 monitor_printf(mon
, " set");
2846 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2849 if (group
->has_set_eth_dst
) {
2852 monitor_printf(mon
, " set");
2854 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2859 if (group
->has_ttl_check
&& group
->ttl_check
) {
2860 monitor_printf(mon
, " check TTL");
2863 if (group
->has_group_id
&& group
->group_id
) {
2864 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2867 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2868 monitor_printf(mon
, " pop vlan");
2871 if (group
->has_out_pport
) {
2872 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2875 if (group
->has_group_ids
) {
2876 struct uint32List
*id
;
2878 monitor_printf(mon
, " groups [");
2879 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2880 monitor_printf(mon
, "0x%08x", id
->value
);
2882 monitor_printf(mon
, ",");
2885 monitor_printf(mon
, "]");
2888 monitor_printf(mon
, "\n");
2891 qapi_free_RockerOfDpaGroupList(list
);
2894 void hmp_info_dump(Monitor
*mon
, const QDict
*qdict
)
2896 DumpQueryResult
*result
= qmp_query_dump(NULL
);
2898 assert(result
&& result
->status
< DUMP_STATUS__MAX
);
2899 monitor_printf(mon
, "Status: %s\n", DumpStatus_str(result
->status
));
2901 if (result
->status
== DUMP_STATUS_ACTIVE
) {
2903 assert(result
->total
!= 0);
2904 percent
= 100.0 * result
->completed
/ result
->total
;
2905 monitor_printf(mon
, "Finished: %.2f %%\n", percent
);
2908 qapi_free_DumpQueryResult(result
);
2911 void hmp_info_ramblock(Monitor
*mon
, const QDict
*qdict
)
2913 ram_block_dump(mon
);
2916 void hmp_hotpluggable_cpus(Monitor
*mon
, const QDict
*qdict
)
2919 HotpluggableCPUList
*l
= qmp_query_hotpluggable_cpus(&err
);
2920 HotpluggableCPUList
*saved
= l
;
2921 CpuInstanceProperties
*c
;
2924 hmp_handle_error(mon
, &err
);
2928 monitor_printf(mon
, "Hotpluggable CPUs:\n");
2930 monitor_printf(mon
, " type: \"%s\"\n", l
->value
->type
);
2931 monitor_printf(mon
, " vcpus_count: \"%" PRIu64
"\"\n",
2932 l
->value
->vcpus_count
);
2933 if (l
->value
->has_qom_path
) {
2934 monitor_printf(mon
, " qom_path: \"%s\"\n", l
->value
->qom_path
);
2937 c
= l
->value
->props
;
2938 monitor_printf(mon
, " CPUInstance Properties:\n");
2939 if (c
->has_node_id
) {
2940 monitor_printf(mon
, " node-id: \"%" PRIu64
"\"\n", c
->node_id
);
2942 if (c
->has_socket_id
) {
2943 monitor_printf(mon
, " socket-id: \"%" PRIu64
"\"\n", c
->socket_id
);
2945 if (c
->has_core_id
) {
2946 monitor_printf(mon
, " core-id: \"%" PRIu64
"\"\n", c
->core_id
);
2948 if (c
->has_thread_id
) {
2949 monitor_printf(mon
, " thread-id: \"%" PRIu64
"\"\n", c
->thread_id
);
2955 qapi_free_HotpluggableCPUList(saved
);
2958 void hmp_info_vm_generation_id(Monitor
*mon
, const QDict
*qdict
)
2961 GuidInfo
*info
= qmp_query_vm_generation_id(&err
);
2963 monitor_printf(mon
, "%s\n", info
->guid
);
2965 hmp_handle_error(mon
, &err
);
2966 qapi_free_GuidInfo(info
);
2969 void hmp_info_memory_size_summary(Monitor
*mon
, const QDict
*qdict
)
2972 MemoryInfo
*info
= qmp_query_memory_size_summary(&err
);
2974 monitor_printf(mon
, "base memory: %" PRIu64
"\n",
2977 if (info
->has_plugged_memory
) {
2978 monitor_printf(mon
, "plugged memory: %" PRIu64
"\n",
2979 info
->plugged_memory
);
2982 qapi_free_MemoryInfo(info
);
2984 hmp_handle_error(mon
, &err
);