2 * Human Monitor Interface commands
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"
17 #include "monitor/hmp.h"
20 #include "chardev/char.h"
21 #include "sysemu/block-backend.h"
22 #include "sysemu/runstate.h"
23 #include "qemu/config-file.h"
24 #include "qemu/option.h"
25 #include "qemu/timer.h"
26 #include "qemu/sockets.h"
27 #include "qemu/help_option.h"
28 #include "monitor/monitor-internal.h"
29 #include "qapi/error.h"
30 #include "qapi/clone-visitor.h"
31 #include "qapi/opts-visitor.h"
32 #include "qapi/qapi-builtin-visit.h"
33 #include "qapi/qapi-commands-block.h"
34 #include "qapi/qapi-commands-char.h"
35 #include "qapi/qapi-commands-control.h"
36 #include "qapi/qapi-commands-machine.h"
37 #include "qapi/qapi-commands-migration.h"
38 #include "qapi/qapi-commands-misc.h"
39 #include "qapi/qapi-commands-net.h"
40 #include "qapi/qapi-commands-pci.h"
41 #include "qapi/qapi-commands-rocker.h"
42 #include "qapi/qapi-commands-run-state.h"
43 #include "qapi/qapi-commands-stats.h"
44 #include "qapi/qapi-commands-tpm.h"
45 #include "qapi/qapi-commands-ui.h"
46 #include "qapi/qapi-commands-virtio.h"
47 #include "qapi/qapi-visit-virtio.h"
48 #include "qapi/qapi-visit-net.h"
49 #include "qapi/qapi-visit-migration.h"
50 #include "qapi/qmp/qdict.h"
51 #include "qapi/qmp/qerror.h"
52 #include "qapi/string-input-visitor.h"
53 #include "qapi/string-output-visitor.h"
54 #include "qom/object_interfaces.h"
55 #include "ui/console.h"
56 #include "qemu/cutils.h"
57 #include "qemu/error-report.h"
58 #include "hw/core/cpu.h"
59 #include "hw/intc/intc.h"
60 #include "migration/snapshot.h"
61 #include "migration/misc.h"
64 #include <spice/enums.h>
67 bool hmp_handle_error(Monitor
*mon
, Error
*err
)
70 error_reportf_err(err
, "Error: ");
77 * Produce a strList from a comma separated list.
78 * A NULL or empty input string return NULL.
80 static strList
*strList_from_comma_list(const char *in
)
83 strList
**tail
= &res
;
86 char *comma
= strchr(in
, ',');
90 value
= g_strndup(in
, comma
- in
);
91 in
= comma
+ 1; /* skip the , */
96 QAPI_LIST_APPEND(tail
, value
);
102 void hmp_info_name(Monitor
*mon
, const QDict
*qdict
)
106 info
= qmp_query_name(NULL
);
108 monitor_printf(mon
, "%s\n", info
->name
);
110 qapi_free_NameInfo(info
);
113 void hmp_info_version(Monitor
*mon
, const QDict
*qdict
)
117 info
= qmp_query_version(NULL
);
119 monitor_printf(mon
, "%" PRId64
".%" PRId64
".%" PRId64
"%s\n",
120 info
->qemu
->major
, info
->qemu
->minor
, info
->qemu
->micro
,
123 qapi_free_VersionInfo(info
);
126 void hmp_info_kvm(Monitor
*mon
, const QDict
*qdict
)
130 info
= qmp_query_kvm(NULL
);
131 monitor_printf(mon
, "kvm support: ");
133 monitor_printf(mon
, "%s\n", info
->enabled
? "enabled" : "disabled");
135 monitor_printf(mon
, "not compiled\n");
138 qapi_free_KvmInfo(info
);
141 void hmp_info_status(Monitor
*mon
, const QDict
*qdict
)
145 info
= qmp_query_status(NULL
);
147 monitor_printf(mon
, "VM status: %s%s",
148 info
->running
? "running" : "paused",
149 info
->singlestep
? " (single step mode)" : "");
151 if (!info
->running
&& info
->status
!= RUN_STATE_PAUSED
) {
152 monitor_printf(mon
, " (%s)", RunState_str(info
->status
));
155 monitor_printf(mon
, "\n");
157 qapi_free_StatusInfo(info
);
160 void hmp_info_uuid(Monitor
*mon
, const QDict
*qdict
)
164 info
= qmp_query_uuid(NULL
);
165 monitor_printf(mon
, "%s\n", info
->UUID
);
166 qapi_free_UuidInfo(info
);
169 void hmp_info_chardev(Monitor
*mon
, const QDict
*qdict
)
171 ChardevInfoList
*char_info
, *info
;
173 char_info
= qmp_query_chardev(NULL
);
174 for (info
= char_info
; info
; info
= info
->next
) {
175 monitor_printf(mon
, "%s: filename=%s\n", info
->value
->label
,
176 info
->value
->filename
);
179 qapi_free_ChardevInfoList(char_info
);
182 void hmp_info_mice(Monitor
*mon
, const QDict
*qdict
)
184 MouseInfoList
*mice_list
, *mouse
;
186 mice_list
= qmp_query_mice(NULL
);
188 monitor_printf(mon
, "No mouse devices connected\n");
192 for (mouse
= mice_list
; mouse
; mouse
= mouse
->next
) {
193 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s%s\n",
194 mouse
->value
->current
? '*' : ' ',
195 mouse
->value
->index
, mouse
->value
->name
,
196 mouse
->value
->absolute
? " (absolute)" : "");
199 qapi_free_MouseInfoList(mice_list
);
202 void hmp_info_migrate(Monitor
*mon
, const QDict
*qdict
)
206 info
= qmp_query_migrate(NULL
);
208 migration_global_dump(mon
);
210 if (info
->blocked_reasons
) {
211 strList
*reasons
= info
->blocked_reasons
;
212 monitor_printf(mon
, "Outgoing migration blocked:\n");
214 monitor_printf(mon
, " %s\n", reasons
->value
);
215 reasons
= reasons
->next
;
219 if (info
->has_status
) {
220 monitor_printf(mon
, "Migration status: %s",
221 MigrationStatus_str(info
->status
));
222 if (info
->status
== MIGRATION_STATUS_FAILED
&& info
->error_desc
) {
223 monitor_printf(mon
, " (%s)\n", info
->error_desc
);
225 monitor_printf(mon
, "\n");
228 monitor_printf(mon
, "total time: %" PRIu64
" ms\n",
230 if (info
->has_expected_downtime
) {
231 monitor_printf(mon
, "expected downtime: %" PRIu64
" ms\n",
232 info
->expected_downtime
);
234 if (info
->has_downtime
) {
235 monitor_printf(mon
, "downtime: %" PRIu64
" ms\n",
238 if (info
->has_setup_time
) {
239 monitor_printf(mon
, "setup: %" PRIu64
" ms\n",
245 monitor_printf(mon
, "transferred ram: %" PRIu64
" kbytes\n",
246 info
->ram
->transferred
>> 10);
247 monitor_printf(mon
, "throughput: %0.2f mbps\n",
249 monitor_printf(mon
, "remaining ram: %" PRIu64
" kbytes\n",
250 info
->ram
->remaining
>> 10);
251 monitor_printf(mon
, "total ram: %" PRIu64
" kbytes\n",
252 info
->ram
->total
>> 10);
253 monitor_printf(mon
, "duplicate: %" PRIu64
" pages\n",
254 info
->ram
->duplicate
);
255 monitor_printf(mon
, "skipped: %" PRIu64
" pages\n",
257 monitor_printf(mon
, "normal: %" PRIu64
" pages\n",
259 monitor_printf(mon
, "normal bytes: %" PRIu64
" kbytes\n",
260 info
->ram
->normal_bytes
>> 10);
261 monitor_printf(mon
, "dirty sync count: %" PRIu64
"\n",
262 info
->ram
->dirty_sync_count
);
263 monitor_printf(mon
, "page size: %" PRIu64
" kbytes\n",
264 info
->ram
->page_size
>> 10);
265 monitor_printf(mon
, "multifd bytes: %" PRIu64
" kbytes\n",
266 info
->ram
->multifd_bytes
>> 10);
267 monitor_printf(mon
, "pages-per-second: %" PRIu64
"\n",
268 info
->ram
->pages_per_second
);
270 if (info
->ram
->dirty_pages_rate
) {
271 monitor_printf(mon
, "dirty pages rate: %" PRIu64
" pages\n",
272 info
->ram
->dirty_pages_rate
);
274 if (info
->ram
->postcopy_requests
) {
275 monitor_printf(mon
, "postcopy request count: %" PRIu64
"\n",
276 info
->ram
->postcopy_requests
);
278 if (info
->ram
->precopy_bytes
) {
279 monitor_printf(mon
, "precopy ram: %" PRIu64
" kbytes\n",
280 info
->ram
->precopy_bytes
>> 10);
282 if (info
->ram
->downtime_bytes
) {
283 monitor_printf(mon
, "downtime ram: %" PRIu64
" kbytes\n",
284 info
->ram
->downtime_bytes
>> 10);
286 if (info
->ram
->postcopy_bytes
) {
287 monitor_printf(mon
, "postcopy ram: %" PRIu64
" kbytes\n",
288 info
->ram
->postcopy_bytes
>> 10);
290 if (info
->ram
->dirty_sync_missed_zero_copy
) {
292 "Zero-copy-send fallbacks happened: %" PRIu64
" times\n",
293 info
->ram
->dirty_sync_missed_zero_copy
);
298 monitor_printf(mon
, "transferred disk: %" PRIu64
" kbytes\n",
299 info
->disk
->transferred
>> 10);
300 monitor_printf(mon
, "remaining disk: %" PRIu64
" kbytes\n",
301 info
->disk
->remaining
>> 10);
302 monitor_printf(mon
, "total disk: %" PRIu64
" kbytes\n",
303 info
->disk
->total
>> 10);
306 if (info
->xbzrle_cache
) {
307 monitor_printf(mon
, "cache size: %" PRIu64
" bytes\n",
308 info
->xbzrle_cache
->cache_size
);
309 monitor_printf(mon
, "xbzrle transferred: %" PRIu64
" kbytes\n",
310 info
->xbzrle_cache
->bytes
>> 10);
311 monitor_printf(mon
, "xbzrle pages: %" PRIu64
" pages\n",
312 info
->xbzrle_cache
->pages
);
313 monitor_printf(mon
, "xbzrle cache miss: %" PRIu64
" pages\n",
314 info
->xbzrle_cache
->cache_miss
);
315 monitor_printf(mon
, "xbzrle cache miss rate: %0.2f\n",
316 info
->xbzrle_cache
->cache_miss_rate
);
317 monitor_printf(mon
, "xbzrle encoding rate: %0.2f\n",
318 info
->xbzrle_cache
->encoding_rate
);
319 monitor_printf(mon
, "xbzrle overflow: %" PRIu64
"\n",
320 info
->xbzrle_cache
->overflow
);
323 if (info
->compression
) {
324 monitor_printf(mon
, "compression pages: %" PRIu64
" pages\n",
325 info
->compression
->pages
);
326 monitor_printf(mon
, "compression busy: %" PRIu64
"\n",
327 info
->compression
->busy
);
328 monitor_printf(mon
, "compression busy rate: %0.2f\n",
329 info
->compression
->busy_rate
);
330 monitor_printf(mon
, "compressed size: %" PRIu64
" kbytes\n",
331 info
->compression
->compressed_size
>> 10);
332 monitor_printf(mon
, "compression rate: %0.2f\n",
333 info
->compression
->compression_rate
);
336 if (info
->has_cpu_throttle_percentage
) {
337 monitor_printf(mon
, "cpu throttle percentage: %" PRIu64
"\n",
338 info
->cpu_throttle_percentage
);
341 if (info
->has_postcopy_blocktime
) {
342 monitor_printf(mon
, "postcopy blocktime: %u\n",
343 info
->postcopy_blocktime
);
346 if (info
->has_postcopy_vcpu_blocktime
) {
349 v
= string_output_visitor_new(false, &str
);
350 visit_type_uint32List(v
, NULL
, &info
->postcopy_vcpu_blocktime
,
352 visit_complete(v
, &str
);
353 monitor_printf(mon
, "postcopy vcpu blocktime: %s\n", str
);
357 if (info
->has_socket_address
) {
358 SocketAddressList
*addr
;
360 monitor_printf(mon
, "socket address: [\n");
362 for (addr
= info
->socket_address
; addr
; addr
= addr
->next
) {
363 char *s
= socket_uri(addr
->value
);
364 monitor_printf(mon
, "\t%s\n", s
);
367 monitor_printf(mon
, "]\n");
371 monitor_printf(mon
, "vfio device transferred: %" PRIu64
" kbytes\n",
372 info
->vfio
->transferred
>> 10);
375 qapi_free_MigrationInfo(info
);
378 void hmp_info_migrate_capabilities(Monitor
*mon
, const QDict
*qdict
)
380 MigrationCapabilityStatusList
*caps
, *cap
;
382 caps
= qmp_query_migrate_capabilities(NULL
);
385 for (cap
= caps
; cap
; cap
= cap
->next
) {
386 monitor_printf(mon
, "%s: %s\n",
387 MigrationCapability_str(cap
->value
->capability
),
388 cap
->value
->state
? "on" : "off");
392 qapi_free_MigrationCapabilityStatusList(caps
);
395 void hmp_info_migrate_parameters(Monitor
*mon
, const QDict
*qdict
)
397 MigrationParameters
*params
;
399 params
= qmp_query_migrate_parameters(NULL
);
402 monitor_printf(mon
, "%s: %" PRIu64
" ms\n",
403 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_INITIAL
),
404 params
->announce_initial
);
405 monitor_printf(mon
, "%s: %" PRIu64
" ms\n",
406 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_MAX
),
407 params
->announce_max
);
408 monitor_printf(mon
, "%s: %" PRIu64
"\n",
409 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_ROUNDS
),
410 params
->announce_rounds
);
411 monitor_printf(mon
, "%s: %" PRIu64
" ms\n",
412 MigrationParameter_str(MIGRATION_PARAMETER_ANNOUNCE_STEP
),
413 params
->announce_step
);
414 assert(params
->has_compress_level
);
415 monitor_printf(mon
, "%s: %u\n",
416 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL
),
417 params
->compress_level
);
418 assert(params
->has_compress_threads
);
419 monitor_printf(mon
, "%s: %u\n",
420 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_THREADS
),
421 params
->compress_threads
);
422 assert(params
->has_compress_wait_thread
);
423 monitor_printf(mon
, "%s: %s\n",
424 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_WAIT_THREAD
),
425 params
->compress_wait_thread
? "on" : "off");
426 assert(params
->has_decompress_threads
);
427 monitor_printf(mon
, "%s: %u\n",
428 MigrationParameter_str(MIGRATION_PARAMETER_DECOMPRESS_THREADS
),
429 params
->decompress_threads
);
430 assert(params
->has_throttle_trigger_threshold
);
431 monitor_printf(mon
, "%s: %u\n",
432 MigrationParameter_str(MIGRATION_PARAMETER_THROTTLE_TRIGGER_THRESHOLD
),
433 params
->throttle_trigger_threshold
);
434 assert(params
->has_cpu_throttle_initial
);
435 monitor_printf(mon
, "%s: %u\n",
436 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
),
437 params
->cpu_throttle_initial
);
438 assert(params
->has_cpu_throttle_increment
);
439 monitor_printf(mon
, "%s: %u\n",
440 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
),
441 params
->cpu_throttle_increment
);
442 assert(params
->has_cpu_throttle_tailslow
);
443 monitor_printf(mon
, "%s: %s\n",
444 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_TAILSLOW
),
445 params
->cpu_throttle_tailslow
? "on" : "off");
446 assert(params
->has_max_cpu_throttle
);
447 monitor_printf(mon
, "%s: %u\n",
448 MigrationParameter_str(MIGRATION_PARAMETER_MAX_CPU_THROTTLE
),
449 params
->max_cpu_throttle
);
450 assert(params
->tls_creds
);
451 monitor_printf(mon
, "%s: '%s'\n",
452 MigrationParameter_str(MIGRATION_PARAMETER_TLS_CREDS
),
454 assert(params
->tls_hostname
);
455 monitor_printf(mon
, "%s: '%s'\n",
456 MigrationParameter_str(MIGRATION_PARAMETER_TLS_HOSTNAME
),
457 params
->tls_hostname
);
458 assert(params
->has_max_bandwidth
);
459 monitor_printf(mon
, "%s: %" PRIu64
" bytes/second\n",
460 MigrationParameter_str(MIGRATION_PARAMETER_MAX_BANDWIDTH
),
461 params
->max_bandwidth
);
462 assert(params
->has_downtime_limit
);
463 monitor_printf(mon
, "%s: %" PRIu64
" ms\n",
464 MigrationParameter_str(MIGRATION_PARAMETER_DOWNTIME_LIMIT
),
465 params
->downtime_limit
);
466 assert(params
->has_x_checkpoint_delay
);
467 monitor_printf(mon
, "%s: %u ms\n",
468 MigrationParameter_str(MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
),
469 params
->x_checkpoint_delay
);
470 assert(params
->has_block_incremental
);
471 monitor_printf(mon
, "%s: %s\n",
472 MigrationParameter_str(MIGRATION_PARAMETER_BLOCK_INCREMENTAL
),
473 params
->block_incremental
? "on" : "off");
474 monitor_printf(mon
, "%s: %u\n",
475 MigrationParameter_str(MIGRATION_PARAMETER_MULTIFD_CHANNELS
),
476 params
->multifd_channels
);
477 monitor_printf(mon
, "%s: %s\n",
478 MigrationParameter_str(MIGRATION_PARAMETER_MULTIFD_COMPRESSION
),
479 MultiFDCompression_str(params
->multifd_compression
));
480 monitor_printf(mon
, "%s: %" PRIu64
" bytes\n",
481 MigrationParameter_str(MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
),
482 params
->xbzrle_cache_size
);
483 monitor_printf(mon
, "%s: %" PRIu64
"\n",
484 MigrationParameter_str(MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH
),
485 params
->max_postcopy_bandwidth
);
486 monitor_printf(mon
, "%s: '%s'\n",
487 MigrationParameter_str(MIGRATION_PARAMETER_TLS_AUTHZ
),
490 if (params
->has_block_bitmap_mapping
) {
491 const BitmapMigrationNodeAliasList
*bmnal
;
493 monitor_printf(mon
, "%s:\n",
494 MigrationParameter_str(
495 MIGRATION_PARAMETER_BLOCK_BITMAP_MAPPING
));
497 for (bmnal
= params
->block_bitmap_mapping
;
501 const BitmapMigrationNodeAlias
*bmna
= bmnal
->value
;
502 const BitmapMigrationBitmapAliasList
*bmbal
;
504 monitor_printf(mon
, " '%s' -> '%s'\n",
505 bmna
->node_name
, bmna
->alias
);
507 for (bmbal
= bmna
->bitmaps
; bmbal
; bmbal
= bmbal
->next
) {
508 const BitmapMigrationBitmapAlias
*bmba
= bmbal
->value
;
510 monitor_printf(mon
, " '%s' -> '%s'\n",
511 bmba
->name
, bmba
->alias
);
517 qapi_free_MigrationParameters(params
);
522 /* Helper for hmp_info_vnc_clients, _servers */
523 static void hmp_info_VncBasicInfo(Monitor
*mon
, VncBasicInfo
*info
,
526 monitor_printf(mon
, " %s: %s:%s (%s%s)\n",
530 NetworkAddressFamily_str(info
->family
),
531 info
->websocket
? " (Websocket)" : "");
534 /* Helper displaying and auth and crypt info */
535 static void hmp_info_vnc_authcrypt(Monitor
*mon
, const char *indent
,
537 VncVencryptSubAuth
*vencrypt
)
539 monitor_printf(mon
, "%sAuth: %s (Sub: %s)\n", indent
,
540 VncPrimaryAuth_str(auth
),
541 vencrypt
? VncVencryptSubAuth_str(*vencrypt
) : "none");
544 static void hmp_info_vnc_clients(Monitor
*mon
, VncClientInfoList
*client
)
547 VncClientInfo
*cinfo
= client
->value
;
549 hmp_info_VncBasicInfo(mon
, qapi_VncClientInfo_base(cinfo
), "Client");
550 monitor_printf(mon
, " x509_dname: %s\n",
551 cinfo
->has_x509_dname
?
552 cinfo
->x509_dname
: "none");
553 monitor_printf(mon
, " sasl_username: %s\n",
554 cinfo
->has_sasl_username
?
555 cinfo
->sasl_username
: "none");
557 client
= client
->next
;
561 static void hmp_info_vnc_servers(Monitor
*mon
, VncServerInfo2List
*server
)
564 VncServerInfo2
*sinfo
= server
->value
;
565 hmp_info_VncBasicInfo(mon
, qapi_VncServerInfo2_base(sinfo
), "Server");
566 hmp_info_vnc_authcrypt(mon
, " ", sinfo
->auth
,
567 sinfo
->has_vencrypt
? &sinfo
->vencrypt
: NULL
);
568 server
= server
->next
;
572 void hmp_info_vnc(Monitor
*mon
, const QDict
*qdict
)
574 VncInfo2List
*info2l
, *info2l_head
;
577 info2l
= qmp_query_vnc_servers(&err
);
578 info2l_head
= info2l
;
579 if (hmp_handle_error(mon
, err
)) {
583 monitor_printf(mon
, "None\n");
588 VncInfo2
*info
= info2l
->value
;
589 monitor_printf(mon
, "%s:\n", info
->id
);
590 hmp_info_vnc_servers(mon
, info
->server
);
591 hmp_info_vnc_clients(mon
, info
->clients
);
593 /* The server entry displays its auth, we only
594 * need to display in the case of 'reverse' connections
595 * where there's no server.
597 hmp_info_vnc_authcrypt(mon
, " ", info
->auth
,
598 info
->has_vencrypt
? &info
->vencrypt
: NULL
);
600 if (info
->has_display
) {
601 monitor_printf(mon
, " Display: %s\n", info
->display
);
603 info2l
= info2l
->next
;
606 qapi_free_VncInfo2List(info2l_head
);
612 void hmp_info_spice(Monitor
*mon
, const QDict
*qdict
)
614 SpiceChannelList
*chan
;
616 const char *channel_name
;
617 const char * const channel_names
[] = {
618 [SPICE_CHANNEL_MAIN
] = "main",
619 [SPICE_CHANNEL_DISPLAY
] = "display",
620 [SPICE_CHANNEL_INPUTS
] = "inputs",
621 [SPICE_CHANNEL_CURSOR
] = "cursor",
622 [SPICE_CHANNEL_PLAYBACK
] = "playback",
623 [SPICE_CHANNEL_RECORD
] = "record",
624 [SPICE_CHANNEL_TUNNEL
] = "tunnel",
625 [SPICE_CHANNEL_SMARTCARD
] = "smartcard",
626 [SPICE_CHANNEL_USBREDIR
] = "usbredir",
627 [SPICE_CHANNEL_PORT
] = "port",
629 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
630 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
631 * as quick fix for build failures with older versions. */
632 [SPICE_CHANNEL_WEBDAV
] = "webdav",
636 info
= qmp_query_spice(NULL
);
638 if (!info
->enabled
) {
639 monitor_printf(mon
, "Server: disabled\n");
643 monitor_printf(mon
, "Server:\n");
644 if (info
->has_port
) {
645 monitor_printf(mon
, " address: %s:%" PRId64
"\n",
646 info
->host
, info
->port
);
648 if (info
->has_tls_port
) {
649 monitor_printf(mon
, " address: %s:%" PRId64
" [tls]\n",
650 info
->host
, info
->tls_port
);
652 monitor_printf(mon
, " migrated: %s\n",
653 info
->migrated
? "true" : "false");
654 monitor_printf(mon
, " auth: %s\n", info
->auth
);
655 monitor_printf(mon
, " compiled: %s\n", info
->compiled_version
);
656 monitor_printf(mon
, " mouse-mode: %s\n",
657 SpiceQueryMouseMode_str(info
->mouse_mode
));
659 if (!info
->has_channels
|| info
->channels
== NULL
) {
660 monitor_printf(mon
, "Channels: none\n");
662 for (chan
= info
->channels
; chan
; chan
= chan
->next
) {
663 monitor_printf(mon
, "Channel:\n");
664 monitor_printf(mon
, " address: %s:%s%s\n",
665 chan
->value
->host
, chan
->value
->port
,
666 chan
->value
->tls
? " [tls]" : "");
667 monitor_printf(mon
, " session: %" PRId64
"\n",
668 chan
->value
->connection_id
);
669 monitor_printf(mon
, " channel: %" PRId64
":%" PRId64
"\n",
670 chan
->value
->channel_type
, chan
->value
->channel_id
);
672 channel_name
= "unknown";
673 if (chan
->value
->channel_type
> 0 &&
674 chan
->value
->channel_type
< ARRAY_SIZE(channel_names
) &&
675 channel_names
[chan
->value
->channel_type
]) {
676 channel_name
= channel_names
[chan
->value
->channel_type
];
679 monitor_printf(mon
, " channel name: %s\n", channel_name
);
684 qapi_free_SpiceInfo(info
);
688 void hmp_info_balloon(Monitor
*mon
, const QDict
*qdict
)
693 info
= qmp_query_balloon(&err
);
694 if (hmp_handle_error(mon
, err
)) {
698 monitor_printf(mon
, "balloon: actual=%" PRId64
"\n", info
->actual
>> 20);
700 qapi_free_BalloonInfo(info
);
703 static void hmp_info_pci_device(Monitor
*mon
, const PciDeviceInfo
*dev
)
705 PciMemoryRegionList
*region
;
707 monitor_printf(mon
, " Bus %2" PRId64
", ", dev
->bus
);
708 monitor_printf(mon
, "device %3" PRId64
", function %" PRId64
":\n",
709 dev
->slot
, dev
->function
);
710 monitor_printf(mon
, " ");
712 if (dev
->class_info
->desc
) {
713 monitor_puts(mon
, dev
->class_info
->desc
);
715 monitor_printf(mon
, "Class %04" PRId64
, dev
->class_info
->q_class
);
718 monitor_printf(mon
, ": PCI device %04" PRIx64
":%04" PRIx64
"\n",
719 dev
->id
->vendor
, dev
->id
->device
);
720 if (dev
->id
->has_subsystem_vendor
&& dev
->id
->has_subsystem
) {
721 monitor_printf(mon
, " PCI subsystem %04" PRIx64
":%04" PRIx64
"\n",
722 dev
->id
->subsystem_vendor
, dev
->id
->subsystem
);
726 monitor_printf(mon
, " IRQ %" PRId64
", pin %c\n",
727 dev
->irq
, (char)('A' + dev
->irq_pin
- 1));
730 if (dev
->pci_bridge
) {
731 monitor_printf(mon
, " BUS %" PRId64
".\n",
732 dev
->pci_bridge
->bus
->number
);
733 monitor_printf(mon
, " secondary bus %" PRId64
".\n",
734 dev
->pci_bridge
->bus
->secondary
);
735 monitor_printf(mon
, " subordinate bus %" PRId64
".\n",
736 dev
->pci_bridge
->bus
->subordinate
);
738 monitor_printf(mon
, " IO range [0x%04"PRIx64
", 0x%04"PRIx64
"]\n",
739 dev
->pci_bridge
->bus
->io_range
->base
,
740 dev
->pci_bridge
->bus
->io_range
->limit
);
743 " memory range [0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
744 dev
->pci_bridge
->bus
->memory_range
->base
,
745 dev
->pci_bridge
->bus
->memory_range
->limit
);
747 monitor_printf(mon
, " prefetchable memory range "
748 "[0x%08"PRIx64
", 0x%08"PRIx64
"]\n",
749 dev
->pci_bridge
->bus
->prefetchable_range
->base
,
750 dev
->pci_bridge
->bus
->prefetchable_range
->limit
);
753 for (region
= dev
->regions
; region
; region
= region
->next
) {
756 addr
= region
->value
->address
;
757 size
= region
->value
->size
;
759 monitor_printf(mon
, " BAR%" PRId64
": ", region
->value
->bar
);
761 if (!strcmp(region
->value
->type
, "io")) {
762 monitor_printf(mon
, "I/O at 0x%04" PRIx64
763 " [0x%04" PRIx64
"].\n",
764 addr
, addr
+ size
- 1);
766 monitor_printf(mon
, "%d bit%s memory at 0x%08" PRIx64
767 " [0x%08" PRIx64
"].\n",
768 region
->value
->mem_type_64
? 64 : 32,
769 region
->value
->prefetch
? " prefetchable" : "",
770 addr
, addr
+ size
- 1);
774 monitor_printf(mon
, " id \"%s\"\n", dev
->qdev_id
);
776 if (dev
->pci_bridge
) {
777 if (dev
->pci_bridge
->has_devices
) {
778 PciDeviceInfoList
*cdev
;
779 for (cdev
= dev
->pci_bridge
->devices
; cdev
; cdev
= cdev
->next
) {
780 hmp_info_pci_device(mon
, cdev
->value
);
786 static int hmp_info_pic_foreach(Object
*obj
, void *opaque
)
788 InterruptStatsProvider
*intc
;
789 InterruptStatsProviderClass
*k
;
790 Monitor
*mon
= opaque
;
792 if (object_dynamic_cast(obj
, TYPE_INTERRUPT_STATS_PROVIDER
)) {
793 intc
= INTERRUPT_STATS_PROVIDER(obj
);
794 k
= INTERRUPT_STATS_PROVIDER_GET_CLASS(obj
);
796 k
->print_info(intc
, mon
);
798 monitor_printf(mon
, "Interrupt controller information not available for %s.\n",
799 object_get_typename(obj
));
806 void hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
808 object_child_foreach_recursive(object_get_root(),
809 hmp_info_pic_foreach
, mon
);
812 void hmp_info_pci(Monitor
*mon
, const QDict
*qdict
)
814 PciInfoList
*info_list
, *info
;
817 info_list
= qmp_query_pci(&err
);
819 monitor_printf(mon
, "PCI devices not supported\n");
824 for (info
= info_list
; info
; info
= info
->next
) {
825 PciDeviceInfoList
*dev
;
827 for (dev
= info
->value
->devices
; dev
; dev
= dev
->next
) {
828 hmp_info_pci_device(mon
, dev
->value
);
832 qapi_free_PciInfoList(info_list
);
835 void hmp_info_tpm(Monitor
*mon
, const QDict
*qdict
)
838 TPMInfoList
*info_list
, *info
;
841 TPMPassthroughOptions
*tpo
;
842 TPMEmulatorOptions
*teo
;
844 info_list
= qmp_query_tpm(&err
);
846 monitor_printf(mon
, "TPM device not supported\n");
852 monitor_printf(mon
, "TPM device:\n");
855 for (info
= info_list
; info
; info
= info
->next
) {
856 TPMInfo
*ti
= info
->value
;
857 monitor_printf(mon
, " tpm%d: model=%s\n",
858 c
, TpmModel_str(ti
->model
));
860 monitor_printf(mon
, " \\ %s: type=%s",
861 ti
->id
, TpmType_str(ti
->options
->type
));
863 switch (ti
->options
->type
) {
864 case TPM_TYPE_PASSTHROUGH
:
865 tpo
= ti
->options
->u
.passthrough
.data
;
866 monitor_printf(mon
, "%s%s%s%s",
867 tpo
->has_path
? ",path=" : "",
868 tpo
->has_path
? tpo
->path
: "",
869 tpo
->has_cancel_path
? ",cancel-path=" : "",
870 tpo
->has_cancel_path
? tpo
->cancel_path
: "");
872 case TPM_TYPE_EMULATOR
:
873 teo
= ti
->options
->u
.emulator
.data
;
874 monitor_printf(mon
, ",chardev=%s", teo
->chardev
);
879 monitor_printf(mon
, "\n");
882 qapi_free_TPMInfoList(info_list
);
884 monitor_printf(mon
, "TPM device not supported\n");
885 #endif /* CONFIG_TPM */
888 void hmp_quit(Monitor
*mon
, const QDict
*qdict
)
890 monitor_suspend(mon
);
894 void hmp_stop(Monitor
*mon
, const QDict
*qdict
)
899 void hmp_sync_profile(Monitor
*mon
, const QDict
*qdict
)
901 const char *op
= qdict_get_try_str(qdict
, "op");
904 bool on
= qsp_is_enabled();
906 monitor_printf(mon
, "sync-profile is %s\n", on
? "on" : "off");
909 if (!strcmp(op
, "on")) {
911 } else if (!strcmp(op
, "off")) {
913 } else if (!strcmp(op
, "reset")) {
918 error_setg(&err
, QERR_INVALID_PARAMETER
, op
);
919 hmp_handle_error(mon
, err
);
923 void hmp_system_reset(Monitor
*mon
, const QDict
*qdict
)
925 qmp_system_reset(NULL
);
928 void hmp_system_powerdown(Monitor
*mon
, const QDict
*qdict
)
930 qmp_system_powerdown(NULL
);
933 void hmp_exit_preconfig(Monitor
*mon
, const QDict
*qdict
)
937 qmp_x_exit_preconfig(&err
);
938 hmp_handle_error(mon
, err
);
941 void hmp_cpu(Monitor
*mon
, const QDict
*qdict
)
945 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
946 use it are converted to the QAPI */
947 cpu_index
= qdict_get_int(qdict
, "index");
948 if (monitor_set_cpu(mon
, cpu_index
) < 0) {
949 monitor_printf(mon
, "invalid CPU index\n");
953 void hmp_memsave(Monitor
*mon
, const QDict
*qdict
)
955 uint32_t size
= qdict_get_int(qdict
, "size");
956 const char *filename
= qdict_get_str(qdict
, "filename");
957 uint64_t addr
= qdict_get_int(qdict
, "val");
959 int cpu_index
= monitor_get_cpu_index(mon
);
962 monitor_printf(mon
, "No CPU available\n");
966 qmp_memsave(addr
, size
, filename
, true, cpu_index
, &err
);
967 hmp_handle_error(mon
, err
);
970 void hmp_pmemsave(Monitor
*mon
, const QDict
*qdict
)
972 uint32_t size
= qdict_get_int(qdict
, "size");
973 const char *filename
= qdict_get_str(qdict
, "filename");
974 uint64_t addr
= qdict_get_int(qdict
, "val");
977 qmp_pmemsave(addr
, size
, filename
, &err
);
978 hmp_handle_error(mon
, err
);
981 void hmp_ringbuf_write(Monitor
*mon
, const QDict
*qdict
)
983 const char *chardev
= qdict_get_str(qdict
, "device");
984 const char *data
= qdict_get_str(qdict
, "data");
987 qmp_ringbuf_write(chardev
, data
, false, 0, &err
);
989 hmp_handle_error(mon
, err
);
992 void hmp_ringbuf_read(Monitor
*mon
, const QDict
*qdict
)
994 uint32_t size
= qdict_get_int(qdict
, "size");
995 const char *chardev
= qdict_get_str(qdict
, "device");
1000 data
= qmp_ringbuf_read(chardev
, size
, false, 0, &err
);
1001 if (hmp_handle_error(mon
, err
)) {
1005 for (i
= 0; data
[i
]; i
++) {
1006 unsigned char ch
= data
[i
];
1009 monitor_printf(mon
, "\\\\");
1010 } else if ((ch
< 0x20 && ch
!= '\n' && ch
!= '\t') || ch
== 0x7F) {
1011 monitor_printf(mon
, "\\u%04X", ch
);
1013 monitor_printf(mon
, "%c", ch
);
1017 monitor_printf(mon
, "\n");
1021 void hmp_cont(Monitor
*mon
, const QDict
*qdict
)
1026 hmp_handle_error(mon
, err
);
1029 void hmp_system_wakeup(Monitor
*mon
, const QDict
*qdict
)
1033 qmp_system_wakeup(&err
);
1034 hmp_handle_error(mon
, err
);
1037 void hmp_nmi(Monitor
*mon
, const QDict
*qdict
)
1041 qmp_inject_nmi(&err
);
1042 hmp_handle_error(mon
, err
);
1045 void hmp_set_link(Monitor
*mon
, const QDict
*qdict
)
1047 const char *name
= qdict_get_str(qdict
, "name");
1048 bool up
= qdict_get_bool(qdict
, "up");
1051 qmp_set_link(name
, up
, &err
);
1052 hmp_handle_error(mon
, err
);
1055 void hmp_balloon(Monitor
*mon
, const QDict
*qdict
)
1057 int64_t value
= qdict_get_int(qdict
, "value");
1060 qmp_balloon(value
, &err
);
1061 hmp_handle_error(mon
, err
);
1064 void hmp_loadvm(Monitor
*mon
, const QDict
*qdict
)
1066 int saved_vm_running
= runstate_is_running();
1067 const char *name
= qdict_get_str(qdict
, "name");
1070 vm_stop(RUN_STATE_RESTORE_VM
);
1072 if (load_snapshot(name
, NULL
, false, NULL
, &err
) && saved_vm_running
) {
1075 hmp_handle_error(mon
, err
);
1078 void hmp_savevm(Monitor
*mon
, const QDict
*qdict
)
1082 save_snapshot(qdict_get_try_str(qdict
, "name"),
1083 true, NULL
, false, NULL
, &err
);
1084 hmp_handle_error(mon
, err
);
1087 void hmp_delvm(Monitor
*mon
, const QDict
*qdict
)
1090 const char *name
= qdict_get_str(qdict
, "name");
1092 delete_snapshot(name
, false, NULL
, &err
);
1093 hmp_handle_error(mon
, err
);
1096 void hmp_announce_self(Monitor
*mon
, const QDict
*qdict
)
1098 const char *interfaces_str
= qdict_get_try_str(qdict
, "interfaces");
1099 const char *id
= qdict_get_try_str(qdict
, "id");
1100 AnnounceParameters
*params
= QAPI_CLONE(AnnounceParameters
,
1101 migrate_announce_params());
1103 qapi_free_strList(params
->interfaces
);
1104 params
->interfaces
= strList_from_comma_list(interfaces_str
);
1105 params
->has_interfaces
= params
->interfaces
!= NULL
;
1106 params
->id
= g_strdup(id
);
1107 qmp_announce_self(params
, NULL
);
1108 qapi_free_AnnounceParameters(params
);
1111 void hmp_migrate_cancel(Monitor
*mon
, const QDict
*qdict
)
1113 qmp_migrate_cancel(NULL
);
1116 void hmp_migrate_continue(Monitor
*mon
, const QDict
*qdict
)
1119 const char *state
= qdict_get_str(qdict
, "state");
1120 int val
= qapi_enum_parse(&MigrationStatus_lookup
, state
, -1, &err
);
1123 qmp_migrate_continue(val
, &err
);
1126 hmp_handle_error(mon
, err
);
1129 void hmp_migrate_incoming(Monitor
*mon
, const QDict
*qdict
)
1132 const char *uri
= qdict_get_str(qdict
, "uri");
1134 qmp_migrate_incoming(uri
, &err
);
1136 hmp_handle_error(mon
, err
);
1139 void hmp_migrate_recover(Monitor
*mon
, const QDict
*qdict
)
1142 const char *uri
= qdict_get_str(qdict
, "uri");
1144 qmp_migrate_recover(uri
, &err
);
1146 hmp_handle_error(mon
, err
);
1149 void hmp_migrate_pause(Monitor
*mon
, const QDict
*qdict
)
1153 qmp_migrate_pause(&err
);
1155 hmp_handle_error(mon
, err
);
1159 void hmp_migrate_set_capability(Monitor
*mon
, const QDict
*qdict
)
1161 const char *cap
= qdict_get_str(qdict
, "capability");
1162 bool state
= qdict_get_bool(qdict
, "state");
1164 MigrationCapabilityStatusList
*caps
= NULL
;
1165 MigrationCapabilityStatus
*value
;
1168 val
= qapi_enum_parse(&MigrationCapability_lookup
, cap
, -1, &err
);
1173 value
= g_malloc0(sizeof(*value
));
1174 value
->capability
= val
;
1175 value
->state
= state
;
1176 QAPI_LIST_PREPEND(caps
, value
);
1177 qmp_migrate_set_capabilities(caps
, &err
);
1178 qapi_free_MigrationCapabilityStatusList(caps
);
1181 hmp_handle_error(mon
, err
);
1184 void hmp_migrate_set_parameter(Monitor
*mon
, const QDict
*qdict
)
1186 const char *param
= qdict_get_str(qdict
, "parameter");
1187 const char *valuestr
= qdict_get_str(qdict
, "value");
1188 Visitor
*v
= string_input_visitor_new(valuestr
);
1189 MigrateSetParameters
*p
= g_new0(MigrateSetParameters
, 1);
1190 uint64_t valuebw
= 0;
1191 uint64_t cache_size
;
1195 val
= qapi_enum_parse(&MigrationParameter_lookup
, param
, -1, &err
);
1201 case MIGRATION_PARAMETER_COMPRESS_LEVEL
:
1202 p
->has_compress_level
= true;
1203 visit_type_uint8(v
, param
, &p
->compress_level
, &err
);
1205 case MIGRATION_PARAMETER_COMPRESS_THREADS
:
1206 p
->has_compress_threads
= true;
1207 visit_type_uint8(v
, param
, &p
->compress_threads
, &err
);
1209 case MIGRATION_PARAMETER_COMPRESS_WAIT_THREAD
:
1210 p
->has_compress_wait_thread
= true;
1211 visit_type_bool(v
, param
, &p
->compress_wait_thread
, &err
);
1213 case MIGRATION_PARAMETER_DECOMPRESS_THREADS
:
1214 p
->has_decompress_threads
= true;
1215 visit_type_uint8(v
, param
, &p
->decompress_threads
, &err
);
1217 case MIGRATION_PARAMETER_THROTTLE_TRIGGER_THRESHOLD
:
1218 p
->has_throttle_trigger_threshold
= true;
1219 visit_type_uint8(v
, param
, &p
->throttle_trigger_threshold
, &err
);
1221 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL
:
1222 p
->has_cpu_throttle_initial
= true;
1223 visit_type_uint8(v
, param
, &p
->cpu_throttle_initial
, &err
);
1225 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT
:
1226 p
->has_cpu_throttle_increment
= true;
1227 visit_type_uint8(v
, param
, &p
->cpu_throttle_increment
, &err
);
1229 case MIGRATION_PARAMETER_CPU_THROTTLE_TAILSLOW
:
1230 p
->has_cpu_throttle_tailslow
= true;
1231 visit_type_bool(v
, param
, &p
->cpu_throttle_tailslow
, &err
);
1233 case MIGRATION_PARAMETER_MAX_CPU_THROTTLE
:
1234 p
->has_max_cpu_throttle
= true;
1235 visit_type_uint8(v
, param
, &p
->max_cpu_throttle
, &err
);
1237 case MIGRATION_PARAMETER_TLS_CREDS
:
1238 p
->tls_creds
= g_new0(StrOrNull
, 1);
1239 p
->tls_creds
->type
= QTYPE_QSTRING
;
1240 visit_type_str(v
, param
, &p
->tls_creds
->u
.s
, &err
);
1242 case MIGRATION_PARAMETER_TLS_HOSTNAME
:
1243 p
->tls_hostname
= g_new0(StrOrNull
, 1);
1244 p
->tls_hostname
->type
= QTYPE_QSTRING
;
1245 visit_type_str(v
, param
, &p
->tls_hostname
->u
.s
, &err
);
1247 case MIGRATION_PARAMETER_TLS_AUTHZ
:
1248 p
->tls_authz
= g_new0(StrOrNull
, 1);
1249 p
->tls_authz
->type
= QTYPE_QSTRING
;
1250 visit_type_str(v
, param
, &p
->tls_authz
->u
.s
, &err
);
1252 case MIGRATION_PARAMETER_MAX_BANDWIDTH
:
1253 p
->has_max_bandwidth
= true;
1255 * Can't use visit_type_size() here, because it
1256 * defaults to Bytes rather than Mebibytes.
1258 ret
= qemu_strtosz_MiB(valuestr
, NULL
, &valuebw
);
1259 if (ret
< 0 || valuebw
> INT64_MAX
1260 || (size_t)valuebw
!= valuebw
) {
1261 error_setg(&err
, "Invalid size %s", valuestr
);
1264 p
->max_bandwidth
= valuebw
;
1266 case MIGRATION_PARAMETER_DOWNTIME_LIMIT
:
1267 p
->has_downtime_limit
= true;
1268 visit_type_size(v
, param
, &p
->downtime_limit
, &err
);
1270 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY
:
1271 p
->has_x_checkpoint_delay
= true;
1272 visit_type_uint32(v
, param
, &p
->x_checkpoint_delay
, &err
);
1274 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL
:
1275 p
->has_block_incremental
= true;
1276 visit_type_bool(v
, param
, &p
->block_incremental
, &err
);
1278 case MIGRATION_PARAMETER_MULTIFD_CHANNELS
:
1279 p
->has_multifd_channels
= true;
1280 visit_type_uint8(v
, param
, &p
->multifd_channels
, &err
);
1282 case MIGRATION_PARAMETER_MULTIFD_COMPRESSION
:
1283 p
->has_multifd_compression
= true;
1284 visit_type_MultiFDCompression(v
, param
, &p
->multifd_compression
,
1287 case MIGRATION_PARAMETER_MULTIFD_ZLIB_LEVEL
:
1288 p
->has_multifd_zlib_level
= true;
1289 visit_type_uint8(v
, param
, &p
->multifd_zlib_level
, &err
);
1291 case MIGRATION_PARAMETER_MULTIFD_ZSTD_LEVEL
:
1292 p
->has_multifd_zstd_level
= true;
1293 visit_type_uint8(v
, param
, &p
->multifd_zstd_level
, &err
);
1295 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE
:
1296 p
->has_xbzrle_cache_size
= true;
1297 if (!visit_type_size(v
, param
, &cache_size
, &err
)) {
1300 if (cache_size
> INT64_MAX
|| (size_t)cache_size
!= cache_size
) {
1301 error_setg(&err
, "Invalid size %s", valuestr
);
1304 p
->xbzrle_cache_size
= cache_size
;
1306 case MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH
:
1307 p
->has_max_postcopy_bandwidth
= true;
1308 visit_type_size(v
, param
, &p
->max_postcopy_bandwidth
, &err
);
1310 case MIGRATION_PARAMETER_ANNOUNCE_INITIAL
:
1311 p
->has_announce_initial
= true;
1312 visit_type_size(v
, param
, &p
->announce_initial
, &err
);
1314 case MIGRATION_PARAMETER_ANNOUNCE_MAX
:
1315 p
->has_announce_max
= true;
1316 visit_type_size(v
, param
, &p
->announce_max
, &err
);
1318 case MIGRATION_PARAMETER_ANNOUNCE_ROUNDS
:
1319 p
->has_announce_rounds
= true;
1320 visit_type_size(v
, param
, &p
->announce_rounds
, &err
);
1322 case MIGRATION_PARAMETER_ANNOUNCE_STEP
:
1323 p
->has_announce_step
= true;
1324 visit_type_size(v
, param
, &p
->announce_step
, &err
);
1326 case MIGRATION_PARAMETER_BLOCK_BITMAP_MAPPING
:
1327 error_setg(&err
, "The block-bitmap-mapping parameter can only be set "
1338 qmp_migrate_set_parameters(p
, &err
);
1341 qapi_free_MigrateSetParameters(p
);
1343 hmp_handle_error(mon
, err
);
1346 void hmp_client_migrate_info(Monitor
*mon
, const QDict
*qdict
)
1349 const char *protocol
= qdict_get_str(qdict
, "protocol");
1350 const char *hostname
= qdict_get_str(qdict
, "hostname");
1351 bool has_port
= qdict_haskey(qdict
, "port");
1352 int port
= qdict_get_try_int(qdict
, "port", -1);
1353 bool has_tls_port
= qdict_haskey(qdict
, "tls-port");
1354 int tls_port
= qdict_get_try_int(qdict
, "tls-port", -1);
1355 const char *cert_subject
= qdict_get_try_str(qdict
, "cert-subject");
1357 qmp_client_migrate_info(protocol
, hostname
,
1358 has_port
, port
, has_tls_port
, tls_port
,
1359 cert_subject
, &err
);
1360 hmp_handle_error(mon
, err
);
1363 void hmp_migrate_start_postcopy(Monitor
*mon
, const QDict
*qdict
)
1366 qmp_migrate_start_postcopy(&err
);
1367 hmp_handle_error(mon
, err
);
1370 void hmp_x_colo_lost_heartbeat(Monitor
*mon
, const QDict
*qdict
)
1374 qmp_x_colo_lost_heartbeat(&err
);
1375 hmp_handle_error(mon
, err
);
1378 void hmp_set_password(Monitor
*mon
, const QDict
*qdict
)
1380 const char *protocol
= qdict_get_str(qdict
, "protocol");
1381 const char *password
= qdict_get_str(qdict
, "password");
1382 const char *display
= qdict_get_try_str(qdict
, "display");
1383 const char *connected
= qdict_get_try_str(qdict
, "connected");
1386 SetPasswordOptions opts
= {
1387 .password
= (char *)password
,
1388 .has_connected
= !!connected
,
1391 opts
.connected
= qapi_enum_parse(&SetPasswordAction_lookup
, connected
,
1392 SET_PASSWORD_ACTION_KEEP
, &err
);
1397 opts
.protocol
= qapi_enum_parse(&DisplayProtocol_lookup
, protocol
,
1398 DISPLAY_PROTOCOL_VNC
, &err
);
1403 if (opts
.protocol
== DISPLAY_PROTOCOL_VNC
) {
1404 opts
.u
.vnc
.has_display
= !!display
;
1405 opts
.u
.vnc
.display
= (char *)display
;
1408 qmp_set_password(&opts
, &err
);
1411 hmp_handle_error(mon
, err
);
1414 void hmp_expire_password(Monitor
*mon
, const QDict
*qdict
)
1416 const char *protocol
= qdict_get_str(qdict
, "protocol");
1417 const char *whenstr
= qdict_get_str(qdict
, "time");
1418 const char *display
= qdict_get_try_str(qdict
, "display");
1421 ExpirePasswordOptions opts
= {
1422 .time
= (char *)whenstr
,
1425 opts
.protocol
= qapi_enum_parse(&DisplayProtocol_lookup
, protocol
,
1426 DISPLAY_PROTOCOL_VNC
, &err
);
1431 if (opts
.protocol
== DISPLAY_PROTOCOL_VNC
) {
1432 opts
.u
.vnc
.has_display
= !!display
;
1433 opts
.u
.vnc
.display
= (char *)display
;
1436 qmp_expire_password(&opts
, &err
);
1439 hmp_handle_error(mon
, err
);
1444 static void hmp_change_read_arg(void *opaque
, const char *password
,
1445 void *readline_opaque
)
1447 qmp_change_vnc_password(password
, NULL
);
1448 monitor_read_command(opaque
, 1);
1452 void hmp_change(Monitor
*mon
, const QDict
*qdict
)
1454 const char *device
= qdict_get_str(qdict
, "device");
1455 const char *target
= qdict_get_str(qdict
, "target");
1456 const char *arg
= qdict_get_try_str(qdict
, "arg");
1457 const char *read_only
= qdict_get_try_str(qdict
, "read-only-mode");
1458 bool force
= qdict_get_try_bool(qdict
, "force", false);
1459 BlockdevChangeReadOnlyMode read_only_mode
= 0;
1463 if (strcmp(device
, "vnc") == 0) {
1466 "Parameter 'read-only-mode' is invalid for VNC\n");
1469 if (strcmp(target
, "passwd") == 0 ||
1470 strcmp(target
, "password") == 0) {
1472 MonitorHMP
*hmp_mon
= container_of(mon
, MonitorHMP
, common
);
1473 monitor_read_password(hmp_mon
, hmp_change_read_arg
, NULL
);
1476 qmp_change_vnc_password(arg
, &err
);
1479 monitor_printf(mon
, "Expected 'password' after 'vnc'\n");
1486 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup
,
1488 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
, &err
);
1494 qmp_blockdev_change_medium(device
, NULL
, target
, arg
, true, force
,
1495 !!read_only
, read_only_mode
,
1500 hmp_handle_error(mon
, err
);
1503 typedef struct HMPMigrationStatus
{
1506 bool is_block_migration
;
1507 } HMPMigrationStatus
;
1509 static void hmp_migrate_status_cb(void *opaque
)
1511 HMPMigrationStatus
*status
= opaque
;
1512 MigrationInfo
*info
;
1514 info
= qmp_query_migrate(NULL
);
1515 if (!info
->has_status
|| info
->status
== MIGRATION_STATUS_ACTIVE
||
1516 info
->status
== MIGRATION_STATUS_SETUP
) {
1520 if (info
->disk
->remaining
) {
1521 progress
= info
->disk
->transferred
* 100 / info
->disk
->total
;
1526 monitor_printf(status
->mon
, "Completed %d %%\r", progress
);
1527 monitor_flush(status
->mon
);
1530 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 1000);
1532 if (status
->is_block_migration
) {
1533 monitor_printf(status
->mon
, "\n");
1535 if (info
->error_desc
) {
1536 error_report("%s", info
->error_desc
);
1538 monitor_resume(status
->mon
);
1539 timer_free(status
->timer
);
1543 qapi_free_MigrationInfo(info
);
1546 void hmp_migrate(Monitor
*mon
, const QDict
*qdict
)
1548 bool detach
= qdict_get_try_bool(qdict
, "detach", false);
1549 bool blk
= qdict_get_try_bool(qdict
, "blk", false);
1550 bool inc
= qdict_get_try_bool(qdict
, "inc", false);
1551 bool resume
= qdict_get_try_bool(qdict
, "resume", false);
1552 const char *uri
= qdict_get_str(qdict
, "uri");
1555 qmp_migrate(uri
, !!blk
, blk
, !!inc
, inc
,
1556 false, false, true, resume
, &err
);
1557 if (hmp_handle_error(mon
, err
)) {
1562 HMPMigrationStatus
*status
;
1564 if (monitor_suspend(mon
) < 0) {
1565 monitor_printf(mon
, "terminal does not allow synchronous "
1566 "migration, continuing detached\n");
1570 status
= g_malloc0(sizeof(*status
));
1572 status
->is_block_migration
= blk
|| inc
;
1573 status
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, hmp_migrate_status_cb
,
1575 timer_mod(status
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
));
1579 void hmp_netdev_add(Monitor
*mon
, const QDict
*qdict
)
1583 const char *type
= qdict_get_try_str(qdict
, "type");
1585 if (type
&& is_help_option(type
)) {
1589 opts
= qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict
, &err
);
1594 netdev_add(opts
, &err
);
1596 qemu_opts_del(opts
);
1600 hmp_handle_error(mon
, err
);
1603 void hmp_netdev_del(Monitor
*mon
, const QDict
*qdict
)
1605 const char *id
= qdict_get_str(qdict
, "id");
1608 qmp_netdev_del(id
, &err
);
1609 hmp_handle_error(mon
, err
);
1612 void hmp_object_add(Monitor
*mon
, const QDict
*qdict
)
1614 const char *options
= qdict_get_str(qdict
, "object");
1617 user_creatable_add_from_str(options
, &err
);
1618 hmp_handle_error(mon
, err
);
1621 void hmp_getfd(Monitor
*mon
, const QDict
*qdict
)
1623 const char *fdname
= qdict_get_str(qdict
, "fdname");
1626 qmp_getfd(fdname
, &err
);
1627 hmp_handle_error(mon
, err
);
1630 void hmp_closefd(Monitor
*mon
, const QDict
*qdict
)
1632 const char *fdname
= qdict_get_str(qdict
, "fdname");
1635 qmp_closefd(fdname
, &err
);
1636 hmp_handle_error(mon
, err
);
1639 void hmp_sendkey(Monitor
*mon
, const QDict
*qdict
)
1641 const char *keys
= qdict_get_str(qdict
, "keys");
1643 KeyValueList
*head
= NULL
, **tail
= &head
;
1644 int has_hold_time
= qdict_haskey(qdict
, "hold-time");
1645 int hold_time
= qdict_get_try_int(qdict
, "hold-time", -1);
1647 const char *separator
;
1651 separator
= qemu_strchrnul(keys
, '-');
1652 keyname_len
= separator
- keys
;
1654 /* Be compatible with old interface, convert user inputted "<" */
1655 if (keys
[0] == '<' && keyname_len
== 1) {
1660 v
= g_malloc0(sizeof(*v
));
1662 if (strstart(keys
, "0x", NULL
)) {
1664 int value
= strtoul(keys
, &endp
, 0);
1665 assert(endp
<= keys
+ keyname_len
);
1666 if (endp
!= keys
+ keyname_len
) {
1669 v
->type
= KEY_VALUE_KIND_NUMBER
;
1670 v
->u
.number
.data
= value
;
1672 int idx
= index_from_key(keys
, keyname_len
);
1673 if (idx
== Q_KEY_CODE__MAX
) {
1676 v
->type
= KEY_VALUE_KIND_QCODE
;
1677 v
->u
.qcode
.data
= idx
;
1679 QAPI_LIST_APPEND(tail
, v
);
1685 keys
= separator
+ 1;
1688 qmp_send_key(head
, has_hold_time
, hold_time
, &err
);
1689 hmp_handle_error(mon
, err
);
1692 qapi_free_KeyValue(v
);
1693 qapi_free_KeyValueList(head
);
1697 monitor_printf(mon
, "invalid parameter: %.*s\n", keyname_len
, keys
);
1702 hmp_screendump(Monitor
*mon
, const QDict
*qdict
)
1704 const char *filename
= qdict_get_str(qdict
, "filename");
1705 const char *id
= qdict_get_try_str(qdict
, "device");
1706 int64_t head
= qdict_get_try_int(qdict
, "head", 0);
1707 const char *input_format
= qdict_get_try_str(qdict
, "format");
1711 format
= qapi_enum_parse(&ImageFormat_lookup
, input_format
,
1712 IMAGE_FORMAT_PPM
, &err
);
1717 qmp_screendump(filename
, id
!= NULL
, id
, id
!= NULL
, head
,
1718 input_format
!= NULL
, format
, &err
);
1720 hmp_handle_error(mon
, err
);
1723 void hmp_chardev_add(Monitor
*mon
, const QDict
*qdict
)
1725 const char *args
= qdict_get_str(qdict
, "args");
1729 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
, true);
1731 error_setg(&err
, "Parsing chardev args failed");
1733 qemu_chr_new_from_opts(opts
, NULL
, &err
);
1734 qemu_opts_del(opts
);
1736 hmp_handle_error(mon
, err
);
1739 void hmp_chardev_change(Monitor
*mon
, const QDict
*qdict
)
1741 const char *args
= qdict_get_str(qdict
, "args");
1744 ChardevBackend
*backend
= NULL
;
1745 ChardevReturn
*ret
= NULL
;
1746 QemuOpts
*opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"), args
,
1749 error_setg(&err
, "Parsing chardev args failed");
1753 id
= qdict_get_str(qdict
, "id");
1754 if (qemu_opts_id(opts
)) {
1755 error_setg(&err
, "Unexpected 'id' parameter");
1759 backend
= qemu_chr_parse_opts(opts
, &err
);
1764 ret
= qmp_chardev_change(id
, backend
, &err
);
1767 qapi_free_ChardevReturn(ret
);
1768 qapi_free_ChardevBackend(backend
);
1769 qemu_opts_del(opts
);
1770 hmp_handle_error(mon
, err
);
1773 void hmp_chardev_remove(Monitor
*mon
, const QDict
*qdict
)
1775 Error
*local_err
= NULL
;
1777 qmp_chardev_remove(qdict_get_str(qdict
, "id"), &local_err
);
1778 hmp_handle_error(mon
, local_err
);
1781 void hmp_chardev_send_break(Monitor
*mon
, const QDict
*qdict
)
1783 Error
*local_err
= NULL
;
1785 qmp_chardev_send_break(qdict_get_str(qdict
, "id"), &local_err
);
1786 hmp_handle_error(mon
, local_err
);
1789 void hmp_object_del(Monitor
*mon
, const QDict
*qdict
)
1791 const char *id
= qdict_get_str(qdict
, "id");
1794 user_creatable_del(id
, &err
);
1795 hmp_handle_error(mon
, err
);
1798 void hmp_info_memory_devices(Monitor
*mon
, const QDict
*qdict
)
1801 MemoryDeviceInfoList
*info_list
= qmp_query_memory_devices(&err
);
1802 MemoryDeviceInfoList
*info
;
1803 VirtioPMEMDeviceInfo
*vpi
;
1804 VirtioMEMDeviceInfo
*vmi
;
1805 MemoryDeviceInfo
*value
;
1806 PCDIMMDeviceInfo
*di
;
1807 SgxEPCDeviceInfo
*se
;
1809 for (info
= info_list
; info
; info
= info
->next
) {
1810 value
= info
->value
;
1813 switch (value
->type
) {
1814 case MEMORY_DEVICE_INFO_KIND_DIMM
:
1815 case MEMORY_DEVICE_INFO_KIND_NVDIMM
:
1816 di
= value
->type
== MEMORY_DEVICE_INFO_KIND_DIMM
?
1817 value
->u
.dimm
.data
: value
->u
.nvdimm
.data
;
1818 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
1819 MemoryDeviceInfoKind_str(value
->type
),
1820 di
->id
? di
->id
: "");
1821 monitor_printf(mon
, " addr: 0x%" PRIx64
"\n", di
->addr
);
1822 monitor_printf(mon
, " slot: %" PRId64
"\n", di
->slot
);
1823 monitor_printf(mon
, " node: %" PRId64
"\n", di
->node
);
1824 monitor_printf(mon
, " size: %" PRIu64
"\n", di
->size
);
1825 monitor_printf(mon
, " memdev: %s\n", di
->memdev
);
1826 monitor_printf(mon
, " hotplugged: %s\n",
1827 di
->hotplugged
? "true" : "false");
1828 monitor_printf(mon
, " hotpluggable: %s\n",
1829 di
->hotpluggable
? "true" : "false");
1831 case MEMORY_DEVICE_INFO_KIND_VIRTIO_PMEM
:
1832 vpi
= value
->u
.virtio_pmem
.data
;
1833 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
1834 MemoryDeviceInfoKind_str(value
->type
),
1835 vpi
->id
? vpi
->id
: "");
1836 monitor_printf(mon
, " memaddr: 0x%" PRIx64
"\n", vpi
->memaddr
);
1837 monitor_printf(mon
, " size: %" PRIu64
"\n", vpi
->size
);
1838 monitor_printf(mon
, " memdev: %s\n", vpi
->memdev
);
1840 case MEMORY_DEVICE_INFO_KIND_VIRTIO_MEM
:
1841 vmi
= value
->u
.virtio_mem
.data
;
1842 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
1843 MemoryDeviceInfoKind_str(value
->type
),
1844 vmi
->id
? vmi
->id
: "");
1845 monitor_printf(mon
, " memaddr: 0x%" PRIx64
"\n", vmi
->memaddr
);
1846 monitor_printf(mon
, " node: %" PRId64
"\n", vmi
->node
);
1847 monitor_printf(mon
, " requested-size: %" PRIu64
"\n",
1848 vmi
->requested_size
);
1849 monitor_printf(mon
, " size: %" PRIu64
"\n", vmi
->size
);
1850 monitor_printf(mon
, " max-size: %" PRIu64
"\n", vmi
->max_size
);
1851 monitor_printf(mon
, " block-size: %" PRIu64
"\n",
1853 monitor_printf(mon
, " memdev: %s\n", vmi
->memdev
);
1855 case MEMORY_DEVICE_INFO_KIND_SGX_EPC
:
1856 se
= value
->u
.sgx_epc
.data
;
1857 monitor_printf(mon
, "Memory device [%s]: \"%s\"\n",
1858 MemoryDeviceInfoKind_str(value
->type
),
1859 se
->id
? se
->id
: "");
1860 monitor_printf(mon
, " memaddr: 0x%" PRIx64
"\n", se
->memaddr
);
1861 monitor_printf(mon
, " size: %" PRIu64
"\n", se
->size
);
1862 monitor_printf(mon
, " node: %" PRId64
"\n", se
->node
);
1863 monitor_printf(mon
, " memdev: %s\n", se
->memdev
);
1866 g_assert_not_reached();
1871 qapi_free_MemoryDeviceInfoList(info_list
);
1872 hmp_handle_error(mon
, err
);
1875 void hmp_info_iothreads(Monitor
*mon
, const QDict
*qdict
)
1877 IOThreadInfoList
*info_list
= qmp_query_iothreads(NULL
);
1878 IOThreadInfoList
*info
;
1879 IOThreadInfo
*value
;
1881 for (info
= info_list
; info
; info
= info
->next
) {
1882 value
= info
->value
;
1883 monitor_printf(mon
, "%s:\n", value
->id
);
1884 monitor_printf(mon
, " thread_id=%" PRId64
"\n", value
->thread_id
);
1885 monitor_printf(mon
, " poll-max-ns=%" PRId64
"\n", value
->poll_max_ns
);
1886 monitor_printf(mon
, " poll-grow=%" PRId64
"\n", value
->poll_grow
);
1887 monitor_printf(mon
, " poll-shrink=%" PRId64
"\n", value
->poll_shrink
);
1888 monitor_printf(mon
, " aio-max-batch=%" PRId64
"\n",
1889 value
->aio_max_batch
);
1892 qapi_free_IOThreadInfoList(info_list
);
1895 void hmp_rocker(Monitor
*mon
, const QDict
*qdict
)
1897 const char *name
= qdict_get_str(qdict
, "name");
1898 RockerSwitch
*rocker
;
1901 rocker
= qmp_query_rocker(name
, &err
);
1902 if (hmp_handle_error(mon
, err
)) {
1906 monitor_printf(mon
, "name: %s\n", rocker
->name
);
1907 monitor_printf(mon
, "id: 0x%" PRIx64
"\n", rocker
->id
);
1908 monitor_printf(mon
, "ports: %d\n", rocker
->ports
);
1910 qapi_free_RockerSwitch(rocker
);
1913 void hmp_rocker_ports(Monitor
*mon
, const QDict
*qdict
)
1915 RockerPortList
*list
, *port
;
1916 const char *name
= qdict_get_str(qdict
, "name");
1919 list
= qmp_query_rocker_ports(name
, &err
);
1920 if (hmp_handle_error(mon
, err
)) {
1924 monitor_printf(mon
, " ena/ speed/ auto\n");
1925 monitor_printf(mon
, " port link duplex neg?\n");
1927 for (port
= list
; port
; port
= port
->next
) {
1928 monitor_printf(mon
, "%10s %-4s %-3s %2s %s\n",
1930 port
->value
->enabled
? port
->value
->link_up
?
1931 "up" : "down" : "!ena",
1932 port
->value
->speed
== 10000 ? "10G" : "??",
1933 port
->value
->duplex
? "FD" : "HD",
1934 port
->value
->autoneg
? "Yes" : "No");
1937 qapi_free_RockerPortList(list
);
1940 void hmp_rocker_of_dpa_flows(Monitor
*mon
, const QDict
*qdict
)
1942 RockerOfDpaFlowList
*list
, *info
;
1943 const char *name
= qdict_get_str(qdict
, "name");
1944 uint32_t tbl_id
= qdict_get_try_int(qdict
, "tbl_id", -1);
1947 list
= qmp_query_rocker_of_dpa_flows(name
, tbl_id
!= -1, tbl_id
, &err
);
1948 if (hmp_handle_error(mon
, err
)) {
1952 monitor_printf(mon
, "prio tbl hits key(mask) --> actions\n");
1954 for (info
= list
; info
; info
= info
->next
) {
1955 RockerOfDpaFlow
*flow
= info
->value
;
1956 RockerOfDpaFlowKey
*key
= flow
->key
;
1957 RockerOfDpaFlowMask
*mask
= flow
->mask
;
1958 RockerOfDpaFlowAction
*action
= flow
->action
;
1961 monitor_printf(mon
, "%-4d %-3d %-4" PRIu64
,
1962 key
->priority
, key
->tbl_id
, flow
->hits
);
1964 monitor_printf(mon
, "%-4d %-3d ",
1965 key
->priority
, key
->tbl_id
);
1968 if (key
->has_in_pport
) {
1969 monitor_printf(mon
, " pport %d", key
->in_pport
);
1970 if (mask
->has_in_pport
) {
1971 monitor_printf(mon
, "(0x%x)", mask
->in_pport
);
1975 if (key
->has_vlan_id
) {
1976 monitor_printf(mon
, " vlan %d",
1977 key
->vlan_id
& VLAN_VID_MASK
);
1978 if (mask
->has_vlan_id
) {
1979 monitor_printf(mon
, "(0x%x)", mask
->vlan_id
);
1983 if (key
->has_tunnel_id
) {
1984 monitor_printf(mon
, " tunnel %d", key
->tunnel_id
);
1985 if (mask
->has_tunnel_id
) {
1986 monitor_printf(mon
, "(0x%x)", mask
->tunnel_id
);
1990 if (key
->has_eth_type
) {
1991 switch (key
->eth_type
) {
1993 monitor_printf(mon
, " ARP");
1996 monitor_printf(mon
, " IP");
1999 monitor_printf(mon
, " IPv6");
2002 monitor_printf(mon
, " LACP");
2005 monitor_printf(mon
, " LLDP");
2008 monitor_printf(mon
, " eth type 0x%04x", key
->eth_type
);
2014 if ((strcmp(key
->eth_src
, "01:00:00:00:00:00") == 0) &&
2016 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2017 monitor_printf(mon
, " src <any mcast/bcast>");
2018 } else if ((strcmp(key
->eth_src
, "00:00:00:00:00:00") == 0) &&
2020 (strcmp(mask
->eth_src
, "01:00:00:00:00:00") == 0)) {
2021 monitor_printf(mon
, " src <any ucast>");
2023 monitor_printf(mon
, " src %s", key
->eth_src
);
2024 if (mask
->eth_src
) {
2025 monitor_printf(mon
, "(%s)", mask
->eth_src
);
2031 if ((strcmp(key
->eth_dst
, "01:00:00:00:00:00") == 0) &&
2033 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2034 monitor_printf(mon
, " dst <any mcast/bcast>");
2035 } else if ((strcmp(key
->eth_dst
, "00:00:00:00:00:00") == 0) &&
2037 (strcmp(mask
->eth_dst
, "01:00:00:00:00:00") == 0)) {
2038 monitor_printf(mon
, " dst <any ucast>");
2040 monitor_printf(mon
, " dst %s", key
->eth_dst
);
2041 if (mask
->eth_dst
) {
2042 monitor_printf(mon
, "(%s)", mask
->eth_dst
);
2047 if (key
->has_ip_proto
) {
2048 monitor_printf(mon
, " proto %d", key
->ip_proto
);
2049 if (mask
->has_ip_proto
) {
2050 monitor_printf(mon
, "(0x%x)", mask
->ip_proto
);
2054 if (key
->has_ip_tos
) {
2055 monitor_printf(mon
, " TOS %d", key
->ip_tos
);
2056 if (mask
->has_ip_tos
) {
2057 monitor_printf(mon
, "(0x%x)", mask
->ip_tos
);
2062 monitor_printf(mon
, " dst %s", key
->ip_dst
);
2065 if (action
->has_goto_tbl
|| action
->has_group_id
||
2066 action
->has_new_vlan_id
) {
2067 monitor_printf(mon
, " -->");
2070 if (action
->has_new_vlan_id
) {
2071 monitor_printf(mon
, " apply new vlan %d",
2072 ntohs(action
->new_vlan_id
));
2075 if (action
->has_group_id
) {
2076 monitor_printf(mon
, " write group 0x%08x", action
->group_id
);
2079 if (action
->has_goto_tbl
) {
2080 monitor_printf(mon
, " goto tbl %d", action
->goto_tbl
);
2083 monitor_printf(mon
, "\n");
2086 qapi_free_RockerOfDpaFlowList(list
);
2089 void hmp_rocker_of_dpa_groups(Monitor
*mon
, const QDict
*qdict
)
2091 RockerOfDpaGroupList
*list
, *g
;
2092 const char *name
= qdict_get_str(qdict
, "name");
2093 uint8_t type
= qdict_get_try_int(qdict
, "type", 9);
2096 list
= qmp_query_rocker_of_dpa_groups(name
, type
!= 9, type
, &err
);
2097 if (hmp_handle_error(mon
, err
)) {
2101 monitor_printf(mon
, "id (decode) --> buckets\n");
2103 for (g
= list
; g
; g
= g
->next
) {
2104 RockerOfDpaGroup
*group
= g
->value
;
2107 monitor_printf(mon
, "0x%08x", group
->id
);
2109 monitor_printf(mon
, " (type %s", group
->type
== 0 ? "L2 interface" :
2110 group
->type
== 1 ? "L2 rewrite" :
2111 group
->type
== 2 ? "L3 unicast" :
2112 group
->type
== 3 ? "L2 multicast" :
2113 group
->type
== 4 ? "L2 flood" :
2114 group
->type
== 5 ? "L3 interface" :
2115 group
->type
== 6 ? "L3 multicast" :
2116 group
->type
== 7 ? "L3 ECMP" :
2117 group
->type
== 8 ? "L2 overlay" :
2120 if (group
->has_vlan_id
) {
2121 monitor_printf(mon
, " vlan %d", group
->vlan_id
);
2124 if (group
->has_pport
) {
2125 monitor_printf(mon
, " pport %d", group
->pport
);
2128 if (group
->has_index
) {
2129 monitor_printf(mon
, " index %d", group
->index
);
2132 monitor_printf(mon
, ") -->");
2134 if (group
->has_set_vlan_id
&& group
->set_vlan_id
) {
2136 monitor_printf(mon
, " set vlan %d",
2137 group
->set_vlan_id
& VLAN_VID_MASK
);
2140 if (group
->set_eth_src
) {
2143 monitor_printf(mon
, " set");
2145 monitor_printf(mon
, " src %s", group
->set_eth_src
);
2148 if (group
->set_eth_dst
) {
2150 monitor_printf(mon
, " set");
2152 monitor_printf(mon
, " dst %s", group
->set_eth_dst
);
2155 if (group
->has_ttl_check
&& group
->ttl_check
) {
2156 monitor_printf(mon
, " check TTL");
2159 if (group
->has_group_id
&& group
->group_id
) {
2160 monitor_printf(mon
, " group id 0x%08x", group
->group_id
);
2163 if (group
->has_pop_vlan
&& group
->pop_vlan
) {
2164 monitor_printf(mon
, " pop vlan");
2167 if (group
->has_out_pport
) {
2168 monitor_printf(mon
, " out pport %d", group
->out_pport
);
2171 if (group
->has_group_ids
) {
2172 struct uint32List
*id
;
2174 monitor_printf(mon
, " groups [");
2175 for (id
= group
->group_ids
; id
; id
= id
->next
) {
2176 monitor_printf(mon
, "0x%08x", id
->value
);
2178 monitor_printf(mon
, ",");
2181 monitor_printf(mon
, "]");
2184 monitor_printf(mon
, "\n");
2187 qapi_free_RockerOfDpaGroupList(list
);
2190 void hmp_info_vm_generation_id(Monitor
*mon
, const QDict
*qdict
)
2193 GuidInfo
*info
= qmp_query_vm_generation_id(&err
);
2195 monitor_printf(mon
, "%s\n", info
->guid
);
2197 hmp_handle_error(mon
, err
);
2198 qapi_free_GuidInfo(info
);
2201 void hmp_info_memory_size_summary(Monitor
*mon
, const QDict
*qdict
)
2204 MemoryInfo
*info
= qmp_query_memory_size_summary(&err
);
2206 monitor_printf(mon
, "base memory: %" PRIu64
"\n",
2209 if (info
->has_plugged_memory
) {
2210 monitor_printf(mon
, "plugged memory: %" PRIu64
"\n",
2211 info
->plugged_memory
);
2214 qapi_free_MemoryInfo(info
);
2216 hmp_handle_error(mon
, err
);
2219 static void print_stats_schema_value(Monitor
*mon
, StatsSchemaValue
*value
)
2221 const char *unit
= NULL
;
2222 monitor_printf(mon
, " %s (%s%s", value
->name
, StatsType_str(value
->type
),
2223 value
->has_unit
|| value
->exponent
? ", " : "");
2225 if (value
->has_unit
) {
2226 if (value
->unit
== STATS_UNIT_SECONDS
) {
2228 } else if (value
->unit
== STATS_UNIT_BYTES
) {
2233 if (unit
&& value
->base
== 10 &&
2234 value
->exponent
>= -18 && value
->exponent
<= 18 &&
2235 value
->exponent
% 3 == 0) {
2236 monitor_puts(mon
, si_prefix(value
->exponent
));
2237 } else if (unit
&& value
->base
== 2 &&
2238 value
->exponent
>= 0 && value
->exponent
<= 60 &&
2239 value
->exponent
% 10 == 0) {
2241 monitor_puts(mon
, iec_binary_prefix(value
->exponent
));
2242 } else if (value
->exponent
) {
2243 /* Use exponential notation and write the unit's English name */
2244 monitor_printf(mon
, "* %d^%d%s",
2245 value
->base
, value
->exponent
,
2246 value
->has_unit
? " " : "");
2250 if (value
->has_unit
) {
2251 monitor_puts(mon
, unit
? unit
: StatsUnit_str(value
->unit
));
2254 /* Print bucket size for linear histograms */
2255 if (value
->type
== STATS_TYPE_LINEAR_HISTOGRAM
&& value
->has_bucket_size
) {
2256 monitor_printf(mon
, ", bucket size=%d", value
->bucket_size
);
2258 monitor_printf(mon
, ")");
2261 static StatsSchemaValueList
*find_schema_value_list(
2262 StatsSchemaList
*list
, StatsProvider provider
,
2265 StatsSchemaList
*node
;
2267 for (node
= list
; node
; node
= node
->next
) {
2268 if (node
->value
->provider
== provider
&&
2269 node
->value
->target
== target
) {
2270 return node
->value
->stats
;
2276 static void print_stats_results(Monitor
*mon
, StatsTarget target
,
2278 StatsResult
*result
,
2279 StatsSchemaList
*schema
)
2281 /* Find provider schema */
2282 StatsSchemaValueList
*schema_value_list
=
2283 find_schema_value_list(schema
, result
->provider
, target
);
2284 StatsList
*stats_list
;
2286 if (!schema_value_list
) {
2287 monitor_printf(mon
, "failed to find schema list for %s\n",
2288 StatsProvider_str(result
->provider
));
2292 if (show_provider
) {
2293 monitor_printf(mon
, "provider: %s\n",
2294 StatsProvider_str(result
->provider
));
2297 for (stats_list
= result
->stats
; stats_list
;
2298 stats_list
= stats_list
->next
,
2299 schema_value_list
= schema_value_list
->next
) {
2301 Stats
*stats
= stats_list
->value
;
2302 StatsValue
*stats_value
= stats
->value
;
2303 StatsSchemaValue
*schema_value
= schema_value_list
->value
;
2305 /* Find schema entry */
2306 while (!g_str_equal(stats
->name
, schema_value
->name
)) {
2307 if (!schema_value_list
->next
) {
2308 monitor_printf(mon
, "failed to find schema entry for %s\n",
2312 schema_value_list
= schema_value_list
->next
;
2313 schema_value
= schema_value_list
->value
;
2316 print_stats_schema_value(mon
, schema_value
);
2318 if (stats_value
->type
== QTYPE_QNUM
) {
2319 monitor_printf(mon
, ": %" PRId64
"\n", stats_value
->u
.scalar
);
2320 } else if (stats_value
->type
== QTYPE_QBOOL
) {
2321 monitor_printf(mon
, ": %s\n", stats_value
->u
.boolean
? "yes" : "no");
2322 } else if (stats_value
->type
== QTYPE_QLIST
) {
2326 monitor_printf(mon
, ": ");
2327 for (list
= stats_value
->u
.list
, i
= 1;
2329 list
= list
->next
, i
++) {
2330 monitor_printf(mon
, "[%d]=%" PRId64
" ", i
, list
->value
);
2332 monitor_printf(mon
, "\n");
2337 /* Create the StatsFilter that is needed for an "info stats" invocation. */
2338 static StatsFilter
*stats_filter(StatsTarget target
, const char *names
,
2339 int cpu_index
, StatsProvider provider
)
2341 StatsFilter
*filter
= g_malloc0(sizeof(*filter
));
2342 StatsProvider provider_idx
;
2343 StatsRequestList
*request_list
= NULL
;
2345 filter
->target
= target
;
2347 case STATS_TARGET_VM
:
2349 case STATS_TARGET_VCPU
:
2351 strList
*vcpu_list
= NULL
;
2352 CPUState
*cpu
= qemu_get_cpu(cpu_index
);
2353 char *canonical_path
= object_get_canonical_path(OBJECT(cpu
));
2355 QAPI_LIST_PREPEND(vcpu_list
, canonical_path
);
2356 filter
->u
.vcpu
.has_vcpus
= true;
2357 filter
->u
.vcpu
.vcpus
= vcpu_list
;
2364 if (!names
&& provider
== STATS_PROVIDER__MAX
) {
2369 * "info stats" can only query either one or all the providers. Querying
2370 * by name, but not by provider, requires the creation of one filter per
2373 for (provider_idx
= 0; provider_idx
< STATS_PROVIDER__MAX
; provider_idx
++) {
2374 if (provider
== STATS_PROVIDER__MAX
|| provider
== provider_idx
) {
2375 StatsRequest
*request
= g_new0(StatsRequest
, 1);
2376 request
->provider
= provider_idx
;
2377 if (names
&& !g_str_equal(names
, "*")) {
2378 request
->has_names
= true;
2379 request
->names
= strList_from_comma_list(names
);
2381 QAPI_LIST_PREPEND(request_list
, request
);
2385 filter
->has_providers
= true;
2386 filter
->providers
= request_list
;
2390 void hmp_info_stats(Monitor
*mon
, const QDict
*qdict
)
2392 const char *target_str
= qdict_get_str(qdict
, "target");
2393 const char *provider_str
= qdict_get_try_str(qdict
, "provider");
2394 const char *names
= qdict_get_try_str(qdict
, "names");
2396 StatsProvider provider
= STATS_PROVIDER__MAX
;
2399 g_autoptr(StatsSchemaList
) schema
= NULL
;
2400 g_autoptr(StatsResultList
) stats
= NULL
;
2401 g_autoptr(StatsFilter
) filter
= NULL
;
2402 StatsResultList
*entry
;
2404 target
= qapi_enum_parse(&StatsTarget_lookup
, target_str
, -1, &err
);
2406 monitor_printf(mon
, "invalid stats target %s\n", target_str
);
2410 provider
= qapi_enum_parse(&StatsProvider_lookup
, provider_str
, -1, &err
);
2412 monitor_printf(mon
, "invalid stats provider %s\n", provider_str
);
2417 schema
= qmp_query_stats_schemas(provider_str
? true : false,
2424 case STATS_TARGET_VM
:
2425 filter
= stats_filter(target
, names
, -1, provider
);
2427 case STATS_TARGET_VCPU
: {}
2428 int cpu_index
= monitor_get_cpu_index(mon
);
2429 filter
= stats_filter(target
, names
, cpu_index
, provider
);
2435 stats
= qmp_query_stats(filter
, &err
);
2439 for (entry
= stats
; entry
; entry
= entry
->next
) {
2440 print_stats_results(mon
, target
, provider_str
== NULL
, entry
->value
, schema
);
2445 monitor_printf(mon
, "%s\n", error_get_pretty(err
));
2451 static void hmp_virtio_dump_protocols(Monitor
*mon
,
2452 VhostDeviceProtocols
*pcol
)
2454 strList
*pcol_list
= pcol
->protocols
;
2456 monitor_printf(mon
, "\t%s", pcol_list
->value
);
2457 pcol_list
= pcol_list
->next
;
2458 if (pcol_list
!= NULL
) {
2459 monitor_printf(mon
, ",\n");
2462 monitor_printf(mon
, "\n");
2463 if (pcol
->has_unknown_protocols
) {
2464 monitor_printf(mon
, " unknown-protocols(0x%016"PRIx64
")\n",
2465 pcol
->unknown_protocols
);
2469 static void hmp_virtio_dump_status(Monitor
*mon
,
2470 VirtioDeviceStatus
*status
)
2472 strList
*status_list
= status
->statuses
;
2473 while (status_list
) {
2474 monitor_printf(mon
, "\t%s", status_list
->value
);
2475 status_list
= status_list
->next
;
2476 if (status_list
!= NULL
) {
2477 monitor_printf(mon
, ",\n");
2480 monitor_printf(mon
, "\n");
2481 if (status
->has_unknown_statuses
) {
2482 monitor_printf(mon
, " unknown-statuses(0x%016"PRIx32
")\n",
2483 status
->unknown_statuses
);
2487 static void hmp_virtio_dump_features(Monitor
*mon
,
2488 VirtioDeviceFeatures
*features
)
2490 strList
*transport_list
= features
->transports
;
2491 while (transport_list
) {
2492 monitor_printf(mon
, "\t%s", transport_list
->value
);
2493 transport_list
= transport_list
->next
;
2494 if (transport_list
!= NULL
) {
2495 monitor_printf(mon
, ",\n");
2499 monitor_printf(mon
, "\n");
2500 strList
*list
= features
->dev_features
;
2503 monitor_printf(mon
, "\t%s", list
->value
);
2506 monitor_printf(mon
, ",\n");
2509 monitor_printf(mon
, "\n");
2512 if (features
->has_unknown_dev_features
) {
2513 monitor_printf(mon
, " unknown-features(0x%016"PRIx64
")\n",
2514 features
->unknown_dev_features
);
2518 void hmp_virtio_query(Monitor
*mon
, const QDict
*qdict
)
2521 VirtioInfoList
*list
= qmp_x_query_virtio(&err
);
2522 VirtioInfoList
*node
;
2525 hmp_handle_error(mon
, err
);
2530 monitor_printf(mon
, "No VirtIO devices\n");
2536 monitor_printf(mon
, "%s [%s]\n", node
->value
->path
,
2540 qapi_free_VirtioInfoList(list
);
2543 void hmp_virtio_status(Monitor
*mon
, const QDict
*qdict
)
2546 const char *path
= qdict_get_try_str(qdict
, "path");
2547 VirtioStatus
*s
= qmp_x_query_virtio_status(path
, &err
);
2550 hmp_handle_error(mon
, err
);
2554 monitor_printf(mon
, "%s:\n", path
);
2555 monitor_printf(mon
, " device_name: %s %s\n",
2556 s
->name
, s
->has_vhost_dev
? "(vhost)" : "");
2557 monitor_printf(mon
, " device_id: %d\n", s
->device_id
);
2558 monitor_printf(mon
, " vhost_started: %s\n",
2559 s
->vhost_started
? "true" : "false");
2560 monitor_printf(mon
, " bus_name: %s\n", s
->bus_name
);
2561 monitor_printf(mon
, " broken: %s\n",
2562 s
->broken
? "true" : "false");
2563 monitor_printf(mon
, " disabled: %s\n",
2564 s
->disabled
? "true" : "false");
2565 monitor_printf(mon
, " disable_legacy_check: %s\n",
2566 s
->disable_legacy_check
? "true" : "false");
2567 monitor_printf(mon
, " started: %s\n",
2568 s
->started
? "true" : "false");
2569 monitor_printf(mon
, " use_started: %s\n",
2570 s
->use_started
? "true" : "false");
2571 monitor_printf(mon
, " start_on_kick: %s\n",
2572 s
->start_on_kick
? "true" : "false");
2573 monitor_printf(mon
, " use_guest_notifier_mask: %s\n",
2574 s
->use_guest_notifier_mask
? "true" : "false");
2575 monitor_printf(mon
, " vm_running: %s\n",
2576 s
->vm_running
? "true" : "false");
2577 monitor_printf(mon
, " num_vqs: %"PRId64
"\n", s
->num_vqs
);
2578 monitor_printf(mon
, " queue_sel: %d\n",
2580 monitor_printf(mon
, " isr: %d\n", s
->isr
);
2581 monitor_printf(mon
, " endianness: %s\n",
2583 monitor_printf(mon
, " status:\n");
2584 hmp_virtio_dump_status(mon
, s
->status
);
2585 monitor_printf(mon
, " Guest features:\n");
2586 hmp_virtio_dump_features(mon
, s
->guest_features
);
2587 monitor_printf(mon
, " Host features:\n");
2588 hmp_virtio_dump_features(mon
, s
->host_features
);
2589 monitor_printf(mon
, " Backend features:\n");
2590 hmp_virtio_dump_features(mon
, s
->backend_features
);
2592 if (s
->has_vhost_dev
) {
2593 monitor_printf(mon
, " VHost:\n");
2594 monitor_printf(mon
, " nvqs: %d\n",
2595 s
->vhost_dev
->nvqs
);
2596 monitor_printf(mon
, " vq_index: %"PRId64
"\n",
2597 s
->vhost_dev
->vq_index
);
2598 monitor_printf(mon
, " max_queues: %"PRId64
"\n",
2599 s
->vhost_dev
->max_queues
);
2600 monitor_printf(mon
, " n_mem_sections: %"PRId64
"\n",
2601 s
->vhost_dev
->n_mem_sections
);
2602 monitor_printf(mon
, " n_tmp_sections: %"PRId64
"\n",
2603 s
->vhost_dev
->n_tmp_sections
);
2604 monitor_printf(mon
, " backend_cap: %"PRId64
"\n",
2605 s
->vhost_dev
->backend_cap
);
2606 monitor_printf(mon
, " log_enabled: %s\n",
2607 s
->vhost_dev
->log_enabled
? "true" : "false");
2608 monitor_printf(mon
, " log_size: %"PRId64
"\n",
2609 s
->vhost_dev
->log_size
);
2610 monitor_printf(mon
, " Features:\n");
2611 hmp_virtio_dump_features(mon
, s
->vhost_dev
->features
);
2612 monitor_printf(mon
, " Acked features:\n");
2613 hmp_virtio_dump_features(mon
, s
->vhost_dev
->acked_features
);
2614 monitor_printf(mon
, " Backend features:\n");
2615 hmp_virtio_dump_features(mon
, s
->vhost_dev
->backend_features
);
2616 monitor_printf(mon
, " Protocol features:\n");
2617 hmp_virtio_dump_protocols(mon
, s
->vhost_dev
->protocol_features
);
2620 qapi_free_VirtioStatus(s
);
2623 void hmp_vhost_queue_status(Monitor
*mon
, const QDict
*qdict
)
2626 const char *path
= qdict_get_try_str(qdict
, "path");
2627 int queue
= qdict_get_int(qdict
, "queue");
2628 VirtVhostQueueStatus
*s
=
2629 qmp_x_query_virtio_vhost_queue_status(path
, queue
, &err
);
2632 hmp_handle_error(mon
, err
);
2636 monitor_printf(mon
, "%s:\n", path
);
2637 monitor_printf(mon
, " device_name: %s (vhost)\n",
2639 monitor_printf(mon
, " kick: %"PRId64
"\n", s
->kick
);
2640 monitor_printf(mon
, " call: %"PRId64
"\n", s
->call
);
2641 monitor_printf(mon
, " VRing:\n");
2642 monitor_printf(mon
, " num: %"PRId64
"\n", s
->num
);
2643 monitor_printf(mon
, " desc: 0x%016"PRIx64
"\n", s
->desc
);
2644 monitor_printf(mon
, " desc_phys: 0x%016"PRIx64
"\n",
2646 monitor_printf(mon
, " desc_size: %"PRId32
"\n", s
->desc_size
);
2647 monitor_printf(mon
, " avail: 0x%016"PRIx64
"\n", s
->avail
);
2648 monitor_printf(mon
, " avail_phys: 0x%016"PRIx64
"\n",
2650 monitor_printf(mon
, " avail_size: %"PRId32
"\n", s
->avail_size
);
2651 monitor_printf(mon
, " used: 0x%016"PRIx64
"\n", s
->used
);
2652 monitor_printf(mon
, " used_phys: 0x%016"PRIx64
"\n",
2654 monitor_printf(mon
, " used_size: %"PRId32
"\n", s
->used_size
);
2656 qapi_free_VirtVhostQueueStatus(s
);
2659 void hmp_virtio_queue_status(Monitor
*mon
, const QDict
*qdict
)
2662 const char *path
= qdict_get_try_str(qdict
, "path");
2663 int queue
= qdict_get_int(qdict
, "queue");
2664 VirtQueueStatus
*s
= qmp_x_query_virtio_queue_status(path
, queue
, &err
);
2667 hmp_handle_error(mon
, err
);
2671 monitor_printf(mon
, "%s:\n", path
);
2672 monitor_printf(mon
, " device_name: %s\n", s
->name
);
2673 monitor_printf(mon
, " queue_index: %d\n", s
->queue_index
);
2674 monitor_printf(mon
, " inuse: %d\n", s
->inuse
);
2675 monitor_printf(mon
, " used_idx: %d\n", s
->used_idx
);
2676 monitor_printf(mon
, " signalled_used: %d\n",
2678 monitor_printf(mon
, " signalled_used_valid: %s\n",
2679 s
->signalled_used_valid
? "true" : "false");
2680 if (s
->has_last_avail_idx
) {
2681 monitor_printf(mon
, " last_avail_idx: %d\n",
2684 if (s
->has_shadow_avail_idx
) {
2685 monitor_printf(mon
, " shadow_avail_idx: %d\n",
2686 s
->shadow_avail_idx
);
2688 monitor_printf(mon
, " VRing:\n");
2689 monitor_printf(mon
, " num: %"PRId32
"\n", s
->vring_num
);
2690 monitor_printf(mon
, " num_default: %"PRId32
"\n",
2691 s
->vring_num_default
);
2692 monitor_printf(mon
, " align: %"PRId32
"\n",
2694 monitor_printf(mon
, " desc: 0x%016"PRIx64
"\n",
2696 monitor_printf(mon
, " avail: 0x%016"PRIx64
"\n",
2698 monitor_printf(mon
, " used: 0x%016"PRIx64
"\n",
2701 qapi_free_VirtQueueStatus(s
);
2704 void hmp_virtio_queue_element(Monitor
*mon
, const QDict
*qdict
)
2707 const char *path
= qdict_get_try_str(qdict
, "path");
2708 int queue
= qdict_get_int(qdict
, "queue");
2709 int index
= qdict_get_try_int(qdict
, "index", -1);
2710 VirtioQueueElement
*e
;
2711 VirtioRingDescList
*list
;
2713 e
= qmp_x_query_virtio_queue_element(path
, queue
, index
!= -1,
2716 hmp_handle_error(mon
, err
);
2720 monitor_printf(mon
, "%s:\n", path
);
2721 monitor_printf(mon
, " device_name: %s\n", e
->name
);
2722 monitor_printf(mon
, " index: %d\n", e
->index
);
2723 monitor_printf(mon
, " desc:\n");
2724 monitor_printf(mon
, " descs:\n");
2728 monitor_printf(mon
, " addr 0x%"PRIx64
" len %d",
2729 list
->value
->addr
, list
->value
->len
);
2730 if (list
->value
->flags
) {
2731 strList
*flag
= list
->value
->flags
;
2732 monitor_printf(mon
, " (");
2734 monitor_printf(mon
, "%s", flag
->value
);
2737 monitor_printf(mon
, ", ");
2740 monitor_printf(mon
, ")");
2744 monitor_printf(mon
, ",\n");
2747 monitor_printf(mon
, "\n");
2748 monitor_printf(mon
, " avail:\n");
2749 monitor_printf(mon
, " flags: %d\n", e
->avail
->flags
);
2750 monitor_printf(mon
, " idx: %d\n", e
->avail
->idx
);
2751 monitor_printf(mon
, " ring: %d\n", e
->avail
->ring
);
2752 monitor_printf(mon
, " used:\n");
2753 monitor_printf(mon
, " flags: %d\n", e
->used
->flags
);
2754 monitor_printf(mon
, " idx: %d\n", e
->used
->idx
);
2756 qapi_free_VirtioQueueElement(e
);