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/config-file.h"
23 #include "qemu/option.h"
24 #include "qemu/timer.h"
25 #include "qmp-commands.h"
26 #include "qemu/sockets.h"
27 #include "monitor/monitor.h"
28 #include "monitor/qdev.h"
29 #include "qapi/opts-visitor.h"
30 #include "qapi/qmp/qerror.h"
31 #include "qapi/string-output-visitor.h"
32 #include "qapi/util.h"
33 #include "qapi-visit.h"
34 #include "qom/object_interfaces.h"
35 #include "ui/console.h"
36 #include "block/qapi.h"
38 #include "qemu/cutils.h"
39 #include "qemu/error-report.h"
40 #include "hw/intc/intc.h"
43 #include <spice/enums.h>
46 static void hmp_handle_error(Monitor
*mon
, Error
**errp
)
50 error_report_err(*errp
);
54 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
58 info
= qmp_query_name(NULL
);
60 monitor_printf(mon
, "%s\n", info
->name
);
62 qapi_free_NameInfo(info
);
65 void hmp_info_version(Monitor
*mon
, const QDict
*qdict
)
69 info
= qmp_query_version(NULL
);
71 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
72 info
->qemu
->major
, info
->qemu
->minor
, info
->qemu
->micro
,
75 qapi_free_VersionInfo(info
);
78 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
82 info
= qmp_query_kvm(NULL
);
83 monitor_printf(mon
, "kvm support: ");
85 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
87 monitor_printf(mon
, "not compiled\n");
90 qapi_free_KvmInfo(info
);
93 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
97 info
= qmp_query_status(NULL
);
99 monitor_printf(mon
, "VM status: %s%s",
100 info
->running
? "running" : "paused",
101 info
->singlestep
? " (single step mode)" : "");
103 if (!info
->running
&& info
->status
!= RUN_STATE_PAUSED
) {
104 monitor_printf(mon
, " (%s)", RunState_lookup
[info
->status
]);
107 monitor_printf(mon
, "\n");
109 qapi_free_StatusInfo(info
);
112 void hmp_info_uuid(Monitor
*mon
, const QDict
*qdict
)
116 info
= qmp_query_uuid(NULL
);
117 monitor_printf(mon
, "%s\n", info
->UUID
);
118 qapi_free_UuidInfo(info
);
121 void hmp_info_chardev(Monitor
*mon
, const QDict
*qdict
)
123 ChardevInfoList
*char_info
, *info
;
125 char_info
= qmp_query_chardev(NULL
);
126 for (info
= char_info
; info
; info
= info
->next
) {
127 monitor_printf(mon
, "%s: filename=%s\n", info
->value
->label
,
128 info
->value
->filename
);
131 qapi_free_ChardevInfoList(char_info
);
134 void hmp_info_mice(Monitor
*mon
, const QDict
*qdict
)
136 MouseInfoList
*mice_list
, *mouse
;
138 mice_list
= qmp_query_mice(NULL
);
140 monitor_printf(mon
, "No mouse devices connected\n");
144 for (mouse
= mice_list
; mouse
; mouse
= mouse
->next
) {
145 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s%s\n",
146 mouse
->value
->current
? '*' : ' ',
147 mouse
->value
->index
, mouse
->value
->name
,
148 mouse
->value
->absolute
? " (absolute)" : "");
151 qapi_free_MouseInfoList(mice_list
);
154 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
157 MigrationCapabilityStatusList
*caps
, *cap
;
159 info
= qmp_query_migrate(NULL
);
160 caps
= qmp_query_migrate_capabilities(NULL
);
162 /* do not display parameters during setup */
163 if (info
->has_status
&& caps
) {
164 monitor_printf(mon
, "capabilities: ");
165 for (cap
= caps
; cap
; cap
= cap
->next
) {
166 monitor_printf(mon
, "%s: %s ",
167 MigrationCapability_lookup
[cap
->value
->capability
],
168 cap
->value
->state
? "on" : "off");
170 monitor_printf(mon
, "\n");
173 if (info
->has_status
) {
174 monitor_printf(mon
, "Migration status: %s",
175 MigrationStatus_lookup
[info
->status
]);
176 if (info
->status
== MIGRATION_STATUS_FAILED
&&
177 info
->has_error_desc
) {
178 monitor_printf(mon
, " (%s)\n", info
->error_desc
);
180 monitor_printf(mon
, "\n");
183 monitor_printf(mon
, "total time: %" PRIu64
" milliseconds\n",
185 if (info
->has_expected_downtime
) {
186 monitor_printf(mon
, "expected downtime: %" PRIu64
" milliseconds\n",
187 info
->expected_downtime
);
189 if (info
->has_downtime
) {
190 monitor_printf(mon
, "downtime: %" PRIu64
" milliseconds\n",
193 if (info
->has_setup_time
) {
194 monitor_printf(mon
, "setup: %" PRIu64
" milliseconds\n",
200 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
201 info
->ram
->transferred
>> 10);
202 monitor_printf(mon
, "throughput: %0.2f mbps\n",
204 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n",
205 info
->ram
->remaining
>> 10);
206 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n",
207 info
->ram
->total
>> 10);
208 monitor_printf(mon
, "duplicate: %" PRIu64
" pages\n",
209 info
->ram
->duplicate
);
210 monitor_printf(mon
, "skipped: %" PRIu64
" pages\n",
212 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
214 monitor_printf(mon
, "normal bytes: %" PRIu64
" kbytes\n",
215 info
->ram
->normal_bytes
>> 10);
216 monitor_printf(mon
, "dirty sync count: %" PRIu64
"\n",
217 info
->ram
->dirty_sync_count
);
218 if (info
->ram
->dirty_pages_rate
) {
219 monitor_printf(mon
, "dirty pages rate: %" PRIu64
" pages\n",
220 info
->ram
->dirty_pages_rate
);
222 if (info
->ram
->postcopy_requests
) {
223 monitor_printf(mon
, "postcopy request count: %" PRIu64
"\n",
224 info
->ram
->postcopy_requests
);
228 if (info
->has_disk
) {
229 monitor_printf(mon
, "transferred disk: %" PRIu64
" kbytes\n",
230 info
->disk
->transferred
>> 10);
231 monitor_printf(mon
, "remaining disk: %" PRIu64
" kbytes\n",
232 info
->disk
->remaining
>> 10);
233 monitor_printf(mon
, "total disk: %" PRIu64
" kbytes\n",
234 info
->disk
->total
>> 10);
237 if (info
->has_xbzrle_cache
) {
238 monitor_printf(mon
, "cache size: %" PRIu64
" bytes\n",
239 info
->xbzrle_cache
->cache_size
);
240 monitor_printf(mon
, "xbzrle transferred: %" PRIu64
" kbytes\n",
241 info
->xbzrle_cache
->bytes
>> 10);
242 monitor_printf(mon
, "xbzrle pages: %" PRIu64
" pages\n",
243 info
->xbzrle_cache
->pages
);
244 monitor_printf(mon
, "xbzrle cache miss: %" PRIu64
"\n",
245 info
->xbzrle_cache
->cache_miss
);
246 monitor_printf(mon
, "xbzrle cache miss rate: %0.2f\n",
247 info
->xbzrle_cache
->cache_miss_rate
);
248 monitor_printf(mon
, "xbzrle overflow : %" PRIu64
"\n",
249 info
->xbzrle_cache
->overflow
);
252 if (info
->has_cpu_throttle_percentage
) {
253 monitor_printf(mon
, "cpu throttle percentage: %" PRIu64
"\n",
254 info
->cpu_throttle_percentage
);
257 qapi_free_MigrationInfo(info
);
258 qapi_free_MigrationCapabilityStatusList(caps
);
261 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
263 MigrationCapabilityStatusList
*caps
, *cap
;
265 caps
= qmp_query_migrate_capabilities(NULL
);
268 monitor_printf(mon
, "capabilities: ");
269 for (cap
= caps
; cap
; cap
= cap
->next
) {
270 monitor_printf(mon
, "%s: %s ",
271 MigrationCapability_lookup
[cap
->value
->capability
],
272 cap
->value
->state
? "on" : "off");
274 monitor_printf(mon
, "\n");
277 qapi_free_MigrationCapabilityStatusList(caps
);
280 void hmp_info_migrate_parameters(Monitor
*mon
, const QDict
*qdict
)
282 MigrationParameters
*params
;
284 params
= qmp_query_migrate_parameters(NULL
);
287 monitor_printf(mon
, "parameters:");
288 assert(params
->has_compress_level
);
289 monitor_printf(mon
, " %s: %" PRId64
,
290 MigrationParameter_lookup
[MIGRATION_PARAMETER_COMPRESS_LEVEL
],
291 params
->compress_level
);
292 assert(params
->has_compress_threads
);
293 monitor_printf(mon
, " %s: %" PRId64
,
294 MigrationParameter_lookup
[MIGRATION_PARAMETER_COMPRESS_THREADS
],
295 params
->compress_threads
);
296 assert(params
->has_decompress_threads
);
297 monitor_printf(mon
, " %s: %" PRId64
,
298 MigrationParameter_lookup
[MIGRATION_PARAMETER_DECOMPRESS_THREADS
],
299 params
->decompress_threads
);
300 assert(params
->has_cpu_throttle_initial
);
301 monitor_printf(mon
, " %s: %" PRId64
,
302 MigrationParameter_lookup
[MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
],
303 params
->cpu_throttle_initial
);
304 assert(params
->has_cpu_throttle_increment
);
305 monitor_printf(mon
, " %s: %" PRId64
,
306 MigrationParameter_lookup
[MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
],
307 params
->cpu_throttle_increment
);
308 monitor_printf(mon
, " %s: '%s'",
309 MigrationParameter_lookup
[MIGRATION_PARAMETER_TLS_CREDS
],
310 params
->has_tls_creds
? params
->tls_creds
: "");
311 monitor_printf(mon
, " %s: '%s'",
312 MigrationParameter_lookup
[MIGRATION_PARAMETER_TLS_HOSTNAME
],
313 params
->has_tls_hostname
? params
->tls_hostname
: "");
314 assert(params
->has_max_bandwidth
);
315 monitor_printf(mon
, " %s: %" PRId64
" bytes/second",
316 MigrationParameter_lookup
[MIGRATION_PARAMETER_MAX_BANDWIDTH
],
317 params
->max_bandwidth
);
318 assert(params
->has_downtime_limit
);
319 monitor_printf(mon
, " %s: %" PRId64
" milliseconds",
320 MigrationParameter_lookup
[MIGRATION_PARAMETER_DOWNTIME_LIMIT
],
321 params
->downtime_limit
);
322 assert(params
->has_x_checkpoint_delay
);
323 monitor_printf(mon
, " %s: %" PRId64
,
324 MigrationParameter_lookup
[MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
],
325 params
->x_checkpoint_delay
);
326 monitor_printf(mon
, "\n");
329 qapi_free_MigrationParameters(params
);
332 void hmp_info_migrate_cache_size(Monitor
*mon
, const QDict
*qdict
)
334 monitor_printf(mon
, "xbzrel cache size: %" PRId64
" kbytes\n",
335 qmp_query_migrate_cache_size(NULL
) >> 10);
338 void hmp_info_cpus(Monitor
*mon
, const QDict
*qdict
)
340 CpuInfoList
*cpu_list
, *cpu
;
342 cpu_list
= qmp_query_cpus(NULL
);
344 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
347 if (cpu
->value
->CPU
== monitor_get_cpu_index()) {
351 monitor_printf(mon
, "%c CPU #%" PRId64
":", active
, cpu
->value
->CPU
);
353 switch (cpu
->value
->arch
) {
354 case CPU_INFO_ARCH_X86
:
355 monitor_printf(mon
, " pc=0x%016" PRIx64
, cpu
->value
->u
.x86
.pc
);
357 case CPU_INFO_ARCH_PPC
:
358 monitor_printf(mon
, " nip=0x%016" PRIx64
, cpu
->value
->u
.ppc
.nip
);
360 case CPU_INFO_ARCH_SPARC
:
361 monitor_printf(mon
, " pc=0x%016" PRIx64
,
362 cpu
->value
->u
.q_sparc
.pc
);
363 monitor_printf(mon
, " npc=0x%016" PRIx64
,
364 cpu
->value
->u
.q_sparc
.npc
);
366 case CPU_INFO_ARCH_MIPS
:
367 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->u
.q_mips
.PC
);
369 case CPU_INFO_ARCH_TRICORE
:
370 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->u
.tricore
.PC
);
376 if (cpu
->value
->halted
) {
377 monitor_printf(mon
, " (halted)");
380 monitor_printf(mon
, " thread_id=%" PRId64
"\n", cpu
->value
->thread_id
);
383 qapi_free_CpuInfoList(cpu_list
);
386 static void print_block_info(Monitor
*mon
, BlockInfo
*info
,
387 BlockDeviceInfo
*inserted
, bool verbose
)
389 ImageInfo
*image_info
;
391 assert(!info
|| !info
->has_inserted
|| info
->inserted
== inserted
);
394 monitor_printf(mon
, "%s", info
->device
);
395 if (inserted
&& inserted
->has_node_name
) {
396 monitor_printf(mon
, " (%s)", inserted
->node_name
);
400 monitor_printf(mon
, "%s",
401 inserted
->has_node_name
402 ? inserted
->node_name
407 monitor_printf(mon
, ": %s (%s%s%s)\n",
410 inserted
->ro
? ", read-only" : "",
411 inserted
->encrypted
? ", encrypted" : "");
413 monitor_printf(mon
, ": [not inserted]\n");
417 if (info
->has_io_status
&& info
->io_status
!= BLOCK_DEVICE_IO_STATUS_OK
) {
418 monitor_printf(mon
, " I/O status: %s\n",
419 BlockDeviceIoStatus_lookup
[info
->io_status
]);
422 if (info
->removable
) {
423 monitor_printf(mon
, " Removable device: %slocked, tray %s\n",
424 info
->locked
? "" : "not ",
425 info
->tray_open
? "open" : "closed");
434 monitor_printf(mon
, " Cache mode: %s%s%s\n",
435 inserted
->cache
->writeback
? "writeback" : "writethrough",
436 inserted
->cache
->direct
? ", direct" : "",
437 inserted
->cache
->no_flush
? ", ignore flushes" : "");
439 if (inserted
->has_backing_file
) {
442 "(chain depth: %" PRId64
")\n",
443 inserted
->backing_file
,
444 inserted
->backing_file_depth
);
447 if (inserted
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
) {
448 monitor_printf(mon
, " Detect zeroes: %s\n",
449 BlockdevDetectZeroesOptions_lookup
[inserted
->detect_zeroes
]);
452 if (inserted
->bps
|| inserted
->bps_rd
|| inserted
->bps_wr
||
453 inserted
->iops
|| inserted
->iops_rd
|| inserted
->iops_wr
)
455 monitor_printf(mon
, " I/O throttling: bps=%" PRId64
456 " bps_rd=%" PRId64
" bps_wr=%" PRId64
458 " bps_rd_max=%" PRId64
459 " bps_wr_max=%" PRId64
460 " iops=%" PRId64
" iops_rd=%" PRId64
463 " iops_rd_max=%" PRId64
464 " iops_wr_max=%" PRId64
465 " iops_size=%" PRId64
471 inserted
->bps_rd_max
,
472 inserted
->bps_wr_max
,
477 inserted
->iops_rd_max
,
478 inserted
->iops_wr_max
,
484 monitor_printf(mon
, "\nImages:\n");
485 image_info
= inserted
->image
;
487 bdrv_image_info_dump((fprintf_function
)monitor_printf
,
489 if (image_info
->has_backing_image
) {
490 image_info
= image_info
->backing_image
;
498 void hmp_info_block(Monitor
*mon
, const QDict
*qdict
)
500 BlockInfoList
*block_list
, *info
;
501 BlockDeviceInfoList
*blockdev_list
, *blockdev
;
502 const char *device
= qdict_get_try_str(qdict
, "device");
503 bool verbose
= qdict_get_try_bool(qdict
, "verbose", false);
504 bool nodes
= qdict_get_try_bool(qdict
, "nodes", false);
505 bool printed
= false;
507 /* Print BlockBackend information */
509 block_list
= qmp_query_block(NULL
);
514 for (info
= block_list
; info
; info
= info
->next
) {
515 if (device
&& strcmp(device
, info
->value
->device
)) {
519 if (info
!= block_list
) {
520 monitor_printf(mon
, "\n");
523 print_block_info(mon
, info
->value
, info
->value
->has_inserted
524 ? info
->value
->inserted
: NULL
,
529 qapi_free_BlockInfoList(block_list
);
531 if ((!device
&& !nodes
) || printed
) {
535 /* Print node information */
536 blockdev_list
= qmp_query_named_block_nodes(NULL
);
537 for (blockdev
= blockdev_list
; blockdev
; blockdev
= blockdev
->next
) {
538 assert(blockdev
->value
->has_node_name
);
539 if (device
&& strcmp(device
, blockdev
->value
->node_name
)) {
543 if (blockdev
!= blockdev_list
) {
544 monitor_printf(mon
, "\n");
547 print_block_info(mon
, NULL
, blockdev
->value
, verbose
);
549 qapi_free_BlockDeviceInfoList(blockdev_list
);
552 void hmp_info_blockstats(Monitor
*mon
, const QDict
*qdict
)
554 BlockStatsList
*stats_list
, *stats
;
556 stats_list
= qmp_query_blockstats(false, false, NULL
);
558 for (stats
= stats_list
; stats
; stats
= stats
->next
) {
559 if (!stats
->value
->has_device
) {
563 monitor_printf(mon
, "%s:", stats
->value
->device
);
564 monitor_printf(mon
, " rd_bytes=%" PRId64
566 " rd_operations=%" PRId64
567 " wr_operations=%" PRId64
568 " flush_operations=%" PRId64
569 " wr_total_time_ns=%" PRId64
570 " rd_total_time_ns=%" PRId64
571 " flush_total_time_ns=%" PRId64
572 " rd_merged=%" PRId64
573 " wr_merged=%" PRId64
574 " idle_time_ns=%" PRId64
576 stats
->value
->stats
->rd_bytes
,
577 stats
->value
->stats
->wr_bytes
,
578 stats
->value
->stats
->rd_operations
,
579 stats
->value
->stats
->wr_operations
,
580 stats
->value
->stats
->flush_operations
,
581 stats
->value
->stats
->wr_total_time_ns
,
582 stats
->value
->stats
->rd_total_time_ns
,
583 stats
->value
->stats
->flush_total_time_ns
,
584 stats
->value
->stats
->rd_merged
,
585 stats
->value
->stats
->wr_merged
,
586 stats
->value
->stats
->idle_time_ns
);
589 qapi_free_BlockStatsList(stats_list
);
592 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
596 VncClientInfoList
*client
;
598 info
= qmp_query_vnc(&err
);
600 error_report_err(err
);
604 if (!info
->enabled
) {
605 monitor_printf(mon
, "Server: disabled\n");
609 monitor_printf(mon
, "Server:\n");
610 if (info
->has_host
&& info
->has_service
) {
611 monitor_printf(mon
, " address: %s:%s\n", info
->host
, info
->service
);
613 if (info
->has_auth
) {
614 monitor_printf(mon
, " auth: %s\n", info
->auth
);
617 if (!info
->has_clients
|| info
->clients
== NULL
) {
618 monitor_printf(mon
, "Client: none\n");
620 for (client
= info
->clients
; client
; client
= client
->next
) {
621 monitor_printf(mon
, "Client:\n");
622 monitor_printf(mon
, " address: %s:%s\n",
624 client
->value
->service
);
625 monitor_printf(mon
, " x509_dname: %s\n",
626 client
->value
->x509_dname
?
627 client
->value
->x509_dname
: "none");
628 monitor_printf(mon
, " username: %s\n",
629 client
->value
->has_sasl_username
?
630 client
->value
->sasl_username
: "none");
635 qapi_free_VncInfo(info
);
639 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
641 SpiceChannelList
*chan
;
643 const char *channel_name
;
644 const char * const channel_names
[] = {
645 [SPICE_CHANNEL_MAIN
] = "main",
646 [SPICE_CHANNEL_DISPLAY
] = "display",
647 [SPICE_CHANNEL_INPUTS
] = "inputs",
648 [SPICE_CHANNEL_CURSOR
] = "cursor",
649 [SPICE_CHANNEL_PLAYBACK
] = "playback",
650 [SPICE_CHANNEL_RECORD
] = "record",
651 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
652 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
653 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
654 [SPICE_CHANNEL_PORT
] = "port",
656 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
657 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
658 * as quick fix for build failures with older versions. */
659 [SPICE_CHANNEL_WEBDAV
] = "webdav",
663 info
= qmp_query_spice(NULL
);
665 if (!info
->enabled
) {
666 monitor_printf(mon
, "Server: disabled\n");
670 monitor_printf(mon
, "Server:\n");
671 if (info
->has_port
) {
672 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
673 info
->host
, info
->port
);
675 if (info
->has_tls_port
) {
676 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
677 info
->host
, info
->tls_port
);
679 monitor_printf(mon
, " migrated: %s\n",
680 info
->migrated
? "true" : "false");
681 monitor_printf(mon
, " auth: %s\n", info
->auth
);
682 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
683 monitor_printf(mon
, " mouse-mode: %s\n",
684 SpiceQueryMouseMode_lookup
[info
->mouse_mode
]);
686 if (!info
->has_channels
|| info
->channels
== NULL
) {
687 monitor_printf(mon
, "Channels: none\n");
689 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
690 monitor_printf(mon
, "Channel:\n");
691 monitor_printf(mon
, " address: %s:%s%s\n",
692 chan
->value
->host
, chan
->value
->port
,
693 chan
->value
->tls
? " [tls]" : "");
694 monitor_printf(mon
, " session: %" PRId64
"\n",
695 chan
->value
->connection_id
);
696 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
697 chan
->value
->channel_type
, chan
->value
->channel_id
);
699 channel_name
= "unknown";
700 if (chan
->value
->channel_type
> 0 &&
701 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
702 channel_names
[chan
->value
->channel_type
]) {
703 channel_name
= channel_names
[chan
->value
->channel_type
];
706 monitor_printf(mon
, " channel name: %s\n", channel_name
);
711 qapi_free_SpiceInfo(info
);
715 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
720 info
= qmp_query_balloon(&err
);
722 error_report_err(err
);
726 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
728 qapi_free_BalloonInfo(info
);
731 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
733 PciMemoryRegionList
*region
;
735 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
736 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
737 dev
->slot
, dev
->function
);
738 monitor_printf(mon
, " ");
740 if (dev
->class_info
->has_desc
) {
741 monitor_printf(mon
, "%s", dev
->class_info
->desc
);
743 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
->q_class
);
746 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
747 dev
->id
->vendor
, dev
->id
->device
);
750 monitor_printf(mon
, " IRQ %" PRId64
".\n", dev
->irq
);
753 if (dev
->has_pci_bridge
) {
754 monitor_printf(mon
, " BUS %" PRId64
".\n",
755 dev
->pci_bridge
->bus
->number
);
756 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
757 dev
->pci_bridge
->bus
->secondary
);
758 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
759 dev
->pci_bridge
->bus
->subordinate
);
761 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
762 dev
->pci_bridge
->bus
->io_range
->base
,
763 dev
->pci_bridge
->bus
->io_range
->limit
);
766 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
767 dev
->pci_bridge
->bus
->memory_range
->base
,
768 dev
->pci_bridge
->bus
->memory_range
->limit
);
770 monitor_printf(mon
, " prefetchable memory range "
771 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
772 dev
->pci_bridge
->bus
->prefetchable_range
->base
,
773 dev
->pci_bridge
->bus
->prefetchable_range
->limit
);
776 for (region
= dev
->regions
; region
; region
= region
->next
) {
779 addr
= region
->value
->address
;
780 size
= region
->value
->size
;
782 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
784 if (!strcmp(region
->value
->type
, "io")) {
785 monitor_printf(mon
, "I/O at 0x%04" PRIx64
786 " [0x%04" PRIx64
"].\n",
787 addr
, addr
+ size
- 1);
789 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
790 " [0x%08" PRIx64
"].\n",
791 region
->value
->mem_type_64
? 64 : 32,
792 region
->value
->prefetch
? " prefetchable" : "",
793 addr
, addr
+ size
- 1);
797 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
799 if (dev
->has_pci_bridge
) {
800 if (dev
->pci_bridge
->has_devices
) {
801 PciDeviceInfoList
*cdev
;
802 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
803 hmp_info_pci_device(mon
, cdev
->value
);
809 static int hmp_info_irq_foreach(Object
*obj
, void *opaque
)
811 InterruptStatsProvider
*intc
;
812 InterruptStatsProviderClass
*k
;
813 Monitor
*mon
= opaque
;
815 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
816 intc
= INTERRUPT_STATS_PROVIDER(obj
);
817 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
818 uint64_t *irq_counts
;
819 unsigned int nb_irqs
, i
;
820 if (k
->get_statistics
&&
821 k
->get_statistics(intc
, &irq_counts
, &nb_irqs
)) {
823 monitor_printf(mon
, "IRQ statistics for %s:\n",
824 object_get_typename(obj
));
825 for (i
= 0; i
< nb_irqs
; i
++) {
826 if (irq_counts
[i
] > 0) {
827 monitor_printf(mon
, "%2d: %" PRId64
"\n", i
,
833 monitor_printf(mon
, "IRQ statistics not available for %s.\n",
834 object_get_typename(obj
));
841 void hmp_info_irq(Monitor
*mon
, const QDict
*qdict
)
843 object_child_foreach_recursive(object_get_root(),
844 hmp_info_irq_foreach
, mon
);
847 static int hmp_info_pic_foreach(Object
*obj
, void *opaque
)
849 InterruptStatsProvider
*intc
;
850 InterruptStatsProviderClass
*k
;
851 Monitor
*mon
= opaque
;
853 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
854 intc
= INTERRUPT_STATS_PROVIDER(obj
);
855 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
857 k
->print_info(intc
, mon
);
859 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
860 object_get_typename(obj
));
867 void hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
869 object_child_foreach_recursive(object_get_root(),
870 hmp_info_pic_foreach
, mon
);
873 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
875 PciInfoList
*info_list
, *info
;
878 info_list
= qmp_query_pci(&err
);
880 monitor_printf(mon
, "PCI devices not supported\n");
885 for (info
= info_list
; info
; info
= info
->next
) {
886 PciDeviceInfoList
*dev
;
888 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
889 hmp_info_pci_device(mon
, dev
->value
);
893 qapi_free_PciInfoList(info_list
);
896 void hmp_info_block_jobs(Monitor
*mon
, const QDict
*qdict
)
898 BlockJobInfoList
*list
;
901 list
= qmp_query_block_jobs(&err
);
905 monitor_printf(mon
, "No active jobs\n");
910 if (strcmp(list
->value
->type
, "stream") == 0) {
911 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
912 " of %" PRId64
" bytes, speed limit %" PRId64
919 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
920 " of %" PRId64
" bytes, speed limit %" PRId64
931 qapi_free_BlockJobInfoList(list
);
934 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
936 TPMInfoList
*info_list
, *info
;
939 TPMPassthroughOptions
*tpo
;
941 info_list
= qmp_query_tpm(&err
);
943 monitor_printf(mon
, "TPM device not supported\n");
949 monitor_printf(mon
, "TPM device:\n");
952 for (info
= info_list
; info
; info
= info
->next
) {
953 TPMInfo
*ti
= info
->value
;
954 monitor_printf(mon
, " tpm%d: model=%s\n",
955 c
, TpmModel_lookup
[ti
->model
]);
957 monitor_printf(mon
, " \\ %s: type=%s",
958 ti
->id
, TpmTypeOptionsKind_lookup
[ti
->options
->type
]);
960 switch (ti
->options
->type
) {
961 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH
:
962 tpo
= ti
->options
->u
.passthrough
.data
;
963 monitor_printf(mon
, "%s%s%s%s",
964 tpo
->has_path
? ",path=" : "",
965 tpo
->has_path
? tpo
->path
: "",
966 tpo
->has_cancel_path
? ",cancel-path=" : "",
967 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
969 case TPM_TYPE_OPTIONS_KIND__MAX
:
972 monitor_printf(mon
, "\n");
975 qapi_free_TPMInfoList(info_list
);
978 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
980 monitor_suspend(mon
);
984 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
989 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
991 qmp_system_reset(NULL
);
994 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
996 qmp_system_powerdown(NULL
);
999 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
1003 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1004 use it are converted to the QAPI */
1005 cpu_index
= qdict_get_int(qdict
, "index");
1006 if (monitor_set_cpu(cpu_index
) < 0) {
1007 monitor_printf(mon
, "invalid CPU index\n");
1011 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
1013 uint32_t size
= qdict_get_int(qdict
, "size");
1014 const char *filename
= qdict_get_str(qdict
, "filename");
1015 uint64_t addr
= qdict_get_int(qdict
, "val");
1018 qmp_memsave(addr
, size
, filename
, true, monitor_get_cpu_index(), &err
);
1019 hmp_handle_error(mon
, &err
);
1022 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
1024 uint32_t size
= qdict_get_int(qdict
, "size");
1025 const char *filename
= qdict_get_str(qdict
, "filename");
1026 uint64_t addr
= qdict_get_int(qdict
, "val");
1029 qmp_pmemsave(addr
, size
, filename
, &err
);
1030 hmp_handle_error(mon
, &err
);
1033 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
1035 const char *chardev
= qdict_get_str(qdict
, "device");
1036 const char *data
= qdict_get_str(qdict
, "data");
1039 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
1041 hmp_handle_error(mon
, &err
);
1044 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
1046 uint32_t size
= qdict_get_int(qdict
, "size");
1047 const char *chardev
= qdict_get_str(qdict
, "device");
1052 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1054 error_report_err(err
);
1058 for (i
= 0; data
[i
]; i
++) {
1059 unsigned char ch
= data
[i
];
1062 monitor_printf(mon
, "\\\\");
1063 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1064 monitor_printf(mon
, "\\u%04X", ch
);
1066 monitor_printf(mon
, "%c", ch
);
1070 monitor_printf(mon
, "\n");
1074 static void hmp_cont_cb(void *opaque
, int err
)
1081 static bool key_is_missing(const BlockInfo
*bdev
)
1083 return (bdev
->inserted
&& bdev
->inserted
->encryption_key_missing
);
1086 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1088 BlockInfoList
*bdev_list
, *bdev
;
1091 bdev_list
= qmp_query_block(NULL
);
1092 for (bdev
= bdev_list
; bdev
; bdev
= bdev
->next
) {
1093 if (key_is_missing(bdev
->value
)) {
1094 monitor_read_block_device_key(mon
, bdev
->value
->device
,
1101 hmp_handle_error(mon
, &err
);
1104 qapi_free_BlockInfoList(bdev_list
);
1107 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1109 qmp_system_wakeup(NULL
);
1112 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
1116 qmp_inject_nmi(&err
);
1117 hmp_handle_error(mon
, &err
);
1120 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
1122 const char *name
= qdict_get_str(qdict
, "name");
1123 bool up
= qdict_get_bool(qdict
, "up");
1126 qmp_set_link(name
, up
, &err
);
1127 hmp_handle_error(mon
, &err
);
1130 void hmp_block_passwd(Monitor
*mon
, const QDict
*qdict
)
1132 const char *device
= qdict_get_str(qdict
, "device");
1133 const char *password
= qdict_get_str(qdict
, "password");
1136 qmp_block_passwd(true, device
, false, NULL
, password
, &err
);
1137 hmp_handle_error(mon
, &err
);
1140 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
1142 int64_t value
= qdict_get_int(qdict
, "value");
1145 qmp_balloon(value
, &err
);
1147 error_report_err(err
);
1151 void hmp_block_resize(Monitor
*mon
, const QDict
*qdict
)
1153 const char *device
= qdict_get_str(qdict
, "device");
1154 int64_t size
= qdict_get_int(qdict
, "size");
1157 qmp_block_resize(true, device
, false, NULL
, size
, &err
);
1158 hmp_handle_error(mon
, &err
);
1161 void hmp_drive_mirror(Monitor
*mon
, const QDict
*qdict
)
1163 const char *filename
= qdict_get_str(qdict
, "target");
1164 const char *format
= qdict_get_try_str(qdict
, "format");
1165 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1166 bool full
= qdict_get_try_bool(qdict
, "full", false);
1168 DriveMirror mirror
= {
1169 .device
= (char *)qdict_get_str(qdict
, "device"),
1170 .target
= (char *)filename
,
1171 .has_format
= !!format
,
1172 .format
= (char *)format
,
1173 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1175 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1180 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1181 hmp_handle_error(mon
, &err
);
1184 qmp_drive_mirror(&mirror
, &err
);
1185 hmp_handle_error(mon
, &err
);
1188 void hmp_drive_backup(Monitor
*mon
, const QDict
*qdict
)
1190 const char *device
= qdict_get_str(qdict
, "device");
1191 const char *filename
= qdict_get_str(qdict
, "target");
1192 const char *format
= qdict_get_try_str(qdict
, "format");
1193 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1194 bool full
= qdict_get_try_bool(qdict
, "full", false);
1195 bool compress
= qdict_get_try_bool(qdict
, "compress", false);
1197 DriveBackup backup
= {
1198 .device
= (char *)device
,
1199 .target
= (char *)filename
,
1200 .has_format
= !!format
,
1201 .format
= (char *)format
,
1202 .sync
= full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1204 .mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
,
1205 .has_compress
= !!compress
,
1206 .compress
= compress
,
1210 error_setg(&err
, QERR_MISSING_PARAMETER
, "target");
1211 hmp_handle_error(mon
, &err
);
1215 qmp_drive_backup(&backup
, &err
);
1216 hmp_handle_error(mon
, &err
);
1219 void hmp_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
)
1221 const char *device
= qdict_get_str(qdict
, "device");
1222 const char *filename
= qdict_get_try_str(qdict
, "snapshot-file");
1223 const char *format
= qdict_get_try_str(qdict
, "format");
1224 bool reuse
= qdict_get_try_bool(qdict
, "reuse", false);
1225 enum NewImageMode mode
;
1229 /* In the future, if 'snapshot-file' is not specified, the snapshot
1230 will be taken internally. Today it's actually required. */
1231 error_setg(&err
, QERR_MISSING_PARAMETER
, "snapshot-file");
1232 hmp_handle_error(mon
, &err
);
1236 mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1237 qmp_blockdev_snapshot_sync(true, device
, false, NULL
,
1238 filename
, false, NULL
,
1241 hmp_handle_error(mon
, &err
);
1244 void hmp_snapshot_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1246 const char *device
= qdict_get_str(qdict
, "device");
1247 const char *name
= qdict_get_str(qdict
, "name");
1250 qmp_blockdev_snapshot_internal_sync(device
, name
, &err
);
1251 hmp_handle_error(mon
, &err
);
1254 void hmp_snapshot_delete_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1256 const char *device
= qdict_get_str(qdict
, "device");
1257 const char *name
= qdict_get_str(qdict
, "name");
1258 const char *id
= qdict_get_try_str(qdict
, "id");
1261 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
1263 hmp_handle_error(mon
, &err
);
1266 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1268 qmp_migrate_cancel(NULL
);
1271 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
1274 const char *uri
= qdict_get_str(qdict
, "uri");
1276 qmp_migrate_incoming(uri
, &err
);
1278 hmp_handle_error(mon
, &err
);
1281 /* Kept for backwards compatibility */
1282 void hmp_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
1284 double value
= qdict_get_double(qdict
, "value");
1285 qmp_migrate_set_downtime(value
, NULL
);
1288 void hmp_migrate_set_cache_size(Monitor
*mon
, const QDict
*qdict
)
1290 int64_t value
= qdict_get_int(qdict
, "value");
1293 qmp_migrate_set_cache_size(value
, &err
);
1295 error_report_err(err
);
1300 /* Kept for backwards compatibility */
1301 void hmp_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
1303 int64_t value
= qdict_get_int(qdict
, "value");
1304 qmp_migrate_set_speed(value
, NULL
);
1307 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1309 const char *cap
= qdict_get_str(qdict
, "capability");
1310 bool state
= qdict_get_bool(qdict
, "state");
1312 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1315 for (i
= 0; i
< MIGRATION_CAPABILITY__MAX
; i
++) {
1316 if (strcmp(cap
, MigrationCapability_lookup
[i
]) == 0) {
1317 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1318 caps
->value
->capability
= i
;
1319 caps
->value
->state
= state
;
1321 qmp_migrate_set_capabilities(caps
, &err
);
1326 if (i
== MIGRATION_CAPABILITY__MAX
) {
1327 error_setg(&err
, QERR_INVALID_PARAMETER
, cap
);
1330 qapi_free_MigrationCapabilityStatusList(caps
);
1333 error_report_err(err
);
1337 void hmp_migrate_set_parameter(Monitor
*mon
, const QDict
*qdict
)
1339 const char *param
= qdict_get_str(qdict
, "parameter");
1340 const char *valuestr
= qdict_get_str(qdict
, "value");
1341 int64_t valuebw
= 0;
1345 bool use_int_value
= false;
1348 for (i
= 0; i
< MIGRATION_PARAMETER__MAX
; i
++) {
1349 if (strcmp(param
, MigrationParameter_lookup
[i
]) == 0) {
1350 MigrationParameters p
= { 0 };
1352 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1353 p
.has_compress_level
= true;
1354 use_int_value
= true;
1356 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1357 p
.has_compress_threads
= true;
1358 use_int_value
= true;
1360 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1361 p
.has_decompress_threads
= true;
1362 use_int_value
= true;
1364 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
:
1365 p
.has_cpu_throttle_initial
= true;
1366 use_int_value
= true;
1368 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
:
1369 p
.has_cpu_throttle_increment
= true;
1370 use_int_value
= true;
1372 case MIGRATION_PARAMETER_TLS_CREDS
:
1373 p
.has_tls_creds
= true;
1374 p
.tls_creds
= (char *) valuestr
;
1376 case MIGRATION_PARAMETER_TLS_HOSTNAME
:
1377 p
.has_tls_hostname
= true;
1378 p
.tls_hostname
= (char *) valuestr
;
1380 case MIGRATION_PARAMETER_MAX_BANDWIDTH
:
1381 p
.has_max_bandwidth
= true;
1382 valuebw
= qemu_strtosz(valuestr
, &endp
);
1383 if (valuebw
< 0 || (size_t)valuebw
!= valuebw
1385 error_setg(&err
, "Invalid size %s", valuestr
);
1388 p
.max_bandwidth
= valuebw
;
1390 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1391 p
.has_downtime_limit
= true;
1392 use_int_value
= true;
1394 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
:
1395 p
.has_x_checkpoint_delay
= true;
1396 use_int_value
= true;
1400 if (use_int_value
) {
1401 if (qemu_strtol(valuestr
, NULL
, 10, &valueint
) < 0) {
1402 error_setg(&err
, "Unable to parse '%s' as an int",
1406 /* Set all integers; only one has_FOO will be set, and
1407 * the code ignores the remaining values */
1408 p
.compress_level
= valueint
;
1409 p
.compress_threads
= valueint
;
1410 p
.decompress_threads
= valueint
;
1411 p
.cpu_throttle_initial
= valueint
;
1412 p
.cpu_throttle_increment
= valueint
;
1413 p
.downtime_limit
= valueint
;
1414 p
.x_checkpoint_delay
= valueint
;
1417 qmp_migrate_set_parameters(&p
, &err
);
1422 if (i
== MIGRATION_PARAMETER__MAX
) {
1423 error_setg(&err
, QERR_INVALID_PARAMETER
, param
);
1428 error_report_err(err
);
1432 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
1435 const char *protocol
= qdict_get_str(qdict
, "protocol");
1436 const char *hostname
= qdict_get_str(qdict
, "hostname");
1437 bool has_port
= qdict_haskey(qdict
, "port");
1438 int port
= qdict_get_try_int(qdict
, "port", -1);
1439 bool has_tls_port
= qdict_haskey(qdict
, "tls-port");
1440 int tls_port
= qdict_get_try_int(qdict
, "tls-port", -1);
1441 const char *cert_subject
= qdict_get_try_str(qdict
, "cert-subject");
1443 qmp_client_migrate_info(protocol
, hostname
,
1444 has_port
, port
, has_tls_port
, tls_port
,
1445 !!cert_subject
, cert_subject
, &err
);
1446 hmp_handle_error(mon
, &err
);
1449 void hmp_migrate_start_postcopy(Monitor
*mon
, const QDict
*qdict
)
1452 qmp_migrate_start_postcopy(&err
);
1453 hmp_handle_error(mon
, &err
);
1456 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
1460 qmp_x_colo_lost_heartbeat(&err
);
1461 hmp_handle_error(mon
, &err
);
1464 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1466 const char *protocol
= qdict_get_str(qdict
, "protocol");
1467 const char *password
= qdict_get_str(qdict
, "password");
1468 const char *connected
= qdict_get_try_str(qdict
, "connected");
1471 qmp_set_password(protocol
, password
, !!connected
, connected
, &err
);
1472 hmp_handle_error(mon
, &err
);
1475 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1477 const char *protocol
= qdict_get_str(qdict
, "protocol");
1478 const char *whenstr
= qdict_get_str(qdict
, "time");
1481 qmp_expire_password(protocol
, whenstr
, &err
);
1482 hmp_handle_error(mon
, &err
);
1485 void hmp_eject(Monitor
*mon
, const QDict
*qdict
)
1487 bool force
= qdict_get_try_bool(qdict
, "force", false);
1488 const char *device
= qdict_get_str(qdict
, "device");
1491 qmp_eject(true, device
, false, NULL
, true, force
, &err
);
1492 hmp_handle_error(mon
, &err
);
1495 static void hmp_change_read_arg(void *opaque
, const char *password
,
1496 void *readline_opaque
)
1498 qmp_change_vnc_password(password
, NULL
);
1499 monitor_read_command(opaque
, 1);
1502 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1504 const char *device
= qdict_get_str(qdict
, "device");
1505 const char *target
= qdict_get_str(qdict
, "target");
1506 const char *arg
= qdict_get_try_str(qdict
, "arg");
1507 const char *read_only
= qdict_get_try_str(qdict
, "read-only-mode");
1508 BlockdevChangeReadOnlyMode read_only_mode
= 0;
1511 if (strcmp(device
, "vnc") == 0) {
1514 "Parameter 'read-only-mode' is invalid for VNC\n");
1517 if (strcmp(target
, "passwd") == 0 ||
1518 strcmp(target
, "password") == 0) {
1520 monitor_read_password(mon
, hmp_change_read_arg
, NULL
);
1524 qmp_change("vnc", target
, !!arg
, arg
, &err
);
1528 qapi_enum_parse(BlockdevChangeReadOnlyMode_lookup
,
1529 read_only
, BLOCKDEV_CHANGE_READ_ONLY_MODE__MAX
,
1530 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
1532 hmp_handle_error(mon
, &err
);
1537 qmp_blockdev_change_medium(true, device
, false, NULL
, target
,
1538 !!arg
, arg
, !!read_only
, read_only_mode
,
1541 error_get_class(err
) == ERROR_CLASS_DEVICE_ENCRYPTED
) {
1543 monitor_read_block_device_key(mon
, device
, NULL
, NULL
);
1548 hmp_handle_error(mon
, &err
);
1551 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
1554 BlockIOThrottle throttle
= {
1555 .device
= (char *) qdict_get_str(qdict
, "device"),
1556 .bps
= qdict_get_int(qdict
, "bps"),
1557 .bps_rd
= qdict_get_int(qdict
, "bps_rd"),
1558 .bps_wr
= qdict_get_int(qdict
, "bps_wr"),
1559 .iops
= qdict_get_int(qdict
, "iops"),
1560 .iops_rd
= qdict_get_int(qdict
, "iops_rd"),
1561 .iops_wr
= qdict_get_int(qdict
, "iops_wr"),
1564 qmp_block_set_io_throttle(&throttle
, &err
);
1565 hmp_handle_error(mon
, &err
);
1568 void hmp_block_stream(Monitor
*mon
, const QDict
*qdict
)
1570 Error
*error
= NULL
;
1571 const char *device
= qdict_get_str(qdict
, "device");
1572 const char *base
= qdict_get_try_str(qdict
, "base");
1573 int64_t speed
= qdict_get_try_int(qdict
, "speed", 0);
1575 qmp_block_stream(true, device
, device
, base
!= NULL
, base
, false, NULL
,
1576 false, NULL
, qdict_haskey(qdict
, "speed"), speed
,
1577 true, BLOCKDEV_ON_ERROR_REPORT
, &error
);
1579 hmp_handle_error(mon
, &error
);
1582 void hmp_block_job_set_speed(Monitor
*mon
, const QDict
*qdict
)
1584 Error
*error
= NULL
;
1585 const char *device
= qdict_get_str(qdict
, "device");
1586 int64_t value
= qdict_get_int(qdict
, "speed");
1588 qmp_block_job_set_speed(device
, value
, &error
);
1590 hmp_handle_error(mon
, &error
);
1593 void hmp_block_job_cancel(Monitor
*mon
, const QDict
*qdict
)
1595 Error
*error
= NULL
;
1596 const char *device
= qdict_get_str(qdict
, "device");
1597 bool force
= qdict_get_try_bool(qdict
, "force", false);
1599 qmp_block_job_cancel(device
, true, force
, &error
);
1601 hmp_handle_error(mon
, &error
);
1604 void hmp_block_job_pause(Monitor
*mon
, const QDict
*qdict
)
1606 Error
*error
= NULL
;
1607 const char *device
= qdict_get_str(qdict
, "device");
1609 qmp_block_job_pause(device
, &error
);
1611 hmp_handle_error(mon
, &error
);
1614 void hmp_block_job_resume(Monitor
*mon
, const QDict
*qdict
)
1616 Error
*error
= NULL
;
1617 const char *device
= qdict_get_str(qdict
, "device");
1619 qmp_block_job_resume(device
, &error
);
1621 hmp_handle_error(mon
, &error
);
1624 void hmp_block_job_complete(Monitor
*mon
, const QDict
*qdict
)
1626 Error
*error
= NULL
;
1627 const char *device
= qdict_get_str(qdict
, "device");
1629 qmp_block_job_complete(device
, &error
);
1631 hmp_handle_error(mon
, &error
);
1634 typedef struct HMPMigrationStatus
1638 bool is_block_migration
;
1639 } HMPMigrationStatus
;
1641 static void hmp_migrate_status_cb(void *opaque
)
1643 HMPMigrationStatus
*status
= opaque
;
1644 MigrationInfo
*info
;
1646 info
= qmp_query_migrate(NULL
);
1647 if (!info
->has_status
|| info
->status
== MIGRATION_STATUS_ACTIVE
||
1648 info
->status
== MIGRATION_STATUS_SETUP
) {
1649 if (info
->has_disk
) {
1652 if (info
->disk
->remaining
) {
1653 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
1658 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
1659 monitor_flush(status
->mon
);
1662 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1664 if (status
->is_block_migration
) {
1665 monitor_printf(status
->mon
, "\n");
1667 if (info
->has_error_desc
) {
1668 error_report("%s", info
->error_desc
);
1670 monitor_resume(status
->mon
);
1671 timer_del(status
->timer
);
1675 qapi_free_MigrationInfo(info
);
1678 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
1680 bool detach
= qdict_get_try_bool(qdict
, "detach", false);
1681 bool blk
= qdict_get_try_bool(qdict
, "blk", false);
1682 bool inc
= qdict_get_try_bool(qdict
, "inc", false);
1683 const char *uri
= qdict_get_str(qdict
, "uri");
1686 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
, false, false, &err
);
1688 error_report_err(err
);
1693 HMPMigrationStatus
*status
;
1695 if (monitor_suspend(mon
) < 0) {
1696 monitor_printf(mon
, "terminal does not allow synchronous "
1697 "migration, continuing detached\n");
1701 status
= g_malloc0(sizeof(*status
));
1703 status
->is_block_migration
= blk
|| inc
;
1704 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
1706 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
1710 void hmp_device_add(Monitor
*mon
, const QDict
*qdict
)
1714 qmp_device_add((QDict
*)qdict
, NULL
, &err
);
1715 hmp_handle_error(mon
, &err
);
1718 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
1720 const char *id
= qdict_get_str(qdict
, "id");
1723 qmp_device_del(id
, &err
);
1724 hmp_handle_error(mon
, &err
);
1727 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
1730 bool paging
= qdict_get_try_bool(qdict
, "paging", false);
1731 bool zlib
= qdict_get_try_bool(qdict
, "zlib", false);
1732 bool lzo
= qdict_get_try_bool(qdict
, "lzo", false);
1733 bool snappy
= qdict_get_try_bool(qdict
, "snappy", false);
1734 const char *file
= qdict_get_str(qdict
, "filename");
1735 bool has_begin
= qdict_haskey(qdict
, "begin");
1736 bool has_length
= qdict_haskey(qdict
, "length");
1737 bool has_detach
= qdict_haskey(qdict
, "detach");
1740 bool detach
= false;
1741 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1744 if (zlib
+ lzo
+ snappy
> 1) {
1745 error_setg(&err
, "only one of '-z|-l|-s' can be set");
1746 hmp_handle_error(mon
, &err
);
1751 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1755 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
1759 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
1763 begin
= qdict_get_int(qdict
, "begin");
1766 length
= qdict_get_int(qdict
, "length");
1769 detach
= qdict_get_bool(qdict
, "detach");
1772 prot
= g_strconcat("file:", file
, NULL
);
1774 qmp_dump_guest_memory(paging
, prot
, true, detach
, has_begin
, begin
,
1775 has_length
, length
, true, dump_format
, &err
);
1776 hmp_handle_error(mon
, &err
);
1780 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
1785 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
1790 netdev_add(opts
, &err
);
1792 qemu_opts_del(opts
);
1796 hmp_handle_error(mon
, &err
);
1799 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
1801 const char *id
= qdict_get_str(qdict
, "id");
1804 qmp_netdev_del(id
, &err
);
1805 hmp_handle_error(mon
, &err
);
1808 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
1814 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
1816 hmp_handle_error(mon
, &err
);
1820 obj
= user_creatable_add_opts(opts
, &err
);
1821 qemu_opts_del(opts
);
1824 hmp_handle_error(mon
, &err
);
1831 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
1833 const char *fdname
= qdict_get_str(qdict
, "fdname");
1836 qmp_getfd(fdname
, &err
);
1837 hmp_handle_error(mon
, &err
);
1840 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
1842 const char *fdname
= qdict_get_str(qdict
, "fdname");
1845 qmp_closefd(fdname
, &err
);
1846 hmp_handle_error(mon
, &err
);
1849 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
1851 const char *keys
= qdict_get_str(qdict
, "keys");
1852 KeyValueList
*keylist
, *head
= NULL
, *tmp
= NULL
;
1853 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
1854 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
1860 separator
= strchr(keys
, '-');
1861 keyname_len
= separator
? separator
- keys
: strlen(keys
);
1863 /* Be compatible with old interface, convert user inputted "<" */
1864 if (keys
[0] == '<' && keyname_len
== 1) {
1869 keylist
= g_malloc0(sizeof(*keylist
));
1870 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
1876 tmp
->next
= keylist
;
1880 if (strstart(keys
, "0x", NULL
)) {
1882 int value
= strtoul(keys
, &endp
, 0);
1883 assert(endp
<= keys
+ keyname_len
);
1884 if (endp
!= keys
+ keyname_len
) {
1887 keylist
->value
->type
= KEY_VALUE_KIND_NUMBER
;
1888 keylist
->value
->u
.number
.data
= value
;
1890 int idx
= index_from_key(keys
, keyname_len
);
1891 if (idx
== Q_KEY_CODE__MAX
) {
1894 keylist
->value
->type
= KEY_VALUE_KIND_QCODE
;
1895 keylist
->value
->u
.qcode
.data
= idx
;
1901 keys
= separator
+ 1;
1904 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
1905 hmp_handle_error(mon
, &err
);
1908 qapi_free_KeyValueList(head
);
1912 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
1916 void hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
1918 const char *filename
= qdict_get_str(qdict
, "filename");
1921 qmp_screendump(filename
, &err
);
1922 hmp_handle_error(mon
, &err
);
1925 void hmp_nbd_server_start(Monitor
*mon
, const QDict
*qdict
)
1927 const char *uri
= qdict_get_str(qdict
, "uri");
1928 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
1929 bool all
= qdict_get_try_bool(qdict
, "all", false);
1930 Error
*local_err
= NULL
;
1931 BlockInfoList
*block_list
, *info
;
1932 SocketAddress
*addr
;
1934 if (writable
&& !all
) {
1935 error_setg(&local_err
, "-w only valid together with -a");
1939 /* First check if the address is valid and start the server. */
1940 addr
= socket_parse(uri
, &local_err
);
1941 if (local_err
!= NULL
) {
1945 qmp_nbd_server_start(addr
, false, NULL
, &local_err
);
1946 qapi_free_SocketAddress(addr
);
1947 if (local_err
!= NULL
) {
1955 /* Then try adding all block devices. If one fails, close all and
1958 block_list
= qmp_query_block(NULL
);
1960 for (info
= block_list
; info
; info
= info
->next
) {
1961 if (!info
->value
->has_inserted
) {
1965 qmp_nbd_server_add(info
->value
->device
, true, writable
, &local_err
);
1967 if (local_err
!= NULL
) {
1968 qmp_nbd_server_stop(NULL
);
1973 qapi_free_BlockInfoList(block_list
);
1976 hmp_handle_error(mon
, &local_err
);
1979 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
1981 const char *device
= qdict_get_str(qdict
, "device");
1982 bool writable
= qdict_get_try_bool(qdict
, "writable", false);
1983 Error
*local_err
= NULL
;
1985 qmp_nbd_server_add(device
, true, writable
, &local_err
);
1987 if (local_err
!= NULL
) {
1988 hmp_handle_error(mon
, &local_err
);
1992 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
1996 qmp_nbd_server_stop(&err
);
1997 hmp_handle_error(mon
, &err
);
2000 void hmp_cpu_add(Monitor
*mon
, const QDict
*qdict
)
2005 cpuid
= qdict_get_int(qdict
, "id");
2006 qmp_cpu_add(cpuid
, &err
);
2007 hmp_handle_error(mon
, &err
);
2010 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
2012 const char *args
= qdict_get_str(qdict
, "args");
2016 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
2018 error_setg(&err
, "Parsing chardev args failed");
2020 qemu_chr_new_from_opts(opts
, &err
);
2021 qemu_opts_del(opts
);
2023 hmp_handle_error(mon
, &err
);
2026 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
2028 Error
*local_err
= NULL
;
2030 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
2031 hmp_handle_error(mon
, &local_err
);
2034 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
2037 BlockBackend
*local_blk
= NULL
;
2038 AioContext
*aio_context
;
2039 const char* device
= qdict_get_str(qdict
, "device");
2040 const char* command
= qdict_get_str(qdict
, "command");
2043 blk
= blk_by_name(device
);
2045 BlockDriverState
*bs
= bdrv_lookup_bs(NULL
, device
, &err
);
2047 blk
= local_blk
= blk_new();
2048 blk_insert_bs(blk
, bs
);
2054 aio_context
= blk_get_aio_context(blk
);
2055 aio_context_acquire(aio_context
);
2057 qemuio_command(blk
, command
);
2059 aio_context_release(aio_context
);
2062 blk_unref(local_blk
);
2063 hmp_handle_error(mon
, &err
);
2066 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
2068 const char *id
= qdict_get_str(qdict
, "id");
2071 user_creatable_del(id
, &err
);
2072 hmp_handle_error(mon
, &err
);
2075 void hmp_info_memdev(Monitor
*mon
, const QDict
*qdict
)
2078 MemdevList
*memdev_list
= qmp_query_memdev(&err
);
2079 MemdevList
*m
= memdev_list
;
2084 v
= string_output_visitor_new(false, &str
);
2085 visit_type_uint16List(v
, NULL
, &m
->value
->host_nodes
, NULL
);
2086 monitor_printf(mon
, "memory backend: %s\n", m
->value
->id
);
2087 monitor_printf(mon
, " size: %" PRId64
"\n", m
->value
->size
);
2088 monitor_printf(mon
, " merge: %s\n",
2089 m
->value
->merge
? "true" : "false");
2090 monitor_printf(mon
, " dump: %s\n",
2091 m
->value
->dump
? "true" : "false");
2092 monitor_printf(mon
, " prealloc: %s\n",
2093 m
->value
->prealloc
? "true" : "false");
2094 monitor_printf(mon
, " policy: %s\n",
2095 HostMemPolicy_lookup
[m
->value
->policy
]);
2096 visit_complete(v
, &str
);
2097 monitor_printf(mon
, " host nodes: %s\n", str
);
2104 monitor_printf(mon
, "\n");
2106 qapi_free_MemdevList(memdev_list
);
2109 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
2112 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
2113 MemoryDeviceInfoList
*info
;
2114 MemoryDeviceInfo
*value
;
2115 PCDIMMDeviceInfo
*di
;
2117 for (info
= info_list
; info
; info
= info
->next
) {
2118 value
= info
->value
;
2121 switch (value
->type
) {
2122 case MEMORY_DEVICE_INFO_KIND_DIMM
:
2123 di
= value
->u
.dimm
.data
;
2125 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
2126 MemoryDeviceInfoKind_lookup
[value
->type
],
2127 di
->id
? di
->id
: "");
2128 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
2129 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
2130 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
2131 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
2132 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
2133 monitor_printf(mon
, " hotplugged: %s\n",
2134 di
->hotplugged
? "true" : "false");
2135 monitor_printf(mon
, " hotpluggable: %s\n",
2136 di
->hotpluggable
? "true" : "false");
2144 qapi_free_MemoryDeviceInfoList(info_list
);
2147 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
2149 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
2150 IOThreadInfoList
*info
;
2152 for (info
= info_list
; info
; info
= info
->next
) {
2153 monitor_printf(mon
, "%s: thread_id=%" PRId64
"\n",
2154 info
->value
->id
, info
->value
->thread_id
);
2157 qapi_free_IOThreadInfoList(info_list
);
2160 void hmp_qom_list(Monitor
*mon
, const QDict
*qdict
)
2162 const char *path
= qdict_get_try_str(qdict
, "path");
2163 ObjectPropertyInfoList
*list
;
2167 monitor_printf(mon
, "/\n");
2171 list
= qmp_qom_list(path
, &err
);
2173 ObjectPropertyInfoList
*start
= list
;
2174 while (list
!= NULL
) {
2175 ObjectPropertyInfo
*value
= list
->value
;
2177 monitor_printf(mon
, "%s (%s)\n",
2178 value
->name
, value
->type
);
2181 qapi_free_ObjectPropertyInfoList(start
);
2183 hmp_handle_error(mon
, &err
);
2186 void hmp_qom_set(Monitor
*mon
, const QDict
*qdict
)
2188 const char *path
= qdict_get_str(qdict
, "path");
2189 const char *property
= qdict_get_str(qdict
, "property");
2190 const char *value
= qdict_get_str(qdict
, "value");
2192 bool ambiguous
= false;
2195 obj
= object_resolve_path(path
, &ambiguous
);
2197 error_set(&err
, ERROR_CLASS_DEVICE_NOT_FOUND
,
2198 "Device '%s' not found", path
);
2201 monitor_printf(mon
, "Warning: Path '%s' is ambiguous\n", path
);
2203 object_property_parse(obj
, value
, property
, &err
);
2205 hmp_handle_error(mon
, &err
);
2208 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
2210 const char *name
= qdict_get_str(qdict
, "name");
2211 RockerSwitch
*rocker
;
2214 rocker
= qmp_query_rocker(name
, &err
);
2216 hmp_handle_error(mon
, &err
);
2220 monitor_printf(mon
, "name: %s\n", rocker
->name
);
2221 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
2222 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
2224 qapi_free_RockerSwitch(rocker
);
2227 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
2229 RockerPortList
*list
, *port
;
2230 const char *name
= qdict_get_str(qdict
, "name");
2233 list
= qmp_query_rocker_ports(name
, &err
);
2235 hmp_handle_error(mon
, &err
);
2239 monitor_printf(mon
, " ena/ speed/ auto\n");
2240 monitor_printf(mon
, " port link duplex neg?\n");
2242 for (port
= list
; port
; port
= port
->next
) {
2243 monitor_printf(mon
, "%10s %-4s %-3s %2s %-3s\n",
2245 port
->value
->enabled
? port
->value
->link_up
?
2246 "up" : "down" : "!ena",
2247 port
->value
->speed
== 10000 ? "10G" : "??",
2248 port
->value
->duplex
? "FD" : "HD",
2249 port
->value
->autoneg
? "Yes" : "No");
2252 qapi_free_RockerPortList(list
);
2255 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
2257 RockerOfDpaFlowList
*list
, *info
;
2258 const char *name
= qdict_get_str(qdict
, "name");
2259 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
2262 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
2264 hmp_handle_error(mon
, &err
);
2268 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
2270 for (info
= list
; info
; info
= info
->next
) {
2271 RockerOfDpaFlow
*flow
= info
->value
;
2272 RockerOfDpaFlowKey
*key
= flow
->key
;
2273 RockerOfDpaFlowMask
*mask
= flow
->mask
;
2274 RockerOfDpaFlowAction
*action
= flow
->action
;
2277 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
2278 key
->priority
, key
->tbl_id
, flow
->hits
);
2280 monitor_printf(mon
, "%-4d %-3d ",
2281 key
->priority
, key
->tbl_id
);
2284 if (key
->has_in_pport
) {
2285 monitor_printf(mon
, " pport %d", key
->in_pport
);
2286 if (mask
->has_in_pport
) {
2287 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
2291 if (key
->has_vlan_id
) {
2292 monitor_printf(mon
, " vlan %d",
2293 key
->vlan_id
& VLAN_VID_MASK
);
2294 if (mask
->has_vlan_id
) {
2295 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
2299 if (key
->has_tunnel_id
) {
2300 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
2301 if (mask
->has_tunnel_id
) {
2302 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
2306 if (key
->has_eth_type
) {
2307 switch (key
->eth_type
) {
2309 monitor_printf(mon
, " ARP");
2312 monitor_printf(mon
, " IP");
2315 monitor_printf(mon
, " IPv6");
2318 monitor_printf(mon
, " LACP");
2321 monitor_printf(mon
, " LLDP");
2324 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2329 if (key
->has_eth_src
) {
2330 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2331 (mask
->has_eth_src
) &&
2332 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2333 monitor_printf(mon
, " src <any mcast/bcast>");
2334 } else if ((strcmp(key
->eth_src
, "00: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 ucast>");
2339 monitor_printf(mon
, " src %s", key
->eth_src
);
2340 if (mask
->has_eth_src
) {
2341 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2346 if (key
->has_eth_dst
) {
2347 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2348 (mask
->has_eth_dst
) &&
2349 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2350 monitor_printf(mon
, " dst <any mcast/bcast>");
2351 } else if ((strcmp(key
->eth_dst
, "00: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 ucast>");
2356 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2357 if (mask
->has_eth_dst
) {
2358 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2363 if (key
->has_ip_proto
) {
2364 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2365 if (mask
->has_ip_proto
) {
2366 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2370 if (key
->has_ip_tos
) {
2371 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2372 if (mask
->has_ip_tos
) {
2373 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2377 if (key
->has_ip_dst
) {
2378 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2381 if (action
->has_goto_tbl
|| action
->has_group_id
||
2382 action
->has_new_vlan_id
) {
2383 monitor_printf(mon
, " -->");
2386 if (action
->has_new_vlan_id
) {
2387 monitor_printf(mon
, " apply new vlan %d",
2388 ntohs(action
->new_vlan_id
));
2391 if (action
->has_group_id
) {
2392 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2395 if (action
->has_goto_tbl
) {
2396 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2399 monitor_printf(mon
, "\n");
2402 qapi_free_RockerOfDpaFlowList(list
);
2405 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2407 RockerOfDpaGroupList
*list
, *g
;
2408 const char *name
= qdict_get_str(qdict
, "name");
2409 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2413 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2415 hmp_handle_error(mon
, &err
);
2419 monitor_printf(mon
, "id (decode) --> buckets\n");
2421 for (g
= list
; g
; g
= g
->next
) {
2422 RockerOfDpaGroup
*group
= g
->value
;
2424 monitor_printf(mon
, "0x%08x", group
->id
);
2426 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2427 group
->type
== 1 ? "L2 rewrite" :
2428 group
->type
== 2 ? "L3 unicast" :
2429 group
->type
== 3 ? "L2 multicast" :
2430 group
->type
== 4 ? "L2 flood" :
2431 group
->type
== 5 ? "L3 interface" :
2432 group
->type
== 6 ? "L3 multicast" :
2433 group
->type
== 7 ? "L3 ECMP" :
2434 group
->type
== 8 ? "L2 overlay" :
2437 if (group
->has_vlan_id
) {
2438 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2441 if (group
->has_pport
) {
2442 monitor_printf(mon
, " pport %d", group
->pport
);
2445 if (group
->has_index
) {
2446 monitor_printf(mon
, " index %d", group
->index
);
2449 monitor_printf(mon
, ") -->");
2451 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2453 monitor_printf(mon
, " set vlan %d",
2454 group
->set_vlan_id
& VLAN_VID_MASK
);
2457 if (group
->has_set_eth_src
) {
2460 monitor_printf(mon
, " set");
2462 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2465 if (group
->has_set_eth_dst
) {
2468 monitor_printf(mon
, " set");
2470 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2475 if (group
->has_ttl_check
&& group
->ttl_check
) {
2476 monitor_printf(mon
, " check TTL");
2479 if (group
->has_group_id
&& group
->group_id
) {
2480 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2483 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2484 monitor_printf(mon
, " pop vlan");
2487 if (group
->has_out_pport
) {
2488 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2491 if (group
->has_group_ids
) {
2492 struct uint32List
*id
;
2494 monitor_printf(mon
, " groups [");
2495 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2496 monitor_printf(mon
, "0x%08x", id
->value
);
2498 monitor_printf(mon
, ",");
2501 monitor_printf(mon
, "]");
2504 monitor_printf(mon
, "\n");
2507 qapi_free_RockerOfDpaGroupList(list
);
2510 void hmp_info_dump(Monitor
*mon
, const QDict
*qdict
)
2512 DumpQueryResult
*result
= qmp_query_dump(NULL
);
2514 assert(result
&& result
->status
< DUMP_STATUS__MAX
);
2515 monitor_printf(mon
, "Status: %s\n", DumpStatus_lookup
[result
->status
]);
2517 if (result
->status
== DUMP_STATUS_ACTIVE
) {
2519 assert(result
->total
!= 0);
2520 percent
= 100.0 * result
->completed
/ result
->total
;
2521 monitor_printf(mon
, "Finished: %.2f %%\n", percent
);
2524 qapi_free_DumpQueryResult(result
);
2527 void hmp_hotpluggable_cpus(Monitor
*mon
, const QDict
*qdict
)
2530 HotpluggableCPUList
*l
= qmp_query_hotpluggable_cpus(&err
);
2531 HotpluggableCPUList
*saved
= l
;
2532 CpuInstanceProperties
*c
;
2535 hmp_handle_error(mon
, &err
);
2539 monitor_printf(mon
, "Hotpluggable CPUs:\n");
2541 monitor_printf(mon
, " type: \"%s\"\n", l
->value
->type
);
2542 monitor_printf(mon
, " vcpus_count: \"%" PRIu64
"\"\n",
2543 l
->value
->vcpus_count
);
2544 if (l
->value
->has_qom_path
) {
2545 monitor_printf(mon
, " qom_path: \"%s\"\n", l
->value
->qom_path
);
2548 c
= l
->value
->props
;
2549 monitor_printf(mon
, " CPUInstance Properties:\n");
2550 if (c
->has_node_id
) {
2551 monitor_printf(mon
, " node-id: \"%" PRIu64
"\"\n", c
->node_id
);
2553 if (c
->has_socket_id
) {
2554 monitor_printf(mon
, " socket-id: \"%" PRIu64
"\"\n", c
->socket_id
);
2556 if (c
->has_core_id
) {
2557 monitor_printf(mon
, " core-id: \"%" PRIu64
"\"\n", c
->core_id
);
2559 if (c
->has_thread_id
) {
2560 monitor_printf(mon
, " thread-id: \"%" PRIu64
"\"\n", c
->thread_id
);
2566 qapi_free_HotpluggableCPUList(saved
);