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.
18 #include "sysemu/char.h"
19 #include "sysemu/block-backend.h"
20 #include "qemu/option.h"
21 #include "qemu/timer.h"
22 #include "qmp-commands.h"
23 #include "qemu/sockets.h"
24 #include "monitor/monitor.h"
25 #include "qapi/opts-visitor.h"
26 #include "qapi/string-output-visitor.h"
27 #include "qapi-visit.h"
28 #include "ui/console.h"
29 #include "block/qapi.h"
33 #include <spice/enums.h>
36 static void hmp_handle_error(Monitor
*mon
, Error
**errp
)
40 monitor_printf(mon
, "%s\n", error_get_pretty(*errp
));
45 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
49 info
= qmp_query_name(NULL
);
51 monitor_printf(mon
, "%s\n", info
->name
);
53 qapi_free_NameInfo(info
);
56 void hmp_info_version(Monitor
*mon
, const QDict
*qdict
)
60 info
= qmp_query_version(NULL
);
62 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
63 info
->qemu
.major
, info
->qemu
.minor
, info
->qemu
.micro
,
66 qapi_free_VersionInfo(info
);
69 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
73 info
= qmp_query_kvm(NULL
);
74 monitor_printf(mon
, "kvm support: ");
76 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
78 monitor_printf(mon
, "not compiled\n");
81 qapi_free_KvmInfo(info
);
84 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
88 info
= qmp_query_status(NULL
);
90 monitor_printf(mon
, "VM status: %s%s",
91 info
->running
? "running" : "paused",
92 info
->singlestep
? " (single step mode)" : "");
94 if (!info
->running
&& info
->status
!= RUN_STATE_PAUSED
) {
95 monitor_printf(mon
, " (%s)", RunState_lookup
[info
->status
]);
98 monitor_printf(mon
, "\n");
100 qapi_free_StatusInfo(info
);
103 void hmp_info_uuid(Monitor
*mon
, const QDict
*qdict
)
107 info
= qmp_query_uuid(NULL
);
108 monitor_printf(mon
, "%s\n", info
->UUID
);
109 qapi_free_UuidInfo(info
);
112 void hmp_info_chardev(Monitor
*mon
, const QDict
*qdict
)
114 ChardevInfoList
*char_info
, *info
;
116 char_info
= qmp_query_chardev(NULL
);
117 for (info
= char_info
; info
; info
= info
->next
) {
118 monitor_printf(mon
, "%s: filename=%s\n", info
->value
->label
,
119 info
->value
->filename
);
122 qapi_free_ChardevInfoList(char_info
);
125 void hmp_info_mice(Monitor
*mon
, const QDict
*qdict
)
127 MouseInfoList
*mice_list
, *mouse
;
129 mice_list
= qmp_query_mice(NULL
);
131 monitor_printf(mon
, "No mouse devices connected\n");
135 for (mouse
= mice_list
; mouse
; mouse
= mouse
->next
) {
136 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s%s\n",
137 mouse
->value
->current
? '*' : ' ',
138 mouse
->value
->index
, mouse
->value
->name
,
139 mouse
->value
->absolute
? " (absolute)" : "");
142 qapi_free_MouseInfoList(mice_list
);
145 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
148 MigrationCapabilityStatusList
*caps
, *cap
;
150 info
= qmp_query_migrate(NULL
);
151 caps
= qmp_query_migrate_capabilities(NULL
);
153 /* do not display parameters during setup */
154 if (info
->has_status
&& caps
) {
155 monitor_printf(mon
, "capabilities: ");
156 for (cap
= caps
; cap
; cap
= cap
->next
) {
157 monitor_printf(mon
, "%s: %s ",
158 MigrationCapability_lookup
[cap
->value
->capability
],
159 cap
->value
->state
? "on" : "off");
161 monitor_printf(mon
, "\n");
164 if (info
->has_status
) {
165 monitor_printf(mon
, "Migration status: %s\n", info
->status
);
166 monitor_printf(mon
, "total time: %" PRIu64
" milliseconds\n",
168 if (info
->has_expected_downtime
) {
169 monitor_printf(mon
, "expected downtime: %" PRIu64
" milliseconds\n",
170 info
->expected_downtime
);
172 if (info
->has_downtime
) {
173 monitor_printf(mon
, "downtime: %" PRIu64
" milliseconds\n",
176 if (info
->has_setup_time
) {
177 monitor_printf(mon
, "setup: %" PRIu64
" milliseconds\n",
183 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
184 info
->ram
->transferred
>> 10);
185 monitor_printf(mon
, "throughput: %0.2f mbps\n",
187 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n",
188 info
->ram
->remaining
>> 10);
189 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n",
190 info
->ram
->total
>> 10);
191 monitor_printf(mon
, "duplicate: %" PRIu64
" pages\n",
192 info
->ram
->duplicate
);
193 monitor_printf(mon
, "skipped: %" PRIu64
" pages\n",
195 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
197 monitor_printf(mon
, "normal bytes: %" PRIu64
" kbytes\n",
198 info
->ram
->normal_bytes
>> 10);
199 monitor_printf(mon
, "dirty sync count: %" PRIu64
"\n",
200 info
->ram
->dirty_sync_count
);
201 if (info
->ram
->dirty_pages_rate
) {
202 monitor_printf(mon
, "dirty pages rate: %" PRIu64
" pages\n",
203 info
->ram
->dirty_pages_rate
);
207 if (info
->has_disk
) {
208 monitor_printf(mon
, "transferred disk: %" PRIu64
" kbytes\n",
209 info
->disk
->transferred
>> 10);
210 monitor_printf(mon
, "remaining disk: %" PRIu64
" kbytes\n",
211 info
->disk
->remaining
>> 10);
212 monitor_printf(mon
, "total disk: %" PRIu64
" kbytes\n",
213 info
->disk
->total
>> 10);
216 if (info
->has_xbzrle_cache
) {
217 monitor_printf(mon
, "cache size: %" PRIu64
" bytes\n",
218 info
->xbzrle_cache
->cache_size
);
219 monitor_printf(mon
, "xbzrle transferred: %" PRIu64
" kbytes\n",
220 info
->xbzrle_cache
->bytes
>> 10);
221 monitor_printf(mon
, "xbzrle pages: %" PRIu64
" pages\n",
222 info
->xbzrle_cache
->pages
);
223 monitor_printf(mon
, "xbzrle cache miss: %" PRIu64
"\n",
224 info
->xbzrle_cache
->cache_miss
);
225 monitor_printf(mon
, "xbzrle cache miss rate: %0.2f\n",
226 info
->xbzrle_cache
->cache_miss_rate
);
227 monitor_printf(mon
, "xbzrle overflow : %" PRIu64
"\n",
228 info
->xbzrle_cache
->overflow
);
231 qapi_free_MigrationInfo(info
);
232 qapi_free_MigrationCapabilityStatusList(caps
);
235 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
237 MigrationCapabilityStatusList
*caps
, *cap
;
239 caps
= qmp_query_migrate_capabilities(NULL
);
242 monitor_printf(mon
, "capabilities: ");
243 for (cap
= caps
; cap
; cap
= cap
->next
) {
244 monitor_printf(mon
, "%s: %s ",
245 MigrationCapability_lookup
[cap
->value
->capability
],
246 cap
->value
->state
? "on" : "off");
248 monitor_printf(mon
, "\n");
251 qapi_free_MigrationCapabilityStatusList(caps
);
254 void hmp_info_migrate_cache_size(Monitor
*mon
, const QDict
*qdict
)
256 monitor_printf(mon
, "xbzrel cache size: %" PRId64
" kbytes\n",
257 qmp_query_migrate_cache_size(NULL
) >> 10);
260 void hmp_info_cpus(Monitor
*mon
, const QDict
*qdict
)
262 CpuInfoList
*cpu_list
, *cpu
;
264 cpu_list
= qmp_query_cpus(NULL
);
266 for (cpu
= cpu_list
; cpu
; cpu
= cpu
->next
) {
269 if (cpu
->value
->CPU
== monitor_get_cpu_index()) {
273 monitor_printf(mon
, "%c CPU #%" PRId64
":", active
, cpu
->value
->CPU
);
275 if (cpu
->value
->has_pc
) {
276 monitor_printf(mon
, " pc=0x%016" PRIx64
, cpu
->value
->pc
);
278 if (cpu
->value
->has_nip
) {
279 monitor_printf(mon
, " nip=0x%016" PRIx64
, cpu
->value
->nip
);
281 if (cpu
->value
->has_npc
) {
282 monitor_printf(mon
, " npc=0x%016" PRIx64
, cpu
->value
->npc
);
284 if (cpu
->value
->has_PC
) {
285 monitor_printf(mon
, " PC=0x%016" PRIx64
, cpu
->value
->PC
);
288 if (cpu
->value
->halted
) {
289 monitor_printf(mon
, " (halted)");
292 monitor_printf(mon
, " thread_id=%" PRId64
"\n", cpu
->value
->thread_id
);
295 qapi_free_CpuInfoList(cpu_list
);
298 static void print_block_info(Monitor
*mon
, BlockInfo
*info
,
299 BlockDeviceInfo
*inserted
, bool verbose
)
301 ImageInfo
*image_info
;
303 assert(!info
|| !info
->has_inserted
|| info
->inserted
== inserted
);
306 monitor_printf(mon
, "%s", info
->device
);
307 if (inserted
&& inserted
->has_node_name
) {
308 monitor_printf(mon
, " (%s)", inserted
->node_name
);
312 monitor_printf(mon
, "%s",
313 inserted
->has_node_name
314 ? inserted
->node_name
319 monitor_printf(mon
, ": %s (%s%s%s)\n",
322 inserted
->ro
? ", read-only" : "",
323 inserted
->encrypted
? ", encrypted" : "");
325 monitor_printf(mon
, ": [not inserted]\n");
329 if (info
->has_io_status
&& info
->io_status
!= BLOCK_DEVICE_IO_STATUS_OK
) {
330 monitor_printf(mon
, " I/O status: %s\n",
331 BlockDeviceIoStatus_lookup
[info
->io_status
]);
334 if (info
->removable
) {
335 monitor_printf(mon
, " Removable device: %slocked, tray %s\n",
336 info
->locked
? "" : "not ",
337 info
->tray_open
? "open" : "closed");
346 monitor_printf(mon
, " Cache mode: %s%s%s\n",
347 inserted
->cache
->writeback
? "writeback" : "writethrough",
348 inserted
->cache
->direct
? ", direct" : "",
349 inserted
->cache
->no_flush
? ", ignore flushes" : "");
351 if (inserted
->has_backing_file
) {
354 "(chain depth: %" PRId64
")\n",
355 inserted
->backing_file
,
356 inserted
->backing_file_depth
);
359 if (inserted
->detect_zeroes
!= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
) {
360 monitor_printf(mon
, " Detect zeroes: %s\n",
361 BlockdevDetectZeroesOptions_lookup
[inserted
->detect_zeroes
]);
364 if (inserted
->bps
|| inserted
->bps_rd
|| inserted
->bps_wr
||
365 inserted
->iops
|| inserted
->iops_rd
|| inserted
->iops_wr
)
367 monitor_printf(mon
, " I/O throttling: bps=%" PRId64
368 " bps_rd=%" PRId64
" bps_wr=%" PRId64
370 " bps_rd_max=%" PRId64
371 " bps_wr_max=%" PRId64
372 " iops=%" PRId64
" iops_rd=%" PRId64
375 " iops_rd_max=%" PRId64
376 " iops_wr_max=%" PRId64
377 " iops_size=%" PRId64
"\n",
382 inserted
->bps_rd_max
,
383 inserted
->bps_wr_max
,
388 inserted
->iops_rd_max
,
389 inserted
->iops_wr_max
,
390 inserted
->iops_size
);
394 monitor_printf(mon
, "\nImages:\n");
395 image_info
= inserted
->image
;
397 bdrv_image_info_dump((fprintf_function
)monitor_printf
,
399 if (image_info
->has_backing_image
) {
400 image_info
= image_info
->backing_image
;
408 void hmp_info_block(Monitor
*mon
, const QDict
*qdict
)
410 BlockInfoList
*block_list
, *info
;
411 BlockDeviceInfoList
*blockdev_list
, *blockdev
;
412 const char *device
= qdict_get_try_str(qdict
, "device");
413 bool verbose
= qdict_get_try_bool(qdict
, "verbose", 0);
414 bool nodes
= qdict_get_try_bool(qdict
, "nodes", 0);
415 bool printed
= false;
417 /* Print BlockBackend information */
419 block_list
= qmp_query_block(NULL
);
424 for (info
= block_list
; info
; info
= info
->next
) {
425 if (device
&& strcmp(device
, info
->value
->device
)) {
429 if (info
!= block_list
) {
430 monitor_printf(mon
, "\n");
433 print_block_info(mon
, info
->value
, info
->value
->has_inserted
434 ? info
->value
->inserted
: NULL
,
439 qapi_free_BlockInfoList(block_list
);
441 if ((!device
&& !nodes
) || printed
) {
445 /* Print node information */
446 blockdev_list
= qmp_query_named_block_nodes(NULL
);
447 for (blockdev
= blockdev_list
; blockdev
; blockdev
= blockdev
->next
) {
448 assert(blockdev
->value
->has_node_name
);
449 if (device
&& strcmp(device
, blockdev
->value
->node_name
)) {
453 if (blockdev
!= blockdev_list
) {
454 monitor_printf(mon
, "\n");
457 print_block_info(mon
, NULL
, blockdev
->value
, verbose
);
459 qapi_free_BlockDeviceInfoList(blockdev_list
);
462 void hmp_info_blockstats(Monitor
*mon
, const QDict
*qdict
)
464 BlockStatsList
*stats_list
, *stats
;
466 stats_list
= qmp_query_blockstats(false, false, NULL
);
468 for (stats
= stats_list
; stats
; stats
= stats
->next
) {
469 if (!stats
->value
->has_device
) {
473 monitor_printf(mon
, "%s:", stats
->value
->device
);
474 monitor_printf(mon
, " rd_bytes=%" PRId64
476 " rd_operations=%" PRId64
477 " wr_operations=%" PRId64
478 " flush_operations=%" PRId64
479 " wr_total_time_ns=%" PRId64
480 " rd_total_time_ns=%" PRId64
481 " flush_total_time_ns=%" PRId64
482 " rd_merged=%" PRId64
483 " wr_merged=%" PRId64
485 stats
->value
->stats
->rd_bytes
,
486 stats
->value
->stats
->wr_bytes
,
487 stats
->value
->stats
->rd_operations
,
488 stats
->value
->stats
->wr_operations
,
489 stats
->value
->stats
->flush_operations
,
490 stats
->value
->stats
->wr_total_time_ns
,
491 stats
->value
->stats
->rd_total_time_ns
,
492 stats
->value
->stats
->flush_total_time_ns
,
493 stats
->value
->stats
->rd_merged
,
494 stats
->value
->stats
->wr_merged
);
497 qapi_free_BlockStatsList(stats_list
);
500 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
504 VncClientInfoList
*client
;
506 info
= qmp_query_vnc(&err
);
508 monitor_printf(mon
, "%s\n", error_get_pretty(err
));
513 if (!info
->enabled
) {
514 monitor_printf(mon
, "Server: disabled\n");
518 monitor_printf(mon
, "Server:\n");
519 if (info
->has_host
&& info
->has_service
) {
520 monitor_printf(mon
, " address: %s:%s\n", info
->host
, info
->service
);
522 if (info
->has_auth
) {
523 monitor_printf(mon
, " auth: %s\n", info
->auth
);
526 if (!info
->has_clients
|| info
->clients
== NULL
) {
527 monitor_printf(mon
, "Client: none\n");
529 for (client
= info
->clients
; client
; client
= client
->next
) {
530 monitor_printf(mon
, "Client:\n");
531 monitor_printf(mon
, " address: %s:%s\n",
532 client
->value
->base
->host
,
533 client
->value
->base
->service
);
534 monitor_printf(mon
, " x509_dname: %s\n",
535 client
->value
->x509_dname
?
536 client
->value
->x509_dname
: "none");
537 monitor_printf(mon
, " username: %s\n",
538 client
->value
->has_sasl_username
?
539 client
->value
->sasl_username
: "none");
544 qapi_free_VncInfo(info
);
548 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
550 SpiceChannelList
*chan
;
552 const char *channel_name
;
553 const char * const channel_names
[] = {
554 [SPICE_CHANNEL_MAIN
] = "main",
555 [SPICE_CHANNEL_DISPLAY
] = "display",
556 [SPICE_CHANNEL_INPUTS
] = "inputs",
557 [SPICE_CHANNEL_CURSOR
] = "cursor",
558 [SPICE_CHANNEL_PLAYBACK
] = "playback",
559 [SPICE_CHANNEL_RECORD
] = "record",
560 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
561 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
562 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
563 [SPICE_CHANNEL_PORT
] = "port",
565 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
566 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
567 * as quick fix for build failures with older versions. */
568 [SPICE_CHANNEL_WEBDAV
] = "webdav",
572 info
= qmp_query_spice(NULL
);
574 if (!info
->enabled
) {
575 monitor_printf(mon
, "Server: disabled\n");
579 monitor_printf(mon
, "Server:\n");
580 if (info
->has_port
) {
581 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
582 info
->host
, info
->port
);
584 if (info
->has_tls_port
) {
585 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
586 info
->host
, info
->tls_port
);
588 monitor_printf(mon
, " migrated: %s\n",
589 info
->migrated
? "true" : "false");
590 monitor_printf(mon
, " auth: %s\n", info
->auth
);
591 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
592 monitor_printf(mon
, " mouse-mode: %s\n",
593 SpiceQueryMouseMode_lookup
[info
->mouse_mode
]);
595 if (!info
->has_channels
|| info
->channels
== NULL
) {
596 monitor_printf(mon
, "Channels: none\n");
598 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
599 monitor_printf(mon
, "Channel:\n");
600 monitor_printf(mon
, " address: %s:%s%s\n",
601 chan
->value
->base
->host
, chan
->value
->base
->port
,
602 chan
->value
->tls
? " [tls]" : "");
603 monitor_printf(mon
, " session: %" PRId64
"\n",
604 chan
->value
->connection_id
);
605 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
606 chan
->value
->channel_type
, chan
->value
->channel_id
);
608 channel_name
= "unknown";
609 if (chan
->value
->channel_type
> 0 &&
610 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
611 channel_names
[chan
->value
->channel_type
]) {
612 channel_name
= channel_names
[chan
->value
->channel_type
];
615 monitor_printf(mon
, " channel name: %s\n", channel_name
);
620 qapi_free_SpiceInfo(info
);
624 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
629 info
= qmp_query_balloon(&err
);
631 monitor_printf(mon
, "%s\n", error_get_pretty(err
));
636 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
638 qapi_free_BalloonInfo(info
);
641 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
643 PciMemoryRegionList
*region
;
645 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
646 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
647 dev
->slot
, dev
->function
);
648 monitor_printf(mon
, " ");
650 if (dev
->class_info
.has_desc
) {
651 monitor_printf(mon
, "%s", dev
->class_info
.desc
);
653 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
.q_class
);
656 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
657 dev
->id
.vendor
, dev
->id
.device
);
660 monitor_printf(mon
, " IRQ %" PRId64
".\n", dev
->irq
);
663 if (dev
->has_pci_bridge
) {
664 monitor_printf(mon
, " BUS %" PRId64
".\n",
665 dev
->pci_bridge
->bus
.number
);
666 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
667 dev
->pci_bridge
->bus
.secondary
);
668 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
669 dev
->pci_bridge
->bus
.subordinate
);
671 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
672 dev
->pci_bridge
->bus
.io_range
->base
,
673 dev
->pci_bridge
->bus
.io_range
->limit
);
676 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
677 dev
->pci_bridge
->bus
.memory_range
->base
,
678 dev
->pci_bridge
->bus
.memory_range
->limit
);
680 monitor_printf(mon
, " prefetchable memory range "
681 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
682 dev
->pci_bridge
->bus
.prefetchable_range
->base
,
683 dev
->pci_bridge
->bus
.prefetchable_range
->limit
);
686 for (region
= dev
->regions
; region
; region
= region
->next
) {
689 addr
= region
->value
->address
;
690 size
= region
->value
->size
;
692 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
694 if (!strcmp(region
->value
->type
, "io")) {
695 monitor_printf(mon
, "I/O at 0x%04" PRIx64
696 " [0x%04" PRIx64
"].\n",
697 addr
, addr
+ size
- 1);
699 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
700 " [0x%08" PRIx64
"].\n",
701 region
->value
->mem_type_64
? 64 : 32,
702 region
->value
->prefetch
? " prefetchable" : "",
703 addr
, addr
+ size
- 1);
707 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
709 if (dev
->has_pci_bridge
) {
710 if (dev
->pci_bridge
->has_devices
) {
711 PciDeviceInfoList
*cdev
;
712 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
713 hmp_info_pci_device(mon
, cdev
->value
);
719 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
721 PciInfoList
*info_list
, *info
;
724 info_list
= qmp_query_pci(&err
);
726 monitor_printf(mon
, "PCI devices not supported\n");
731 for (info
= info_list
; info
; info
= info
->next
) {
732 PciDeviceInfoList
*dev
;
734 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
735 hmp_info_pci_device(mon
, dev
->value
);
739 qapi_free_PciInfoList(info_list
);
742 void hmp_info_block_jobs(Monitor
*mon
, const QDict
*qdict
)
744 BlockJobInfoList
*list
;
747 list
= qmp_query_block_jobs(&err
);
751 monitor_printf(mon
, "No active jobs\n");
756 if (strcmp(list
->value
->type
, "stream") == 0) {
757 monitor_printf(mon
, "Streaming device %s: Completed %" PRId64
758 " of %" PRId64
" bytes, speed limit %" PRId64
765 monitor_printf(mon
, "Type %s, device %s: Completed %" PRId64
766 " of %" PRId64
" bytes, speed limit %" PRId64
777 qapi_free_BlockJobInfoList(list
);
780 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
782 TPMInfoList
*info_list
, *info
;
785 TPMPassthroughOptions
*tpo
;
787 info_list
= qmp_query_tpm(&err
);
789 monitor_printf(mon
, "TPM device not supported\n");
795 monitor_printf(mon
, "TPM device:\n");
798 for (info
= info_list
; info
; info
= info
->next
) {
799 TPMInfo
*ti
= info
->value
;
800 monitor_printf(mon
, " tpm%d: model=%s\n",
801 c
, TpmModel_lookup
[ti
->model
]);
803 monitor_printf(mon
, " \\ %s: type=%s",
804 ti
->id
, TpmTypeOptionsKind_lookup
[ti
->options
->kind
]);
806 switch (ti
->options
->kind
) {
807 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH
:
808 tpo
= ti
->options
->passthrough
;
809 monitor_printf(mon
, "%s%s%s%s",
810 tpo
->has_path
? ",path=" : "",
811 tpo
->has_path
? tpo
->path
: "",
812 tpo
->has_cancel_path
? ",cancel-path=" : "",
813 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
815 case TPM_TYPE_OPTIONS_KIND_MAX
:
818 monitor_printf(mon
, "\n");
821 qapi_free_TPMInfoList(info_list
);
824 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
826 monitor_suspend(mon
);
830 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
835 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
837 qmp_system_reset(NULL
);
840 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
842 qmp_system_powerdown(NULL
);
845 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
849 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
850 use it are converted to the QAPI */
851 cpu_index
= qdict_get_int(qdict
, "index");
852 if (monitor_set_cpu(cpu_index
) < 0) {
853 monitor_printf(mon
, "invalid CPU index\n");
857 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
859 uint32_t size
= qdict_get_int(qdict
, "size");
860 const char *filename
= qdict_get_str(qdict
, "filename");
861 uint64_t addr
= qdict_get_int(qdict
, "val");
864 qmp_memsave(addr
, size
, filename
, true, monitor_get_cpu_index(), &err
);
865 hmp_handle_error(mon
, &err
);
868 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
870 uint32_t size
= qdict_get_int(qdict
, "size");
871 const char *filename
= qdict_get_str(qdict
, "filename");
872 uint64_t addr
= qdict_get_int(qdict
, "val");
875 qmp_pmemsave(addr
, size
, filename
, &err
);
876 hmp_handle_error(mon
, &err
);
879 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
881 const char *chardev
= qdict_get_str(qdict
, "device");
882 const char *data
= qdict_get_str(qdict
, "data");
885 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
887 hmp_handle_error(mon
, &err
);
890 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
892 uint32_t size
= qdict_get_int(qdict
, "size");
893 const char *chardev
= qdict_get_str(qdict
, "device");
898 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
900 monitor_printf(mon
, "%s\n", error_get_pretty(err
));
905 for (i
= 0; data
[i
]; i
++) {
906 unsigned char ch
= data
[i
];
909 monitor_printf(mon
, "\\\\");
910 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
911 monitor_printf(mon
, "\\u%04X", ch
);
913 monitor_printf(mon
, "%c", ch
);
917 monitor_printf(mon
, "\n");
921 static void hmp_cont_cb(void *opaque
, int err
)
928 static bool key_is_missing(const BlockInfo
*bdev
)
930 return (bdev
->inserted
&& bdev
->inserted
->encryption_key_missing
);
933 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
935 BlockInfoList
*bdev_list
, *bdev
;
938 bdev_list
= qmp_query_block(NULL
);
939 for (bdev
= bdev_list
; bdev
; bdev
= bdev
->next
) {
940 if (key_is_missing(bdev
->value
)) {
941 monitor_read_block_device_key(mon
, bdev
->value
->device
,
948 hmp_handle_error(mon
, &err
);
951 qapi_free_BlockInfoList(bdev_list
);
954 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
956 qmp_system_wakeup(NULL
);
959 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
963 qmp_inject_nmi(&err
);
964 hmp_handle_error(mon
, &err
);
967 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
969 const char *name
= qdict_get_str(qdict
, "name");
970 int up
= qdict_get_bool(qdict
, "up");
973 qmp_set_link(name
, up
, &err
);
974 hmp_handle_error(mon
, &err
);
977 void hmp_block_passwd(Monitor
*mon
, const QDict
*qdict
)
979 const char *device
= qdict_get_str(qdict
, "device");
980 const char *password
= qdict_get_str(qdict
, "password");
983 qmp_block_passwd(true, device
, false, NULL
, password
, &err
);
984 hmp_handle_error(mon
, &err
);
987 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
989 int64_t value
= qdict_get_int(qdict
, "value");
992 qmp_balloon(value
, &err
);
994 monitor_printf(mon
, "balloon: %s\n", error_get_pretty(err
));
999 void hmp_block_resize(Monitor
*mon
, const QDict
*qdict
)
1001 const char *device
= qdict_get_str(qdict
, "device");
1002 int64_t size
= qdict_get_int(qdict
, "size");
1005 qmp_block_resize(true, device
, false, NULL
, size
, &err
);
1006 hmp_handle_error(mon
, &err
);
1009 void hmp_drive_mirror(Monitor
*mon
, const QDict
*qdict
)
1011 const char *device
= qdict_get_str(qdict
, "device");
1012 const char *filename
= qdict_get_str(qdict
, "target");
1013 const char *format
= qdict_get_try_str(qdict
, "format");
1014 int reuse
= qdict_get_try_bool(qdict
, "reuse", 0);
1015 int full
= qdict_get_try_bool(qdict
, "full", 0);
1016 enum NewImageMode mode
;
1020 error_set(&err
, QERR_MISSING_PARAMETER
, "target");
1021 hmp_handle_error(mon
, &err
);
1026 mode
= NEW_IMAGE_MODE_EXISTING
;
1028 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1031 qmp_drive_mirror(device
, filename
, !!format
, format
,
1032 false, NULL
, false, NULL
,
1033 full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1034 true, mode
, false, 0, false, 0, false, 0,
1035 false, 0, false, 0, &err
);
1036 hmp_handle_error(mon
, &err
);
1039 void hmp_drive_backup(Monitor
*mon
, const QDict
*qdict
)
1041 const char *device
= qdict_get_str(qdict
, "device");
1042 const char *filename
= qdict_get_str(qdict
, "target");
1043 const char *format
= qdict_get_try_str(qdict
, "format");
1044 int reuse
= qdict_get_try_bool(qdict
, "reuse", 0);
1045 int full
= qdict_get_try_bool(qdict
, "full", 0);
1046 enum NewImageMode mode
;
1050 error_set(&err
, QERR_MISSING_PARAMETER
, "target");
1051 hmp_handle_error(mon
, &err
);
1056 mode
= NEW_IMAGE_MODE_EXISTING
;
1058 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1061 qmp_drive_backup(device
, filename
, !!format
, format
,
1062 full
? MIRROR_SYNC_MODE_FULL
: MIRROR_SYNC_MODE_TOP
,
1063 true, mode
, false, 0, false, 0, false, 0, &err
);
1064 hmp_handle_error(mon
, &err
);
1067 void hmp_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
)
1069 const char *device
= qdict_get_str(qdict
, "device");
1070 const char *filename
= qdict_get_try_str(qdict
, "snapshot-file");
1071 const char *format
= qdict_get_try_str(qdict
, "format");
1072 int reuse
= qdict_get_try_bool(qdict
, "reuse", 0);
1073 enum NewImageMode mode
;
1077 /* In the future, if 'snapshot-file' is not specified, the snapshot
1078 will be taken internally. Today it's actually required. */
1079 error_set(&err
, QERR_MISSING_PARAMETER
, "snapshot-file");
1080 hmp_handle_error(mon
, &err
);
1084 mode
= reuse
? NEW_IMAGE_MODE_EXISTING
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1085 qmp_blockdev_snapshot_sync(true, device
, false, NULL
,
1086 filename
, false, NULL
,
1089 hmp_handle_error(mon
, &err
);
1092 void hmp_snapshot_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1094 const char *device
= qdict_get_str(qdict
, "device");
1095 const char *name
= qdict_get_str(qdict
, "name");
1098 qmp_blockdev_snapshot_internal_sync(device
, name
, &err
);
1099 hmp_handle_error(mon
, &err
);
1102 void hmp_snapshot_delete_blkdev_internal(Monitor
*mon
, const QDict
*qdict
)
1104 const char *device
= qdict_get_str(qdict
, "device");
1105 const char *name
= qdict_get_str(qdict
, "name");
1106 const char *id
= qdict_get_try_str(qdict
, "id");
1109 qmp_blockdev_snapshot_delete_internal_sync(device
, !!id
, id
,
1111 hmp_handle_error(mon
, &err
);
1114 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1116 qmp_migrate_cancel(NULL
);
1119 void hmp_migrate_set_downtime(Monitor
*mon
, const QDict
*qdict
)
1121 double value
= qdict_get_double(qdict
, "value");
1122 qmp_migrate_set_downtime(value
, NULL
);
1125 void hmp_migrate_set_cache_size(Monitor
*mon
, const QDict
*qdict
)
1127 int64_t value
= qdict_get_int(qdict
, "value");
1130 qmp_migrate_set_cache_size(value
, &err
);
1132 monitor_printf(mon
, "%s\n", error_get_pretty(err
));
1138 void hmp_migrate_set_speed(Monitor
*mon
, const QDict
*qdict
)
1140 int64_t value
= qdict_get_int(qdict
, "value");
1141 qmp_migrate_set_speed(value
, NULL
);
1144 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1146 const char *cap
= qdict_get_str(qdict
, "capability");
1147 bool state
= qdict_get_bool(qdict
, "state");
1149 MigrationCapabilityStatusList
*caps
= g_malloc0(sizeof(*caps
));
1152 for (i
= 0; i
< MIGRATION_CAPABILITY_MAX
; i
++) {
1153 if (strcmp(cap
, MigrationCapability_lookup
[i
]) == 0) {
1154 caps
->value
= g_malloc0(sizeof(*caps
->value
));
1155 caps
->value
->capability
= i
;
1156 caps
->value
->state
= state
;
1158 qmp_migrate_set_capabilities(caps
, &err
);
1163 if (i
== MIGRATION_CAPABILITY_MAX
) {
1164 error_set(&err
, QERR_INVALID_PARAMETER
, cap
);
1167 qapi_free_MigrationCapabilityStatusList(caps
);
1170 monitor_printf(mon
, "migrate_set_capability: %s\n",
1171 error_get_pretty(err
));
1176 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1178 const char *protocol
= qdict_get_str(qdict
, "protocol");
1179 const char *password
= qdict_get_str(qdict
, "password");
1180 const char *connected
= qdict_get_try_str(qdict
, "connected");
1183 qmp_set_password(protocol
, password
, !!connected
, connected
, &err
);
1184 hmp_handle_error(mon
, &err
);
1187 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1189 const char *protocol
= qdict_get_str(qdict
, "protocol");
1190 const char *whenstr
= qdict_get_str(qdict
, "time");
1193 qmp_expire_password(protocol
, whenstr
, &err
);
1194 hmp_handle_error(mon
, &err
);
1197 void hmp_eject(Monitor
*mon
, const QDict
*qdict
)
1199 int force
= qdict_get_try_bool(qdict
, "force", 0);
1200 const char *device
= qdict_get_str(qdict
, "device");
1203 qmp_eject(device
, true, force
, &err
);
1204 hmp_handle_error(mon
, &err
);
1207 static void hmp_change_read_arg(void *opaque
, const char *password
,
1208 void *readline_opaque
)
1210 qmp_change_vnc_password(password
, NULL
);
1211 monitor_read_command(opaque
, 1);
1214 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1216 const char *device
= qdict_get_str(qdict
, "device");
1217 const char *target
= qdict_get_str(qdict
, "target");
1218 const char *arg
= qdict_get_try_str(qdict
, "arg");
1221 if (strcmp(device
, "vnc") == 0 &&
1222 (strcmp(target
, "passwd") == 0 ||
1223 strcmp(target
, "password") == 0)) {
1225 monitor_read_password(mon
, hmp_change_read_arg
, NULL
);
1230 qmp_change(device
, target
, !!arg
, arg
, &err
);
1232 error_get_class(err
) == ERROR_CLASS_DEVICE_ENCRYPTED
) {
1234 monitor_read_block_device_key(mon
, device
, NULL
, NULL
);
1237 hmp_handle_error(mon
, &err
);
1240 void hmp_block_set_io_throttle(Monitor
*mon
, const QDict
*qdict
)
1244 qmp_block_set_io_throttle(qdict_get_str(qdict
, "device"),
1245 qdict_get_int(qdict
, "bps"),
1246 qdict_get_int(qdict
, "bps_rd"),
1247 qdict_get_int(qdict
, "bps_wr"),
1248 qdict_get_int(qdict
, "iops"),
1249 qdict_get_int(qdict
, "iops_rd"),
1250 qdict_get_int(qdict
, "iops_wr"),
1251 false, /* no burst max via HMP */
1263 false, /* No default I/O size */
1265 hmp_handle_error(mon
, &err
);
1268 void hmp_block_stream(Monitor
*mon
, const QDict
*qdict
)
1270 Error
*error
= NULL
;
1271 const char *device
= qdict_get_str(qdict
, "device");
1272 const char *base
= qdict_get_try_str(qdict
, "base");
1273 int64_t speed
= qdict_get_try_int(qdict
, "speed", 0);
1275 qmp_block_stream(device
, base
!= NULL
, base
, false, NULL
,
1276 qdict_haskey(qdict
, "speed"), speed
,
1277 true, BLOCKDEV_ON_ERROR_REPORT
, &error
);
1279 hmp_handle_error(mon
, &error
);
1282 void hmp_block_job_set_speed(Monitor
*mon
, const QDict
*qdict
)
1284 Error
*error
= NULL
;
1285 const char *device
= qdict_get_str(qdict
, "device");
1286 int64_t value
= qdict_get_int(qdict
, "speed");
1288 qmp_block_job_set_speed(device
, value
, &error
);
1290 hmp_handle_error(mon
, &error
);
1293 void hmp_block_job_cancel(Monitor
*mon
, const QDict
*qdict
)
1295 Error
*error
= NULL
;
1296 const char *device
= qdict_get_str(qdict
, "device");
1297 bool force
= qdict_get_try_bool(qdict
, "force", 0);
1299 qmp_block_job_cancel(device
, true, force
, &error
);
1301 hmp_handle_error(mon
, &error
);
1304 void hmp_block_job_pause(Monitor
*mon
, const QDict
*qdict
)
1306 Error
*error
= NULL
;
1307 const char *device
= qdict_get_str(qdict
, "device");
1309 qmp_block_job_pause(device
, &error
);
1311 hmp_handle_error(mon
, &error
);
1314 void hmp_block_job_resume(Monitor
*mon
, const QDict
*qdict
)
1316 Error
*error
= NULL
;
1317 const char *device
= qdict_get_str(qdict
, "device");
1319 qmp_block_job_resume(device
, &error
);
1321 hmp_handle_error(mon
, &error
);
1324 void hmp_block_job_complete(Monitor
*mon
, const QDict
*qdict
)
1326 Error
*error
= NULL
;
1327 const char *device
= qdict_get_str(qdict
, "device");
1329 qmp_block_job_complete(device
, &error
);
1331 hmp_handle_error(mon
, &error
);
1334 typedef struct MigrationStatus
1338 bool is_block_migration
;
1341 static void hmp_migrate_status_cb(void *opaque
)
1343 MigrationStatus
*status
= opaque
;
1344 MigrationInfo
*info
;
1346 info
= qmp_query_migrate(NULL
);
1347 if (!info
->has_status
|| strcmp(info
->status
, "active") == 0 ||
1348 strcmp(info
->status
, "setup") == 0) {
1349 if (info
->has_disk
) {
1352 if (info
->disk
->remaining
) {
1353 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
1358 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
1359 monitor_flush(status
->mon
);
1362 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1364 if (status
->is_block_migration
) {
1365 monitor_printf(status
->mon
, "\n");
1367 monitor_resume(status
->mon
);
1368 timer_del(status
->timer
);
1372 qapi_free_MigrationInfo(info
);
1375 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
1377 int detach
= qdict_get_try_bool(qdict
, "detach", 0);
1378 int blk
= qdict_get_try_bool(qdict
, "blk", 0);
1379 int inc
= qdict_get_try_bool(qdict
, "inc", 0);
1380 const char *uri
= qdict_get_str(qdict
, "uri");
1383 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
, false, false, &err
);
1385 monitor_printf(mon
, "migrate: %s\n", error_get_pretty(err
));
1391 MigrationStatus
*status
;
1393 if (monitor_suspend(mon
) < 0) {
1394 monitor_printf(mon
, "terminal does not allow synchronous "
1395 "migration, continuing detached\n");
1399 status
= g_malloc0(sizeof(*status
));
1401 status
->is_block_migration
= blk
|| inc
;
1402 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
1404 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
1408 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
1410 const char *id
= qdict_get_str(qdict
, "id");
1413 qmp_device_del(id
, &err
);
1414 hmp_handle_error(mon
, &err
);
1417 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
1420 int paging
= qdict_get_try_bool(qdict
, "paging", 0);
1421 int zlib
= qdict_get_try_bool(qdict
, "zlib", 0);
1422 int lzo
= qdict_get_try_bool(qdict
, "lzo", 0);
1423 int snappy
= qdict_get_try_bool(qdict
, "snappy", 0);
1424 const char *file
= qdict_get_str(qdict
, "filename");
1425 bool has_begin
= qdict_haskey(qdict
, "begin");
1426 bool has_length
= qdict_haskey(qdict
, "length");
1429 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
1432 if (zlib
+ lzo
+ snappy
> 1) {
1433 error_setg(&err
, "only one of '-z|-l|-s' can be set");
1434 hmp_handle_error(mon
, &err
);
1439 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
1443 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
1447 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
1451 begin
= qdict_get_int(qdict
, "begin");
1454 length
= qdict_get_int(qdict
, "length");
1457 prot
= g_strconcat("file:", file
, NULL
);
1459 qmp_dump_guest_memory(paging
, prot
, has_begin
, begin
, has_length
, length
,
1460 true, dump_format
, &err
);
1461 hmp_handle_error(mon
, &err
);
1465 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
1470 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
1475 netdev_add(opts
, &err
);
1477 qemu_opts_del(opts
);
1481 hmp_handle_error(mon
, &err
);
1484 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
1486 const char *id
= qdict_get_str(qdict
, "id");
1489 qmp_netdev_del(id
, &err
);
1490 hmp_handle_error(mon
, &err
);
1493 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
1496 Error
*err_end
= NULL
;
1504 opts
= qemu_opts_from_qdict(qemu_find_opts("object"), qdict
, &err
);
1509 ov
= opts_visitor_new(opts
);
1510 pdict
= qdict_clone_shallow(qdict
);
1512 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
1517 qdict_del(pdict
, "qom-type");
1518 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
1523 qdict_del(pdict
, "id");
1524 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
1529 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
1532 visit_end_struct(opts_get_visitor(ov
), &err_end
);
1533 if (!err
&& err_end
) {
1534 qmp_object_del(id
, NULL
);
1536 error_propagate(&err
, err_end
);
1538 opts_visitor_cleanup(ov
);
1541 qemu_opts_del(opts
);
1547 hmp_handle_error(mon
, &err
);
1550 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
1552 const char *fdname
= qdict_get_str(qdict
, "fdname");
1555 qmp_getfd(fdname
, &err
);
1556 hmp_handle_error(mon
, &err
);
1559 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
1561 const char *fdname
= qdict_get_str(qdict
, "fdname");
1564 qmp_closefd(fdname
, &err
);
1565 hmp_handle_error(mon
, &err
);
1568 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
1570 const char *keys
= qdict_get_str(qdict
, "keys");
1571 KeyValueList
*keylist
, *head
= NULL
, *tmp
= NULL
;
1572 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
1573 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
1575 char keyname_buf
[16];
1580 separator
= strchr(keys
, '-');
1581 keyname_len
= separator
? separator
- keys
: strlen(keys
);
1582 pstrcpy(keyname_buf
, sizeof(keyname_buf
), keys
);
1584 /* Be compatible with old interface, convert user inputted "<" */
1585 if (!strncmp(keyname_buf
, "<", 1) && keyname_len
== 1) {
1586 pstrcpy(keyname_buf
, sizeof(keyname_buf
), "less");
1589 keyname_buf
[keyname_len
] = 0;
1591 keylist
= g_malloc0(sizeof(*keylist
));
1592 keylist
->value
= g_malloc0(sizeof(*keylist
->value
));
1598 tmp
->next
= keylist
;
1602 if (strstart(keyname_buf
, "0x", NULL
)) {
1604 int value
= strtoul(keyname_buf
, &endp
, 0);
1605 if (*endp
!= '\0') {
1608 keylist
->value
->kind
= KEY_VALUE_KIND_NUMBER
;
1609 keylist
->value
->number
= value
;
1611 int idx
= index_from_key(keyname_buf
);
1612 if (idx
== Q_KEY_CODE_MAX
) {
1615 keylist
->value
->kind
= KEY_VALUE_KIND_QCODE
;
1616 keylist
->value
->qcode
= idx
;
1622 keys
= separator
+ 1;
1625 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
1626 hmp_handle_error(mon
, &err
);
1629 qapi_free_KeyValueList(head
);
1633 monitor_printf(mon
, "invalid parameter: %s\n", keyname_buf
);
1637 void hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
1639 const char *filename
= qdict_get_str(qdict
, "filename");
1642 qmp_screendump(filename
, &err
);
1643 hmp_handle_error(mon
, &err
);
1646 void hmp_nbd_server_start(Monitor
*mon
, const QDict
*qdict
)
1648 const char *uri
= qdict_get_str(qdict
, "uri");
1649 int writable
= qdict_get_try_bool(qdict
, "writable", 0);
1650 int all
= qdict_get_try_bool(qdict
, "all", 0);
1651 Error
*local_err
= NULL
;
1652 BlockInfoList
*block_list
, *info
;
1653 SocketAddress
*addr
;
1655 if (writable
&& !all
) {
1656 error_setg(&local_err
, "-w only valid together with -a");
1660 /* First check if the address is valid and start the server. */
1661 addr
= socket_parse(uri
, &local_err
);
1662 if (local_err
!= NULL
) {
1666 qmp_nbd_server_start(addr
, &local_err
);
1667 qapi_free_SocketAddress(addr
);
1668 if (local_err
!= NULL
) {
1676 /* Then try adding all block devices. If one fails, close all and
1679 block_list
= qmp_query_block(NULL
);
1681 for (info
= block_list
; info
; info
= info
->next
) {
1682 if (!info
->value
->has_inserted
) {
1686 qmp_nbd_server_add(info
->value
->device
, true, writable
, &local_err
);
1688 if (local_err
!= NULL
) {
1689 qmp_nbd_server_stop(NULL
);
1694 qapi_free_BlockInfoList(block_list
);
1697 hmp_handle_error(mon
, &local_err
);
1700 void hmp_nbd_server_add(Monitor
*mon
, const QDict
*qdict
)
1702 const char *device
= qdict_get_str(qdict
, "device");
1703 int writable
= qdict_get_try_bool(qdict
, "writable", 0);
1704 Error
*local_err
= NULL
;
1706 qmp_nbd_server_add(device
, true, writable
, &local_err
);
1708 if (local_err
!= NULL
) {
1709 hmp_handle_error(mon
, &local_err
);
1713 void hmp_nbd_server_stop(Monitor
*mon
, const QDict
*qdict
)
1717 qmp_nbd_server_stop(&err
);
1718 hmp_handle_error(mon
, &err
);
1721 void hmp_cpu_add(Monitor
*mon
, const QDict
*qdict
)
1726 cpuid
= qdict_get_int(qdict
, "id");
1727 qmp_cpu_add(cpuid
, &err
);
1728 hmp_handle_error(mon
, &err
);
1731 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
1733 const char *args
= qdict_get_str(qdict
, "args");
1737 opts
= qemu_opts_parse(qemu_find_opts("chardev"), args
, 1);
1739 error_setg(&err
, "Parsing chardev args failed");
1741 qemu_chr_new_from_opts(opts
, NULL
, &err
);
1743 hmp_handle_error(mon
, &err
);
1746 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
1748 Error
*local_err
= NULL
;
1750 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
1751 hmp_handle_error(mon
, &local_err
);
1754 void hmp_qemu_io(Monitor
*mon
, const QDict
*qdict
)
1757 const char* device
= qdict_get_str(qdict
, "device");
1758 const char* command
= qdict_get_str(qdict
, "command");
1761 blk
= blk_by_name(device
);
1763 qemuio_command(blk
, command
);
1765 error_set(&err
, QERR_DEVICE_NOT_FOUND
, device
);
1768 hmp_handle_error(mon
, &err
);
1771 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
1773 const char *id
= qdict_get_str(qdict
, "id");
1776 qmp_object_del(id
, &err
);
1777 hmp_handle_error(mon
, &err
);
1780 void hmp_info_memdev(Monitor
*mon
, const QDict
*qdict
)
1783 MemdevList
*memdev_list
= qmp_query_memdev(&err
);
1784 MemdevList
*m
= memdev_list
;
1785 StringOutputVisitor
*ov
;
1791 ov
= string_output_visitor_new(false);
1792 visit_type_uint16List(string_output_get_visitor(ov
),
1793 &m
->value
->host_nodes
, NULL
, NULL
);
1794 monitor_printf(mon
, "memory backend: %d\n", i
);
1795 monitor_printf(mon
, " size: %" PRId64
"\n", m
->value
->size
);
1796 monitor_printf(mon
, " merge: %s\n",
1797 m
->value
->merge
? "true" : "false");
1798 monitor_printf(mon
, " dump: %s\n",
1799 m
->value
->dump
? "true" : "false");
1800 monitor_printf(mon
, " prealloc: %s\n",
1801 m
->value
->prealloc
? "true" : "false");
1802 monitor_printf(mon
, " policy: %s\n",
1803 HostMemPolicy_lookup
[m
->value
->policy
]);
1804 str
= string_output_get_string(ov
);
1805 monitor_printf(mon
, " host nodes: %s\n", str
);
1808 string_output_visitor_cleanup(ov
);
1813 monitor_printf(mon
, "\n");
1815 qapi_free_MemdevList(memdev_list
);
1818 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
1821 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
1822 MemoryDeviceInfoList
*info
;
1823 MemoryDeviceInfo
*value
;
1824 PCDIMMDeviceInfo
*di
;
1826 for (info
= info_list
; info
; info
= info
->next
) {
1827 value
= info
->value
;
1830 switch (value
->kind
) {
1831 case MEMORY_DEVICE_INFO_KIND_DIMM
:
1834 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
1835 MemoryDeviceInfoKind_lookup
[value
->kind
],
1836 di
->id
? di
->id
: "");
1837 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
1838 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
1839 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
1840 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
1841 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
1842 monitor_printf(mon
, " hotplugged: %s\n",
1843 di
->hotplugged
? "true" : "false");
1844 monitor_printf(mon
, " hotpluggable: %s\n",
1845 di
->hotpluggable
? "true" : "false");
1853 qapi_free_MemoryDeviceInfoList(info_list
);