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 "sysemu/char.h"
21 #include "sysemu/block-backend.h"
22 #include "qemu/option.h"
23 #include "qemu/timer.h"
24 #include "qmp-commands.h"
25 #include "qemu/sockets.h"
26 #include "monitor/monitor.h"
27 #include "monitor/qdev.h"
28 #include "qapi/opts-visitor.h"
29 #include "qapi/qmp/qerror.h"
30 #include "qapi/string-output-visitor.h"
31 #include "qapi/util.h"
32 #include "qapi-visit.h"
33 #include "qom/object_interfaces.h"
34 #include "ui/console.h"
35 #include "block/qapi.h"
37 #include "qemu/cutils.h"
38 #include "qemu/error-report.h"
39 #include "hw/intc/intc.h"
42 #include <spice/enums.h>
45 static void hmp_handle_error(Monitor
*mon
, Error
**errp
)
49 error_report_err(*errp
);
53 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
57 info
= qmp_query_name(NULL
);
59 monitor_printf(mon
, "%s\n", info
->name
);
61 qapi_free_NameInfo(info
);
64 void hmp_info_version(Monitor
*mon
, const QDict
*qdict
)
68 info
= qmp_query_version(NULL
);
70 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
71 info
->qemu
->major
, info
->qemu
->minor
, info
->qemu
->micro
,
74 qapi_free_VersionInfo(info
);
77 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
81 info
= qmp_query_kvm(NULL
);
82 monitor_printf(mon
, "kvm support: ");
84 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
86 monitor_printf(mon
, "not compiled\n");
89 qapi_free_KvmInfo(info
);
92 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
96 info
= qmp_query_status(NULL
);
98 monitor_printf(mon
, "VM status: %s%s",
99 info
->running
? "running" : "paused",
100 info
->singlestep
? " (single step mode)" : "");
102 if (!info
->running
&& info
->status
!= RUN_STATE_PAUSED
) {
103 monitor_printf(mon
, " (%s)", RunState_lookup
[info
->status
]);
106 monitor_printf(mon
, "\n");
108 qapi_free_StatusInfo(info
);
111 void hmp_info_uuid(Monitor
*mon
, const QDict
*qdict
)
115 info
= qmp_query_uuid(NULL
);
116 monitor_printf(mon
, "%s\n", info
->UUID
);
117 qapi_free_UuidInfo(info
);
120 void hmp_info_chardev(Monitor
*mon
, const QDict
*qdict
)
122 ChardevInfoList
*char_info
, *info
;
124 char_info
= qmp_query_chardev(NULL
);
125 for (info
= char_info
; info
; info
= info
->next
) {
126 monitor_printf(mon
, "%s: filename=%s\n", info
->value
->label
,
127 info
->value
->filename
);
130 qapi_free_ChardevInfoList(char_info
);
133 void hmp_info_mice(Monitor
*mon
, const QDict
*qdict
)
135 MouseInfoList
*mice_list
, *mouse
;
137 mice_list
= qmp_query_mice(NULL
);
139 monitor_printf(mon
, "No mouse devices connected\n");
143 for (mouse
= mice_list
; mouse
; mouse
= mouse
->next
) {
144 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s%s\n",
145 mouse
->value
->current
? '*' : ' ',
146 mouse
->value
->index
, mouse
->value
->name
,
147 mouse
->value
->absolute
? " (absolute)" : "");
150 qapi_free_MouseInfoList(mice_list
);
153 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
156 MigrationCapabilityStatusList
*caps
, *cap
;
158 info
= qmp_query_migrate(NULL
);
159 caps
= qmp_query_migrate_capabilities(NULL
);
161 /* do not display parameters during setup */
162 if (info
->has_status
&& caps
) {
163 monitor_printf(mon
, "capabilities: ");
164 for (cap
= caps
; cap
; cap
= cap
->next
) {
165 monitor_printf(mon
, "%s: %s ",
166 MigrationCapability_lookup
[cap
->value
->capability
],
167 cap
->value
->state
? "on" : "off");
169 monitor_printf(mon
, "\n");
172 if (info
->has_status
) {
173 monitor_printf(mon
, "Migration status: %s",
174 MigrationStatus_lookup
[info
->status
]);
175 if (info
->status
== MIGRATION_STATUS_FAILED
&&
176 info
->has_error_desc
) {
177 monitor_printf(mon
, " (%s)\n", info
->error_desc
);
179 monitor_printf(mon
, "\n");
182 monitor_printf(mon
, "total time: %" PRIu64
" milliseconds\n",
184 if (info
->has_expected_downtime
) {
185 monitor_printf(mon
, "expected downtime: %" PRIu64
" milliseconds\n",
186 info
->expected_downtime
);
188 if (info
->has_downtime
) {
189 monitor_printf(mon
, "downtime: %" PRIu64
" milliseconds\n",
192 if (info
->has_setup_time
) {
193 monitor_printf(mon
, "setup: %" PRIu64
" milliseconds\n",
199 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
200 info
->ram
->transferred
>> 10);
201 monitor_printf(mon
, "throughput: %0.2f mbps\n",
203 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n",
204 info
->ram
->remaining
>> 10);
205 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n",
206 info
->ram
->total
>> 10);
207 monitor_printf(mon
, "duplicate: %" PRIu64
" pages\n",
208 info
->ram
->duplicate
);
209 monitor_printf(mon
, "skipped: %" PRIu64
" pages\n",
211 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
213 monitor_printf(mon
, "normal bytes: %" PRIu64
" kbytes\n",
214 info
->ram
->normal_bytes
>> 10);
215 monitor_printf(mon
, "dirty sync count: %" PRIu64
"\n",
216 info
->ram
->dirty_sync_count
);
217 if (info
->ram
->dirty_pages_rate
) {
218 monitor_printf(mon
, "dirty pages rate: %" PRIu64
" pages\n",
219 info
->ram
->dirty_pages_rate
);
221 if (info
->ram
->postcopy_requests
) {
222 monitor_printf(mon
, "postcopy request count: %" PRIu64
"\n",
223 info
->ram
->postcopy_requests
);
227 if (info
->has_disk
) {
228 monitor_printf(mon
, "transferred disk: %" PRIu64
" kbytes\n",
229 info
->disk
->transferred
>> 10);
230 monitor_printf(mon
, "remaining disk: %" PRIu64
" kbytes\n",
231 info
->disk
->remaining
>> 10);
232 monitor_printf(mon
, "total disk: %" PRIu64
" kbytes\n",
233 info
->disk
->total
>> 10);
236 if (info
->has_xbzrle_cache
) {
237 monitor_printf(mon
, "cache size: %" PRIu64
" bytes\n",
238 info
->xbzrle_cache
->cache_size
);
239 monitor_printf(mon
, "xbzrle transferred: %" PRIu64
" kbytes\n",
240 info
->xbzrle_cache
->bytes
>> 10);
241 monitor_printf(mon
, "xbzrle pages: %" PRIu64
" pages\n",
242 info
->xbzrle_cache
->pages
);
243 monitor_printf(mon
, "xbzrle cache miss: %" PRIu64
"\n",
244 info
->xbzrle_cache
->cache_miss
);
245 monitor_printf(mon
, "xbzrle cache miss rate: %0.2f\n",
246 info
->xbzrle_cache
->cache_miss_rate
);
247 monitor_printf(mon
, "xbzrle overflow : %" PRIu64
"\n",
248 info
->xbzrle_cache
->overflow
);
251 if (info
->has_cpu_throttle_percentage
) {
252 monitor_printf(mon
, "cpu throttle percentage: %" PRIu64
"\n",
253 info
->cpu_throttle_percentage
);
256 qapi_free_MigrationInfo(info
);
257 qapi_free_MigrationCapabilityStatusList(caps
);
260 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
262 MigrationCapabilityStatusList
*caps
, *cap
;
264 caps
= qmp_query_migrate_capabilities(NULL
);
267 monitor_printf(mon
, "capabilities: ");
268 for (cap
= caps
; cap
; cap
= cap
->next
) {
269 monitor_printf(mon
, "%s: %s ",
270 MigrationCapability_lookup
[cap
->value
->capability
],
271 cap
->value
->state
? "on" : "off");
273 monitor_printf(mon
, "\n");
276 qapi_free_MigrationCapabilityStatusList(caps
);
279 void hmp_info_migrate_parameters(Monitor
*mon
, const QDict
*qdict
)
281 MigrationParameters
*params
;
283 params
= qmp_query_migrate_parameters(NULL
);
286 monitor_printf(mon
, "parameters:");
287 assert(params
->has_compress_level
);
288 monitor_printf(mon
, " %s: %" PRId64
,
289 MigrationParameter_lookup
[MIGRATION_PARAMETER_COMPRESS_LEVEL
],
290 params
->compress_level
);
291 assert(params
->has_compress_threads
);
292 monitor_printf(mon
, " %s: %" PRId64
,
293 MigrationParameter_lookup
[MIGRATION_PARAMETER_COMPRESS_THREADS
],
294 params
->compress_threads
);
295 assert(params
->has_decompress_threads
);
296 monitor_printf(mon
, " %s: %" PRId64
,
297 MigrationParameter_lookup
[MIGRATION_PARAMETER_DECOMPRESS_THREADS
],
298 params
->decompress_threads
);
299 assert(params
->has_cpu_throttle_initial
);
300 monitor_printf(mon
, " %s: %" PRId64
,
301 MigrationParameter_lookup
[MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
],
302 params
->cpu_throttle_initial
);
303 assert(params
->has_cpu_throttle_increment
);
304 monitor_printf(mon
, " %s: %" PRId64
,
305 MigrationParameter_lookup
[MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
],
306 params
->cpu_throttle_increment
);
307 monitor_printf(mon
, " %s: '%s'",
308 MigrationParameter_lookup
[MIGRATION_PARAMETER_TLS_CREDS
],
309 params
->has_tls_creds
? params
->tls_creds
: "");
310 monitor_printf(mon
, " %s: '%s'",
311 MigrationParameter_lookup
[MIGRATION_PARAMETER_TLS_HOSTNAME
],
312 params
->has_tls_hostname
? params
->tls_hostname
: "");
313 assert(params
->has_max_bandwidth
);
314 monitor_printf(mon
, " %s: %" PRId64
" bytes/second",
315 MigrationParameter_lookup
[MIGRATION_PARAMETER_MAX_BANDWIDTH
],
316 params
->max_bandwidth
);
317 assert(params
->has_downtime_limit
);
318 monitor_printf(mon
, " %s: %" PRId64
" milliseconds",
319 MigrationParameter_lookup
[MIGRATION_PARAMETER_DOWNTIME_LIMIT
],
320 params
->downtime_limit
);
321 monitor_printf(mon
, " %s: %" PRId64
,
322 MigrationParameter_lookup
[MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
],
323 params
->x_checkpoint_delay
);
324 monitor_printf(mon
, "\n");
327 qapi_free_MigrationParameters(params
);
330 void hmp_info_migrate_cache_size(Monitor
*mon
, const QDict
*qdict
)
332 monitor_printf(mon
, "xbzrel cache size: %" PRId64
" kbytes\n",
333 qmp_query_migrate_cache_size(NULL
) >> 10);
336 void hmp_info_cpus(Monitor
*mon
, const QDict
*qdict
)
338 CpuInfoList
*cpu_list
, *cpu
;
340 cpu_list
= qmp_query_cpus(NULL
);
342 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
345 if (cpu
->value
->CPU
== monitor_get_cpu_index()) {
349 monitor_printf(mon
, "%c CPU #%" PRId64
":", active
, cpu
->value
->CPU
);
351 switch (cpu
->value
->arch
) {
352 case CPU_INFO_ARCH_X86
:
353 monitor_printf(mon
, " pc=0x%016" PRIx64
, cpu
->value
->u
.x86
.pc
);
355 case CPU_INFO_ARCH_PPC
:
356 monitor_printf(mon
, " nip=0x%016" PRIx64
, cpu
->value
->u
.ppc
.nip
);
358 case CPU_INFO_ARCH_SPARC
:
359 monitor_printf(mon
, " pc=0x%016" PRIx64
,
360 cpu
->value
->u
.q_sparc
.pc
);
361 monitor_printf(mon
, " npc=0x%016" PRIx64
,
362 cpu
->value
->u
.q_sparc
.npc
);
364 case CPU_INFO_ARCH_MIPS
:
365 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->u
.q_mips
.PC
);
367 case CPU_INFO_ARCH_TRICORE
:
368 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->u
.tricore
.PC
);
374 if (cpu
->value
->halted
) {
375 monitor_printf(mon
, " (halted)");
378 monitor_printf(mon
, " thread_id=%" PRId64
"\n", cpu
->value
->thread_id
);
381 qapi_free_CpuInfoList(cpu_list
);
384 static void print_block_info(Monitor
*mon
, BlockInfo
*info
,
385 BlockDeviceInfo
*inserted
, bool verbose
)
387 ImageInfo
*image_info
;
389 assert(!info
|| !info
->has_inserted
|| info
->inserted
== inserted
);
392 monitor_printf(mon
, "%s", info
->device
);
393 if (inserted
&& inserted
->has_node_name
) {
394 monitor_printf(mon
, " (%s)", inserted
->node_name
);
398 monitor_printf(mon
, "%s",
399 inserted
->has_node_name
400 ? inserted
->node_name
405 monitor_printf(mon
, ": %s (%s%s%s)\n",
408 inserted
->ro
? ", read-only" : "",
409 inserted
->encrypted
? ", encrypted" : "");
411 monitor_printf(mon
, ": [not inserted]\n");
415 if (info
->has_io_status
&& info
->io_status
!= BLOCK_DEVICE_IO_STATUS_OK
) {
416 monitor_printf(mon
, " I/O status: %s\n",
417 BlockDeviceIoStatus_lookup
[info
->io_status
]);
420 if (info
->removable
) {
421 monitor_printf(mon
, " Removable device: %slocked, tray %s\n",
422 info
->locked
? "" : "not ",
423 info
->tray_open
? "open" : "closed");
432 monitor_printf(mon
, " Cache mode: %s%s%s\n",
433 inserted
->cache
->writeback
? "writeback" : "writethrough",
434 inserted
->cache
->direct
? ", direct" : "",
435 inserted
->cache
->no_flush
? ", ignore flushes" : "");
437 if (inserted
->has_backing_file
) {
440 "(chain depth: %" PRId64
")\n",
441 inserted
->backing_file
,
442 inserted
->backing_file_depth
);
445 if (inserted
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
) {
446 monitor_printf(mon
, " Detect zeroes: %s\n",
447 BlockdevDetectZeroesOptions_lookup
[inserted
->detect_zeroes
]);
450 if (inserted
->bps
|| inserted
->bps_rd
|| inserted
->bps_wr
||
451 inserted
->iops
|| inserted
->iops_rd
|| inserted
->iops_wr
)
453 monitor_printf(mon
, " I/O throttling: bps=%" PRId64
454 " bps_rd=%" PRId64
" bps_wr=%" PRId64
456 " bps_rd_max=%" PRId64
457 " bps_wr_max=%" PRId64
458 " iops=%" PRId64
" iops_rd=%" PRId64
461 " iops_rd_max=%" PRId64
462 " iops_wr_max=%" PRId64
463 " iops_size=%" PRId64
469 inserted
->bps_rd_max
,
470 inserted
->bps_wr_max
,
475 inserted
->iops_rd_max
,
476 inserted
->iops_wr_max
,
482 monitor_printf(mon
, "\nImages:\n");
483 image_info
= inserted
->image
;
485 bdrv_image_info_dump((fprintf_function
)monitor_printf
,
487 if (image_info
->has_backing_image
) {
488 image_info
= image_info
->backing_image
;
496 void hmp_info_block(Monitor
*mon
, const QDict
*qdict
)
498 BlockInfoList
*block_list
, *info
;
499 BlockDeviceInfoList
*blockdev_list
, *blockdev
;
500 const char *device
= qdict_get_try_str(qdict
, "device");
501 bool verbose
= qdict_get_try_bool(qdict
, "verbose", false);
502 bool nodes
= qdict_get_try_bool(qdict
, "nodes", false);
503 bool printed
= false;
505 /* Print BlockBackend information */
507 block_list
= qmp_query_block(NULL
);
512 for (info
= block_list
; info
; info
= info
->next
) {
513 if (device
&& strcmp(device
, info
->value
->device
)) {
517 if (info
!= block_list
) {
518 monitor_printf(mon
, "\n");
521 print_block_info(mon
, info
->value
, info
->value
->has_inserted
522 ? info
->value
->inserted
: NULL
,
527 qapi_free_BlockInfoList(block_list
);
529 if ((!device
&& !nodes
) || printed
) {
533 /* Print node information */
534 blockdev_list
= qmp_query_named_block_nodes(NULL
);
535 for (blockdev
= blockdev_list
; blockdev
; blockdev
= blockdev
->next
) {
536 assert(blockdev
->value
->has_node_name
);
537 if (device
&& strcmp(device
, blockdev
->value
->node_name
)) {
541 if (blockdev
!= blockdev_list
) {
542 monitor_printf(mon
, "\n");
545 print_block_info(mon
, NULL
, blockdev
->value
, verbose
);
547 qapi_free_BlockDeviceInfoList(blockdev_list
);
550 void hmp_info_blockstats(Monitor
*mon
, const QDict
*qdict
)
552 BlockStatsList
*stats_list
, *stats
;
554 stats_list
= qmp_query_blockstats(false, false, NULL
);
556 for (stats
= stats_list
; stats
; stats
= stats
->next
) {
557 if (!stats
->value
->has_device
) {
561 monitor_printf(mon
, "%s:", stats
->value
->device
);
562 monitor_printf(mon
, " rd_bytes=%" PRId64
564 " rd_operations=%" PRId64
565 " wr_operations=%" PRId64
566 " flush_operations=%" PRId64
567 " wr_total_time_ns=%" PRId64
568 " rd_total_time_ns=%" PRId64
569 " flush_total_time_ns=%" PRId64
570 " rd_merged=%" PRId64
571 " wr_merged=%" PRId64
572 " idle_time_ns=%" PRId64
574 stats
->value
->stats
->rd_bytes
,
575 stats
->value
->stats
->wr_bytes
,
576 stats
->value
->stats
->rd_operations
,
577 stats
->value
->stats
->wr_operations
,
578 stats
->value
->stats
->flush_operations
,
579 stats
->value
->stats
->wr_total_time_ns
,
580 stats
->value
->stats
->rd_total_time_ns
,
581 stats
->value
->stats
->flush_total_time_ns
,
582 stats
->value
->stats
->rd_merged
,
583 stats
->value
->stats
->wr_merged
,
584 stats
->value
->stats
->idle_time_ns
);
587 qapi_free_BlockStatsList(stats_list
);
590 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
594 VncClientInfoList
*client
;
596 info
= qmp_query_vnc(&err
);
598 error_report_err(err
);
602 if (!info
->enabled
) {
603 monitor_printf(mon
, "Server: disabled\n");
607 monitor_printf(mon
, "Server:\n");
608 if (info
->has_host
&& info
->has_service
) {
609 monitor_printf(mon
, " address: %s:%s\n", info
->host
, info
->service
);
611 if (info
->has_auth
) {
612 monitor_printf(mon
, " auth: %s\n", info
->auth
);
615 if (!info
->has_clients
|| info
->clients
== NULL
) {
616 monitor_printf(mon
, "Client: none\n");
618 for (client
= info
->clients
; client
; client
= client
->next
) {
619 monitor_printf(mon
, "Client:\n");
620 monitor_printf(mon
, " address: %s:%s\n",
622 client
->value
->service
);
623 monitor_printf(mon
, " x509_dname: %s\n",
624 client
->value
->x509_dname
?
625 client
->value
->x509_dname
: "none");
626 monitor_printf(mon
, " username: %s\n",
627 client
->value
->has_sasl_username
?
628 client
->value
->sasl_username
: "none");
633 qapi_free_VncInfo(info
);
637 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
639 SpiceChannelList
*chan
;
641 const char *channel_name
;
642 const char * const channel_names
[] = {
643 [SPICE_CHANNEL_MAIN
] = "main",
644 [SPICE_CHANNEL_DISPLAY
] = "display",
645 [SPICE_CHANNEL_INPUTS
] = "inputs",
646 [SPICE_CHANNEL_CURSOR
] = "cursor",
647 [SPICE_CHANNEL_PLAYBACK
] = "playback",
648 [SPICE_CHANNEL_RECORD
] = "record",
649 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
650 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
651 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
652 [SPICE_CHANNEL_PORT
] = "port",
654 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
655 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
656 * as quick fix for build failures with older versions. */
657 [SPICE_CHANNEL_WEBDAV
] = "webdav",
661 info
= qmp_query_spice(NULL
);
663 if (!info
->enabled
) {
664 monitor_printf(mon
, "Server: disabled\n");
668 monitor_printf(mon
, "Server:\n");
669 if (info
->has_port
) {
670 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
671 info
->host
, info
->port
);
673 if (info
->has_tls_port
) {
674 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
675 info
->host
, info
->tls_port
);
677 monitor_printf(mon
, " migrated: %s\n",
678 info
->migrated
? "true" : "false");
679 monitor_printf(mon
, " auth: %s\n", info
->auth
);
680 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
681 monitor_printf(mon
, " mouse-mode: %s\n",
682 SpiceQueryMouseMode_lookup
[info
->mouse_mode
]);
684 if (!info
->has_channels
|| info
->channels
== NULL
) {
685 monitor_printf(mon
, "Channels: none\n");
687 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
688 monitor_printf(mon
, "Channel:\n");
689 monitor_printf(mon
, " address: %s:%s%s\n",
690 chan
->value
->host
, chan
->value
->port
,
691 chan
->value
->tls
? " [tls]" : "");
692 monitor_printf(mon
, " session: %" PRId64
"\n",
693 chan
->value
->connection_id
);
694 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
695 chan
->value
->channel_type
, chan
->value
->channel_id
);
697 channel_name
= "unknown";
698 if (chan
->value
->channel_type
> 0 &&
699 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
700 channel_names
[chan
->value
->channel_type
]) {
701 channel_name
= channel_names
[chan
->value
->channel_type
];
704 monitor_printf(mon
, " channel name: %s\n", channel_name
);
709 qapi_free_SpiceInfo(info
);
713 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
718 info
= qmp_query_balloon(&err
);
720 error_report_err(err
);
724 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
726 qapi_free_BalloonInfo(info
);
729 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
731 PciMemoryRegionList
*region
;
733 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
734 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
735 dev
->slot
, dev
->function
);
736 monitor_printf(mon
, " ");
738 if (dev
->class_info
->has_desc
) {
739 monitor_printf(mon
, "%s", dev
->class_info
->desc
);
741 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
->q_class
);
744 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
745 dev
->id
->vendor
, dev
->id
->device
);
748 monitor_printf(mon
, " IRQ %" PRId64
".\n", dev
->irq
);
751 if (dev
->has_pci_bridge
) {
752 monitor_printf(mon
, " BUS %" PRId64
".\n",
753 dev
->pci_bridge
->bus
->number
);
754 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
755 dev
->pci_bridge
->bus
->secondary
);
756 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
757 dev
->pci_bridge
->bus
->subordinate
);
759 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
760 dev
->pci_bridge
->bus
->io_range
->base
,
761 dev
->pci_bridge
->bus
->io_range
->limit
);
764 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
765 dev
->pci_bridge
->bus
->memory_range
->base
,
766 dev
->pci_bridge
->bus
->memory_range
->limit
);
768 monitor_printf(mon
, " prefetchable memory range "
769 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
770 dev
->pci_bridge
->bus
->prefetchable_range
->base
,
771 dev
->pci_bridge
->bus
->prefetchable_range
->limit
);
774 for (region
= dev
->regions
; region
; region
= region
->next
) {
777 addr
= region
->value
->address
;
778 size
= region
->value
->size
;
780 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
782 if (!strcmp(region
->value
->type
, "io")) {
783 monitor_printf(mon
, "I/O at 0x%04" PRIx64
784 " [0x%04" PRIx64
"].\n",
785 addr
, addr
+ size
- 1);
787 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
788 " [0x%08" PRIx64
"].\n",
789 region
->value
->mem_type_64
? 64 : 32,
790 region
->value
->prefetch
? " prefetchable" : "",
791 addr
, addr
+ size
- 1);
795 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
797 if (dev
->has_pci_bridge
) {
798 if (dev
->pci_bridge
->has_devices
) {
799 PciDeviceInfoList
*cdev
;
800 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
801 hmp_info_pci_device(mon
, cdev
->value
);
807 static int hmp_info_irq_foreach(Object
*obj
, void *opaque
)
809 InterruptStatsProvider
*intc
;
810 InterruptStatsProviderClass
*k
;
811 Monitor
*mon
= opaque
;
813 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
814 intc
= INTERRUPT_STATS_PROVIDER(obj
);
815 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
816 uint64_t *irq_counts
;
817 unsigned int nb_irqs
, i
;
818 if (k
->get_statistics
&&
819 k
->get_statistics(intc
, &irq_counts
, &nb_irqs
)) {
821 monitor_printf(mon
, "IRQ statistics for %s:\n",
822 object_get_typename(obj
));
823 for (i
= 0; i
< nb_irqs
; i
++) {
824 if (irq_counts
[i
] > 0) {
825 monitor_printf(mon
, "%2d: %" PRId64
"\n", i
,
831 monitor_printf(mon
, "IRQ statistics not available for %s.\n",
832 object_get_typename(obj
));
839 void hmp_info_irq(Monitor
*mon
, const QDict
*qdict
)
841 object_child_foreach_recursive(object_get_root(),
842 hmp_info_irq_foreach
, mon
);
845 static int hmp_info_pic_foreach(Object
*obj
, void *opaque
)
847 InterruptStatsProvider
*intc
;
848 InterruptStatsProviderClass
*k
;
849 Monitor
*mon
= opaque
;
851 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
852 intc
= INTERRUPT_STATS_PROVIDER(obj
);
853 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
855 k
->print_info(intc
, mon
);
857 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
858 object_get_typename(obj
));
865 void hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
867 object_child_foreach_recursive(object_get_root(),
868 hmp_info_pic_foreach
, mon
);
871 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
873 PciInfoList
*info_list
, *info
;
876 info_list
= qmp_query_pci(&err
);
878 monitor_printf(mon
, "PCI devices not supported\n");
883 for (info
= info_list
; info
; info
= info
->next
) {
884 PciDeviceInfoList
*dev
;
886 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
887 hmp_info_pci_device(mon
, dev
->value
);
891 qapi_free_PciInfoList(info_list
);
894 void hmp_info_block_jobs(Monitor
*mon
, const QDict
*qdict
)
896 BlockJobInfoList
*list
;
899 list
= qmp_query_block_jobs(&err
);
903 monitor_printf(mon
, "No active jobs\n");
908 if (strcmp(list
->value
->type
, "stream") == 0) {
909 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
910 " of %" PRId64
" bytes, speed limit %" PRId64
917 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
918 " of %" PRId64
" bytes, speed limit %" PRId64
929 qapi_free_BlockJobInfoList(list
);
932 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
934 TPMInfoList
*info_list
, *info
;
937 TPMPassthroughOptions
*tpo
;
939 info_list
= qmp_query_tpm(&err
);
941 monitor_printf(mon
, "TPM device not supported\n");
947 monitor_printf(mon
, "TPM device:\n");
950 for (info
= info_list
; info
; info
= info
->next
) {
951 TPMInfo
*ti
= info
->value
;
952 monitor_printf(mon
, " tpm%d: model=%s\n",
953 c
, TpmModel_lookup
[ti
->model
]);
955 monitor_printf(mon
, " \\ %s: type=%s",
956 ti
->id
, TpmTypeOptionsKind_lookup
[ti
->options
->type
]);
958 switch (ti
->options
->type
) {
959 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH
:
960 tpo
= ti
->options
->u
.passthrough
.data
;
961 monitor_printf(mon
, "%s%s%s%s",
962 tpo
->has_path
? ",path=" : "",
963 tpo
->has_path
? tpo
->path
: "",
964 tpo
->has_cancel_path
? ",cancel-path=" : "",
965 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
967 case TPM_TYPE_OPTIONS_KIND__MAX
:
970 monitor_printf(mon
, "\n");
973 qapi_free_TPMInfoList(info_list
);
976 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
978 monitor_suspend(mon
);
982 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
987 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
989 qmp_system_reset(NULL
);
992 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
994 qmp_system_powerdown(NULL
);
997 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
1001 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1002 use it are converted to the QAPI */
1003 cpu_index
= qdict_get_int(qdict
, "index");
1004 if (monitor_set_cpu(cpu_index
) < 0) {
1005 monitor_printf(mon
, "invalid CPU index\n");
1009 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
1011 uint32_t size
= qdict_get_int(qdict
, "size");
1012 const char *filename
= qdict_get_str(qdict
, "filename");
1013 uint64_t addr
= qdict_get_int(qdict
, "val");
1016 qmp_memsave(addr
, size
, filename
, true, monitor_get_cpu_index(), &err
);
1017 hmp_handle_error(mon
, &err
);
1020 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
1022 uint32_t size
= qdict_get_int(qdict
, "size");
1023 const char *filename
= qdict_get_str(qdict
, "filename");
1024 uint64_t addr
= qdict_get_int(qdict
, "val");
1027 qmp_pmemsave(addr
, size
, filename
, &err
);
1028 hmp_handle_error(mon
, &err
);
1031 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
1033 const char *chardev
= qdict_get_str(qdict
, "device");
1034 const char *data
= qdict_get_str(qdict
, "data");
1037 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
1039 hmp_handle_error(mon
, &err
);
1042 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
1044 uint32_t size
= qdict_get_int(qdict
, "size");
1045 const char *chardev
= qdict_get_str(qdict
, "device");
1050 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1052 error_report_err(err
);
1056 for (i
= 0; data
[i
]; i
++) {
1057 unsigned char ch
= data
[i
];
1060 monitor_printf(mon
, "\\\\");
1061 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1062 monitor_printf(mon
, "\\u%04X", ch
);
1064 monitor_printf(mon
, "%c", ch
);
1068 monitor_printf(mon
, "\n");
1072 static void hmp_cont_cb(void *opaque
, int err
)
1079 static bool key_is_missing(const BlockInfo
*bdev
)
1081 return (bdev
->inserted
&& bdev
->inserted
->encryption_key_missing
);
1084 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1086 BlockInfoList
*bdev_list
, *bdev
;
1089 bdev_list
= qmp_query_block(NULL
);
1090 for (bdev
= bdev_list
; bdev
; bdev
= bdev
->next
) {
1091 if (key_is_missing(bdev
->value
)) {
1092 monitor_read_block_device_key(mon
, bdev
->value
->device
,
1099 hmp_handle_error(mon
, &err
);
1102 qapi_free_BlockInfoList(bdev_list
);
1105 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1107 qmp_system_wakeup(NULL
);
1110 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
1114 qmp_inject_nmi(&err
);
1115 hmp_handle_error(mon
, &err
);
1118 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
1120 const char *name
= qdict_get_str(qdict
, "name");
1121 bool up
= qdict_get_bool(qdict
, "up");
1124 qmp_set_link(name
, up
, &err
);
1125 hmp_handle_error(mon
, &err
);
1128 void hmp_block_passwd(Monitor
*mon
, const QDict
*qdict
)
1130 const char *device
= qdict_get_str(qdict
, "device");
1131 const char *password
= qdict_get_str(qdict
, "password");
1134 qmp_block_passwd(true, device
, false, NULL
, password
, &err
);
1135 hmp_handle_error(mon
, &err
);
1138 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
1140 int64_t value
= qdict_get_int(qdict
, "value");
1143 qmp_balloon(value
, &err
);
1145 error_report_err(err
);
1149 void hmp_block_resize(Monitor
*mon
, const QDict
*qdict
)
1151 const char *device
= qdict_get_str(qdict
, "device");
1152 int64_t size
= qdict_get_int(qdict
, "size");
1155 qmp_block_resize(true, device
, false, NULL
, size
, &err
);
1156 hmp_handle_error(mon
, &err
);
1159 void hmp_drive_mirror(Monitor
*mon
, const QDict
*qdict
)
1161 const char *filename
= qdict_get_str(qdict
, "target");
1162 const char *format
= qdict_get_try_str(qdict
, "format");
1163 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1164 bool full
= qdict_get_try_bool(qdict
, "full", false);
1166 DriveMirror mirror
= {
1167 .device
= (char *)qdict_get_str(qdict
, "device"),
1168 .target
= (char *)filename
,
1169 .has_format
= !!format
,
1170 .format
= (char *)format
,
1171 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1173 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1178 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1179 hmp_handle_error(mon
, &err
);
1182 qmp_drive_mirror(&mirror
, &err
);
1183 hmp_handle_error(mon
, &err
);
1186 void hmp_drive_backup(Monitor
*mon
, const QDict
*qdict
)
1188 const char *device
= qdict_get_str(qdict
, "device");
1189 const char *filename
= qdict_get_str(qdict
, "target");
1190 const char *format
= qdict_get_try_str(qdict
, "format");
1191 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1192 bool full
= qdict_get_try_bool(qdict
, "full", false);
1193 bool compress
= qdict_get_try_bool(qdict
, "compress", false);
1195 DriveBackup backup
= {
1196 .device
= (char *)device
,
1197 .target
= (char *)filename
,
1198 .has_format
= !!format
,
1199 .format
= (char *)format
,
1200 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1202 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1203 .has_compress
= !!compress
,
1204 .compress
= compress
,
1208 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1209 hmp_handle_error(mon
, &err
);
1213 qmp_drive_backup(&backup
, &err
);
1214 hmp_handle_error(mon
, &err
);
1217 void hmp_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
)
1219 const char *device
= qdict_get_str(qdict
, "device");
1220 const char *filename
= qdict_get_try_str(qdict
, "snapshot-file");
1221 const char *format
= qdict_get_try_str(qdict
, "format");
1222 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1223 enum NewImageMode mode
;
1227 /* In the future, if 'snapshot-file' is not specified, the snapshot
1228 will be taken internally. Today it's actually required. */
1229 error_setg(&err
, QERR_MISSING_PARAMETER
, "snapshot-file");
1230 hmp_handle_error(mon
, &err
);
1234 mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1235 qmp_blockdev_snapshot_sync(true, device
, false, NULL
,
1236 filename
, false, NULL
,
1239 hmp_handle_error(mon
, &err
);
1242 void hmp_snapshot_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1244 const char *device
= qdict_get_str(qdict
, "device");
1245 const char *name
= qdict_get_str(qdict
, "name");
1248 qmp_blockdev_snapshot_internal_sync(device
, name
, &err
);
1249 hmp_handle_error(mon
, &err
);
1252 void hmp_snapshot_delete_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1254 const char *device
= qdict_get_str(qdict
, "device");
1255 const char *name
= qdict_get_str(qdict
, "name");
1256 const char *id
= qdict_get_try_str(qdict
, "id");
1259 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
1261 hmp_handle_error(mon
, &err
);
1264 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1266 qmp_migrate_cancel(NULL
);
1269 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
1272 const char *uri
= qdict_get_str(qdict
, "uri");
1274 qmp_migrate_incoming(uri
, &err
);
1276 hmp_handle_error(mon
, &err
);
1279 /* Kept for backwards compatibility */
1280 void hmp_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
1282 double value
= qdict_get_double(qdict
, "value");
1283 qmp_migrate_set_downtime(value
, NULL
);
1286 void hmp_migrate_set_cache_size(Monitor
*mon
, const QDict
*qdict
)
1288 int64_t value
= qdict_get_int(qdict
, "value");
1291 qmp_migrate_set_cache_size(value
, &err
);
1293 error_report_err(err
);
1298 /* Kept for backwards compatibility */
1299 void hmp_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
1301 int64_t value
= qdict_get_int(qdict
, "value");
1302 qmp_migrate_set_speed(value
, NULL
);
1305 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1307 const char *cap
= qdict_get_str(qdict
, "capability");
1308 bool state
= qdict_get_bool(qdict
, "state");
1310 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1313 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
1314 if (strcmp(cap
, MigrationCapability_lookup
[i
]) == 0) {
1315 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1316 caps
->value
->capability
= i
;
1317 caps
->value
->state
= state
;
1319 qmp_migrate_set_capabilities(caps
, &err
);
1324 if (i
== MIGRATION_CAPABILITY__MAX
) {
1325 error_setg(&err
, QERR_INVALID_PARAMETER
, cap
);
1328 qapi_free_MigrationCapabilityStatusList(caps
);
1331 error_report_err(err
);
1335 void hmp_migrate_set_parameter(Monitor
*mon
, const QDict
*qdict
)
1337 const char *param
= qdict_get_str(qdict
, "parameter");
1338 const char *valuestr
= qdict_get_str(qdict
, "value");
1339 int64_t valuebw
= 0;
1343 bool use_int_value
= false;
1346 for (i
= 0; i
< MIGRATION_PARAMETER__MAX
; i
++) {
1347 if (strcmp(param
, MigrationParameter_lookup
[i
]) == 0) {
1348 MigrationParameters p
= { 0 };
1350 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1351 p
.has_compress_level
= true;
1352 use_int_value
= true;
1354 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1355 p
.has_compress_threads
= true;
1356 use_int_value
= true;
1358 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1359 p
.has_decompress_threads
= true;
1360 use_int_value
= true;
1362 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
:
1363 p
.has_cpu_throttle_initial
= true;
1364 use_int_value
= true;
1366 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
:
1367 p
.has_cpu_throttle_increment
= true;
1368 use_int_value
= true;
1370 case MIGRATION_PARAMETER_TLS_CREDS
:
1371 p
.has_tls_creds
= true;
1372 p
.tls_creds
= (char *) valuestr
;
1374 case MIGRATION_PARAMETER_TLS_HOSTNAME
:
1375 p
.has_tls_hostname
= true;
1376 p
.tls_hostname
= (char *) valuestr
;
1378 case MIGRATION_PARAMETER_MAX_BANDWIDTH
:
1379 p
.has_max_bandwidth
= true;
1380 valuebw
= qemu_strtosz(valuestr
, &endp
);
1381 if (valuebw
< 0 || (size_t)valuebw
!= valuebw
1383 error_setg(&err
, "Invalid size %s", valuestr
);
1386 p
.max_bandwidth
= valuebw
;
1388 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1389 p
.has_downtime_limit
= true;
1390 use_int_value
= true;
1392 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
:
1393 p
.has_x_checkpoint_delay
= true;
1394 use_int_value
= true;
1398 if (use_int_value
) {
1399 if (qemu_strtol(valuestr
, NULL
, 10, &valueint
) < 0) {
1400 error_setg(&err
, "Unable to parse '%s' as an int",
1404 /* Set all integers; only one has_FOO will be set, and
1405 * the code ignores the remaining values */
1406 p
.compress_level
= valueint
;
1407 p
.compress_threads
= valueint
;
1408 p
.decompress_threads
= valueint
;
1409 p
.cpu_throttle_initial
= valueint
;
1410 p
.cpu_throttle_increment
= valueint
;
1411 p
.downtime_limit
= valueint
;
1412 p
.x_checkpoint_delay
= valueint
;
1415 qmp_migrate_set_parameters(&p
, &err
);
1420 if (i
== MIGRATION_PARAMETER__MAX
) {
1421 error_setg(&err
, QERR_INVALID_PARAMETER
, param
);
1426 error_report_err(err
);
1430 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
1433 const char *protocol
= qdict_get_str(qdict
, "protocol");
1434 const char *hostname
= qdict_get_str(qdict
, "hostname");
1435 bool has_port
= qdict_haskey(qdict
, "port");
1436 int port
= qdict_get_try_int(qdict
, "port", -1);
1437 bool has_tls_port
= qdict_haskey(qdict
, "tls-port");
1438 int tls_port
= qdict_get_try_int(qdict
, "tls-port", -1);
1439 const char *cert_subject
= qdict_get_try_str(qdict
, "cert-subject");
1441 qmp_client_migrate_info(protocol
, hostname
,
1442 has_port
, port
, has_tls_port
, tls_port
,
1443 !!cert_subject
, cert_subject
, &err
);
1444 hmp_handle_error(mon
, &err
);
1447 void hmp_migrate_start_postcopy(Monitor
*mon
, const QDict
*qdict
)
1450 qmp_migrate_start_postcopy(&err
);
1451 hmp_handle_error(mon
, &err
);
1454 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
1458 qmp_x_colo_lost_heartbeat(&err
);
1459 hmp_handle_error(mon
, &err
);
1462 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1464 const char *protocol
= qdict_get_str(qdict
, "protocol");
1465 const char *password
= qdict_get_str(qdict
, "password");
1466 const char *connected
= qdict_get_try_str(qdict
, "connected");
1469 qmp_set_password(protocol
, password
, !!connected
, connected
, &err
);
1470 hmp_handle_error(mon
, &err
);
1473 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1475 const char *protocol
= qdict_get_str(qdict
, "protocol");
1476 const char *whenstr
= qdict_get_str(qdict
, "time");
1479 qmp_expire_password(protocol
, whenstr
, &err
);
1480 hmp_handle_error(mon
, &err
);
1483 void hmp_eject(Monitor
*mon
, const QDict
*qdict
)
1485 bool force
= qdict_get_try_bool(qdict
, "force", false);
1486 const char *device
= qdict_get_str(qdict
, "device");
1489 qmp_eject(true, device
, false, NULL
, true, force
, &err
);
1490 hmp_handle_error(mon
, &err
);
1493 static void hmp_change_read_arg(void *opaque
, const char *password
,
1494 void *readline_opaque
)
1496 qmp_change_vnc_password(password
, NULL
);
1497 monitor_read_command(opaque
, 1);
1500 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1502 const char *device
= qdict_get_str(qdict
, "device");
1503 const char *target
= qdict_get_str(qdict
, "target");
1504 const char *arg
= qdict_get_try_str(qdict
, "arg");
1505 const char *read_only
= qdict_get_try_str(qdict
, "read-only-mode");
1506 BlockdevChangeReadOnlyMode read_only_mode
= 0;
1509 if (strcmp(device
, "vnc") == 0) {
1512 "Parameter 'read-only-mode' is invalid for VNC\n");
1515 if (strcmp(target
, "passwd") == 0 ||
1516 strcmp(target
, "password") == 0) {
1518 monitor_read_password(mon
, hmp_change_read_arg
, NULL
);
1522 qmp_change("vnc", target
, !!arg
, arg
, &err
);
1526 qapi_enum_parse(BlockdevChangeReadOnlyMode_lookup
,
1527 read_only
, BLOCKDEV_CHANGE_READ_ONLY_MODE__MAX
,
1528 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
1530 hmp_handle_error(mon
, &err
);
1535 qmp_blockdev_change_medium(true, device
, false, NULL
, target
,
1536 !!arg
, arg
, !!read_only
, read_only_mode
,
1539 error_get_class(err
) == ERROR_CLASS_DEVICE_ENCRYPTED
) {
1541 monitor_read_block_device_key(mon
, device
, NULL
, NULL
);
1546 hmp_handle_error(mon
, &err
);
1549 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
1552 BlockIOThrottle throttle
= {
1553 .device
= (char *) qdict_get_str(qdict
, "device"),
1554 .bps
= qdict_get_int(qdict
, "bps"),
1555 .bps_rd
= qdict_get_int(qdict
, "bps_rd"),
1556 .bps_wr
= qdict_get_int(qdict
, "bps_wr"),
1557 .iops
= qdict_get_int(qdict
, "iops"),
1558 .iops_rd
= qdict_get_int(qdict
, "iops_rd"),
1559 .iops_wr
= qdict_get_int(qdict
, "iops_wr"),
1562 qmp_block_set_io_throttle(&throttle
, &err
);
1563 hmp_handle_error(mon
, &err
);
1566 void hmp_block_stream(Monitor
*mon
, const QDict
*qdict
)
1568 Error
*error
= NULL
;
1569 const char *device
= qdict_get_str(qdict
, "device");
1570 const char *base
= qdict_get_try_str(qdict
, "base");
1571 int64_t speed
= qdict_get_try_int(qdict
, "speed", 0);
1573 qmp_block_stream(false, NULL
, device
, base
!= NULL
, base
, false, NULL
,
1574 false, NULL
, qdict_haskey(qdict
, "speed"), speed
,
1575 true, BLOCKDEV_ON_ERROR_REPORT
, &error
);
1577 hmp_handle_error(mon
, &error
);
1580 void hmp_block_job_set_speed(Monitor
*mon
, const QDict
*qdict
)
1582 Error
*error
= NULL
;
1583 const char *device
= qdict_get_str(qdict
, "device");
1584 int64_t value
= qdict_get_int(qdict
, "speed");
1586 qmp_block_job_set_speed(device
, value
, &error
);
1588 hmp_handle_error(mon
, &error
);
1591 void hmp_block_job_cancel(Monitor
*mon
, const QDict
*qdict
)
1593 Error
*error
= NULL
;
1594 const char *device
= qdict_get_str(qdict
, "device");
1595 bool force
= qdict_get_try_bool(qdict
, "force", false);
1597 qmp_block_job_cancel(device
, true, force
, &error
);
1599 hmp_handle_error(mon
, &error
);
1602 void hmp_block_job_pause(Monitor
*mon
, const QDict
*qdict
)
1604 Error
*error
= NULL
;
1605 const char *device
= qdict_get_str(qdict
, "device");
1607 qmp_block_job_pause(device
, &error
);
1609 hmp_handle_error(mon
, &error
);
1612 void hmp_block_job_resume(Monitor
*mon
, const QDict
*qdict
)
1614 Error
*error
= NULL
;
1615 const char *device
= qdict_get_str(qdict
, "device");
1617 qmp_block_job_resume(device
, &error
);
1619 hmp_handle_error(mon
, &error
);
1622 void hmp_block_job_complete(Monitor
*mon
, const QDict
*qdict
)
1624 Error
*error
= NULL
;
1625 const char *device
= qdict_get_str(qdict
, "device");
1627 qmp_block_job_complete(device
, &error
);
1629 hmp_handle_error(mon
, &error
);
1632 typedef struct HMPMigrationStatus
1636 bool is_block_migration
;
1637 } HMPMigrationStatus
;
1639 static void hmp_migrate_status_cb(void *opaque
)
1641 HMPMigrationStatus
*status
= opaque
;
1642 MigrationInfo
*info
;
1644 info
= qmp_query_migrate(NULL
);
1645 if (!info
->has_status
|| info
->status
== MIGRATION_STATUS_ACTIVE
||
1646 info
->status
== MIGRATION_STATUS_SETUP
) {
1647 if (info
->has_disk
) {
1650 if (info
->disk
->remaining
) {
1651 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
1656 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
1657 monitor_flush(status
->mon
);
1660 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1662 if (status
->is_block_migration
) {
1663 monitor_printf(status
->mon
, "\n");
1665 if (info
->has_error_desc
) {
1666 error_report("%s", info
->error_desc
);
1668 monitor_resume(status
->mon
);
1669 timer_del(status
->timer
);
1673 qapi_free_MigrationInfo(info
);
1676 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
1678 bool detach
= qdict_get_try_bool(qdict
, "detach", false);
1679 bool blk
= qdict_get_try_bool(qdict
, "blk", false);
1680 bool inc
= qdict_get_try_bool(qdict
, "inc", false);
1681 const char *uri
= qdict_get_str(qdict
, "uri");
1684 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
, false, false, &err
);
1686 error_report_err(err
);
1691 HMPMigrationStatus
*status
;
1693 if (monitor_suspend(mon
) < 0) {
1694 monitor_printf(mon
, "terminal does not allow synchronous "
1695 "migration, continuing detached\n");
1699 status
= g_malloc0(sizeof(*status
));
1701 status
->is_block_migration
= blk
|| inc
;
1702 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
1704 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
1708 void hmp_device_add(Monitor
*mon
, const QDict
*qdict
)
1712 qmp_device_add((QDict
*)qdict
, NULL
, &err
);
1713 hmp_handle_error(mon
, &err
);
1716 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
1718 const char *id
= qdict_get_str(qdict
, "id");
1721 qmp_device_del(id
, &err
);
1722 hmp_handle_error(mon
, &err
);
1725 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
1728 bool paging
= qdict_get_try_bool(qdict
, "paging", false);
1729 bool zlib
= qdict_get_try_bool(qdict
, "zlib", false);
1730 bool lzo
= qdict_get_try_bool(qdict
, "lzo", false);
1731 bool snappy
= qdict_get_try_bool(qdict
, "snappy", false);
1732 const char *file
= qdict_get_str(qdict
, "filename");
1733 bool has_begin
= qdict_haskey(qdict
, "begin");
1734 bool has_length
= qdict_haskey(qdict
, "length");
1735 bool has_detach
= qdict_haskey(qdict
, "detach");
1738 bool detach
= false;
1739 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1742 if (zlib
+ lzo
+ snappy
> 1) {
1743 error_setg(&err
, "only one of '-z|-l|-s' can be set");
1744 hmp_handle_error(mon
, &err
);
1749 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1753 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
1757 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
1761 begin
= qdict_get_int(qdict
, "begin");
1764 length
= qdict_get_int(qdict
, "length");
1767 detach
= qdict_get_bool(qdict
, "detach");
1770 prot
= g_strconcat("file:", file
, NULL
);
1772 qmp_dump_guest_memory(paging
, prot
, true, detach
, has_begin
, begin
,
1773 has_length
, length
, true, dump_format
, &err
);
1774 hmp_handle_error(mon
, &err
);
1778 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
1783 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
1788 netdev_add(opts
, &err
);
1790 qemu_opts_del(opts
);
1794 hmp_handle_error(mon
, &err
);
1797 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
1799 const char *id
= qdict_get_str(qdict
, "id");
1802 qmp_netdev_del(id
, &err
);
1803 hmp_handle_error(mon
, &err
);
1806 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
1813 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
1815 hmp_handle_error(mon
, &err
);
1819 v
= opts_visitor_new(opts
);
1820 obj
= user_creatable_add(qdict
, v
, &err
);
1822 qemu_opts_del(opts
);
1825 hmp_handle_error(mon
, &err
);
1832 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
1834 const char *fdname
= qdict_get_str(qdict
, "fdname");
1837 qmp_getfd(fdname
, &err
);
1838 hmp_handle_error(mon
, &err
);
1841 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
1843 const char *fdname
= qdict_get_str(qdict
, "fdname");
1846 qmp_closefd(fdname
, &err
);
1847 hmp_handle_error(mon
, &err
);
1850 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
1852 const char *keys
= qdict_get_str(qdict
, "keys");
1853 KeyValueList
*keylist
, *head
= NULL
, *tmp
= NULL
;
1854 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
1855 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
1861 separator
= strchr(keys
, '-');
1862 keyname_len
= separator
? separator
- keys
: strlen(keys
);
1864 /* Be compatible with old interface, convert user inputted "<" */
1865 if (keys
[0] == '<' && keyname_len
== 1) {
1870 keylist
= g_malloc0(sizeof(*keylist
));
1871 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
1877 tmp
->next
= keylist
;
1881 if (strstart(keys
, "0x", NULL
)) {
1883 int value
= strtoul(keys
, &endp
, 0);
1884 assert(endp
<= keys
+ keyname_len
);
1885 if (endp
!= keys
+ keyname_len
) {
1888 keylist
->value
->type
= KEY_VALUE_KIND_NUMBER
;
1889 keylist
->value
->u
.number
.data
= value
;
1891 int idx
= index_from_key(keys
, keyname_len
);
1892 if (idx
== Q_KEY_CODE__MAX
) {
1895 keylist
->value
->type
= KEY_VALUE_KIND_QCODE
;
1896 keylist
->value
->u
.qcode
.data
= idx
;
1902 keys
= separator
+ 1;
1905 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
1906 hmp_handle_error(mon
, &err
);
1909 qapi_free_KeyValueList(head
);
1913 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
1917 void hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
1919 const char *filename
= qdict_get_str(qdict
, "filename");
1922 qmp_screendump(filename
, &err
);
1923 hmp_handle_error(mon
, &err
);
1926 void hmp_nbd_server_start(Monitor
*mon
, const QDict
*qdict
)
1928 const char *uri
= qdict_get_str(qdict
, "uri");
1929 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
1930 bool all
= qdict_get_try_bool(qdict
, "all", false);
1931 Error
*local_err
= NULL
;
1932 BlockInfoList
*block_list
, *info
;
1933 SocketAddress
*addr
;
1935 if (writable
&& !all
) {
1936 error_setg(&local_err
, "-w only valid together with -a");
1940 /* First check if the address is valid and start the server. */
1941 addr
= socket_parse(uri
, &local_err
);
1942 if (local_err
!= NULL
) {
1946 qmp_nbd_server_start(addr
, false, NULL
, &local_err
);
1947 qapi_free_SocketAddress(addr
);
1948 if (local_err
!= NULL
) {
1956 /* Then try adding all block devices. If one fails, close all and
1959 block_list
= qmp_query_block(NULL
);
1961 for (info
= block_list
; info
; info
= info
->next
) {
1962 if (!info
->value
->has_inserted
) {
1966 qmp_nbd_server_add(info
->value
->device
, true, writable
, &local_err
);
1968 if (local_err
!= NULL
) {
1969 qmp_nbd_server_stop(NULL
);
1974 qapi_free_BlockInfoList(block_list
);
1977 hmp_handle_error(mon
, &local_err
);
1980 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
1982 const char *device
= qdict_get_str(qdict
, "device");
1983 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
1984 Error
*local_err
= NULL
;
1986 qmp_nbd_server_add(device
, true, writable
, &local_err
);
1988 if (local_err
!= NULL
) {
1989 hmp_handle_error(mon
, &local_err
);
1993 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
1997 qmp_nbd_server_stop(&err
);
1998 hmp_handle_error(mon
, &err
);
2001 void hmp_cpu_add(Monitor
*mon
, const QDict
*qdict
)
2006 cpuid
= qdict_get_int(qdict
, "id");
2007 qmp_cpu_add(cpuid
, &err
);
2008 hmp_handle_error(mon
, &err
);
2011 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
2013 const char *args
= qdict_get_str(qdict
, "args");
2017 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
2019 error_setg(&err
, "Parsing chardev args failed");
2021 qemu_chr_new_from_opts(opts
, &err
);
2022 qemu_opts_del(opts
);
2024 hmp_handle_error(mon
, &err
);
2027 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
2029 Error
*local_err
= NULL
;
2031 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
2032 hmp_handle_error(mon
, &local_err
);
2035 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
2038 BlockBackend
*local_blk
= NULL
;
2039 AioContext
*aio_context
;
2040 const char* device
= qdict_get_str(qdict
, "device");
2041 const char* command
= qdict_get_str(qdict
, "command");
2044 blk
= blk_by_name(device
);
2046 BlockDriverState
*bs
= bdrv_lookup_bs(NULL
, device
, &err
);
2048 blk
= local_blk
= blk_new();
2049 blk_insert_bs(blk
, bs
);
2055 aio_context
= blk_get_aio_context(blk
);
2056 aio_context_acquire(aio_context
);
2058 qemuio_command(blk
, command
);
2060 aio_context_release(aio_context
);
2063 blk_unref(local_blk
);
2064 hmp_handle_error(mon
, &err
);
2067 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
2069 const char *id
= qdict_get_str(qdict
, "id");
2072 user_creatable_del(id
, &err
);
2073 hmp_handle_error(mon
, &err
);
2076 void hmp_info_memdev(Monitor
*mon
, const QDict
*qdict
)
2079 MemdevList
*memdev_list
= qmp_query_memdev(&err
);
2080 MemdevList
*m
= memdev_list
;
2087 v
= string_output_visitor_new(false, &str
);
2088 visit_type_uint16List(v
, NULL
, &m
->value
->host_nodes
, NULL
);
2089 monitor_printf(mon
, "memory backend: %d\n", i
);
2090 monitor_printf(mon
, " size: %" PRId64
"\n", m
->value
->size
);
2091 monitor_printf(mon
, " merge: %s\n",
2092 m
->value
->merge
? "true" : "false");
2093 monitor_printf(mon
, " dump: %s\n",
2094 m
->value
->dump
? "true" : "false");
2095 monitor_printf(mon
, " prealloc: %s\n",
2096 m
->value
->prealloc
? "true" : "false");
2097 monitor_printf(mon
, " policy: %s\n",
2098 HostMemPolicy_lookup
[m
->value
->policy
]);
2099 visit_complete(v
, &str
);
2100 monitor_printf(mon
, " host nodes: %s\n", str
);
2108 monitor_printf(mon
, "\n");
2110 qapi_free_MemdevList(memdev_list
);
2113 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
2116 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
2117 MemoryDeviceInfoList
*info
;
2118 MemoryDeviceInfo
*value
;
2119 PCDIMMDeviceInfo
*di
;
2121 for (info
= info_list
; info
; info
= info
->next
) {
2122 value
= info
->value
;
2125 switch (value
->type
) {
2126 case MEMORY_DEVICE_INFO_KIND_DIMM
:
2127 di
= value
->u
.dimm
.data
;
2129 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2130 MemoryDeviceInfoKind_lookup
[value
->type
],
2131 di
->id
? di
->id
: "");
2132 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
2133 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
2134 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
2135 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
2136 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
2137 monitor_printf(mon
, " hotplugged: %s\n",
2138 di
->hotplugged
? "true" : "false");
2139 monitor_printf(mon
, " hotpluggable: %s\n",
2140 di
->hotpluggable
? "true" : "false");
2148 qapi_free_MemoryDeviceInfoList(info_list
);
2151 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
2153 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
2154 IOThreadInfoList
*info
;
2156 for (info
= info_list
; info
; info
= info
->next
) {
2157 monitor_printf(mon
, "%s: thread_id=%" PRId64
"\n",
2158 info
->value
->id
, info
->value
->thread_id
);
2161 qapi_free_IOThreadInfoList(info_list
);
2164 void hmp_qom_list(Monitor
*mon
, const QDict
*qdict
)
2166 const char *path
= qdict_get_try_str(qdict
, "path");
2167 ObjectPropertyInfoList
*list
;
2171 monitor_printf(mon
, "/\n");
2175 list
= qmp_qom_list(path
, &err
);
2177 ObjectPropertyInfoList
*start
= list
;
2178 while (list
!= NULL
) {
2179 ObjectPropertyInfo
*value
= list
->value
;
2181 monitor_printf(mon
, "%s (%s)\n",
2182 value
->name
, value
->type
);
2185 qapi_free_ObjectPropertyInfoList(start
);
2187 hmp_handle_error(mon
, &err
);
2190 void hmp_qom_set(Monitor
*mon
, const QDict
*qdict
)
2192 const char *path
= qdict_get_str(qdict
, "path");
2193 const char *property
= qdict_get_str(qdict
, "property");
2194 const char *value
= qdict_get_str(qdict
, "value");
2196 bool ambiguous
= false;
2199 obj
= object_resolve_path(path
, &ambiguous
);
2201 error_set(&err
, ERROR_CLASS_DEVICE_NOT_FOUND
,
2202 "Device '%s' not found", path
);
2205 monitor_printf(mon
, "Warning: Path '%s' is ambiguous\n", path
);
2207 object_property_parse(obj
, value
, property
, &err
);
2209 hmp_handle_error(mon
, &err
);
2212 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
2214 const char *name
= qdict_get_str(qdict
, "name");
2215 RockerSwitch
*rocker
;
2218 rocker
= qmp_query_rocker(name
, &err
);
2220 hmp_handle_error(mon
, &err
);
2224 monitor_printf(mon
, "name: %s\n", rocker
->name
);
2225 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
2226 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
2228 qapi_free_RockerSwitch(rocker
);
2231 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
2233 RockerPortList
*list
, *port
;
2234 const char *name
= qdict_get_str(qdict
, "name");
2237 list
= qmp_query_rocker_ports(name
, &err
);
2239 hmp_handle_error(mon
, &err
);
2243 monitor_printf(mon
, " ena/ speed/ auto\n");
2244 monitor_printf(mon
, " port link duplex neg?\n");
2246 for (port
= list
; port
; port
= port
->next
) {
2247 monitor_printf(mon
, "%10s %-4s %-3s %2s %-3s\n",
2249 port
->value
->enabled
? port
->value
->link_up
?
2250 "up" : "down" : "!ena",
2251 port
->value
->speed
== 10000 ? "10G" : "??",
2252 port
->value
->duplex
? "FD" : "HD",
2253 port
->value
->autoneg
? "Yes" : "No");
2256 qapi_free_RockerPortList(list
);
2259 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
2261 RockerOfDpaFlowList
*list
, *info
;
2262 const char *name
= qdict_get_str(qdict
, "name");
2263 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
2266 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
2268 hmp_handle_error(mon
, &err
);
2272 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
2274 for (info
= list
; info
; info
= info
->next
) {
2275 RockerOfDpaFlow
*flow
= info
->value
;
2276 RockerOfDpaFlowKey
*key
= flow
->key
;
2277 RockerOfDpaFlowMask
*mask
= flow
->mask
;
2278 RockerOfDpaFlowAction
*action
= flow
->action
;
2281 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
2282 key
->priority
, key
->tbl_id
, flow
->hits
);
2284 monitor_printf(mon
, "%-4d %-3d ",
2285 key
->priority
, key
->tbl_id
);
2288 if (key
->has_in_pport
) {
2289 monitor_printf(mon
, " pport %d", key
->in_pport
);
2290 if (mask
->has_in_pport
) {
2291 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
2295 if (key
->has_vlan_id
) {
2296 monitor_printf(mon
, " vlan %d",
2297 key
->vlan_id
& VLAN_VID_MASK
);
2298 if (mask
->has_vlan_id
) {
2299 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
2303 if (key
->has_tunnel_id
) {
2304 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
2305 if (mask
->has_tunnel_id
) {
2306 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
2310 if (key
->has_eth_type
) {
2311 switch (key
->eth_type
) {
2313 monitor_printf(mon
, " ARP");
2316 monitor_printf(mon
, " IP");
2319 monitor_printf(mon
, " IPv6");
2322 monitor_printf(mon
, " LACP");
2325 monitor_printf(mon
, " LLDP");
2328 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2333 if (key
->has_eth_src
) {
2334 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2335 (mask
->has_eth_src
) &&
2336 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2337 monitor_printf(mon
, " src <any mcast/bcast>");
2338 } else if ((strcmp(key
->eth_src
, "00:00:00:00:00:00") == 0) &&
2339 (mask
->has_eth_src
) &&
2340 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2341 monitor_printf(mon
, " src <any ucast>");
2343 monitor_printf(mon
, " src %s", key
->eth_src
);
2344 if (mask
->has_eth_src
) {
2345 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2350 if (key
->has_eth_dst
) {
2351 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2352 (mask
->has_eth_dst
) &&
2353 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2354 monitor_printf(mon
, " dst <any mcast/bcast>");
2355 } else if ((strcmp(key
->eth_dst
, "00:00:00:00:00:00") == 0) &&
2356 (mask
->has_eth_dst
) &&
2357 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2358 monitor_printf(mon
, " dst <any ucast>");
2360 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2361 if (mask
->has_eth_dst
) {
2362 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2367 if (key
->has_ip_proto
) {
2368 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2369 if (mask
->has_ip_proto
) {
2370 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2374 if (key
->has_ip_tos
) {
2375 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2376 if (mask
->has_ip_tos
) {
2377 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2381 if (key
->has_ip_dst
) {
2382 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2385 if (action
->has_goto_tbl
|| action
->has_group_id
||
2386 action
->has_new_vlan_id
) {
2387 monitor_printf(mon
, " -->");
2390 if (action
->has_new_vlan_id
) {
2391 monitor_printf(mon
, " apply new vlan %d",
2392 ntohs(action
->new_vlan_id
));
2395 if (action
->has_group_id
) {
2396 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2399 if (action
->has_goto_tbl
) {
2400 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2403 monitor_printf(mon
, "\n");
2406 qapi_free_RockerOfDpaFlowList(list
);
2409 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2411 RockerOfDpaGroupList
*list
, *g
;
2412 const char *name
= qdict_get_str(qdict
, "name");
2413 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2417 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2419 hmp_handle_error(mon
, &err
);
2423 monitor_printf(mon
, "id (decode) --> buckets\n");
2425 for (g
= list
; g
; g
= g
->next
) {
2426 RockerOfDpaGroup
*group
= g
->value
;
2428 monitor_printf(mon
, "0x%08x", group
->id
);
2430 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2431 group
->type
== 1 ? "L2 rewrite" :
2432 group
->type
== 2 ? "L3 unicast" :
2433 group
->type
== 3 ? "L2 multicast" :
2434 group
->type
== 4 ? "L2 flood" :
2435 group
->type
== 5 ? "L3 interface" :
2436 group
->type
== 6 ? "L3 multicast" :
2437 group
->type
== 7 ? "L3 ECMP" :
2438 group
->type
== 8 ? "L2 overlay" :
2441 if (group
->has_vlan_id
) {
2442 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2445 if (group
->has_pport
) {
2446 monitor_printf(mon
, " pport %d", group
->pport
);
2449 if (group
->has_index
) {
2450 monitor_printf(mon
, " index %d", group
->index
);
2453 monitor_printf(mon
, ") -->");
2455 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2457 monitor_printf(mon
, " set vlan %d",
2458 group
->set_vlan_id
& VLAN_VID_MASK
);
2461 if (group
->has_set_eth_src
) {
2464 monitor_printf(mon
, " set");
2466 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2469 if (group
->has_set_eth_dst
) {
2472 monitor_printf(mon
, " set");
2474 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2479 if (group
->has_ttl_check
&& group
->ttl_check
) {
2480 monitor_printf(mon
, " check TTL");
2483 if (group
->has_group_id
&& group
->group_id
) {
2484 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2487 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2488 monitor_printf(mon
, " pop vlan");
2491 if (group
->has_out_pport
) {
2492 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2495 if (group
->has_group_ids
) {
2496 struct uint32List
*id
;
2498 monitor_printf(mon
, " groups [");
2499 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2500 monitor_printf(mon
, "0x%08x", id
->value
);
2502 monitor_printf(mon
, ",");
2505 monitor_printf(mon
, "]");
2508 monitor_printf(mon
, "\n");
2511 qapi_free_RockerOfDpaGroupList(list
);
2514 void hmp_info_dump(Monitor
*mon
, const QDict
*qdict
)
2516 DumpQueryResult
*result
= qmp_query_dump(NULL
);
2518 assert(result
&& result
->status
< DUMP_STATUS__MAX
);
2519 monitor_printf(mon
, "Status: %s\n", DumpStatus_lookup
[result
->status
]);
2521 if (result
->status
== DUMP_STATUS_ACTIVE
) {
2523 assert(result
->total
!= 0);
2524 percent
= 100.0 * result
->completed
/ result
->total
;
2525 monitor_printf(mon
, "Finished: %.2f %%\n", percent
);
2528 qapi_free_DumpQueryResult(result
);
2531 void hmp_hotpluggable_cpus(Monitor
*mon
, const QDict
*qdict
)
2534 HotpluggableCPUList
*l
= qmp_query_hotpluggable_cpus(&err
);
2535 HotpluggableCPUList
*saved
= l
;
2536 CpuInstanceProperties
*c
;
2539 hmp_handle_error(mon
, &err
);
2543 monitor_printf(mon
, "Hotpluggable CPUs:\n");
2545 monitor_printf(mon
, " type: \"%s\"\n", l
->value
->type
);
2546 monitor_printf(mon
, " vcpus_count: \"%" PRIu64
"\"\n",
2547 l
->value
->vcpus_count
);
2548 if (l
->value
->has_qom_path
) {
2549 monitor_printf(mon
, " qom_path: \"%s\"\n", l
->value
->qom_path
);
2552 c
= l
->value
->props
;
2553 monitor_printf(mon
, " CPUInstance Properties:\n");
2554 if (c
->has_node_id
) {
2555 monitor_printf(mon
, " node-id: \"%" PRIu64
"\"\n", c
->node_id
);
2557 if (c
->has_socket_id
) {
2558 monitor_printf(mon
, " socket-id: \"%" PRIu64
"\"\n", c
->socket_id
);
2560 if (c
->has_core_id
) {
2561 monitor_printf(mon
, " core-id: \"%" PRIu64
"\"\n", c
->core_id
);
2563 if (c
->has_thread_id
) {
2564 monitor_printf(mon
, " thread-id: \"%" PRIu64
"\"\n", c
->thread_id
);
2570 qapi_free_HotpluggableCPUList(saved
);