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 "qmp-commands.h"
27 #include "qemu/sockets.h"
28 #include "monitor/monitor.h"
29 #include "monitor/qdev.h"
30 #include "qapi/opts-visitor.h"
31 #include "qapi/qmp/qerror.h"
32 #include "qapi/string-input-visitor.h"
33 #include "qapi/string-output-visitor.h"
34 #include "qapi-visit.h"
35 #include "qom/object_interfaces.h"
36 #include "ui/console.h"
37 #include "block/nbd.h"
38 #include "block/qapi.h"
40 #include "qemu/cutils.h"
41 #include "qemu/error-report.h"
42 #include "exec/ramlist.h"
43 #include "hw/intc/intc.h"
44 #include "migration/snapshot.h"
45 #include "migration/misc.h"
48 #include <spice/enums.h>
51 static void hmp_handle_error(Monitor
*mon
, Error
**errp
)
55 error_report_err(*errp
);
59 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
63 info
= qmp_query_name(NULL
);
65 monitor_printf(mon
, "%s\n", info
->name
);
67 qapi_free_NameInfo(info
);
70 void hmp_info_version(Monitor
*mon
, const QDict
*qdict
)
74 info
= qmp_query_version(NULL
);
76 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
77 info
->qemu
->major
, info
->qemu
->minor
, info
->qemu
->micro
,
80 qapi_free_VersionInfo(info
);
83 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
87 info
= qmp_query_kvm(NULL
);
88 monitor_printf(mon
, "kvm support: ");
90 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
92 monitor_printf(mon
, "not compiled\n");
95 qapi_free_KvmInfo(info
);
98 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
102 info
= qmp_query_status(NULL
);
104 monitor_printf(mon
, "VM status: %s%s",
105 info
->running
? "running" : "paused",
106 info
->singlestep
? " (single step mode)" : "");
108 if (!info
->running
&& info
->status
!= RUN_STATE_PAUSED
) {
109 monitor_printf(mon
, " (%s)", RunState_str(info
->status
));
112 monitor_printf(mon
, "\n");
114 qapi_free_StatusInfo(info
);
117 void hmp_info_uuid(Monitor
*mon
, const QDict
*qdict
)
121 info
= qmp_query_uuid(NULL
);
122 monitor_printf(mon
, "%s\n", info
->UUID
);
123 qapi_free_UuidInfo(info
);
126 void hmp_info_chardev(Monitor
*mon
, const QDict
*qdict
)
128 ChardevInfoList
*char_info
, *info
;
130 char_info
= qmp_query_chardev(NULL
);
131 for (info
= char_info
; info
; info
= info
->next
) {
132 monitor_printf(mon
, "%s: filename=%s\n", info
->value
->label
,
133 info
->value
->filename
);
136 qapi_free_ChardevInfoList(char_info
);
139 void hmp_info_mice(Monitor
*mon
, const QDict
*qdict
)
141 MouseInfoList
*mice_list
, *mouse
;
143 mice_list
= qmp_query_mice(NULL
);
145 monitor_printf(mon
, "No mouse devices connected\n");
149 for (mouse
= mice_list
; mouse
; mouse
= mouse
->next
) {
150 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s%s\n",
151 mouse
->value
->current
? '*' : ' ',
152 mouse
->value
->index
, mouse
->value
->name
,
153 mouse
->value
->absolute
? " (absolute)" : "");
156 qapi_free_MouseInfoList(mice_list
);
159 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
162 MigrationCapabilityStatusList
*caps
, *cap
;
164 info
= qmp_query_migrate(NULL
);
165 caps
= qmp_query_migrate_capabilities(NULL
);
167 migration_global_dump(mon
);
169 /* do not display parameters during setup */
170 if (info
->has_status
&& caps
) {
171 monitor_printf(mon
, "capabilities: ");
172 for (cap
= caps
; cap
; cap
= cap
->next
) {
173 monitor_printf(mon
, "%s: %s ",
174 MigrationCapability_str(cap
->value
->capability
),
175 cap
->value
->state
? "on" : "off");
177 monitor_printf(mon
, "\n");
180 if (info
->has_status
) {
181 monitor_printf(mon
, "Migration status: %s",
182 MigrationStatus_str(info
->status
));
183 if (info
->status
== MIGRATION_STATUS_FAILED
&&
184 info
->has_error_desc
) {
185 monitor_printf(mon
, " (%s)\n", info
->error_desc
);
187 monitor_printf(mon
, "\n");
190 monitor_printf(mon
, "total time: %" PRIu64
" milliseconds\n",
192 if (info
->has_expected_downtime
) {
193 monitor_printf(mon
, "expected downtime: %" PRIu64
" milliseconds\n",
194 info
->expected_downtime
);
196 if (info
->has_downtime
) {
197 monitor_printf(mon
, "downtime: %" PRIu64
" milliseconds\n",
200 if (info
->has_setup_time
) {
201 monitor_printf(mon
, "setup: %" PRIu64
" milliseconds\n",
207 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
208 info
->ram
->transferred
>> 10);
209 monitor_printf(mon
, "throughput: %0.2f mbps\n",
211 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n",
212 info
->ram
->remaining
>> 10);
213 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n",
214 info
->ram
->total
>> 10);
215 monitor_printf(mon
, "duplicate: %" PRIu64
" pages\n",
216 info
->ram
->duplicate
);
217 monitor_printf(mon
, "skipped: %" PRIu64
" pages\n",
219 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
221 monitor_printf(mon
, "normal bytes: %" PRIu64
" kbytes\n",
222 info
->ram
->normal_bytes
>> 10);
223 monitor_printf(mon
, "dirty sync count: %" PRIu64
"\n",
224 info
->ram
->dirty_sync_count
);
225 monitor_printf(mon
, "page size: %" PRIu64
" kbytes\n",
226 info
->ram
->page_size
>> 10);
228 if (info
->ram
->dirty_pages_rate
) {
229 monitor_printf(mon
, "dirty pages rate: %" PRIu64
" pages\n",
230 info
->ram
->dirty_pages_rate
);
232 if (info
->ram
->postcopy_requests
) {
233 monitor_printf(mon
, "postcopy request count: %" PRIu64
"\n",
234 info
->ram
->postcopy_requests
);
238 if (info
->has_disk
) {
239 monitor_printf(mon
, "transferred disk: %" PRIu64
" kbytes\n",
240 info
->disk
->transferred
>> 10);
241 monitor_printf(mon
, "remaining disk: %" PRIu64
" kbytes\n",
242 info
->disk
->remaining
>> 10);
243 monitor_printf(mon
, "total disk: %" PRIu64
" kbytes\n",
244 info
->disk
->total
>> 10);
247 if (info
->has_xbzrle_cache
) {
248 monitor_printf(mon
, "cache size: %" PRIu64
" bytes\n",
249 info
->xbzrle_cache
->cache_size
);
250 monitor_printf(mon
, "xbzrle transferred: %" PRIu64
" kbytes\n",
251 info
->xbzrle_cache
->bytes
>> 10);
252 monitor_printf(mon
, "xbzrle pages: %" PRIu64
" pages\n",
253 info
->xbzrle_cache
->pages
);
254 monitor_printf(mon
, "xbzrle cache miss: %" PRIu64
"\n",
255 info
->xbzrle_cache
->cache_miss
);
256 monitor_printf(mon
, "xbzrle cache miss rate: %0.2f\n",
257 info
->xbzrle_cache
->cache_miss_rate
);
258 monitor_printf(mon
, "xbzrle overflow : %" PRIu64
"\n",
259 info
->xbzrle_cache
->overflow
);
262 if (info
->has_cpu_throttle_percentage
) {
263 monitor_printf(mon
, "cpu throttle percentage: %" PRIu64
"\n",
264 info
->cpu_throttle_percentage
);
267 qapi_free_MigrationInfo(info
);
268 qapi_free_MigrationCapabilityStatusList(caps
);
271 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
273 MigrationCapabilityStatusList
*caps
, *cap
;
275 caps
= qmp_query_migrate_capabilities(NULL
);
278 for (cap
= caps
; cap
; cap
= cap
->next
) {
279 monitor_printf(mon
, "%s: %s\n",
280 MigrationCapability_str(cap
->value
->capability
),
281 cap
->value
->state
? "on" : "off");
285 qapi_free_MigrationCapabilityStatusList(caps
);
288 void hmp_info_migrate_parameters(Monitor
*mon
, const QDict
*qdict
)
290 MigrationParameters
*params
;
292 params
= qmp_query_migrate_parameters(NULL
);
295 assert(params
->has_compress_level
);
296 monitor_printf(mon
, "%s: %" PRId64
"\n",
297 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL
),
298 params
->compress_level
);
299 assert(params
->has_compress_threads
);
300 monitor_printf(mon
, "%s: %" PRId64
"\n",
301 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_THREADS
),
302 params
->compress_threads
);
303 assert(params
->has_decompress_threads
);
304 monitor_printf(mon
, "%s: %" PRId64
"\n",
305 MigrationParameter_str(MIGRATION_PARAMETER_DECOMPRESS_THREADS
),
306 params
->decompress_threads
);
307 assert(params
->has_cpu_throttle_initial
);
308 monitor_printf(mon
, "%s: %" PRId64
"\n",
309 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
),
310 params
->cpu_throttle_initial
);
311 assert(params
->has_cpu_throttle_increment
);
312 monitor_printf(mon
, "%s: %" PRId64
"\n",
313 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
),
314 params
->cpu_throttle_increment
);
315 assert(params
->has_tls_creds
);
316 monitor_printf(mon
, "%s: '%s'\n",
317 MigrationParameter_str(MIGRATION_PARAMETER_TLS_CREDS
),
319 assert(params
->has_tls_hostname
);
320 monitor_printf(mon
, "%s: '%s'\n",
321 MigrationParameter_str(MIGRATION_PARAMETER_TLS_HOSTNAME
),
322 params
->tls_hostname
);
323 assert(params
->has_max_bandwidth
);
324 monitor_printf(mon
, "%s: %" PRId64
" bytes/second\n",
325 MigrationParameter_str(MIGRATION_PARAMETER_MAX_BANDWIDTH
),
326 params
->max_bandwidth
);
327 assert(params
->has_downtime_limit
);
328 monitor_printf(mon
, "%s: %" PRId64
" milliseconds\n",
329 MigrationParameter_str(MIGRATION_PARAMETER_DOWNTIME_LIMIT
),
330 params
->downtime_limit
);
331 assert(params
->has_x_checkpoint_delay
);
332 monitor_printf(mon
, "%s: %" PRId64
"\n",
333 MigrationParameter_str(MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
),
334 params
->x_checkpoint_delay
);
335 assert(params
->has_block_incremental
);
336 monitor_printf(mon
, "%s: %s\n",
337 MigrationParameter_str(MIGRATION_PARAMETER_BLOCK_INCREMENTAL
),
338 params
->block_incremental
? "on" : "off");
339 monitor_printf(mon
, "%s: %" PRId64
"\n",
340 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_CHANNELS
),
341 params
->x_multifd_channels
);
342 monitor_printf(mon
, "%s: %" PRId64
"\n",
343 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT
),
344 params
->x_multifd_page_count
);
345 monitor_printf(mon
, "%s: %" PRId64
"\n",
346 MigrationParameter_str(MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
),
347 params
->xbzrle_cache_size
);
350 qapi_free_MigrationParameters(params
);
353 void hmp_info_migrate_cache_size(Monitor
*mon
, const QDict
*qdict
)
355 monitor_printf(mon
, "xbzrel cache size: %" PRId64
" kbytes\n",
356 qmp_query_migrate_cache_size(NULL
) >> 10);
359 void hmp_info_cpus(Monitor
*mon
, const QDict
*qdict
)
361 CpuInfoList
*cpu_list
, *cpu
;
363 cpu_list
= qmp_query_cpus(NULL
);
365 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
368 if (cpu
->value
->CPU
== monitor_get_cpu_index()) {
372 monitor_printf(mon
, "%c CPU #%" PRId64
":", active
, cpu
->value
->CPU
);
374 switch (cpu
->value
->arch
) {
375 case CPU_INFO_ARCH_X86
:
376 monitor_printf(mon
, " pc=0x%016" PRIx64
, cpu
->value
->u
.x86
.pc
);
378 case CPU_INFO_ARCH_PPC
:
379 monitor_printf(mon
, " nip=0x%016" PRIx64
, cpu
->value
->u
.ppc
.nip
);
381 case CPU_INFO_ARCH_SPARC
:
382 monitor_printf(mon
, " pc=0x%016" PRIx64
,
383 cpu
->value
->u
.q_sparc
.pc
);
384 monitor_printf(mon
, " npc=0x%016" PRIx64
,
385 cpu
->value
->u
.q_sparc
.npc
);
387 case CPU_INFO_ARCH_MIPS
:
388 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->u
.q_mips
.PC
);
390 case CPU_INFO_ARCH_TRICORE
:
391 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->u
.tricore
.PC
);
397 if (cpu
->value
->halted
) {
398 monitor_printf(mon
, " (halted)");
401 monitor_printf(mon
, " thread_id=%" PRId64
"\n", cpu
->value
->thread_id
);
404 qapi_free_CpuInfoList(cpu_list
);
407 static void print_block_info(Monitor
*mon
, BlockInfo
*info
,
408 BlockDeviceInfo
*inserted
, bool verbose
)
410 ImageInfo
*image_info
;
412 assert(!info
|| !info
->has_inserted
|| info
->inserted
== inserted
);
414 if (info
&& *info
->device
) {
415 monitor_printf(mon
, "%s", info
->device
);
416 if (inserted
&& inserted
->has_node_name
) {
417 monitor_printf(mon
, " (%s)", inserted
->node_name
);
420 assert(info
|| inserted
);
421 monitor_printf(mon
, "%s",
422 inserted
&& inserted
->has_node_name
? inserted
->node_name
423 : info
&& info
->has_qdev
? info
->qdev
428 monitor_printf(mon
, ": %s (%s%s%s)\n",
431 inserted
->ro
? ", read-only" : "",
432 inserted
->encrypted
? ", encrypted" : "");
434 monitor_printf(mon
, ": [not inserted]\n");
438 if (info
->has_qdev
) {
439 monitor_printf(mon
, " Attached to: %s\n", info
->qdev
);
441 if (info
->has_io_status
&& info
->io_status
!= BLOCK_DEVICE_IO_STATUS_OK
) {
442 monitor_printf(mon
, " I/O status: %s\n",
443 BlockDeviceIoStatus_str(info
->io_status
));
446 if (info
->removable
) {
447 monitor_printf(mon
, " Removable device: %slocked, tray %s\n",
448 info
->locked
? "" : "not ",
449 info
->tray_open
? "open" : "closed");
458 monitor_printf(mon
, " Cache mode: %s%s%s\n",
459 inserted
->cache
->writeback
? "writeback" : "writethrough",
460 inserted
->cache
->direct
? ", direct" : "",
461 inserted
->cache
->no_flush
? ", ignore flushes" : "");
463 if (inserted
->has_backing_file
) {
466 "(chain depth: %" PRId64
")\n",
467 inserted
->backing_file
,
468 inserted
->backing_file_depth
);
471 if (inserted
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
) {
472 monitor_printf(mon
, " Detect zeroes: %s\n",
473 BlockdevDetectZeroesOptions_str(inserted
->detect_zeroes
));
476 if (inserted
->bps
|| inserted
->bps_rd
|| inserted
->bps_wr
||
477 inserted
->iops
|| inserted
->iops_rd
|| inserted
->iops_wr
)
479 monitor_printf(mon
, " I/O throttling: bps=%" PRId64
480 " bps_rd=%" PRId64
" bps_wr=%" PRId64
482 " bps_rd_max=%" PRId64
483 " bps_wr_max=%" PRId64
484 " iops=%" PRId64
" iops_rd=%" PRId64
487 " iops_rd_max=%" PRId64
488 " iops_wr_max=%" PRId64
489 " iops_size=%" PRId64
495 inserted
->bps_rd_max
,
496 inserted
->bps_wr_max
,
501 inserted
->iops_rd_max
,
502 inserted
->iops_wr_max
,
508 monitor_printf(mon
, "\nImages:\n");
509 image_info
= inserted
->image
;
511 bdrv_image_info_dump((fprintf_function
)monitor_printf
,
513 if (image_info
->has_backing_image
) {
514 image_info
= image_info
->backing_image
;
522 void hmp_info_block(Monitor
*mon
, const QDict
*qdict
)
524 BlockInfoList
*block_list
, *info
;
525 BlockDeviceInfoList
*blockdev_list
, *blockdev
;
526 const char *device
= qdict_get_try_str(qdict
, "device");
527 bool verbose
= qdict_get_try_bool(qdict
, "verbose", false);
528 bool nodes
= qdict_get_try_bool(qdict
, "nodes", false);
529 bool printed
= false;
531 /* Print BlockBackend information */
533 block_list
= qmp_query_block(NULL
);
538 for (info
= block_list
; info
; info
= info
->next
) {
539 if (device
&& strcmp(device
, info
->value
->device
)) {
543 if (info
!= block_list
) {
544 monitor_printf(mon
, "\n");
547 print_block_info(mon
, info
->value
, info
->value
->has_inserted
548 ? info
->value
->inserted
: NULL
,
553 qapi_free_BlockInfoList(block_list
);
555 if ((!device
&& !nodes
) || printed
) {
559 /* Print node information */
560 blockdev_list
= qmp_query_named_block_nodes(NULL
);
561 for (blockdev
= blockdev_list
; blockdev
; blockdev
= blockdev
->next
) {
562 assert(blockdev
->value
->has_node_name
);
563 if (device
&& strcmp(device
, blockdev
->value
->node_name
)) {
567 if (blockdev
!= blockdev_list
) {
568 monitor_printf(mon
, "\n");
571 print_block_info(mon
, NULL
, blockdev
->value
, verbose
);
573 qapi_free_BlockDeviceInfoList(blockdev_list
);
576 void hmp_info_blockstats(Monitor
*mon
, const QDict
*qdict
)
578 BlockStatsList
*stats_list
, *stats
;
580 stats_list
= qmp_query_blockstats(false, false, NULL
);
582 for (stats
= stats_list
; stats
; stats
= stats
->next
) {
583 if (!stats
->value
->has_device
) {
587 monitor_printf(mon
, "%s:", stats
->value
->device
);
588 monitor_printf(mon
, " rd_bytes=%" PRId64
590 " rd_operations=%" PRId64
591 " wr_operations=%" PRId64
592 " flush_operations=%" PRId64
593 " wr_total_time_ns=%" PRId64
594 " rd_total_time_ns=%" PRId64
595 " flush_total_time_ns=%" PRId64
596 " rd_merged=%" PRId64
597 " wr_merged=%" PRId64
598 " idle_time_ns=%" PRId64
600 stats
->value
->stats
->rd_bytes
,
601 stats
->value
->stats
->wr_bytes
,
602 stats
->value
->stats
->rd_operations
,
603 stats
->value
->stats
->wr_operations
,
604 stats
->value
->stats
->flush_operations
,
605 stats
->value
->stats
->wr_total_time_ns
,
606 stats
->value
->stats
->rd_total_time_ns
,
607 stats
->value
->stats
->flush_total_time_ns
,
608 stats
->value
->stats
->rd_merged
,
609 stats
->value
->stats
->wr_merged
,
610 stats
->value
->stats
->idle_time_ns
);
613 qapi_free_BlockStatsList(stats_list
);
616 /* Helper for hmp_info_vnc_clients, _servers */
617 static void hmp_info_VncBasicInfo(Monitor
*mon
, VncBasicInfo
*info
,
620 monitor_printf(mon
, " %s: %s:%s (%s%s)\n",
624 NetworkAddressFamily_str(info
->family
),
625 info
->websocket
? " (Websocket)" : "");
628 /* Helper displaying and auth and crypt info */
629 static void hmp_info_vnc_authcrypt(Monitor
*mon
, const char *indent
,
631 VncVencryptSubAuth
*vencrypt
)
633 monitor_printf(mon
, "%sAuth: %s (Sub: %s)\n", indent
,
634 VncPrimaryAuth_str(auth
),
635 vencrypt
? VncVencryptSubAuth_str(*vencrypt
) : "none");
638 static void hmp_info_vnc_clients(Monitor
*mon
, VncClientInfoList
*client
)
641 VncClientInfo
*cinfo
= client
->value
;
643 hmp_info_VncBasicInfo(mon
, qapi_VncClientInfo_base(cinfo
), "Client");
644 monitor_printf(mon
, " x509_dname: %s\n",
645 cinfo
->has_x509_dname
?
646 cinfo
->x509_dname
: "none");
647 monitor_printf(mon
, " sasl_username: %s\n",
648 cinfo
->has_sasl_username
?
649 cinfo
->sasl_username
: "none");
651 client
= client
->next
;
655 static void hmp_info_vnc_servers(Monitor
*mon
, VncServerInfo2List
*server
)
658 VncServerInfo2
*sinfo
= server
->value
;
659 hmp_info_VncBasicInfo(mon
, qapi_VncServerInfo2_base(sinfo
), "Server");
660 hmp_info_vnc_authcrypt(mon
, " ", sinfo
->auth
,
661 sinfo
->has_vencrypt
? &sinfo
->vencrypt
: NULL
);
662 server
= server
->next
;
666 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
668 VncInfo2List
*info2l
;
671 info2l
= qmp_query_vnc_servers(&err
);
673 hmp_handle_error(mon
, &err
);
677 monitor_printf(mon
, "None\n");
682 VncInfo2
*info
= info2l
->value
;
683 monitor_printf(mon
, "%s:\n", info
->id
);
684 hmp_info_vnc_servers(mon
, info
->server
);
685 hmp_info_vnc_clients(mon
, info
->clients
);
687 /* The server entry displays its auth, we only
688 * need to display in the case of 'reverse' connections
689 * where there's no server.
691 hmp_info_vnc_authcrypt(mon
, " ", info
->auth
,
692 info
->has_vencrypt
? &info
->vencrypt
: NULL
);
694 if (info
->has_display
) {
695 monitor_printf(mon
, " Display: %s\n", info
->display
);
697 info2l
= info2l
->next
;
700 qapi_free_VncInfo2List(info2l
);
705 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
707 SpiceChannelList
*chan
;
709 const char *channel_name
;
710 const char * const channel_names
[] = {
711 [SPICE_CHANNEL_MAIN
] = "main",
712 [SPICE_CHANNEL_DISPLAY
] = "display",
713 [SPICE_CHANNEL_INPUTS
] = "inputs",
714 [SPICE_CHANNEL_CURSOR
] = "cursor",
715 [SPICE_CHANNEL_PLAYBACK
] = "playback",
716 [SPICE_CHANNEL_RECORD
] = "record",
717 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
718 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
719 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
720 [SPICE_CHANNEL_PORT
] = "port",
722 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
723 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
724 * as quick fix for build failures with older versions. */
725 [SPICE_CHANNEL_WEBDAV
] = "webdav",
729 info
= qmp_query_spice(NULL
);
731 if (!info
->enabled
) {
732 monitor_printf(mon
, "Server: disabled\n");
736 monitor_printf(mon
, "Server:\n");
737 if (info
->has_port
) {
738 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
739 info
->host
, info
->port
);
741 if (info
->has_tls_port
) {
742 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
743 info
->host
, info
->tls_port
);
745 monitor_printf(mon
, " migrated: %s\n",
746 info
->migrated
? "true" : "false");
747 monitor_printf(mon
, " auth: %s\n", info
->auth
);
748 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
749 monitor_printf(mon
, " mouse-mode: %s\n",
750 SpiceQueryMouseMode_str(info
->mouse_mode
));
752 if (!info
->has_channels
|| info
->channels
== NULL
) {
753 monitor_printf(mon
, "Channels: none\n");
755 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
756 monitor_printf(mon
, "Channel:\n");
757 monitor_printf(mon
, " address: %s:%s%s\n",
758 chan
->value
->host
, chan
->value
->port
,
759 chan
->value
->tls
? " [tls]" : "");
760 monitor_printf(mon
, " session: %" PRId64
"\n",
761 chan
->value
->connection_id
);
762 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
763 chan
->value
->channel_type
, chan
->value
->channel_id
);
765 channel_name
= "unknown";
766 if (chan
->value
->channel_type
> 0 &&
767 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
768 channel_names
[chan
->value
->channel_type
]) {
769 channel_name
= channel_names
[chan
->value
->channel_type
];
772 monitor_printf(mon
, " channel name: %s\n", channel_name
);
777 qapi_free_SpiceInfo(info
);
781 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
786 info
= qmp_query_balloon(&err
);
788 hmp_handle_error(mon
, &err
);
792 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
794 qapi_free_BalloonInfo(info
);
797 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
799 PciMemoryRegionList
*region
;
801 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
802 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
803 dev
->slot
, dev
->function
);
804 monitor_printf(mon
, " ");
806 if (dev
->class_info
->has_desc
) {
807 monitor_printf(mon
, "%s", dev
->class_info
->desc
);
809 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
->q_class
);
812 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
813 dev
->id
->vendor
, dev
->id
->device
);
816 monitor_printf(mon
, " IRQ %" PRId64
".\n", dev
->irq
);
819 if (dev
->has_pci_bridge
) {
820 monitor_printf(mon
, " BUS %" PRId64
".\n",
821 dev
->pci_bridge
->bus
->number
);
822 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
823 dev
->pci_bridge
->bus
->secondary
);
824 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
825 dev
->pci_bridge
->bus
->subordinate
);
827 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
828 dev
->pci_bridge
->bus
->io_range
->base
,
829 dev
->pci_bridge
->bus
->io_range
->limit
);
832 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
833 dev
->pci_bridge
->bus
->memory_range
->base
,
834 dev
->pci_bridge
->bus
->memory_range
->limit
);
836 monitor_printf(mon
, " prefetchable memory range "
837 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
838 dev
->pci_bridge
->bus
->prefetchable_range
->base
,
839 dev
->pci_bridge
->bus
->prefetchable_range
->limit
);
842 for (region
= dev
->regions
; region
; region
= region
->next
) {
845 addr
= region
->value
->address
;
846 size
= region
->value
->size
;
848 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
850 if (!strcmp(region
->value
->type
, "io")) {
851 monitor_printf(mon
, "I/O at 0x%04" PRIx64
852 " [0x%04" PRIx64
"].\n",
853 addr
, addr
+ size
- 1);
855 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
856 " [0x%08" PRIx64
"].\n",
857 region
->value
->mem_type_64
? 64 : 32,
858 region
->value
->prefetch
? " prefetchable" : "",
859 addr
, addr
+ size
- 1);
863 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
865 if (dev
->has_pci_bridge
) {
866 if (dev
->pci_bridge
->has_devices
) {
867 PciDeviceInfoList
*cdev
;
868 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
869 hmp_info_pci_device(mon
, cdev
->value
);
875 static int hmp_info_irq_foreach(Object
*obj
, void *opaque
)
877 InterruptStatsProvider
*intc
;
878 InterruptStatsProviderClass
*k
;
879 Monitor
*mon
= opaque
;
881 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
882 intc
= INTERRUPT_STATS_PROVIDER(obj
);
883 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
884 uint64_t *irq_counts
;
885 unsigned int nb_irqs
, i
;
886 if (k
->get_statistics
&&
887 k
->get_statistics(intc
, &irq_counts
, &nb_irqs
)) {
889 monitor_printf(mon
, "IRQ statistics for %s:\n",
890 object_get_typename(obj
));
891 for (i
= 0; i
< nb_irqs
; i
++) {
892 if (irq_counts
[i
] > 0) {
893 monitor_printf(mon
, "%2d: %" PRId64
"\n", i
,
899 monitor_printf(mon
, "IRQ statistics not available for %s.\n",
900 object_get_typename(obj
));
907 void hmp_info_irq(Monitor
*mon
, const QDict
*qdict
)
909 object_child_foreach_recursive(object_get_root(),
910 hmp_info_irq_foreach
, mon
);
913 static int hmp_info_pic_foreach(Object
*obj
, void *opaque
)
915 InterruptStatsProvider
*intc
;
916 InterruptStatsProviderClass
*k
;
917 Monitor
*mon
= opaque
;
919 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
920 intc
= INTERRUPT_STATS_PROVIDER(obj
);
921 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
923 k
->print_info(intc
, mon
);
925 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
926 object_get_typename(obj
));
933 void hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
935 object_child_foreach_recursive(object_get_root(),
936 hmp_info_pic_foreach
, mon
);
939 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
941 PciInfoList
*info_list
, *info
;
944 info_list
= qmp_query_pci(&err
);
946 monitor_printf(mon
, "PCI devices not supported\n");
951 for (info
= info_list
; info
; info
= info
->next
) {
952 PciDeviceInfoList
*dev
;
954 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
955 hmp_info_pci_device(mon
, dev
->value
);
959 qapi_free_PciInfoList(info_list
);
962 void hmp_info_block_jobs(Monitor
*mon
, const QDict
*qdict
)
964 BlockJobInfoList
*list
;
967 list
= qmp_query_block_jobs(&err
);
971 monitor_printf(mon
, "No active jobs\n");
976 if (strcmp(list
->value
->type
, "stream") == 0) {
977 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
978 " of %" PRId64
" bytes, speed limit %" PRId64
985 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
986 " of %" PRId64
" bytes, speed limit %" PRId64
997 qapi_free_BlockJobInfoList(list
);
1000 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
1002 TPMInfoList
*info_list
, *info
;
1005 TPMPassthroughOptions
*tpo
;
1006 TPMEmulatorOptions
*teo
;
1008 info_list
= qmp_query_tpm(&err
);
1010 monitor_printf(mon
, "TPM device not supported\n");
1016 monitor_printf(mon
, "TPM device:\n");
1019 for (info
= info_list
; info
; info
= info
->next
) {
1020 TPMInfo
*ti
= info
->value
;
1021 monitor_printf(mon
, " tpm%d: model=%s\n",
1022 c
, TpmModel_str(ti
->model
));
1024 monitor_printf(mon
, " \\ %s: type=%s",
1025 ti
->id
, TpmTypeOptionsKind_str(ti
->options
->type
));
1027 switch (ti
->options
->type
) {
1028 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH
:
1029 tpo
= ti
->options
->u
.passthrough
.data
;
1030 monitor_printf(mon
, "%s%s%s%s",
1031 tpo
->has_path
? ",path=" : "",
1032 tpo
->has_path
? tpo
->path
: "",
1033 tpo
->has_cancel_path
? ",cancel-path=" : "",
1034 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
1036 case TPM_TYPE_OPTIONS_KIND_EMULATOR
:
1037 teo
= ti
->options
->u
.emulator
.data
;
1038 monitor_printf(mon
, ",chardev=%s", teo
->chardev
);
1040 case TPM_TYPE_OPTIONS_KIND__MAX
:
1043 monitor_printf(mon
, "\n");
1046 qapi_free_TPMInfoList(info_list
);
1049 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
1051 monitor_suspend(mon
);
1055 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
1060 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
1062 qmp_system_reset(NULL
);
1065 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
1067 qmp_system_powerdown(NULL
);
1070 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
1074 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1075 use it are converted to the QAPI */
1076 cpu_index
= qdict_get_int(qdict
, "index");
1077 if (monitor_set_cpu(cpu_index
) < 0) {
1078 monitor_printf(mon
, "invalid CPU index\n");
1082 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
1084 uint32_t size
= qdict_get_int(qdict
, "size");
1085 const char *filename
= qdict_get_str(qdict
, "filename");
1086 uint64_t addr
= qdict_get_int(qdict
, "val");
1088 int cpu_index
= monitor_get_cpu_index();
1090 if (cpu_index
< 0) {
1091 monitor_printf(mon
, "No CPU available\n");
1095 qmp_memsave(addr
, size
, filename
, true, cpu_index
, &err
);
1096 hmp_handle_error(mon
, &err
);
1099 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
1101 uint32_t size
= qdict_get_int(qdict
, "size");
1102 const char *filename
= qdict_get_str(qdict
, "filename");
1103 uint64_t addr
= qdict_get_int(qdict
, "val");
1106 qmp_pmemsave(addr
, size
, filename
, &err
);
1107 hmp_handle_error(mon
, &err
);
1110 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
1112 const char *chardev
= qdict_get_str(qdict
, "device");
1113 const char *data
= qdict_get_str(qdict
, "data");
1116 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
1118 hmp_handle_error(mon
, &err
);
1121 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
1123 uint32_t size
= qdict_get_int(qdict
, "size");
1124 const char *chardev
= qdict_get_str(qdict
, "device");
1129 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1131 hmp_handle_error(mon
, &err
);
1135 for (i
= 0; data
[i
]; i
++) {
1136 unsigned char ch
= data
[i
];
1139 monitor_printf(mon
, "\\\\");
1140 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1141 monitor_printf(mon
, "\\u%04X", ch
);
1143 monitor_printf(mon
, "%c", ch
);
1147 monitor_printf(mon
, "\n");
1151 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1156 hmp_handle_error(mon
, &err
);
1159 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1161 qmp_system_wakeup(NULL
);
1164 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
1168 qmp_inject_nmi(&err
);
1169 hmp_handle_error(mon
, &err
);
1172 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
1174 const char *name
= qdict_get_str(qdict
, "name");
1175 bool up
= qdict_get_bool(qdict
, "up");
1178 qmp_set_link(name
, up
, &err
);
1179 hmp_handle_error(mon
, &err
);
1182 void hmp_block_passwd(Monitor
*mon
, const QDict
*qdict
)
1184 const char *device
= qdict_get_str(qdict
, "device");
1185 const char *password
= qdict_get_str(qdict
, "password");
1188 qmp_block_passwd(true, device
, false, NULL
, password
, &err
);
1189 hmp_handle_error(mon
, &err
);
1192 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
1194 int64_t value
= qdict_get_int(qdict
, "value");
1197 qmp_balloon(value
, &err
);
1198 hmp_handle_error(mon
, &err
);
1201 void hmp_block_resize(Monitor
*mon
, const QDict
*qdict
)
1203 const char *device
= qdict_get_str(qdict
, "device");
1204 int64_t size
= qdict_get_int(qdict
, "size");
1207 qmp_block_resize(true, device
, false, NULL
, size
, &err
);
1208 hmp_handle_error(mon
, &err
);
1211 void hmp_drive_mirror(Monitor
*mon
, const QDict
*qdict
)
1213 const char *filename
= qdict_get_str(qdict
, "target");
1214 const char *format
= qdict_get_try_str(qdict
, "format");
1215 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1216 bool full
= qdict_get_try_bool(qdict
, "full", false);
1218 DriveMirror mirror
= {
1219 .device
= (char *)qdict_get_str(qdict
, "device"),
1220 .target
= (char *)filename
,
1221 .has_format
= !!format
,
1222 .format
= (char *)format
,
1223 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1225 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1230 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1231 hmp_handle_error(mon
, &err
);
1234 qmp_drive_mirror(&mirror
, &err
);
1235 hmp_handle_error(mon
, &err
);
1238 void hmp_drive_backup(Monitor
*mon
, const QDict
*qdict
)
1240 const char *device
= qdict_get_str(qdict
, "device");
1241 const char *filename
= qdict_get_str(qdict
, "target");
1242 const char *format
= qdict_get_try_str(qdict
, "format");
1243 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1244 bool full
= qdict_get_try_bool(qdict
, "full", false);
1245 bool compress
= qdict_get_try_bool(qdict
, "compress", false);
1247 DriveBackup backup
= {
1248 .device
= (char *)device
,
1249 .target
= (char *)filename
,
1250 .has_format
= !!format
,
1251 .format
= (char *)format
,
1252 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1254 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1255 .has_compress
= !!compress
,
1256 .compress
= compress
,
1260 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1261 hmp_handle_error(mon
, &err
);
1265 qmp_drive_backup(&backup
, &err
);
1266 hmp_handle_error(mon
, &err
);
1269 void hmp_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
)
1271 const char *device
= qdict_get_str(qdict
, "device");
1272 const char *filename
= qdict_get_try_str(qdict
, "snapshot-file");
1273 const char *format
= qdict_get_try_str(qdict
, "format");
1274 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1275 enum NewImageMode mode
;
1279 /* In the future, if 'snapshot-file' is not specified, the snapshot
1280 will be taken internally. Today it's actually required. */
1281 error_setg(&err
, QERR_MISSING_PARAMETER
, "snapshot-file");
1282 hmp_handle_error(mon
, &err
);
1286 mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1287 qmp_blockdev_snapshot_sync(true, device
, false, NULL
,
1288 filename
, false, NULL
,
1291 hmp_handle_error(mon
, &err
);
1294 void hmp_snapshot_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1296 const char *device
= qdict_get_str(qdict
, "device");
1297 const char *name
= qdict_get_str(qdict
, "name");
1300 qmp_blockdev_snapshot_internal_sync(device
, name
, &err
);
1301 hmp_handle_error(mon
, &err
);
1304 void hmp_snapshot_delete_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1306 const char *device
= qdict_get_str(qdict
, "device");
1307 const char *name
= qdict_get_str(qdict
, "name");
1308 const char *id
= qdict_get_try_str(qdict
, "id");
1311 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
1313 hmp_handle_error(mon
, &err
);
1316 void hmp_loadvm(Monitor
*mon
, const QDict
*qdict
)
1318 int saved_vm_running
= runstate_is_running();
1319 const char *name
= qdict_get_str(qdict
, "name");
1322 vm_stop(RUN_STATE_RESTORE_VM
);
1324 if (load_snapshot(name
, &err
) == 0 && saved_vm_running
) {
1327 hmp_handle_error(mon
, &err
);
1330 void hmp_savevm(Monitor
*mon
, const QDict
*qdict
)
1334 save_snapshot(qdict_get_try_str(qdict
, "name"), &err
);
1335 hmp_handle_error(mon
, &err
);
1338 void hmp_delvm(Monitor
*mon
, const QDict
*qdict
)
1340 BlockDriverState
*bs
;
1342 const char *name
= qdict_get_str(qdict
, "name");
1344 if (bdrv_all_delete_snapshot(name
, &bs
, &err
) < 0) {
1345 error_reportf_err(err
,
1346 "Error while deleting snapshot on device '%s': ",
1347 bdrv_get_device_name(bs
));
1351 void hmp_info_snapshots(Monitor
*mon
, const QDict
*qdict
)
1353 BlockDriverState
*bs
, *bs1
;
1354 BdrvNextIterator it1
;
1355 QEMUSnapshotInfo
*sn_tab
, *sn
;
1356 bool no_snapshot
= true;
1359 int *global_snapshots
;
1360 AioContext
*aio_context
;
1362 typedef struct SnapshotEntry
{
1363 QEMUSnapshotInfo sn
;
1364 QTAILQ_ENTRY(SnapshotEntry
) next
;
1367 typedef struct ImageEntry
{
1368 const char *imagename
;
1369 QTAILQ_ENTRY(ImageEntry
) next
;
1370 QTAILQ_HEAD(, SnapshotEntry
) snapshots
;
1373 QTAILQ_HEAD(, ImageEntry
) image_list
=
1374 QTAILQ_HEAD_INITIALIZER(image_list
);
1376 ImageEntry
*image_entry
, *next_ie
;
1377 SnapshotEntry
*snapshot_entry
;
1379 bs
= bdrv_all_find_vmstate_bs();
1381 monitor_printf(mon
, "No available block device supports snapshots\n");
1384 aio_context
= bdrv_get_aio_context(bs
);
1386 aio_context_acquire(aio_context
);
1387 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1388 aio_context_release(aio_context
);
1391 monitor_printf(mon
, "bdrv_snapshot_list: error %d\n", nb_sns
);
1395 for (bs1
= bdrv_first(&it1
); bs1
; bs1
= bdrv_next(&it1
)) {
1399 AioContext
*ctx
= bdrv_get_aio_context(bs1
);
1401 aio_context_acquire(ctx
);
1402 if (bdrv_can_snapshot(bs1
)) {
1404 bs1_nb_sns
= bdrv_snapshot_list(bs1
, &sn
);
1405 if (bs1_nb_sns
> 0) {
1406 no_snapshot
= false;
1407 ie
= g_new0(ImageEntry
, 1);
1408 ie
->imagename
= bdrv_get_device_name(bs1
);
1409 QTAILQ_INIT(&ie
->snapshots
);
1410 QTAILQ_INSERT_TAIL(&image_list
, ie
, next
);
1411 for (i
= 0; i
< bs1_nb_sns
; i
++) {
1412 se
= g_new0(SnapshotEntry
, 1);
1414 QTAILQ_INSERT_TAIL(&ie
->snapshots
, se
, next
);
1419 aio_context_release(ctx
);
1423 monitor_printf(mon
, "There is no snapshot available.\n");
1427 global_snapshots
= g_new0(int, nb_sns
);
1429 for (i
= 0; i
< nb_sns
; i
++) {
1430 SnapshotEntry
*next_sn
;
1431 if (bdrv_all_find_snapshot(sn_tab
[i
].name
, &bs1
) == 0) {
1432 global_snapshots
[total
] = i
;
1434 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1435 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
,
1437 if (!strcmp(sn_tab
[i
].name
, snapshot_entry
->sn
.name
)) {
1438 QTAILQ_REMOVE(&image_entry
->snapshots
, snapshot_entry
,
1440 g_free(snapshot_entry
);
1447 monitor_printf(mon
, "List of snapshots present on all disks:\n");
1450 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1451 monitor_printf(mon
, "\n");
1452 for (i
= 0; i
< total
; i
++) {
1453 sn
= &sn_tab
[global_snapshots
[i
]];
1454 /* The ID is not guaranteed to be the same on all images, so
1457 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), "--");
1458 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, sn
);
1459 monitor_printf(mon
, "\n");
1462 monitor_printf(mon
, "None\n");
1465 QTAILQ_FOREACH(image_entry
, &image_list
, next
) {
1466 if (QTAILQ_EMPTY(&image_entry
->snapshots
)) {
1470 "\nList of partial (non-loadable) snapshots on '%s':\n",
1471 image_entry
->imagename
);
1472 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
, NULL
);
1473 monitor_printf(mon
, "\n");
1474 QTAILQ_FOREACH(snapshot_entry
, &image_entry
->snapshots
, next
) {
1475 bdrv_snapshot_dump((fprintf_function
)monitor_printf
, mon
,
1476 &snapshot_entry
->sn
);
1477 monitor_printf(mon
, "\n");
1481 QTAILQ_FOREACH_SAFE(image_entry
, &image_list
, next
, next_ie
) {
1482 SnapshotEntry
*next_sn
;
1483 QTAILQ_FOREACH_SAFE(snapshot_entry
, &image_entry
->snapshots
, next
,
1485 g_free(snapshot_entry
);
1487 g_free(image_entry
);
1490 g_free(global_snapshots
);
1494 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1496 qmp_migrate_cancel(NULL
);
1499 void hmp_migrate_continue(Monitor
*mon
, const QDict
*qdict
)
1502 const char *state
= qdict_get_str(qdict
, "state");
1503 int val
= qapi_enum_parse(&MigrationStatus_lookup
, state
, -1, &err
);
1506 qmp_migrate_continue(val
, &err
);
1509 hmp_handle_error(mon
, &err
);
1512 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
1515 const char *uri
= qdict_get_str(qdict
, "uri");
1517 qmp_migrate_incoming(uri
, &err
);
1519 hmp_handle_error(mon
, &err
);
1522 /* Kept for backwards compatibility */
1523 void hmp_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
1525 double value
= qdict_get_double(qdict
, "value");
1526 qmp_migrate_set_downtime(value
, NULL
);
1529 void hmp_migrate_set_cache_size(Monitor
*mon
, const QDict
*qdict
)
1531 int64_t value
= qdict_get_int(qdict
, "value");
1534 qmp_migrate_set_cache_size(value
, &err
);
1535 hmp_handle_error(mon
, &err
);
1538 /* Kept for backwards compatibility */
1539 void hmp_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
1541 int64_t value
= qdict_get_int(qdict
, "value");
1542 qmp_migrate_set_speed(value
, NULL
);
1545 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1547 const char *cap
= qdict_get_str(qdict
, "capability");
1548 bool state
= qdict_get_bool(qdict
, "state");
1550 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1553 val
= qapi_enum_parse(&MigrationCapability_lookup
, cap
, -1, &err
);
1558 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1559 caps
->value
->capability
= val
;
1560 caps
->value
->state
= state
;
1562 qmp_migrate_set_capabilities(caps
, &err
);
1565 qapi_free_MigrationCapabilityStatusList(caps
);
1566 hmp_handle_error(mon
, &err
);
1569 void hmp_migrate_set_parameter(Monitor
*mon
, const QDict
*qdict
)
1571 const char *param
= qdict_get_str(qdict
, "parameter");
1572 const char *valuestr
= qdict_get_str(qdict
, "value");
1573 Visitor
*v
= string_input_visitor_new(valuestr
);
1574 MigrateSetParameters
*p
= g_new0(MigrateSetParameters
, 1);
1575 uint64_t valuebw
= 0;
1576 uint64_t cache_size
;
1580 val
= qapi_enum_parse(&MigrationParameter_lookup
, param
, -1, &err
);
1586 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1587 p
->has_compress_level
= true;
1588 visit_type_int(v
, param
, &p
->compress_level
, &err
);
1590 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1591 p
->has_compress_threads
= true;
1592 visit_type_int(v
, param
, &p
->compress_threads
, &err
);
1594 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1595 p
->has_decompress_threads
= true;
1596 visit_type_int(v
, param
, &p
->decompress_threads
, &err
);
1598 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
:
1599 p
->has_cpu_throttle_initial
= true;
1600 visit_type_int(v
, param
, &p
->cpu_throttle_initial
, &err
);
1602 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
:
1603 p
->has_cpu_throttle_increment
= true;
1604 visit_type_int(v
, param
, &p
->cpu_throttle_increment
, &err
);
1606 case MIGRATION_PARAMETER_TLS_CREDS
:
1607 p
->has_tls_creds
= true;
1608 p
->tls_creds
= g_new0(StrOrNull
, 1);
1609 p
->tls_creds
->type
= QTYPE_QSTRING
;
1610 visit_type_str(v
, param
, &p
->tls_creds
->u
.s
, &err
);
1612 case MIGRATION_PARAMETER_TLS_HOSTNAME
:
1613 p
->has_tls_hostname
= true;
1614 p
->tls_hostname
= g_new0(StrOrNull
, 1);
1615 p
->tls_hostname
->type
= QTYPE_QSTRING
;
1616 visit_type_str(v
, param
, &p
->tls_hostname
->u
.s
, &err
);
1618 case MIGRATION_PARAMETER_MAX_BANDWIDTH
:
1619 p
->has_max_bandwidth
= true;
1621 * Can't use visit_type_size() here, because it
1622 * defaults to Bytes rather than Mebibytes.
1624 ret
= qemu_strtosz_MiB(valuestr
, NULL
, &valuebw
);
1625 if (ret
< 0 || valuebw
> INT64_MAX
1626 || (size_t)valuebw
!= valuebw
) {
1627 error_setg(&err
, "Invalid size %s", valuestr
);
1630 p
->max_bandwidth
= valuebw
;
1632 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1633 p
->has_downtime_limit
= true;
1634 visit_type_int(v
, param
, &p
->downtime_limit
, &err
);
1636 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
:
1637 p
->has_x_checkpoint_delay
= true;
1638 visit_type_int(v
, param
, &p
->x_checkpoint_delay
, &err
);
1640 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL
:
1641 p
->has_block_incremental
= true;
1642 visit_type_bool(v
, param
, &p
->block_incremental
, &err
);
1644 case MIGRATION_PARAMETER_X_MULTIFD_CHANNELS
:
1645 p
->has_x_multifd_channels
= true;
1646 visit_type_int(v
, param
, &p
->x_multifd_channels
, &err
);
1648 case MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT
:
1649 p
->has_x_multifd_page_count
= true;
1650 visit_type_int(v
, param
, &p
->x_multifd_page_count
, &err
);
1652 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
:
1653 p
->has_xbzrle_cache_size
= true;
1654 visit_type_size(v
, param
, &cache_size
, &err
);
1655 if (err
|| cache_size
> INT64_MAX
1656 || (size_t)cache_size
!= cache_size
) {
1657 error_setg(&err
, "Invalid size %s", valuestr
);
1660 p
->xbzrle_cache_size
= cache_size
;
1670 qmp_migrate_set_parameters(p
, &err
);
1673 qapi_free_MigrateSetParameters(p
);
1675 hmp_handle_error(mon
, &err
);
1678 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
1681 const char *protocol
= qdict_get_str(qdict
, "protocol");
1682 const char *hostname
= qdict_get_str(qdict
, "hostname");
1683 bool has_port
= qdict_haskey(qdict
, "port");
1684 int port
= qdict_get_try_int(qdict
, "port", -1);
1685 bool has_tls_port
= qdict_haskey(qdict
, "tls-port");
1686 int tls_port
= qdict_get_try_int(qdict
, "tls-port", -1);
1687 const char *cert_subject
= qdict_get_try_str(qdict
, "cert-subject");
1689 qmp_client_migrate_info(protocol
, hostname
,
1690 has_port
, port
, has_tls_port
, tls_port
,
1691 !!cert_subject
, cert_subject
, &err
);
1692 hmp_handle_error(mon
, &err
);
1695 void hmp_migrate_start_postcopy(Monitor
*mon
, const QDict
*qdict
)
1698 qmp_migrate_start_postcopy(&err
);
1699 hmp_handle_error(mon
, &err
);
1702 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
1706 qmp_x_colo_lost_heartbeat(&err
);
1707 hmp_handle_error(mon
, &err
);
1710 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1712 const char *protocol
= qdict_get_str(qdict
, "protocol");
1713 const char *password
= qdict_get_str(qdict
, "password");
1714 const char *connected
= qdict_get_try_str(qdict
, "connected");
1717 qmp_set_password(protocol
, password
, !!connected
, connected
, &err
);
1718 hmp_handle_error(mon
, &err
);
1721 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1723 const char *protocol
= qdict_get_str(qdict
, "protocol");
1724 const char *whenstr
= qdict_get_str(qdict
, "time");
1727 qmp_expire_password(protocol
, whenstr
, &err
);
1728 hmp_handle_error(mon
, &err
);
1731 void hmp_eject(Monitor
*mon
, const QDict
*qdict
)
1733 bool force
= qdict_get_try_bool(qdict
, "force", false);
1734 const char *device
= qdict_get_str(qdict
, "device");
1737 qmp_eject(true, device
, false, NULL
, true, force
, &err
);
1738 hmp_handle_error(mon
, &err
);
1741 static void hmp_change_read_arg(void *opaque
, const char *password
,
1742 void *readline_opaque
)
1744 qmp_change_vnc_password(password
, NULL
);
1745 monitor_read_command(opaque
, 1);
1748 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1750 const char *device
= qdict_get_str(qdict
, "device");
1751 const char *target
= qdict_get_str(qdict
, "target");
1752 const char *arg
= qdict_get_try_str(qdict
, "arg");
1753 const char *read_only
= qdict_get_try_str(qdict
, "read-only-mode");
1754 BlockdevChangeReadOnlyMode read_only_mode
= 0;
1757 if (strcmp(device
, "vnc") == 0) {
1760 "Parameter 'read-only-mode' is invalid for VNC\n");
1763 if (strcmp(target
, "passwd") == 0 ||
1764 strcmp(target
, "password") == 0) {
1766 monitor_read_password(mon
, hmp_change_read_arg
, NULL
);
1770 qmp_change("vnc", target
, !!arg
, arg
, &err
);
1774 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup
,
1776 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
1778 hmp_handle_error(mon
, &err
);
1783 qmp_blockdev_change_medium(true, device
, false, NULL
, target
,
1784 !!arg
, arg
, !!read_only
, read_only_mode
,
1788 hmp_handle_error(mon
, &err
);
1791 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
1794 BlockIOThrottle throttle
= {
1796 .device
= (char *) qdict_get_str(qdict
, "device"),
1797 .bps
= qdict_get_int(qdict
, "bps"),
1798 .bps_rd
= qdict_get_int(qdict
, "bps_rd"),
1799 .bps_wr
= qdict_get_int(qdict
, "bps_wr"),
1800 .iops
= qdict_get_int(qdict
, "iops"),
1801 .iops_rd
= qdict_get_int(qdict
, "iops_rd"),
1802 .iops_wr
= qdict_get_int(qdict
, "iops_wr"),
1805 qmp_block_set_io_throttle(&throttle
, &err
);
1806 hmp_handle_error(mon
, &err
);
1809 void hmp_block_stream(Monitor
*mon
, const QDict
*qdict
)
1811 Error
*error
= NULL
;
1812 const char *device
= qdict_get_str(qdict
, "device");
1813 const char *base
= qdict_get_try_str(qdict
, "base");
1814 int64_t speed
= qdict_get_try_int(qdict
, "speed", 0);
1816 qmp_block_stream(true, device
, device
, base
!= NULL
, base
, false, NULL
,
1817 false, NULL
, qdict_haskey(qdict
, "speed"), speed
,
1818 true, BLOCKDEV_ON_ERROR_REPORT
, &error
);
1820 hmp_handle_error(mon
, &error
);
1823 void hmp_block_job_set_speed(Monitor
*mon
, const QDict
*qdict
)
1825 Error
*error
= NULL
;
1826 const char *device
= qdict_get_str(qdict
, "device");
1827 int64_t value
= qdict_get_int(qdict
, "speed");
1829 qmp_block_job_set_speed(device
, value
, &error
);
1831 hmp_handle_error(mon
, &error
);
1834 void hmp_block_job_cancel(Monitor
*mon
, const QDict
*qdict
)
1836 Error
*error
= NULL
;
1837 const char *device
= qdict_get_str(qdict
, "device");
1838 bool force
= qdict_get_try_bool(qdict
, "force", false);
1840 qmp_block_job_cancel(device
, true, force
, &error
);
1842 hmp_handle_error(mon
, &error
);
1845 void hmp_block_job_pause(Monitor
*mon
, const QDict
*qdict
)
1847 Error
*error
= NULL
;
1848 const char *device
= qdict_get_str(qdict
, "device");
1850 qmp_block_job_pause(device
, &error
);
1852 hmp_handle_error(mon
, &error
);
1855 void hmp_block_job_resume(Monitor
*mon
, const QDict
*qdict
)
1857 Error
*error
= NULL
;
1858 const char *device
= qdict_get_str(qdict
, "device");
1860 qmp_block_job_resume(device
, &error
);
1862 hmp_handle_error(mon
, &error
);
1865 void hmp_block_job_complete(Monitor
*mon
, const QDict
*qdict
)
1867 Error
*error
= NULL
;
1868 const char *device
= qdict_get_str(qdict
, "device");
1870 qmp_block_job_complete(device
, &error
);
1872 hmp_handle_error(mon
, &error
);
1875 typedef struct HMPMigrationStatus
1879 bool is_block_migration
;
1880 } HMPMigrationStatus
;
1882 static void hmp_migrate_status_cb(void *opaque
)
1884 HMPMigrationStatus
*status
= opaque
;
1885 MigrationInfo
*info
;
1887 info
= qmp_query_migrate(NULL
);
1888 if (!info
->has_status
|| info
->status
== MIGRATION_STATUS_ACTIVE
||
1889 info
->status
== MIGRATION_STATUS_SETUP
) {
1890 if (info
->has_disk
) {
1893 if (info
->disk
->remaining
) {
1894 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
1899 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
1900 monitor_flush(status
->mon
);
1903 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1905 if (status
->is_block_migration
) {
1906 monitor_printf(status
->mon
, "\n");
1908 if (info
->has_error_desc
) {
1909 error_report("%s", info
->error_desc
);
1911 monitor_resume(status
->mon
);
1912 timer_del(status
->timer
);
1916 qapi_free_MigrationInfo(info
);
1919 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
1921 bool detach
= qdict_get_try_bool(qdict
, "detach", false);
1922 bool blk
= qdict_get_try_bool(qdict
, "blk", false);
1923 bool inc
= qdict_get_try_bool(qdict
, "inc", false);
1924 const char *uri
= qdict_get_str(qdict
, "uri");
1927 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
, false, false, &err
);
1929 hmp_handle_error(mon
, &err
);
1934 HMPMigrationStatus
*status
;
1936 if (monitor_suspend(mon
) < 0) {
1937 monitor_printf(mon
, "terminal does not allow synchronous "
1938 "migration, continuing detached\n");
1942 status
= g_malloc0(sizeof(*status
));
1944 status
->is_block_migration
= blk
|| inc
;
1945 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
1947 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
1951 void hmp_device_add(Monitor
*mon
, const QDict
*qdict
)
1955 qmp_device_add((QDict
*)qdict
, NULL
, &err
);
1956 hmp_handle_error(mon
, &err
);
1959 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
1961 const char *id
= qdict_get_str(qdict
, "id");
1964 qmp_device_del(id
, &err
);
1965 hmp_handle_error(mon
, &err
);
1968 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
1971 bool paging
= qdict_get_try_bool(qdict
, "paging", false);
1972 bool zlib
= qdict_get_try_bool(qdict
, "zlib", false);
1973 bool lzo
= qdict_get_try_bool(qdict
, "lzo", false);
1974 bool snappy
= qdict_get_try_bool(qdict
, "snappy", false);
1975 const char *file
= qdict_get_str(qdict
, "filename");
1976 bool has_begin
= qdict_haskey(qdict
, "begin");
1977 bool has_length
= qdict_haskey(qdict
, "length");
1978 bool has_detach
= qdict_haskey(qdict
, "detach");
1981 bool detach
= false;
1982 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1985 if (zlib
+ lzo
+ snappy
> 1) {
1986 error_setg(&err
, "only one of '-z|-l|-s' can be set");
1987 hmp_handle_error(mon
, &err
);
1992 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1996 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
2000 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
2004 begin
= qdict_get_int(qdict
, "begin");
2007 length
= qdict_get_int(qdict
, "length");
2010 detach
= qdict_get_bool(qdict
, "detach");
2013 prot
= g_strconcat("file:", file
, NULL
);
2015 qmp_dump_guest_memory(paging
, prot
, true, detach
, has_begin
, begin
,
2016 has_length
, length
, true, dump_format
, &err
);
2017 hmp_handle_error(mon
, &err
);
2021 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
2026 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
2031 netdev_add(opts
, &err
);
2033 qemu_opts_del(opts
);
2037 hmp_handle_error(mon
, &err
);
2040 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
2042 const char *id
= qdict_get_str(qdict
, "id");
2045 qmp_netdev_del(id
, &err
);
2046 hmp_handle_error(mon
, &err
);
2049 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
2055 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
2057 hmp_handle_error(mon
, &err
);
2061 obj
= user_creatable_add_opts(opts
, &err
);
2062 qemu_opts_del(opts
);
2065 hmp_handle_error(mon
, &err
);
2072 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
2074 const char *fdname
= qdict_get_str(qdict
, "fdname");
2077 qmp_getfd(fdname
, &err
);
2078 hmp_handle_error(mon
, &err
);
2081 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
2083 const char *fdname
= qdict_get_str(qdict
, "fdname");
2086 qmp_closefd(fdname
, &err
);
2087 hmp_handle_error(mon
, &err
);
2090 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
2092 const char *keys
= qdict_get_str(qdict
, "keys");
2093 KeyValueList
*keylist
, *head
= NULL
, *tmp
= NULL
;
2094 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
2095 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
2101 separator
= strchr(keys
, '-');
2102 keyname_len
= separator
? separator
- keys
: strlen(keys
);
2104 /* Be compatible with old interface, convert user inputted "<" */
2105 if (keys
[0] == '<' && keyname_len
== 1) {
2110 keylist
= g_malloc0(sizeof(*keylist
));
2111 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
2117 tmp
->next
= keylist
;
2121 if (strstart(keys
, "0x", NULL
)) {
2123 int value
= strtoul(keys
, &endp
, 0);
2124 assert(endp
<= keys
+ keyname_len
);
2125 if (endp
!= keys
+ keyname_len
) {
2128 keylist
->value
->type
= KEY_VALUE_KIND_NUMBER
;
2129 keylist
->value
->u
.number
.data
= value
;
2131 int idx
= index_from_key(keys
, keyname_len
);
2132 if (idx
== Q_KEY_CODE__MAX
) {
2135 keylist
->value
->type
= KEY_VALUE_KIND_QCODE
;
2136 keylist
->value
->u
.qcode
.data
= idx
;
2142 keys
= separator
+ 1;
2145 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
2146 hmp_handle_error(mon
, &err
);
2149 qapi_free_KeyValueList(head
);
2153 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
2157 void hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
2159 const char *filename
= qdict_get_str(qdict
, "filename");
2162 qmp_screendump(filename
, &err
);
2163 hmp_handle_error(mon
, &err
);
2166 void hmp_nbd_server_start(Monitor
*mon
, const QDict
*qdict
)
2168 const char *uri
= qdict_get_str(qdict
, "uri");
2169 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2170 bool all
= qdict_get_try_bool(qdict
, "all", false);
2171 Error
*local_err
= NULL
;
2172 BlockInfoList
*block_list
, *info
;
2173 SocketAddress
*addr
;
2175 if (writable
&& !all
) {
2176 error_setg(&local_err
, "-w only valid together with -a");
2180 /* First check if the address is valid and start the server. */
2181 addr
= socket_parse(uri
, &local_err
);
2182 if (local_err
!= NULL
) {
2186 nbd_server_start(addr
, NULL
, &local_err
);
2187 qapi_free_SocketAddress(addr
);
2188 if (local_err
!= NULL
) {
2196 /* Then try adding all block devices. If one fails, close all and
2199 block_list
= qmp_query_block(NULL
);
2201 for (info
= block_list
; info
; info
= info
->next
) {
2202 if (!info
->value
->has_inserted
) {
2206 qmp_nbd_server_add(info
->value
->device
, true, writable
, &local_err
);
2208 if (local_err
!= NULL
) {
2209 qmp_nbd_server_stop(NULL
);
2214 qapi_free_BlockInfoList(block_list
);
2217 hmp_handle_error(mon
, &local_err
);
2220 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
2222 const char *device
= qdict_get_str(qdict
, "device");
2223 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
2224 Error
*local_err
= NULL
;
2226 qmp_nbd_server_add(device
, true, writable
, &local_err
);
2228 if (local_err
!= NULL
) {
2229 hmp_handle_error(mon
, &local_err
);
2233 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
2237 qmp_nbd_server_stop(&err
);
2238 hmp_handle_error(mon
, &err
);
2241 void hmp_cpu_add(Monitor
*mon
, const QDict
*qdict
)
2246 cpuid
= qdict_get_int(qdict
, "id");
2247 qmp_cpu_add(cpuid
, &err
);
2248 hmp_handle_error(mon
, &err
);
2251 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
2253 const char *args
= qdict_get_str(qdict
, "args");
2257 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
2259 error_setg(&err
, "Parsing chardev args failed");
2261 qemu_chr_new_from_opts(opts
, &err
);
2262 qemu_opts_del(opts
);
2264 hmp_handle_error(mon
, &err
);
2267 void hmp_chardev_change(Monitor
*mon
, const QDict
*qdict
)
2269 const char *args
= qdict_get_str(qdict
, "args");
2272 ChardevBackend
*backend
= NULL
;
2273 ChardevReturn
*ret
= NULL
;
2274 QemuOpts
*opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
,
2277 error_setg(&err
, "Parsing chardev args failed");
2281 id
= qdict_get_str(qdict
, "id");
2282 if (qemu_opts_id(opts
)) {
2283 error_setg(&err
, "Unexpected 'id' parameter");
2287 backend
= qemu_chr_parse_opts(opts
, &err
);
2292 ret
= qmp_chardev_change(id
, backend
, &err
);
2295 qapi_free_ChardevReturn(ret
);
2296 qapi_free_ChardevBackend(backend
);
2297 qemu_opts_del(opts
);
2298 hmp_handle_error(mon
, &err
);
2301 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
2303 Error
*local_err
= NULL
;
2305 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
2306 hmp_handle_error(mon
, &local_err
);
2309 void hmp_chardev_send_break(Monitor
*mon
, const QDict
*qdict
)
2311 Error
*local_err
= NULL
;
2313 qmp_chardev_send_break(qdict_get_str(qdict
, "id"), &local_err
);
2314 hmp_handle_error(mon
, &local_err
);
2317 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
2320 BlockBackend
*local_blk
= NULL
;
2321 AioContext
*aio_context
;
2322 const char* device
= qdict_get_str(qdict
, "device");
2323 const char* command
= qdict_get_str(qdict
, "command");
2327 blk
= blk_by_name(device
);
2329 BlockDriverState
*bs
= bdrv_lookup_bs(NULL
, device
, &err
);
2331 blk
= local_blk
= blk_new(0, BLK_PERM_ALL
);
2332 ret
= blk_insert_bs(blk
, bs
, &err
);
2341 aio_context
= blk_get_aio_context(blk
);
2342 aio_context_acquire(aio_context
);
2345 * Notably absent: Proper permission management. This is sad, but it seems
2346 * almost impossible to achieve without changing the semantics and thereby
2347 * limiting the use cases of the qemu-io HMP command.
2349 * In an ideal world we would unconditionally create a new BlockBackend for
2350 * qemuio_command(), but we have commands like 'reopen' and want them to
2351 * take effect on the exact BlockBackend whose name the user passed instead
2352 * of just on a temporary copy of it.
2354 * Another problem is that deleting the temporary BlockBackend involves
2355 * draining all requests on it first, but some qemu-iotests cases want to
2356 * issue multiple aio_read/write requests and expect them to complete in
2357 * the background while the monitor has already returned.
2359 * This is also what prevents us from saving the original permissions and
2360 * restoring them later: We can't revoke permissions until all requests
2361 * have completed, and we don't know when that is nor can we really let
2362 * anything else run before we have revoken them to avoid race conditions.
2364 * What happens now is that command() in qemu-io-cmds.c can extend the
2365 * permissions if necessary for the qemu-io command. And they simply stay
2366 * extended, possibly resulting in a read-only guest device keeping write
2367 * permissions. Ugly, but it appears to be the lesser evil.
2369 qemuio_command(blk
, command
);
2371 aio_context_release(aio_context
);
2374 blk_unref(local_blk
);
2375 hmp_handle_error(mon
, &err
);
2378 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
2380 const char *id
= qdict_get_str(qdict
, "id");
2383 user_creatable_del(id
, &err
);
2384 hmp_handle_error(mon
, &err
);
2387 void hmp_info_memdev(Monitor
*mon
, const QDict
*qdict
)
2390 MemdevList
*memdev_list
= qmp_query_memdev(&err
);
2391 MemdevList
*m
= memdev_list
;
2396 v
= string_output_visitor_new(false, &str
);
2397 visit_type_uint16List(v
, NULL
, &m
->value
->host_nodes
, NULL
);
2398 monitor_printf(mon
, "memory backend: %s\n", m
->value
->id
);
2399 monitor_printf(mon
, " size: %" PRId64
"\n", m
->value
->size
);
2400 monitor_printf(mon
, " merge: %s\n",
2401 m
->value
->merge
? "true" : "false");
2402 monitor_printf(mon
, " dump: %s\n",
2403 m
->value
->dump
? "true" : "false");
2404 monitor_printf(mon
, " prealloc: %s\n",
2405 m
->value
->prealloc
? "true" : "false");
2406 monitor_printf(mon
, " policy: %s\n",
2407 HostMemPolicy_str(m
->value
->policy
));
2408 visit_complete(v
, &str
);
2409 monitor_printf(mon
, " host nodes: %s\n", str
);
2416 monitor_printf(mon
, "\n");
2418 qapi_free_MemdevList(memdev_list
);
2419 hmp_handle_error(mon
, &err
);
2422 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
2425 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
2426 MemoryDeviceInfoList
*info
;
2427 MemoryDeviceInfo
*value
;
2428 PCDIMMDeviceInfo
*di
;
2430 for (info
= info_list
; info
; info
= info
->next
) {
2431 value
= info
->value
;
2434 switch (value
->type
) {
2435 case MEMORY_DEVICE_INFO_KIND_DIMM
:
2436 di
= value
->u
.dimm
.data
;
2438 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2439 MemoryDeviceInfoKind_str(value
->type
),
2440 di
->id
? di
->id
: "");
2441 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
2442 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
2443 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
2444 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
2445 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
2446 monitor_printf(mon
, " hotplugged: %s\n",
2447 di
->hotplugged
? "true" : "false");
2448 monitor_printf(mon
, " hotpluggable: %s\n",
2449 di
->hotpluggable
? "true" : "false");
2457 qapi_free_MemoryDeviceInfoList(info_list
);
2458 hmp_handle_error(mon
, &err
);
2461 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
2463 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
2464 IOThreadInfoList
*info
;
2465 IOThreadInfo
*value
;
2467 for (info
= info_list
; info
; info
= info
->next
) {
2468 value
= info
->value
;
2469 monitor_printf(mon
, "%s:\n", value
->id
);
2470 monitor_printf(mon
, " thread_id=%" PRId64
"\n", value
->thread_id
);
2471 monitor_printf(mon
, " poll-max-ns=%" PRId64
"\n", value
->poll_max_ns
);
2472 monitor_printf(mon
, " poll-grow=%" PRId64
"\n", value
->poll_grow
);
2473 monitor_printf(mon
, " poll-shrink=%" PRId64
"\n", value
->poll_shrink
);
2476 qapi_free_IOThreadInfoList(info_list
);
2479 void hmp_qom_list(Monitor
*mon
, const QDict
*qdict
)
2481 const char *path
= qdict_get_try_str(qdict
, "path");
2482 ObjectPropertyInfoList
*list
;
2486 monitor_printf(mon
, "/\n");
2490 list
= qmp_qom_list(path
, &err
);
2492 ObjectPropertyInfoList
*start
= list
;
2493 while (list
!= NULL
) {
2494 ObjectPropertyInfo
*value
= list
->value
;
2496 monitor_printf(mon
, "%s (%s)\n",
2497 value
->name
, value
->type
);
2500 qapi_free_ObjectPropertyInfoList(start
);
2502 hmp_handle_error(mon
, &err
);
2505 void hmp_qom_set(Monitor
*mon
, const QDict
*qdict
)
2507 const char *path
= qdict_get_str(qdict
, "path");
2508 const char *property
= qdict_get_str(qdict
, "property");
2509 const char *value
= qdict_get_str(qdict
, "value");
2511 bool ambiguous
= false;
2514 obj
= object_resolve_path(path
, &ambiguous
);
2516 error_set(&err
, ERROR_CLASS_DEVICE_NOT_FOUND
,
2517 "Device '%s' not found", path
);
2520 monitor_printf(mon
, "Warning: Path '%s' is ambiguous\n", path
);
2522 object_property_parse(obj
, value
, property
, &err
);
2524 hmp_handle_error(mon
, &err
);
2527 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
2529 const char *name
= qdict_get_str(qdict
, "name");
2530 RockerSwitch
*rocker
;
2533 rocker
= qmp_query_rocker(name
, &err
);
2535 hmp_handle_error(mon
, &err
);
2539 monitor_printf(mon
, "name: %s\n", rocker
->name
);
2540 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
2541 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
2543 qapi_free_RockerSwitch(rocker
);
2546 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
2548 RockerPortList
*list
, *port
;
2549 const char *name
= qdict_get_str(qdict
, "name");
2552 list
= qmp_query_rocker_ports(name
, &err
);
2554 hmp_handle_error(mon
, &err
);
2558 monitor_printf(mon
, " ena/ speed/ auto\n");
2559 monitor_printf(mon
, " port link duplex neg?\n");
2561 for (port
= list
; port
; port
= port
->next
) {
2562 monitor_printf(mon
, "%10s %-4s %-3s %2s %-3s\n",
2564 port
->value
->enabled
? port
->value
->link_up
?
2565 "up" : "down" : "!ena",
2566 port
->value
->speed
== 10000 ? "10G" : "??",
2567 port
->value
->duplex
? "FD" : "HD",
2568 port
->value
->autoneg
? "Yes" : "No");
2571 qapi_free_RockerPortList(list
);
2574 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
2576 RockerOfDpaFlowList
*list
, *info
;
2577 const char *name
= qdict_get_str(qdict
, "name");
2578 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
2581 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
2583 hmp_handle_error(mon
, &err
);
2587 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
2589 for (info
= list
; info
; info
= info
->next
) {
2590 RockerOfDpaFlow
*flow
= info
->value
;
2591 RockerOfDpaFlowKey
*key
= flow
->key
;
2592 RockerOfDpaFlowMask
*mask
= flow
->mask
;
2593 RockerOfDpaFlowAction
*action
= flow
->action
;
2596 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
2597 key
->priority
, key
->tbl_id
, flow
->hits
);
2599 monitor_printf(mon
, "%-4d %-3d ",
2600 key
->priority
, key
->tbl_id
);
2603 if (key
->has_in_pport
) {
2604 monitor_printf(mon
, " pport %d", key
->in_pport
);
2605 if (mask
->has_in_pport
) {
2606 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
2610 if (key
->has_vlan_id
) {
2611 monitor_printf(mon
, " vlan %d",
2612 key
->vlan_id
& VLAN_VID_MASK
);
2613 if (mask
->has_vlan_id
) {
2614 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
2618 if (key
->has_tunnel_id
) {
2619 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
2620 if (mask
->has_tunnel_id
) {
2621 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
2625 if (key
->has_eth_type
) {
2626 switch (key
->eth_type
) {
2628 monitor_printf(mon
, " ARP");
2631 monitor_printf(mon
, " IP");
2634 monitor_printf(mon
, " IPv6");
2637 monitor_printf(mon
, " LACP");
2640 monitor_printf(mon
, " LLDP");
2643 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2648 if (key
->has_eth_src
) {
2649 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2650 (mask
->has_eth_src
) &&
2651 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2652 monitor_printf(mon
, " src <any mcast/bcast>");
2653 } else if ((strcmp(key
->eth_src
, "00:00:00:00:00:00") == 0) &&
2654 (mask
->has_eth_src
) &&
2655 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2656 monitor_printf(mon
, " src <any ucast>");
2658 monitor_printf(mon
, " src %s", key
->eth_src
);
2659 if (mask
->has_eth_src
) {
2660 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2665 if (key
->has_eth_dst
) {
2666 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2667 (mask
->has_eth_dst
) &&
2668 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2669 monitor_printf(mon
, " dst <any mcast/bcast>");
2670 } else if ((strcmp(key
->eth_dst
, "00:00:00:00:00:00") == 0) &&
2671 (mask
->has_eth_dst
) &&
2672 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2673 monitor_printf(mon
, " dst <any ucast>");
2675 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2676 if (mask
->has_eth_dst
) {
2677 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2682 if (key
->has_ip_proto
) {
2683 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2684 if (mask
->has_ip_proto
) {
2685 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2689 if (key
->has_ip_tos
) {
2690 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2691 if (mask
->has_ip_tos
) {
2692 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2696 if (key
->has_ip_dst
) {
2697 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2700 if (action
->has_goto_tbl
|| action
->has_group_id
||
2701 action
->has_new_vlan_id
) {
2702 monitor_printf(mon
, " -->");
2705 if (action
->has_new_vlan_id
) {
2706 monitor_printf(mon
, " apply new vlan %d",
2707 ntohs(action
->new_vlan_id
));
2710 if (action
->has_group_id
) {
2711 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2714 if (action
->has_goto_tbl
) {
2715 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2718 monitor_printf(mon
, "\n");
2721 qapi_free_RockerOfDpaFlowList(list
);
2724 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2726 RockerOfDpaGroupList
*list
, *g
;
2727 const char *name
= qdict_get_str(qdict
, "name");
2728 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2732 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2734 hmp_handle_error(mon
, &err
);
2738 monitor_printf(mon
, "id (decode) --> buckets\n");
2740 for (g
= list
; g
; g
= g
->next
) {
2741 RockerOfDpaGroup
*group
= g
->value
;
2743 monitor_printf(mon
, "0x%08x", group
->id
);
2745 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2746 group
->type
== 1 ? "L2 rewrite" :
2747 group
->type
== 2 ? "L3 unicast" :
2748 group
->type
== 3 ? "L2 multicast" :
2749 group
->type
== 4 ? "L2 flood" :
2750 group
->type
== 5 ? "L3 interface" :
2751 group
->type
== 6 ? "L3 multicast" :
2752 group
->type
== 7 ? "L3 ECMP" :
2753 group
->type
== 8 ? "L2 overlay" :
2756 if (group
->has_vlan_id
) {
2757 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2760 if (group
->has_pport
) {
2761 monitor_printf(mon
, " pport %d", group
->pport
);
2764 if (group
->has_index
) {
2765 monitor_printf(mon
, " index %d", group
->index
);
2768 monitor_printf(mon
, ") -->");
2770 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2772 monitor_printf(mon
, " set vlan %d",
2773 group
->set_vlan_id
& VLAN_VID_MASK
);
2776 if (group
->has_set_eth_src
) {
2779 monitor_printf(mon
, " set");
2781 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2784 if (group
->has_set_eth_dst
) {
2787 monitor_printf(mon
, " set");
2789 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2794 if (group
->has_ttl_check
&& group
->ttl_check
) {
2795 monitor_printf(mon
, " check TTL");
2798 if (group
->has_group_id
&& group
->group_id
) {
2799 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2802 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2803 monitor_printf(mon
, " pop vlan");
2806 if (group
->has_out_pport
) {
2807 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2810 if (group
->has_group_ids
) {
2811 struct uint32List
*id
;
2813 monitor_printf(mon
, " groups [");
2814 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2815 monitor_printf(mon
, "0x%08x", id
->value
);
2817 monitor_printf(mon
, ",");
2820 monitor_printf(mon
, "]");
2823 monitor_printf(mon
, "\n");
2826 qapi_free_RockerOfDpaGroupList(list
);
2829 void hmp_info_dump(Monitor
*mon
, const QDict
*qdict
)
2831 DumpQueryResult
*result
= qmp_query_dump(NULL
);
2833 assert(result
&& result
->status
< DUMP_STATUS__MAX
);
2834 monitor_printf(mon
, "Status: %s\n", DumpStatus_str(result
->status
));
2836 if (result
->status
== DUMP_STATUS_ACTIVE
) {
2838 assert(result
->total
!= 0);
2839 percent
= 100.0 * result
->completed
/ result
->total
;
2840 monitor_printf(mon
, "Finished: %.2f %%\n", percent
);
2843 qapi_free_DumpQueryResult(result
);
2846 void hmp_info_ramblock(Monitor
*mon
, const QDict
*qdict
)
2848 ram_block_dump(mon
);
2851 void hmp_hotpluggable_cpus(Monitor
*mon
, const QDict
*qdict
)
2854 HotpluggableCPUList
*l
= qmp_query_hotpluggable_cpus(&err
);
2855 HotpluggableCPUList
*saved
= l
;
2856 CpuInstanceProperties
*c
;
2859 hmp_handle_error(mon
, &err
);
2863 monitor_printf(mon
, "Hotpluggable CPUs:\n");
2865 monitor_printf(mon
, " type: \"%s\"\n", l
->value
->type
);
2866 monitor_printf(mon
, " vcpus_count: \"%" PRIu64
"\"\n",
2867 l
->value
->vcpus_count
);
2868 if (l
->value
->has_qom_path
) {
2869 monitor_printf(mon
, " qom_path: \"%s\"\n", l
->value
->qom_path
);
2872 c
= l
->value
->props
;
2873 monitor_printf(mon
, " CPUInstance Properties:\n");
2874 if (c
->has_node_id
) {
2875 monitor_printf(mon
, " node-id: \"%" PRIu64
"\"\n", c
->node_id
);
2877 if (c
->has_socket_id
) {
2878 monitor_printf(mon
, " socket-id: \"%" PRIu64
"\"\n", c
->socket_id
);
2880 if (c
->has_core_id
) {
2881 monitor_printf(mon
, " core-id: \"%" PRIu64
"\"\n", c
->core_id
);
2883 if (c
->has_thread_id
) {
2884 monitor_printf(mon
, " thread-id: \"%" PRIu64
"\"\n", c
->thread_id
);
2890 qapi_free_HotpluggableCPUList(saved
);
2893 void hmp_info_vm_generation_id(Monitor
*mon
, const QDict
*qdict
)
2896 GuidInfo
*info
= qmp_query_vm_generation_id(&err
);
2898 monitor_printf(mon
, "%s\n", info
->guid
);
2900 hmp_handle_error(mon
, &err
);
2901 qapi_free_GuidInfo(info
);
2904 void hmp_info_memory_size_summary(Monitor
*mon
, const QDict
*qdict
)
2907 MemoryInfo
*info
= qmp_query_memory_size_summary(&err
);
2909 monitor_printf(mon
, "base memory: %" PRIu64
"\n",
2912 if (info
->has_plugged_memory
) {
2913 monitor_printf(mon
, "plugged memory: %" PRIu64
"\n",
2914 info
->plugged_memory
);
2917 qapi_free_MemoryInfo(info
);
2919 hmp_handle_error(mon
, &err
);