crypto: cipher: introduce qcrypto_cipher_ctx_new for nettle-backend
[qemu/ar7.git] / hmp.c
blobb42ae59a293da0aaacaae0b225aebaf119a29fee
1 /*
2 * Human Monitor Interface
4 * Copyright IBM, Corp. 2011
6 * Authors:
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 "hmp.h"
18 #include "net/net.h"
19 #include "net/eth.h"
20 #include "chardev/char.h"
21 #include "sysemu/block-backend.h"
22 #include "sysemu/sysemu.h"
23 #include "qemu/config-file.h"
24 #include "qemu/option.h"
25 #include "qemu/timer.h"
26 #include "qmp-commands.h"
27 #include "qemu/sockets.h"
28 #include "monitor/monitor.h"
29 #include "monitor/qdev.h"
30 #include "qapi/opts-visitor.h"
31 #include "qapi/qmp/qerror.h"
32 #include "qapi/string-input-visitor.h"
33 #include "qapi/string-output-visitor.h"
34 #include "qapi/util.h"
35 #include "qapi-visit.h"
36 #include "qom/object_interfaces.h"
37 #include "ui/console.h"
38 #include "block/nbd.h"
39 #include "block/qapi.h"
40 #include "qemu-io.h"
41 #include "qemu/cutils.h"
42 #include "qemu/error-report.h"
43 #include "exec/ramlist.h"
44 #include "hw/intc/intc.h"
45 #include "migration/snapshot.h"
46 #include "migration/misc.h"
48 #ifdef CONFIG_SPICE
49 #include <spice/enums.h>
50 #endif
52 static void hmp_handle_error(Monitor *mon, Error **errp)
54 assert(errp);
55 if (*errp) {
56 error_report_err(*errp);
60 void hmp_info_name(Monitor *mon, const QDict *qdict)
62 NameInfo *info;
64 info = qmp_query_name(NULL);
65 if (info->has_name) {
66 monitor_printf(mon, "%s\n", info->name);
68 qapi_free_NameInfo(info);
71 void hmp_info_version(Monitor *mon, const QDict *qdict)
73 VersionInfo *info;
75 info = qmp_query_version(NULL);
77 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
78 info->qemu->major, info->qemu->minor, info->qemu->micro,
79 info->package);
81 qapi_free_VersionInfo(info);
84 void hmp_info_kvm(Monitor *mon, const QDict *qdict)
86 KvmInfo *info;
88 info = qmp_query_kvm(NULL);
89 monitor_printf(mon, "kvm support: ");
90 if (info->present) {
91 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
92 } else {
93 monitor_printf(mon, "not compiled\n");
96 qapi_free_KvmInfo(info);
99 void hmp_info_status(Monitor *mon, const QDict *qdict)
101 StatusInfo *info;
103 info = qmp_query_status(NULL);
105 monitor_printf(mon, "VM status: %s%s",
106 info->running ? "running" : "paused",
107 info->singlestep ? " (single step mode)" : "");
109 if (!info->running && info->status != RUN_STATE_PAUSED) {
110 monitor_printf(mon, " (%s)", RunState_lookup[info->status]);
113 monitor_printf(mon, "\n");
115 qapi_free_StatusInfo(info);
118 void hmp_info_uuid(Monitor *mon, const QDict *qdict)
120 UuidInfo *info;
122 info = qmp_query_uuid(NULL);
123 monitor_printf(mon, "%s\n", info->UUID);
124 qapi_free_UuidInfo(info);
127 void hmp_info_chardev(Monitor *mon, const QDict *qdict)
129 ChardevInfoList *char_info, *info;
131 char_info = qmp_query_chardev(NULL);
132 for (info = char_info; info; info = info->next) {
133 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
134 info->value->filename);
137 qapi_free_ChardevInfoList(char_info);
140 void hmp_info_mice(Monitor *mon, const QDict *qdict)
142 MouseInfoList *mice_list, *mouse;
144 mice_list = qmp_query_mice(NULL);
145 if (!mice_list) {
146 monitor_printf(mon, "No mouse devices connected\n");
147 return;
150 for (mouse = mice_list; mouse; mouse = mouse->next) {
151 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
152 mouse->value->current ? '*' : ' ',
153 mouse->value->index, mouse->value->name,
154 mouse->value->absolute ? " (absolute)" : "");
157 qapi_free_MouseInfoList(mice_list);
160 void hmp_info_migrate(Monitor *mon, const QDict *qdict)
162 MigrationInfo *info;
163 MigrationCapabilityStatusList *caps, *cap;
165 info = qmp_query_migrate(NULL);
166 caps = qmp_query_migrate_capabilities(NULL);
168 migration_global_dump(mon);
170 /* do not display parameters during setup */
171 if (info->has_status && caps) {
172 monitor_printf(mon, "capabilities: ");
173 for (cap = caps; cap; cap = cap->next) {
174 monitor_printf(mon, "%s: %s ",
175 MigrationCapability_lookup[cap->value->capability],
176 cap->value->state ? "on" : "off");
178 monitor_printf(mon, "\n");
181 if (info->has_status) {
182 monitor_printf(mon, "Migration status: %s",
183 MigrationStatus_lookup[info->status]);
184 if (info->status == MIGRATION_STATUS_FAILED &&
185 info->has_error_desc) {
186 monitor_printf(mon, " (%s)\n", info->error_desc);
187 } else {
188 monitor_printf(mon, "\n");
191 monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
192 info->total_time);
193 if (info->has_expected_downtime) {
194 monitor_printf(mon, "expected downtime: %" PRIu64 " milliseconds\n",
195 info->expected_downtime);
197 if (info->has_downtime) {
198 monitor_printf(mon, "downtime: %" PRIu64 " milliseconds\n",
199 info->downtime);
201 if (info->has_setup_time) {
202 monitor_printf(mon, "setup: %" PRIu64 " milliseconds\n",
203 info->setup_time);
207 if (info->has_ram) {
208 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
209 info->ram->transferred >> 10);
210 monitor_printf(mon, "throughput: %0.2f mbps\n",
211 info->ram->mbps);
212 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
213 info->ram->remaining >> 10);
214 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
215 info->ram->total >> 10);
216 monitor_printf(mon, "duplicate: %" PRIu64 " pages\n",
217 info->ram->duplicate);
218 monitor_printf(mon, "skipped: %" PRIu64 " pages\n",
219 info->ram->skipped);
220 monitor_printf(mon, "normal: %" PRIu64 " pages\n",
221 info->ram->normal);
222 monitor_printf(mon, "normal bytes: %" PRIu64 " kbytes\n",
223 info->ram->normal_bytes >> 10);
224 monitor_printf(mon, "dirty sync count: %" PRIu64 "\n",
225 info->ram->dirty_sync_count);
226 monitor_printf(mon, "page size: %" PRIu64 " kbytes\n",
227 info->ram->page_size >> 10);
229 if (info->ram->dirty_pages_rate) {
230 monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
231 info->ram->dirty_pages_rate);
233 if (info->ram->postcopy_requests) {
234 monitor_printf(mon, "postcopy request count: %" PRIu64 "\n",
235 info->ram->postcopy_requests);
239 if (info->has_disk) {
240 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
241 info->disk->transferred >> 10);
242 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
243 info->disk->remaining >> 10);
244 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
245 info->disk->total >> 10);
248 if (info->has_xbzrle_cache) {
249 monitor_printf(mon, "cache size: %" PRIu64 " bytes\n",
250 info->xbzrle_cache->cache_size);
251 monitor_printf(mon, "xbzrle transferred: %" PRIu64 " kbytes\n",
252 info->xbzrle_cache->bytes >> 10);
253 monitor_printf(mon, "xbzrle pages: %" PRIu64 " pages\n",
254 info->xbzrle_cache->pages);
255 monitor_printf(mon, "xbzrle cache miss: %" PRIu64 "\n",
256 info->xbzrle_cache->cache_miss);
257 monitor_printf(mon, "xbzrle cache miss rate: %0.2f\n",
258 info->xbzrle_cache->cache_miss_rate);
259 monitor_printf(mon, "xbzrle overflow : %" PRIu64 "\n",
260 info->xbzrle_cache->overflow);
263 if (info->has_cpu_throttle_percentage) {
264 monitor_printf(mon, "cpu throttle percentage: %" PRIu64 "\n",
265 info->cpu_throttle_percentage);
268 qapi_free_MigrationInfo(info);
269 qapi_free_MigrationCapabilityStatusList(caps);
272 void hmp_info_migrate_capabilities(Monitor *mon, const QDict *qdict)
274 MigrationCapabilityStatusList *caps, *cap;
276 caps = qmp_query_migrate_capabilities(NULL);
278 if (caps) {
279 for (cap = caps; cap; cap = cap->next) {
280 monitor_printf(mon, "%s: %s\n",
281 MigrationCapability_lookup[cap->value->capability],
282 cap->value->state ? "on" : "off");
286 qapi_free_MigrationCapabilityStatusList(caps);
289 void hmp_info_migrate_parameters(Monitor *mon, const QDict *qdict)
291 MigrationParameters *params;
293 params = qmp_query_migrate_parameters(NULL);
295 if (params) {
296 assert(params->has_compress_level);
297 monitor_printf(mon, "%s: %" PRId64 "\n",
298 MigrationParameter_lookup[MIGRATION_PARAMETER_COMPRESS_LEVEL],
299 params->compress_level);
300 assert(params->has_compress_threads);
301 monitor_printf(mon, "%s: %" PRId64 "\n",
302 MigrationParameter_lookup[MIGRATION_PARAMETER_COMPRESS_THREADS],
303 params->compress_threads);
304 assert(params->has_decompress_threads);
305 monitor_printf(mon, "%s: %" PRId64 "\n",
306 MigrationParameter_lookup[MIGRATION_PARAMETER_DECOMPRESS_THREADS],
307 params->decompress_threads);
308 assert(params->has_cpu_throttle_initial);
309 monitor_printf(mon, "%s: %" PRId64 "\n",
310 MigrationParameter_lookup[MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL],
311 params->cpu_throttle_initial);
312 assert(params->has_cpu_throttle_increment);
313 monitor_printf(mon, "%s: %" PRId64 "\n",
314 MigrationParameter_lookup[MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT],
315 params->cpu_throttle_increment);
316 monitor_printf(mon, "%s: '%s'\n",
317 MigrationParameter_lookup[MIGRATION_PARAMETER_TLS_CREDS],
318 params->has_tls_creds ? params->tls_creds : "");
319 monitor_printf(mon, "%s: '%s'\n",
320 MigrationParameter_lookup[MIGRATION_PARAMETER_TLS_HOSTNAME],
321 params->has_tls_hostname ? params->tls_hostname : "");
322 assert(params->has_max_bandwidth);
323 monitor_printf(mon, "%s: %" PRId64 " bytes/second\n",
324 MigrationParameter_lookup[MIGRATION_PARAMETER_MAX_BANDWIDTH],
325 params->max_bandwidth);
326 assert(params->has_downtime_limit);
327 monitor_printf(mon, "%s: %" PRId64 " milliseconds\n",
328 MigrationParameter_lookup[MIGRATION_PARAMETER_DOWNTIME_LIMIT],
329 params->downtime_limit);
330 assert(params->has_x_checkpoint_delay);
331 monitor_printf(mon, "%s: %" PRId64 "\n",
332 MigrationParameter_lookup[MIGRATION_PARAMETER_X_CHECKPOINT_DELAY],
333 params->x_checkpoint_delay);
334 assert(params->has_block_incremental);
335 monitor_printf(mon, "%s: %s\n",
336 MigrationParameter_lookup[MIGRATION_PARAMETER_BLOCK_INCREMENTAL],
337 params->block_incremental ? "on" : "off");
340 qapi_free_MigrationParameters(params);
343 void hmp_info_migrate_cache_size(Monitor *mon, const QDict *qdict)
345 monitor_printf(mon, "xbzrel cache size: %" PRId64 " kbytes\n",
346 qmp_query_migrate_cache_size(NULL) >> 10);
349 void hmp_info_cpus(Monitor *mon, const QDict *qdict)
351 CpuInfoList *cpu_list, *cpu;
353 cpu_list = qmp_query_cpus(NULL);
355 for (cpu = cpu_list; cpu; cpu = cpu->next) {
356 int active = ' ';
358 if (cpu->value->CPU == monitor_get_cpu_index()) {
359 active = '*';
362 monitor_printf(mon, "%c CPU #%" PRId64 ":", active, cpu->value->CPU);
364 switch (cpu->value->arch) {
365 case CPU_INFO_ARCH_X86:
366 monitor_printf(mon, " pc=0x%016" PRIx64, cpu->value->u.x86.pc);
367 break;
368 case CPU_INFO_ARCH_PPC:
369 monitor_printf(mon, " nip=0x%016" PRIx64, cpu->value->u.ppc.nip);
370 break;
371 case CPU_INFO_ARCH_SPARC:
372 monitor_printf(mon, " pc=0x%016" PRIx64,
373 cpu->value->u.q_sparc.pc);
374 monitor_printf(mon, " npc=0x%016" PRIx64,
375 cpu->value->u.q_sparc.npc);
376 break;
377 case CPU_INFO_ARCH_MIPS:
378 monitor_printf(mon, " PC=0x%016" PRIx64, cpu->value->u.q_mips.PC);
379 break;
380 case CPU_INFO_ARCH_TRICORE:
381 monitor_printf(mon, " PC=0x%016" PRIx64, cpu->value->u.tricore.PC);
382 break;
383 default:
384 break;
387 if (cpu->value->halted) {
388 monitor_printf(mon, " (halted)");
391 monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
394 qapi_free_CpuInfoList(cpu_list);
397 static void print_block_info(Monitor *mon, BlockInfo *info,
398 BlockDeviceInfo *inserted, bool verbose)
400 ImageInfo *image_info;
402 assert(!info || !info->has_inserted || info->inserted == inserted);
404 if (info) {
405 monitor_printf(mon, "%s", info->device);
406 if (inserted && inserted->has_node_name) {
407 monitor_printf(mon, " (%s)", inserted->node_name);
409 } else {
410 assert(inserted);
411 monitor_printf(mon, "%s",
412 inserted->has_node_name
413 ? inserted->node_name
414 : "<anonymous>");
417 if (inserted) {
418 monitor_printf(mon, ": %s (%s%s%s)\n",
419 inserted->file,
420 inserted->drv,
421 inserted->ro ? ", read-only" : "",
422 inserted->encrypted ? ", encrypted" : "");
423 } else {
424 monitor_printf(mon, ": [not inserted]\n");
427 if (info) {
428 if (info->has_io_status && info->io_status != BLOCK_DEVICE_IO_STATUS_OK) {
429 monitor_printf(mon, " I/O status: %s\n",
430 BlockDeviceIoStatus_lookup[info->io_status]);
433 if (info->removable) {
434 monitor_printf(mon, " Removable device: %slocked, tray %s\n",
435 info->locked ? "" : "not ",
436 info->tray_open ? "open" : "closed");
441 if (!inserted) {
442 return;
445 monitor_printf(mon, " Cache mode: %s%s%s\n",
446 inserted->cache->writeback ? "writeback" : "writethrough",
447 inserted->cache->direct ? ", direct" : "",
448 inserted->cache->no_flush ? ", ignore flushes" : "");
450 if (inserted->has_backing_file) {
451 monitor_printf(mon,
452 " Backing file: %s "
453 "(chain depth: %" PRId64 ")\n",
454 inserted->backing_file,
455 inserted->backing_file_depth);
458 if (inserted->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF) {
459 monitor_printf(mon, " Detect zeroes: %s\n",
460 BlockdevDetectZeroesOptions_lookup[inserted->detect_zeroes]);
463 if (inserted->bps || inserted->bps_rd || inserted->bps_wr ||
464 inserted->iops || inserted->iops_rd || inserted->iops_wr)
466 monitor_printf(mon, " I/O throttling: bps=%" PRId64
467 " bps_rd=%" PRId64 " bps_wr=%" PRId64
468 " bps_max=%" PRId64
469 " bps_rd_max=%" PRId64
470 " bps_wr_max=%" PRId64
471 " iops=%" PRId64 " iops_rd=%" PRId64
472 " iops_wr=%" PRId64
473 " iops_max=%" PRId64
474 " iops_rd_max=%" PRId64
475 " iops_wr_max=%" PRId64
476 " iops_size=%" PRId64
477 " group=%s\n",
478 inserted->bps,
479 inserted->bps_rd,
480 inserted->bps_wr,
481 inserted->bps_max,
482 inserted->bps_rd_max,
483 inserted->bps_wr_max,
484 inserted->iops,
485 inserted->iops_rd,
486 inserted->iops_wr,
487 inserted->iops_max,
488 inserted->iops_rd_max,
489 inserted->iops_wr_max,
490 inserted->iops_size,
491 inserted->group);
494 if (verbose) {
495 monitor_printf(mon, "\nImages:\n");
496 image_info = inserted->image;
497 while (1) {
498 bdrv_image_info_dump((fprintf_function)monitor_printf,
499 mon, image_info);
500 if (image_info->has_backing_image) {
501 image_info = image_info->backing_image;
502 } else {
503 break;
509 void hmp_info_block(Monitor *mon, const QDict *qdict)
511 BlockInfoList *block_list, *info;
512 BlockDeviceInfoList *blockdev_list, *blockdev;
513 const char *device = qdict_get_try_str(qdict, "device");
514 bool verbose = qdict_get_try_bool(qdict, "verbose", false);
515 bool nodes = qdict_get_try_bool(qdict, "nodes", false);
516 bool printed = false;
518 /* Print BlockBackend information */
519 if (!nodes) {
520 block_list = qmp_query_block(NULL);
521 } else {
522 block_list = NULL;
525 for (info = block_list; info; info = info->next) {
526 if (device && strcmp(device, info->value->device)) {
527 continue;
530 if (info != block_list) {
531 monitor_printf(mon, "\n");
534 print_block_info(mon, info->value, info->value->has_inserted
535 ? info->value->inserted : NULL,
536 verbose);
537 printed = true;
540 qapi_free_BlockInfoList(block_list);
542 if ((!device && !nodes) || printed) {
543 return;
546 /* Print node information */
547 blockdev_list = qmp_query_named_block_nodes(NULL);
548 for (blockdev = blockdev_list; blockdev; blockdev = blockdev->next) {
549 assert(blockdev->value->has_node_name);
550 if (device && strcmp(device, blockdev->value->node_name)) {
551 continue;
554 if (blockdev != blockdev_list) {
555 monitor_printf(mon, "\n");
558 print_block_info(mon, NULL, blockdev->value, verbose);
560 qapi_free_BlockDeviceInfoList(blockdev_list);
563 void hmp_info_blockstats(Monitor *mon, const QDict *qdict)
565 BlockStatsList *stats_list, *stats;
567 stats_list = qmp_query_blockstats(false, false, NULL);
569 for (stats = stats_list; stats; stats = stats->next) {
570 if (!stats->value->has_device) {
571 continue;
574 monitor_printf(mon, "%s:", stats->value->device);
575 monitor_printf(mon, " rd_bytes=%" PRId64
576 " wr_bytes=%" PRId64
577 " rd_operations=%" PRId64
578 " wr_operations=%" PRId64
579 " flush_operations=%" PRId64
580 " wr_total_time_ns=%" PRId64
581 " rd_total_time_ns=%" PRId64
582 " flush_total_time_ns=%" PRId64
583 " rd_merged=%" PRId64
584 " wr_merged=%" PRId64
585 " idle_time_ns=%" PRId64
586 "\n",
587 stats->value->stats->rd_bytes,
588 stats->value->stats->wr_bytes,
589 stats->value->stats->rd_operations,
590 stats->value->stats->wr_operations,
591 stats->value->stats->flush_operations,
592 stats->value->stats->wr_total_time_ns,
593 stats->value->stats->rd_total_time_ns,
594 stats->value->stats->flush_total_time_ns,
595 stats->value->stats->rd_merged,
596 stats->value->stats->wr_merged,
597 stats->value->stats->idle_time_ns);
600 qapi_free_BlockStatsList(stats_list);
603 /* Helper for hmp_info_vnc_clients, _servers */
604 static void hmp_info_VncBasicInfo(Monitor *mon, VncBasicInfo *info,
605 const char *name)
607 monitor_printf(mon, " %s: %s:%s (%s%s)\n",
608 name,
609 info->host,
610 info->service,
611 NetworkAddressFamily_lookup[info->family],
612 info->websocket ? " (Websocket)" : "");
615 /* Helper displaying and auth and crypt info */
616 static void hmp_info_vnc_authcrypt(Monitor *mon, const char *indent,
617 VncPrimaryAuth auth,
618 VncVencryptSubAuth *vencrypt)
620 monitor_printf(mon, "%sAuth: %s (Sub: %s)\n", indent,
621 VncPrimaryAuth_lookup[auth],
622 vencrypt ? VncVencryptSubAuth_lookup[*vencrypt] : "none");
625 static void hmp_info_vnc_clients(Monitor *mon, VncClientInfoList *client)
627 while (client) {
628 VncClientInfo *cinfo = client->value;
630 hmp_info_VncBasicInfo(mon, qapi_VncClientInfo_base(cinfo), "Client");
631 monitor_printf(mon, " x509_dname: %s\n",
632 cinfo->has_x509_dname ?
633 cinfo->x509_dname : "none");
634 monitor_printf(mon, " sasl_username: %s\n",
635 cinfo->has_sasl_username ?
636 cinfo->sasl_username : "none");
638 client = client->next;
642 static void hmp_info_vnc_servers(Monitor *mon, VncServerInfo2List *server)
644 while (server) {
645 VncServerInfo2 *sinfo = server->value;
646 hmp_info_VncBasicInfo(mon, qapi_VncServerInfo2_base(sinfo), "Server");
647 hmp_info_vnc_authcrypt(mon, " ", sinfo->auth,
648 sinfo->has_vencrypt ? &sinfo->vencrypt : NULL);
649 server = server->next;
653 void hmp_info_vnc(Monitor *mon, const QDict *qdict)
655 VncInfo2List *info2l;
656 Error *err = NULL;
658 info2l = qmp_query_vnc_servers(&err);
659 if (err) {
660 error_report_err(err);
661 return;
663 if (!info2l) {
664 monitor_printf(mon, "None\n");
665 return;
668 while (info2l) {
669 VncInfo2 *info = info2l->value;
670 monitor_printf(mon, "%s:\n", info->id);
671 hmp_info_vnc_servers(mon, info->server);
672 hmp_info_vnc_clients(mon, info->clients);
673 if (!info->server) {
674 /* The server entry displays its auth, we only
675 * need to display in the case of 'reverse' connections
676 * where there's no server.
678 hmp_info_vnc_authcrypt(mon, " ", info->auth,
679 info->has_vencrypt ? &info->vencrypt : NULL);
681 if (info->has_display) {
682 monitor_printf(mon, " Display: %s\n", info->display);
684 info2l = info2l->next;
687 qapi_free_VncInfo2List(info2l);
691 #ifdef CONFIG_SPICE
692 void hmp_info_spice(Monitor *mon, const QDict *qdict)
694 SpiceChannelList *chan;
695 SpiceInfo *info;
696 const char *channel_name;
697 const char * const channel_names[] = {
698 [SPICE_CHANNEL_MAIN] = "main",
699 [SPICE_CHANNEL_DISPLAY] = "display",
700 [SPICE_CHANNEL_INPUTS] = "inputs",
701 [SPICE_CHANNEL_CURSOR] = "cursor",
702 [SPICE_CHANNEL_PLAYBACK] = "playback",
703 [SPICE_CHANNEL_RECORD] = "record",
704 [SPICE_CHANNEL_TUNNEL] = "tunnel",
705 [SPICE_CHANNEL_SMARTCARD] = "smartcard",
706 [SPICE_CHANNEL_USBREDIR] = "usbredir",
707 [SPICE_CHANNEL_PORT] = "port",
708 #if 0
709 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
710 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
711 * as quick fix for build failures with older versions. */
712 [SPICE_CHANNEL_WEBDAV] = "webdav",
713 #endif
716 info = qmp_query_spice(NULL);
718 if (!info->enabled) {
719 monitor_printf(mon, "Server: disabled\n");
720 goto out;
723 monitor_printf(mon, "Server:\n");
724 if (info->has_port) {
725 monitor_printf(mon, " address: %s:%" PRId64 "\n",
726 info->host, info->port);
728 if (info->has_tls_port) {
729 monitor_printf(mon, " address: %s:%" PRId64 " [tls]\n",
730 info->host, info->tls_port);
732 monitor_printf(mon, " migrated: %s\n",
733 info->migrated ? "true" : "false");
734 monitor_printf(mon, " auth: %s\n", info->auth);
735 monitor_printf(mon, " compiled: %s\n", info->compiled_version);
736 monitor_printf(mon, " mouse-mode: %s\n",
737 SpiceQueryMouseMode_lookup[info->mouse_mode]);
739 if (!info->has_channels || info->channels == NULL) {
740 monitor_printf(mon, "Channels: none\n");
741 } else {
742 for (chan = info->channels; chan; chan = chan->next) {
743 monitor_printf(mon, "Channel:\n");
744 monitor_printf(mon, " address: %s:%s%s\n",
745 chan->value->host, chan->value->port,
746 chan->value->tls ? " [tls]" : "");
747 monitor_printf(mon, " session: %" PRId64 "\n",
748 chan->value->connection_id);
749 monitor_printf(mon, " channel: %" PRId64 ":%" PRId64 "\n",
750 chan->value->channel_type, chan->value->channel_id);
752 channel_name = "unknown";
753 if (chan->value->channel_type > 0 &&
754 chan->value->channel_type < ARRAY_SIZE(channel_names) &&
755 channel_names[chan->value->channel_type]) {
756 channel_name = channel_names[chan->value->channel_type];
759 monitor_printf(mon, " channel name: %s\n", channel_name);
763 out:
764 qapi_free_SpiceInfo(info);
766 #endif
768 void hmp_info_balloon(Monitor *mon, const QDict *qdict)
770 BalloonInfo *info;
771 Error *err = NULL;
773 info = qmp_query_balloon(&err);
774 if (err) {
775 error_report_err(err);
776 return;
779 monitor_printf(mon, "balloon: actual=%" PRId64 "\n", info->actual >> 20);
781 qapi_free_BalloonInfo(info);
784 static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
786 PciMemoryRegionList *region;
788 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
789 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
790 dev->slot, dev->function);
791 monitor_printf(mon, " ");
793 if (dev->class_info->has_desc) {
794 monitor_printf(mon, "%s", dev->class_info->desc);
795 } else {
796 monitor_printf(mon, "Class %04" PRId64, dev->class_info->q_class);
799 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
800 dev->id->vendor, dev->id->device);
802 if (dev->has_irq) {
803 monitor_printf(mon, " IRQ %" PRId64 ".\n", dev->irq);
806 if (dev->has_pci_bridge) {
807 monitor_printf(mon, " BUS %" PRId64 ".\n",
808 dev->pci_bridge->bus->number);
809 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
810 dev->pci_bridge->bus->secondary);
811 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
812 dev->pci_bridge->bus->subordinate);
814 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
815 dev->pci_bridge->bus->io_range->base,
816 dev->pci_bridge->bus->io_range->limit);
818 monitor_printf(mon,
819 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
820 dev->pci_bridge->bus->memory_range->base,
821 dev->pci_bridge->bus->memory_range->limit);
823 monitor_printf(mon, " prefetchable memory range "
824 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
825 dev->pci_bridge->bus->prefetchable_range->base,
826 dev->pci_bridge->bus->prefetchable_range->limit);
829 for (region = dev->regions; region; region = region->next) {
830 uint64_t addr, size;
832 addr = region->value->address;
833 size = region->value->size;
835 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
837 if (!strcmp(region->value->type, "io")) {
838 monitor_printf(mon, "I/O at 0x%04" PRIx64
839 " [0x%04" PRIx64 "].\n",
840 addr, addr + size - 1);
841 } else {
842 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
843 " [0x%08" PRIx64 "].\n",
844 region->value->mem_type_64 ? 64 : 32,
845 region->value->prefetch ? " prefetchable" : "",
846 addr, addr + size - 1);
850 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
852 if (dev->has_pci_bridge) {
853 if (dev->pci_bridge->has_devices) {
854 PciDeviceInfoList *cdev;
855 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
856 hmp_info_pci_device(mon, cdev->value);
862 static int hmp_info_irq_foreach(Object *obj, void *opaque)
864 InterruptStatsProvider *intc;
865 InterruptStatsProviderClass *k;
866 Monitor *mon = opaque;
868 if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
869 intc = INTERRUPT_STATS_PROVIDER(obj);
870 k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
871 uint64_t *irq_counts;
872 unsigned int nb_irqs, i;
873 if (k->get_statistics &&
874 k->get_statistics(intc, &irq_counts, &nb_irqs)) {
875 if (nb_irqs > 0) {
876 monitor_printf(mon, "IRQ statistics for %s:\n",
877 object_get_typename(obj));
878 for (i = 0; i < nb_irqs; i++) {
879 if (irq_counts[i] > 0) {
880 monitor_printf(mon, "%2d: %" PRId64 "\n", i,
881 irq_counts[i]);
885 } else {
886 monitor_printf(mon, "IRQ statistics not available for %s.\n",
887 object_get_typename(obj));
891 return 0;
894 void hmp_info_irq(Monitor *mon, const QDict *qdict)
896 object_child_foreach_recursive(object_get_root(),
897 hmp_info_irq_foreach, mon);
900 static int hmp_info_pic_foreach(Object *obj, void *opaque)
902 InterruptStatsProvider *intc;
903 InterruptStatsProviderClass *k;
904 Monitor *mon = opaque;
906 if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
907 intc = INTERRUPT_STATS_PROVIDER(obj);
908 k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
909 if (k->print_info) {
910 k->print_info(intc, mon);
911 } else {
912 monitor_printf(mon, "Interrupt controller information not available for %s.\n",
913 object_get_typename(obj));
917 return 0;
920 void hmp_info_pic(Monitor *mon, const QDict *qdict)
922 object_child_foreach_recursive(object_get_root(),
923 hmp_info_pic_foreach, mon);
926 void hmp_info_pci(Monitor *mon, const QDict *qdict)
928 PciInfoList *info_list, *info;
929 Error *err = NULL;
931 info_list = qmp_query_pci(&err);
932 if (err) {
933 monitor_printf(mon, "PCI devices not supported\n");
934 error_free(err);
935 return;
938 for (info = info_list; info; info = info->next) {
939 PciDeviceInfoList *dev;
941 for (dev = info->value->devices; dev; dev = dev->next) {
942 hmp_info_pci_device(mon, dev->value);
946 qapi_free_PciInfoList(info_list);
949 void hmp_info_block_jobs(Monitor *mon, const QDict *qdict)
951 BlockJobInfoList *list;
952 Error *err = NULL;
954 list = qmp_query_block_jobs(&err);
955 assert(!err);
957 if (!list) {
958 monitor_printf(mon, "No active jobs\n");
959 return;
962 while (list) {
963 if (strcmp(list->value->type, "stream") == 0) {
964 monitor_printf(mon, "Streaming device %s: Completed %" PRId64
965 " of %" PRId64 " bytes, speed limit %" PRId64
966 " bytes/s\n",
967 list->value->device,
968 list->value->offset,
969 list->value->len,
970 list->value->speed);
971 } else {
972 monitor_printf(mon, "Type %s, device %s: Completed %" PRId64
973 " of %" PRId64 " bytes, speed limit %" PRId64
974 " bytes/s\n",
975 list->value->type,
976 list->value->device,
977 list->value->offset,
978 list->value->len,
979 list->value->speed);
981 list = list->next;
984 qapi_free_BlockJobInfoList(list);
987 void hmp_info_tpm(Monitor *mon, const QDict *qdict)
989 TPMInfoList *info_list, *info;
990 Error *err = NULL;
991 unsigned int c = 0;
992 TPMPassthroughOptions *tpo;
994 info_list = qmp_query_tpm(&err);
995 if (err) {
996 monitor_printf(mon, "TPM device not supported\n");
997 error_free(err);
998 return;
1001 if (info_list) {
1002 monitor_printf(mon, "TPM device:\n");
1005 for (info = info_list; info; info = info->next) {
1006 TPMInfo *ti = info->value;
1007 monitor_printf(mon, " tpm%d: model=%s\n",
1008 c, TpmModel_lookup[ti->model]);
1010 monitor_printf(mon, " \\ %s: type=%s",
1011 ti->id, TpmTypeOptionsKind_lookup[ti->options->type]);
1013 switch (ti->options->type) {
1014 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH:
1015 tpo = ti->options->u.passthrough.data;
1016 monitor_printf(mon, "%s%s%s%s",
1017 tpo->has_path ? ",path=" : "",
1018 tpo->has_path ? tpo->path : "",
1019 tpo->has_cancel_path ? ",cancel-path=" : "",
1020 tpo->has_cancel_path ? tpo->cancel_path : "");
1021 break;
1022 case TPM_TYPE_OPTIONS_KIND__MAX:
1023 break;
1025 monitor_printf(mon, "\n");
1026 c++;
1028 qapi_free_TPMInfoList(info_list);
1031 void hmp_quit(Monitor *mon, const QDict *qdict)
1033 monitor_suspend(mon);
1034 qmp_quit(NULL);
1037 void hmp_stop(Monitor *mon, const QDict *qdict)
1039 qmp_stop(NULL);
1042 void hmp_system_reset(Monitor *mon, const QDict *qdict)
1044 qmp_system_reset(NULL);
1047 void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
1049 qmp_system_powerdown(NULL);
1052 void hmp_cpu(Monitor *mon, const QDict *qdict)
1054 int64_t cpu_index;
1056 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1057 use it are converted to the QAPI */
1058 cpu_index = qdict_get_int(qdict, "index");
1059 if (monitor_set_cpu(cpu_index) < 0) {
1060 monitor_printf(mon, "invalid CPU index\n");
1064 void hmp_memsave(Monitor *mon, const QDict *qdict)
1066 uint32_t size = qdict_get_int(qdict, "size");
1067 const char *filename = qdict_get_str(qdict, "filename");
1068 uint64_t addr = qdict_get_int(qdict, "val");
1069 Error *err = NULL;
1070 int cpu_index = monitor_get_cpu_index();
1072 if (cpu_index < 0) {
1073 monitor_printf(mon, "No CPU available\n");
1074 return;
1077 qmp_memsave(addr, size, filename, true, cpu_index, &err);
1078 hmp_handle_error(mon, &err);
1081 void hmp_pmemsave(Monitor *mon, const QDict *qdict)
1083 uint32_t size = qdict_get_int(qdict, "size");
1084 const char *filename = qdict_get_str(qdict, "filename");
1085 uint64_t addr = qdict_get_int(qdict, "val");
1086 Error *err = NULL;
1088 qmp_pmemsave(addr, size, filename, &err);
1089 hmp_handle_error(mon, &err);
1092 void hmp_ringbuf_write(Monitor *mon, const QDict *qdict)
1094 const char *chardev = qdict_get_str(qdict, "device");
1095 const char *data = qdict_get_str(qdict, "data");
1096 Error *err = NULL;
1098 qmp_ringbuf_write(chardev, data, false, 0, &err);
1100 hmp_handle_error(mon, &err);
1103 void hmp_ringbuf_read(Monitor *mon, const QDict *qdict)
1105 uint32_t size = qdict_get_int(qdict, "size");
1106 const char *chardev = qdict_get_str(qdict, "device");
1107 char *data;
1108 Error *err = NULL;
1109 int i;
1111 data = qmp_ringbuf_read(chardev, size, false, 0, &err);
1112 if (err) {
1113 error_report_err(err);
1114 return;
1117 for (i = 0; data[i]; i++) {
1118 unsigned char ch = data[i];
1120 if (ch == '\\') {
1121 monitor_printf(mon, "\\\\");
1122 } else if ((ch < 0x20 && ch != '\n' && ch != '\t') || ch == 0x7F) {
1123 monitor_printf(mon, "\\u%04X", ch);
1124 } else {
1125 monitor_printf(mon, "%c", ch);
1129 monitor_printf(mon, "\n");
1130 g_free(data);
1133 void hmp_cont(Monitor *mon, const QDict *qdict)
1135 Error *err = NULL;
1137 qmp_cont(&err);
1138 hmp_handle_error(mon, &err);
1141 void hmp_system_wakeup(Monitor *mon, const QDict *qdict)
1143 qmp_system_wakeup(NULL);
1146 void hmp_nmi(Monitor *mon, const QDict *qdict)
1148 Error *err = NULL;
1150 qmp_inject_nmi(&err);
1151 hmp_handle_error(mon, &err);
1154 void hmp_set_link(Monitor *mon, const QDict *qdict)
1156 const char *name = qdict_get_str(qdict, "name");
1157 bool up = qdict_get_bool(qdict, "up");
1158 Error *err = NULL;
1160 qmp_set_link(name, up, &err);
1161 hmp_handle_error(mon, &err);
1164 void hmp_block_passwd(Monitor *mon, const QDict *qdict)
1166 const char *device = qdict_get_str(qdict, "device");
1167 const char *password = qdict_get_str(qdict, "password");
1168 Error *err = NULL;
1170 qmp_block_passwd(true, device, false, NULL, password, &err);
1171 hmp_handle_error(mon, &err);
1174 void hmp_balloon(Monitor *mon, const QDict *qdict)
1176 int64_t value = qdict_get_int(qdict, "value");
1177 Error *err = NULL;
1179 qmp_balloon(value, &err);
1180 if (err) {
1181 error_report_err(err);
1185 void hmp_block_resize(Monitor *mon, const QDict *qdict)
1187 const char *device = qdict_get_str(qdict, "device");
1188 int64_t size = qdict_get_int(qdict, "size");
1189 Error *err = NULL;
1191 qmp_block_resize(true, device, false, NULL, size, &err);
1192 hmp_handle_error(mon, &err);
1195 void hmp_drive_mirror(Monitor *mon, const QDict *qdict)
1197 const char *filename = qdict_get_str(qdict, "target");
1198 const char *format = qdict_get_try_str(qdict, "format");
1199 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1200 bool full = qdict_get_try_bool(qdict, "full", false);
1201 Error *err = NULL;
1202 DriveMirror mirror = {
1203 .device = (char *)qdict_get_str(qdict, "device"),
1204 .target = (char *)filename,
1205 .has_format = !!format,
1206 .format = (char *)format,
1207 .sync = full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
1208 .has_mode = true,
1209 .mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS,
1210 .unmap = true,
1213 if (!filename) {
1214 error_setg(&err, QERR_MISSING_PARAMETER, "target");
1215 hmp_handle_error(mon, &err);
1216 return;
1218 qmp_drive_mirror(&mirror, &err);
1219 hmp_handle_error(mon, &err);
1222 void hmp_drive_backup(Monitor *mon, const QDict *qdict)
1224 const char *device = qdict_get_str(qdict, "device");
1225 const char *filename = qdict_get_str(qdict, "target");
1226 const char *format = qdict_get_try_str(qdict, "format");
1227 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1228 bool full = qdict_get_try_bool(qdict, "full", false);
1229 bool compress = qdict_get_try_bool(qdict, "compress", false);
1230 Error *err = NULL;
1231 DriveBackup backup = {
1232 .device = (char *)device,
1233 .target = (char *)filename,
1234 .has_format = !!format,
1235 .format = (char *)format,
1236 .sync = full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
1237 .has_mode = true,
1238 .mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS,
1239 .has_compress = !!compress,
1240 .compress = compress,
1243 if (!filename) {
1244 error_setg(&err, QERR_MISSING_PARAMETER, "target");
1245 hmp_handle_error(mon, &err);
1246 return;
1249 qmp_drive_backup(&backup, &err);
1250 hmp_handle_error(mon, &err);
1253 void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict)
1255 const char *device = qdict_get_str(qdict, "device");
1256 const char *filename = qdict_get_try_str(qdict, "snapshot-file");
1257 const char *format = qdict_get_try_str(qdict, "format");
1258 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1259 enum NewImageMode mode;
1260 Error *err = NULL;
1262 if (!filename) {
1263 /* In the future, if 'snapshot-file' is not specified, the snapshot
1264 will be taken internally. Today it's actually required. */
1265 error_setg(&err, QERR_MISSING_PARAMETER, "snapshot-file");
1266 hmp_handle_error(mon, &err);
1267 return;
1270 mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1271 qmp_blockdev_snapshot_sync(true, device, false, NULL,
1272 filename, false, NULL,
1273 !!format, format,
1274 true, mode, &err);
1275 hmp_handle_error(mon, &err);
1278 void hmp_snapshot_blkdev_internal(Monitor *mon, const QDict *qdict)
1280 const char *device = qdict_get_str(qdict, "device");
1281 const char *name = qdict_get_str(qdict, "name");
1282 Error *err = NULL;
1284 qmp_blockdev_snapshot_internal_sync(device, name, &err);
1285 hmp_handle_error(mon, &err);
1288 void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict)
1290 const char *device = qdict_get_str(qdict, "device");
1291 const char *name = qdict_get_str(qdict, "name");
1292 const char *id = qdict_get_try_str(qdict, "id");
1293 Error *err = NULL;
1295 qmp_blockdev_snapshot_delete_internal_sync(device, !!id, id,
1296 true, name, &err);
1297 hmp_handle_error(mon, &err);
1300 void hmp_loadvm(Monitor *mon, const QDict *qdict)
1302 int saved_vm_running = runstate_is_running();
1303 const char *name = qdict_get_str(qdict, "name");
1304 Error *err = NULL;
1306 vm_stop(RUN_STATE_RESTORE_VM);
1308 if (load_snapshot(name, &err) == 0 && saved_vm_running) {
1309 vm_start();
1311 hmp_handle_error(mon, &err);
1314 void hmp_savevm(Monitor *mon, const QDict *qdict)
1316 Error *err = NULL;
1318 save_snapshot(qdict_get_try_str(qdict, "name"), &err);
1319 hmp_handle_error(mon, &err);
1322 void hmp_delvm(Monitor *mon, const QDict *qdict)
1324 BlockDriverState *bs;
1325 Error *err;
1326 const char *name = qdict_get_str(qdict, "name");
1328 if (bdrv_all_delete_snapshot(name, &bs, &err) < 0) {
1329 error_reportf_err(err,
1330 "Error while deleting snapshot on device '%s': ",
1331 bdrv_get_device_name(bs));
1335 void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
1337 BlockDriverState *bs, *bs1;
1338 BdrvNextIterator it1;
1339 QEMUSnapshotInfo *sn_tab, *sn;
1340 bool no_snapshot = true;
1341 int nb_sns, i;
1342 int total;
1343 int *global_snapshots;
1344 AioContext *aio_context;
1346 typedef struct SnapshotEntry {
1347 QEMUSnapshotInfo sn;
1348 QTAILQ_ENTRY(SnapshotEntry) next;
1349 } SnapshotEntry;
1351 typedef struct ImageEntry {
1352 const char *imagename;
1353 QTAILQ_ENTRY(ImageEntry) next;
1354 QTAILQ_HEAD(, SnapshotEntry) snapshots;
1355 } ImageEntry;
1357 QTAILQ_HEAD(, ImageEntry) image_list =
1358 QTAILQ_HEAD_INITIALIZER(image_list);
1360 ImageEntry *image_entry, *next_ie;
1361 SnapshotEntry *snapshot_entry;
1363 bs = bdrv_all_find_vmstate_bs();
1364 if (!bs) {
1365 monitor_printf(mon, "No available block device supports snapshots\n");
1366 return;
1368 aio_context = bdrv_get_aio_context(bs);
1370 aio_context_acquire(aio_context);
1371 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1372 aio_context_release(aio_context);
1374 if (nb_sns < 0) {
1375 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
1376 return;
1379 for (bs1 = bdrv_first(&it1); bs1; bs1 = bdrv_next(&it1)) {
1380 int bs1_nb_sns = 0;
1381 ImageEntry *ie;
1382 SnapshotEntry *se;
1383 AioContext *ctx = bdrv_get_aio_context(bs1);
1385 aio_context_acquire(ctx);
1386 if (bdrv_can_snapshot(bs1)) {
1387 sn = NULL;
1388 bs1_nb_sns = bdrv_snapshot_list(bs1, &sn);
1389 if (bs1_nb_sns > 0) {
1390 no_snapshot = false;
1391 ie = g_new0(ImageEntry, 1);
1392 ie->imagename = bdrv_get_device_name(bs1);
1393 QTAILQ_INIT(&ie->snapshots);
1394 QTAILQ_INSERT_TAIL(&image_list, ie, next);
1395 for (i = 0; i < bs1_nb_sns; i++) {
1396 se = g_new0(SnapshotEntry, 1);
1397 se->sn = sn[i];
1398 QTAILQ_INSERT_TAIL(&ie->snapshots, se, next);
1401 g_free(sn);
1403 aio_context_release(ctx);
1406 if (no_snapshot) {
1407 monitor_printf(mon, "There is no snapshot available.\n");
1408 return;
1411 global_snapshots = g_new0(int, nb_sns);
1412 total = 0;
1413 for (i = 0; i < nb_sns; i++) {
1414 SnapshotEntry *next_sn;
1415 if (bdrv_all_find_snapshot(sn_tab[i].name, &bs1) == 0) {
1416 global_snapshots[total] = i;
1417 total++;
1418 QTAILQ_FOREACH(image_entry, &image_list, next) {
1419 QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots,
1420 next, next_sn) {
1421 if (!strcmp(sn_tab[i].name, snapshot_entry->sn.name)) {
1422 QTAILQ_REMOVE(&image_entry->snapshots, snapshot_entry,
1423 next);
1424 g_free(snapshot_entry);
1431 monitor_printf(mon, "List of snapshots present on all disks:\n");
1433 if (total > 0) {
1434 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1435 monitor_printf(mon, "\n");
1436 for (i = 0; i < total; i++) {
1437 sn = &sn_tab[global_snapshots[i]];
1438 /* The ID is not guaranteed to be the same on all images, so
1439 * overwrite it.
1441 pstrcpy(sn->id_str, sizeof(sn->id_str), "--");
1442 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
1443 monitor_printf(mon, "\n");
1445 } else {
1446 monitor_printf(mon, "None\n");
1449 QTAILQ_FOREACH(image_entry, &image_list, next) {
1450 if (QTAILQ_EMPTY(&image_entry->snapshots)) {
1451 continue;
1453 monitor_printf(mon,
1454 "\nList of partial (non-loadable) snapshots on '%s':\n",
1455 image_entry->imagename);
1456 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1457 monitor_printf(mon, "\n");
1458 QTAILQ_FOREACH(snapshot_entry, &image_entry->snapshots, next) {
1459 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon,
1460 &snapshot_entry->sn);
1461 monitor_printf(mon, "\n");
1465 QTAILQ_FOREACH_SAFE(image_entry, &image_list, next, next_ie) {
1466 SnapshotEntry *next_sn;
1467 QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots, next,
1468 next_sn) {
1469 g_free(snapshot_entry);
1471 g_free(image_entry);
1473 g_free(sn_tab);
1474 g_free(global_snapshots);
1478 void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
1480 qmp_migrate_cancel(NULL);
1483 void hmp_migrate_incoming(Monitor *mon, const QDict *qdict)
1485 Error *err = NULL;
1486 const char *uri = qdict_get_str(qdict, "uri");
1488 qmp_migrate_incoming(uri, &err);
1490 hmp_handle_error(mon, &err);
1493 /* Kept for backwards compatibility */
1494 void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
1496 double value = qdict_get_double(qdict, "value");
1497 qmp_migrate_set_downtime(value, NULL);
1500 void hmp_migrate_set_cache_size(Monitor *mon, const QDict *qdict)
1502 int64_t value = qdict_get_int(qdict, "value");
1503 Error *err = NULL;
1505 qmp_migrate_set_cache_size(value, &err);
1506 if (err) {
1507 error_report_err(err);
1508 return;
1512 /* Kept for backwards compatibility */
1513 void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
1515 int64_t value = qdict_get_int(qdict, "value");
1516 qmp_migrate_set_speed(value, NULL);
1519 void hmp_migrate_set_capability(Monitor *mon, const QDict *qdict)
1521 const char *cap = qdict_get_str(qdict, "capability");
1522 bool state = qdict_get_bool(qdict, "state");
1523 Error *err = NULL;
1524 MigrationCapabilityStatusList *caps = g_malloc0(sizeof(*caps));
1525 int i;
1527 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
1528 if (strcmp(cap, MigrationCapability_lookup[i]) == 0) {
1529 caps->value = g_malloc0(sizeof(*caps->value));
1530 caps->value->capability = i;
1531 caps->value->state = state;
1532 caps->next = NULL;
1533 qmp_migrate_set_capabilities(caps, &err);
1534 break;
1538 if (i == MIGRATION_CAPABILITY__MAX) {
1539 error_setg(&err, QERR_INVALID_PARAMETER, cap);
1542 qapi_free_MigrationCapabilityStatusList(caps);
1544 if (err) {
1545 error_report_err(err);
1549 void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
1551 const char *param = qdict_get_str(qdict, "parameter");
1552 const char *valuestr = qdict_get_str(qdict, "value");
1553 Visitor *v = string_input_visitor_new(valuestr);
1554 uint64_t valuebw = 0;
1555 int64_t valueint = 0;
1556 bool valuebool = false;
1557 Error *err = NULL;
1558 bool use_int_value = false;
1559 int i, ret;
1561 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
1562 if (strcmp(param, MigrationParameter_lookup[i]) == 0) {
1563 MigrationParameters p = { 0 };
1564 switch (i) {
1565 case MIGRATION_PARAMETER_COMPRESS_LEVEL:
1566 p.has_compress_level = true;
1567 use_int_value = true;
1568 break;
1569 case MIGRATION_PARAMETER_COMPRESS_THREADS:
1570 p.has_compress_threads = true;
1571 use_int_value = true;
1572 break;
1573 case MIGRATION_PARAMETER_DECOMPRESS_THREADS:
1574 p.has_decompress_threads = true;
1575 use_int_value = true;
1576 break;
1577 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL:
1578 p.has_cpu_throttle_initial = true;
1579 use_int_value = true;
1580 break;
1581 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT:
1582 p.has_cpu_throttle_increment = true;
1583 use_int_value = true;
1584 break;
1585 case MIGRATION_PARAMETER_TLS_CREDS:
1586 p.has_tls_creds = true;
1587 p.tls_creds = (char *) valuestr;
1588 break;
1589 case MIGRATION_PARAMETER_TLS_HOSTNAME:
1590 p.has_tls_hostname = true;
1591 p.tls_hostname = (char *) valuestr;
1592 break;
1593 case MIGRATION_PARAMETER_MAX_BANDWIDTH:
1594 p.has_max_bandwidth = true;
1595 ret = qemu_strtosz_MiB(valuestr, NULL, &valuebw);
1596 if (ret < 0 || valuebw > INT64_MAX
1597 || (size_t)valuebw != valuebw) {
1598 error_setg(&err, "Invalid size %s", valuestr);
1599 goto cleanup;
1601 p.max_bandwidth = valuebw;
1602 break;
1603 case MIGRATION_PARAMETER_DOWNTIME_LIMIT:
1604 p.has_downtime_limit = true;
1605 use_int_value = true;
1606 break;
1607 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY:
1608 p.has_x_checkpoint_delay = true;
1609 use_int_value = true;
1610 break;
1611 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL:
1612 p.has_block_incremental = true;
1613 visit_type_bool(v, param, &valuebool, &err);
1614 if (err) {
1615 goto cleanup;
1617 p.block_incremental = valuebool;
1618 break;
1621 if (use_int_value) {
1622 visit_type_int(v, param, &valueint, &err);
1623 if (err) {
1624 goto cleanup;
1626 /* Set all integers; only one has_FOO will be set, and
1627 * the code ignores the remaining values */
1628 p.compress_level = valueint;
1629 p.compress_threads = valueint;
1630 p.decompress_threads = valueint;
1631 p.cpu_throttle_initial = valueint;
1632 p.cpu_throttle_increment = valueint;
1633 p.downtime_limit = valueint;
1634 p.x_checkpoint_delay = valueint;
1637 qmp_migrate_set_parameters(&p, &err);
1638 break;
1642 if (i == MIGRATION_PARAMETER__MAX) {
1643 error_setg(&err, QERR_INVALID_PARAMETER, param);
1646 cleanup:
1647 visit_free(v);
1648 if (err) {
1649 error_report_err(err);
1653 void hmp_client_migrate_info(Monitor *mon, const QDict *qdict)
1655 Error *err = NULL;
1656 const char *protocol = qdict_get_str(qdict, "protocol");
1657 const char *hostname = qdict_get_str(qdict, "hostname");
1658 bool has_port = qdict_haskey(qdict, "port");
1659 int port = qdict_get_try_int(qdict, "port", -1);
1660 bool has_tls_port = qdict_haskey(qdict, "tls-port");
1661 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1662 const char *cert_subject = qdict_get_try_str(qdict, "cert-subject");
1664 qmp_client_migrate_info(protocol, hostname,
1665 has_port, port, has_tls_port, tls_port,
1666 !!cert_subject, cert_subject, &err);
1667 hmp_handle_error(mon, &err);
1670 void hmp_migrate_start_postcopy(Monitor *mon, const QDict *qdict)
1672 Error *err = NULL;
1673 qmp_migrate_start_postcopy(&err);
1674 hmp_handle_error(mon, &err);
1677 void hmp_x_colo_lost_heartbeat(Monitor *mon, const QDict *qdict)
1679 Error *err = NULL;
1681 qmp_x_colo_lost_heartbeat(&err);
1682 hmp_handle_error(mon, &err);
1685 void hmp_set_password(Monitor *mon, const QDict *qdict)
1687 const char *protocol = qdict_get_str(qdict, "protocol");
1688 const char *password = qdict_get_str(qdict, "password");
1689 const char *connected = qdict_get_try_str(qdict, "connected");
1690 Error *err = NULL;
1692 qmp_set_password(protocol, password, !!connected, connected, &err);
1693 hmp_handle_error(mon, &err);
1696 void hmp_expire_password(Monitor *mon, const QDict *qdict)
1698 const char *protocol = qdict_get_str(qdict, "protocol");
1699 const char *whenstr = qdict_get_str(qdict, "time");
1700 Error *err = NULL;
1702 qmp_expire_password(protocol, whenstr, &err);
1703 hmp_handle_error(mon, &err);
1706 void hmp_eject(Monitor *mon, const QDict *qdict)
1708 bool force = qdict_get_try_bool(qdict, "force", false);
1709 const char *device = qdict_get_str(qdict, "device");
1710 Error *err = NULL;
1712 qmp_eject(true, device, false, NULL, true, force, &err);
1713 hmp_handle_error(mon, &err);
1716 static void hmp_change_read_arg(void *opaque, const char *password,
1717 void *readline_opaque)
1719 qmp_change_vnc_password(password, NULL);
1720 monitor_read_command(opaque, 1);
1723 void hmp_change(Monitor *mon, const QDict *qdict)
1725 const char *device = qdict_get_str(qdict, "device");
1726 const char *target = qdict_get_str(qdict, "target");
1727 const char *arg = qdict_get_try_str(qdict, "arg");
1728 const char *read_only = qdict_get_try_str(qdict, "read-only-mode");
1729 BlockdevChangeReadOnlyMode read_only_mode = 0;
1730 Error *err = NULL;
1732 if (strcmp(device, "vnc") == 0) {
1733 if (read_only) {
1734 monitor_printf(mon,
1735 "Parameter 'read-only-mode' is invalid for VNC\n");
1736 return;
1738 if (strcmp(target, "passwd") == 0 ||
1739 strcmp(target, "password") == 0) {
1740 if (!arg) {
1741 monitor_read_password(mon, hmp_change_read_arg, NULL);
1742 return;
1745 qmp_change("vnc", target, !!arg, arg, &err);
1746 } else {
1747 if (read_only) {
1748 read_only_mode =
1749 qapi_enum_parse(BlockdevChangeReadOnlyMode_lookup,
1750 read_only, BLOCKDEV_CHANGE_READ_ONLY_MODE__MAX,
1751 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN, &err);
1752 if (err) {
1753 hmp_handle_error(mon, &err);
1754 return;
1758 qmp_blockdev_change_medium(true, device, false, NULL, target,
1759 !!arg, arg, !!read_only, read_only_mode,
1760 &err);
1763 hmp_handle_error(mon, &err);
1766 void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
1768 Error *err = NULL;
1769 BlockIOThrottle throttle = {
1770 .has_device = true,
1771 .device = (char *) qdict_get_str(qdict, "device"),
1772 .bps = qdict_get_int(qdict, "bps"),
1773 .bps_rd = qdict_get_int(qdict, "bps_rd"),
1774 .bps_wr = qdict_get_int(qdict, "bps_wr"),
1775 .iops = qdict_get_int(qdict, "iops"),
1776 .iops_rd = qdict_get_int(qdict, "iops_rd"),
1777 .iops_wr = qdict_get_int(qdict, "iops_wr"),
1780 qmp_block_set_io_throttle(&throttle, &err);
1781 hmp_handle_error(mon, &err);
1784 void hmp_block_stream(Monitor *mon, const QDict *qdict)
1786 Error *error = NULL;
1787 const char *device = qdict_get_str(qdict, "device");
1788 const char *base = qdict_get_try_str(qdict, "base");
1789 int64_t speed = qdict_get_try_int(qdict, "speed", 0);
1791 qmp_block_stream(true, device, device, base != NULL, base, false, NULL,
1792 false, NULL, qdict_haskey(qdict, "speed"), speed,
1793 true, BLOCKDEV_ON_ERROR_REPORT, &error);
1795 hmp_handle_error(mon, &error);
1798 void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
1800 Error *error = NULL;
1801 const char *device = qdict_get_str(qdict, "device");
1802 int64_t value = qdict_get_int(qdict, "speed");
1804 qmp_block_job_set_speed(device, value, &error);
1806 hmp_handle_error(mon, &error);
1809 void hmp_block_job_cancel(Monitor *mon, const QDict *qdict)
1811 Error *error = NULL;
1812 const char *device = qdict_get_str(qdict, "device");
1813 bool force = qdict_get_try_bool(qdict, "force", false);
1815 qmp_block_job_cancel(device, true, force, &error);
1817 hmp_handle_error(mon, &error);
1820 void hmp_block_job_pause(Monitor *mon, const QDict *qdict)
1822 Error *error = NULL;
1823 const char *device = qdict_get_str(qdict, "device");
1825 qmp_block_job_pause(device, &error);
1827 hmp_handle_error(mon, &error);
1830 void hmp_block_job_resume(Monitor *mon, const QDict *qdict)
1832 Error *error = NULL;
1833 const char *device = qdict_get_str(qdict, "device");
1835 qmp_block_job_resume(device, &error);
1837 hmp_handle_error(mon, &error);
1840 void hmp_block_job_complete(Monitor *mon, const QDict *qdict)
1842 Error *error = NULL;
1843 const char *device = qdict_get_str(qdict, "device");
1845 qmp_block_job_complete(device, &error);
1847 hmp_handle_error(mon, &error);
1850 typedef struct HMPMigrationStatus
1852 QEMUTimer *timer;
1853 Monitor *mon;
1854 bool is_block_migration;
1855 } HMPMigrationStatus;
1857 static void hmp_migrate_status_cb(void *opaque)
1859 HMPMigrationStatus *status = opaque;
1860 MigrationInfo *info;
1862 info = qmp_query_migrate(NULL);
1863 if (!info->has_status || info->status == MIGRATION_STATUS_ACTIVE ||
1864 info->status == MIGRATION_STATUS_SETUP) {
1865 if (info->has_disk) {
1866 int progress;
1868 if (info->disk->remaining) {
1869 progress = info->disk->transferred * 100 / info->disk->total;
1870 } else {
1871 progress = 100;
1874 monitor_printf(status->mon, "Completed %d %%\r", progress);
1875 monitor_flush(status->mon);
1878 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
1879 } else {
1880 if (status->is_block_migration) {
1881 monitor_printf(status->mon, "\n");
1883 if (info->has_error_desc) {
1884 error_report("%s", info->error_desc);
1886 monitor_resume(status->mon);
1887 timer_del(status->timer);
1888 g_free(status);
1891 qapi_free_MigrationInfo(info);
1894 void hmp_migrate(Monitor *mon, const QDict *qdict)
1896 bool detach = qdict_get_try_bool(qdict, "detach", false);
1897 bool blk = qdict_get_try_bool(qdict, "blk", false);
1898 bool inc = qdict_get_try_bool(qdict, "inc", false);
1899 const char *uri = qdict_get_str(qdict, "uri");
1900 Error *err = NULL;
1902 qmp_migrate(uri, !!blk, blk, !!inc, inc, false, false, &err);
1903 if (err) {
1904 error_report_err(err);
1905 return;
1908 if (!detach) {
1909 HMPMigrationStatus *status;
1911 if (monitor_suspend(mon) < 0) {
1912 monitor_printf(mon, "terminal does not allow synchronous "
1913 "migration, continuing detached\n");
1914 return;
1917 status = g_malloc0(sizeof(*status));
1918 status->mon = mon;
1919 status->is_block_migration = blk || inc;
1920 status->timer = timer_new_ms(QEMU_CLOCK_REALTIME, hmp_migrate_status_cb,
1921 status);
1922 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
1926 void hmp_device_add(Monitor *mon, const QDict *qdict)
1928 Error *err = NULL;
1930 qmp_device_add((QDict *)qdict, NULL, &err);
1931 hmp_handle_error(mon, &err);
1934 void hmp_device_del(Monitor *mon, const QDict *qdict)
1936 const char *id = qdict_get_str(qdict, "id");
1937 Error *err = NULL;
1939 qmp_device_del(id, &err);
1940 hmp_handle_error(mon, &err);
1943 void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict)
1945 Error *err = NULL;
1946 bool paging = qdict_get_try_bool(qdict, "paging", false);
1947 bool zlib = qdict_get_try_bool(qdict, "zlib", false);
1948 bool lzo = qdict_get_try_bool(qdict, "lzo", false);
1949 bool snappy = qdict_get_try_bool(qdict, "snappy", false);
1950 const char *file = qdict_get_str(qdict, "filename");
1951 bool has_begin = qdict_haskey(qdict, "begin");
1952 bool has_length = qdict_haskey(qdict, "length");
1953 bool has_detach = qdict_haskey(qdict, "detach");
1954 int64_t begin = 0;
1955 int64_t length = 0;
1956 bool detach = false;
1957 enum DumpGuestMemoryFormat dump_format = DUMP_GUEST_MEMORY_FORMAT_ELF;
1958 char *prot;
1960 if (zlib + lzo + snappy > 1) {
1961 error_setg(&err, "only one of '-z|-l|-s' can be set");
1962 hmp_handle_error(mon, &err);
1963 return;
1966 if (zlib) {
1967 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB;
1970 if (lzo) {
1971 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO;
1974 if (snappy) {
1975 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY;
1978 if (has_begin) {
1979 begin = qdict_get_int(qdict, "begin");
1981 if (has_length) {
1982 length = qdict_get_int(qdict, "length");
1984 if (has_detach) {
1985 detach = qdict_get_bool(qdict, "detach");
1988 prot = g_strconcat("file:", file, NULL);
1990 qmp_dump_guest_memory(paging, prot, true, detach, has_begin, begin,
1991 has_length, length, true, dump_format, &err);
1992 hmp_handle_error(mon, &err);
1993 g_free(prot);
1996 void hmp_netdev_add(Monitor *mon, const QDict *qdict)
1998 Error *err = NULL;
1999 QemuOpts *opts;
2001 opts = qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict, &err);
2002 if (err) {
2003 goto out;
2006 netdev_add(opts, &err);
2007 if (err) {
2008 qemu_opts_del(opts);
2011 out:
2012 hmp_handle_error(mon, &err);
2015 void hmp_netdev_del(Monitor *mon, const QDict *qdict)
2017 const char *id = qdict_get_str(qdict, "id");
2018 Error *err = NULL;
2020 qmp_netdev_del(id, &err);
2021 hmp_handle_error(mon, &err);
2024 void hmp_object_add(Monitor *mon, const QDict *qdict)
2026 Error *err = NULL;
2027 QemuOpts *opts;
2028 Object *obj = NULL;
2030 opts = qemu_opts_from_qdict(qemu_find_opts("object"), qdict, &err);
2031 if (err) {
2032 hmp_handle_error(mon, &err);
2033 return;
2036 obj = user_creatable_add_opts(opts, &err);
2037 qemu_opts_del(opts);
2039 if (err) {
2040 hmp_handle_error(mon, &err);
2042 if (obj) {
2043 object_unref(obj);
2047 void hmp_getfd(Monitor *mon, const QDict *qdict)
2049 const char *fdname = qdict_get_str(qdict, "fdname");
2050 Error *err = NULL;
2052 qmp_getfd(fdname, &err);
2053 hmp_handle_error(mon, &err);
2056 void hmp_closefd(Monitor *mon, const QDict *qdict)
2058 const char *fdname = qdict_get_str(qdict, "fdname");
2059 Error *err = NULL;
2061 qmp_closefd(fdname, &err);
2062 hmp_handle_error(mon, &err);
2065 void hmp_sendkey(Monitor *mon, const QDict *qdict)
2067 const char *keys = qdict_get_str(qdict, "keys");
2068 KeyValueList *keylist, *head = NULL, *tmp = NULL;
2069 int has_hold_time = qdict_haskey(qdict, "hold-time");
2070 int hold_time = qdict_get_try_int(qdict, "hold-time", -1);
2071 Error *err = NULL;
2072 char *separator;
2073 int keyname_len;
2075 while (1) {
2076 separator = strchr(keys, '-');
2077 keyname_len = separator ? separator - keys : strlen(keys);
2079 /* Be compatible with old interface, convert user inputted "<" */
2080 if (keys[0] == '<' && keyname_len == 1) {
2081 keys = "less";
2082 keyname_len = 4;
2085 keylist = g_malloc0(sizeof(*keylist));
2086 keylist->value = g_malloc0(sizeof(*keylist->value));
2088 if (!head) {
2089 head = keylist;
2091 if (tmp) {
2092 tmp->next = keylist;
2094 tmp = keylist;
2096 if (strstart(keys, "0x", NULL)) {
2097 char *endp;
2098 int value = strtoul(keys, &endp, 0);
2099 assert(endp <= keys + keyname_len);
2100 if (endp != keys + keyname_len) {
2101 goto err_out;
2103 keylist->value->type = KEY_VALUE_KIND_NUMBER;
2104 keylist->value->u.number.data = value;
2105 } else {
2106 int idx = index_from_key(keys, keyname_len);
2107 if (idx == Q_KEY_CODE__MAX) {
2108 goto err_out;
2110 keylist->value->type = KEY_VALUE_KIND_QCODE;
2111 keylist->value->u.qcode.data = idx;
2114 if (!separator) {
2115 break;
2117 keys = separator + 1;
2120 qmp_send_key(head, has_hold_time, hold_time, &err);
2121 hmp_handle_error(mon, &err);
2123 out:
2124 qapi_free_KeyValueList(head);
2125 return;
2127 err_out:
2128 monitor_printf(mon, "invalid parameter: %.*s\n", keyname_len, keys);
2129 goto out;
2132 void hmp_screendump(Monitor *mon, const QDict *qdict)
2134 const char *filename = qdict_get_str(qdict, "filename");
2135 Error *err = NULL;
2137 qmp_screendump(filename, &err);
2138 hmp_handle_error(mon, &err);
2141 void hmp_nbd_server_start(Monitor *mon, const QDict *qdict)
2143 const char *uri = qdict_get_str(qdict, "uri");
2144 bool writable = qdict_get_try_bool(qdict, "writable", false);
2145 bool all = qdict_get_try_bool(qdict, "all", false);
2146 Error *local_err = NULL;
2147 BlockInfoList *block_list, *info;
2148 SocketAddress *addr;
2150 if (writable && !all) {
2151 error_setg(&local_err, "-w only valid together with -a");
2152 goto exit;
2155 /* First check if the address is valid and start the server. */
2156 addr = socket_parse(uri, &local_err);
2157 if (local_err != NULL) {
2158 goto exit;
2161 nbd_server_start(addr, NULL, &local_err);
2162 qapi_free_SocketAddress(addr);
2163 if (local_err != NULL) {
2164 goto exit;
2167 if (!all) {
2168 return;
2171 /* Then try adding all block devices. If one fails, close all and
2172 * exit.
2174 block_list = qmp_query_block(NULL);
2176 for (info = block_list; info; info = info->next) {
2177 if (!info->value->has_inserted) {
2178 continue;
2181 qmp_nbd_server_add(info->value->device, true, writable, &local_err);
2183 if (local_err != NULL) {
2184 qmp_nbd_server_stop(NULL);
2185 break;
2189 qapi_free_BlockInfoList(block_list);
2191 exit:
2192 hmp_handle_error(mon, &local_err);
2195 void hmp_nbd_server_add(Monitor *mon, const QDict *qdict)
2197 const char *device = qdict_get_str(qdict, "device");
2198 bool writable = qdict_get_try_bool(qdict, "writable", false);
2199 Error *local_err = NULL;
2201 qmp_nbd_server_add(device, true, writable, &local_err);
2203 if (local_err != NULL) {
2204 hmp_handle_error(mon, &local_err);
2208 void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict)
2210 Error *err = NULL;
2212 qmp_nbd_server_stop(&err);
2213 hmp_handle_error(mon, &err);
2216 void hmp_cpu_add(Monitor *mon, const QDict *qdict)
2218 int cpuid;
2219 Error *err = NULL;
2221 cpuid = qdict_get_int(qdict, "id");
2222 qmp_cpu_add(cpuid, &err);
2223 hmp_handle_error(mon, &err);
2226 void hmp_chardev_add(Monitor *mon, const QDict *qdict)
2228 const char *args = qdict_get_str(qdict, "args");
2229 Error *err = NULL;
2230 QemuOpts *opts;
2232 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args, true);
2233 if (opts == NULL) {
2234 error_setg(&err, "Parsing chardev args failed");
2235 } else {
2236 qemu_chr_new_from_opts(opts, &err);
2237 qemu_opts_del(opts);
2239 hmp_handle_error(mon, &err);
2242 void hmp_chardev_change(Monitor *mon, const QDict *qdict)
2244 const char *args = qdict_get_str(qdict, "args");
2245 const char *id;
2246 Error *err = NULL;
2247 ChardevBackend *backend = NULL;
2248 ChardevReturn *ret = NULL;
2249 QemuOpts *opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args,
2250 true);
2251 if (!opts) {
2252 error_setg(&err, "Parsing chardev args failed");
2253 goto end;
2256 id = qdict_get_str(qdict, "id");
2257 if (qemu_opts_id(opts)) {
2258 error_setg(&err, "Unexpected 'id' parameter");
2259 goto end;
2262 backend = qemu_chr_parse_opts(opts, &err);
2263 if (!backend) {
2264 goto end;
2267 ret = qmp_chardev_change(id, backend, &err);
2269 end:
2270 qapi_free_ChardevReturn(ret);
2271 qapi_free_ChardevBackend(backend);
2272 qemu_opts_del(opts);
2273 hmp_handle_error(mon, &err);
2276 void hmp_chardev_remove(Monitor *mon, const QDict *qdict)
2278 Error *local_err = NULL;
2280 qmp_chardev_remove(qdict_get_str(qdict, "id"), &local_err);
2281 hmp_handle_error(mon, &local_err);
2284 void hmp_chardev_send_break(Monitor *mon, const QDict *qdict)
2286 Error *local_err = NULL;
2288 qmp_chardev_send_break(qdict_get_str(qdict, "id"), &local_err);
2289 hmp_handle_error(mon, &local_err);
2292 void hmp_qemu_io(Monitor *mon, const QDict *qdict)
2294 BlockBackend *blk;
2295 BlockBackend *local_blk = NULL;
2296 AioContext *aio_context;
2297 const char* device = qdict_get_str(qdict, "device");
2298 const char* command = qdict_get_str(qdict, "command");
2299 Error *err = NULL;
2300 int ret;
2302 blk = blk_by_name(device);
2303 if (!blk) {
2304 BlockDriverState *bs = bdrv_lookup_bs(NULL, device, &err);
2305 if (bs) {
2306 blk = local_blk = blk_new(0, BLK_PERM_ALL);
2307 ret = blk_insert_bs(blk, bs, &err);
2308 if (ret < 0) {
2309 goto fail;
2311 } else {
2312 goto fail;
2316 aio_context = blk_get_aio_context(blk);
2317 aio_context_acquire(aio_context);
2320 * Notably absent: Proper permission management. This is sad, but it seems
2321 * almost impossible to achieve without changing the semantics and thereby
2322 * limiting the use cases of the qemu-io HMP command.
2324 * In an ideal world we would unconditionally create a new BlockBackend for
2325 * qemuio_command(), but we have commands like 'reopen' and want them to
2326 * take effect on the exact BlockBackend whose name the user passed instead
2327 * of just on a temporary copy of it.
2329 * Another problem is that deleting the temporary BlockBackend involves
2330 * draining all requests on it first, but some qemu-iotests cases want to
2331 * issue multiple aio_read/write requests and expect them to complete in
2332 * the background while the monitor has already returned.
2334 * This is also what prevents us from saving the original permissions and
2335 * restoring them later: We can't revoke permissions until all requests
2336 * have completed, and we don't know when that is nor can we really let
2337 * anything else run before we have revoken them to avoid race conditions.
2339 * What happens now is that command() in qemu-io-cmds.c can extend the
2340 * permissions if necessary for the qemu-io command. And they simply stay
2341 * extended, possibly resulting in a read-only guest device keeping write
2342 * permissions. Ugly, but it appears to be the lesser evil.
2344 qemuio_command(blk, command);
2346 aio_context_release(aio_context);
2348 fail:
2349 blk_unref(local_blk);
2350 hmp_handle_error(mon, &err);
2353 void hmp_object_del(Monitor *mon, const QDict *qdict)
2355 const char *id = qdict_get_str(qdict, "id");
2356 Error *err = NULL;
2358 user_creatable_del(id, &err);
2359 hmp_handle_error(mon, &err);
2362 void hmp_info_memdev(Monitor *mon, const QDict *qdict)
2364 Error *err = NULL;
2365 MemdevList *memdev_list = qmp_query_memdev(&err);
2366 MemdevList *m = memdev_list;
2367 Visitor *v;
2368 char *str;
2370 while (m) {
2371 v = string_output_visitor_new(false, &str);
2372 visit_type_uint16List(v, NULL, &m->value->host_nodes, NULL);
2373 monitor_printf(mon, "memory backend: %s\n", m->value->id);
2374 monitor_printf(mon, " size: %" PRId64 "\n", m->value->size);
2375 monitor_printf(mon, " merge: %s\n",
2376 m->value->merge ? "true" : "false");
2377 monitor_printf(mon, " dump: %s\n",
2378 m->value->dump ? "true" : "false");
2379 monitor_printf(mon, " prealloc: %s\n",
2380 m->value->prealloc ? "true" : "false");
2381 monitor_printf(mon, " policy: %s\n",
2382 HostMemPolicy_lookup[m->value->policy]);
2383 visit_complete(v, &str);
2384 monitor_printf(mon, " host nodes: %s\n", str);
2386 g_free(str);
2387 visit_free(v);
2388 m = m->next;
2391 monitor_printf(mon, "\n");
2393 qapi_free_MemdevList(memdev_list);
2396 void hmp_info_memory_devices(Monitor *mon, const QDict *qdict)
2398 Error *err = NULL;
2399 MemoryDeviceInfoList *info_list = qmp_query_memory_devices(&err);
2400 MemoryDeviceInfoList *info;
2401 MemoryDeviceInfo *value;
2402 PCDIMMDeviceInfo *di;
2404 for (info = info_list; info; info = info->next) {
2405 value = info->value;
2407 if (value) {
2408 switch (value->type) {
2409 case MEMORY_DEVICE_INFO_KIND_DIMM:
2410 di = value->u.dimm.data;
2412 monitor_printf(mon, "Memory device [%s]: \"%s\"\n",
2413 MemoryDeviceInfoKind_lookup[value->type],
2414 di->id ? di->id : "");
2415 monitor_printf(mon, " addr: 0x%" PRIx64 "\n", di->addr);
2416 monitor_printf(mon, " slot: %" PRId64 "\n", di->slot);
2417 monitor_printf(mon, " node: %" PRId64 "\n", di->node);
2418 monitor_printf(mon, " size: %" PRIu64 "\n", di->size);
2419 monitor_printf(mon, " memdev: %s\n", di->memdev);
2420 monitor_printf(mon, " hotplugged: %s\n",
2421 di->hotplugged ? "true" : "false");
2422 monitor_printf(mon, " hotpluggable: %s\n",
2423 di->hotpluggable ? "true" : "false");
2424 break;
2425 default:
2426 break;
2431 qapi_free_MemoryDeviceInfoList(info_list);
2434 void hmp_info_iothreads(Monitor *mon, const QDict *qdict)
2436 IOThreadInfoList *info_list = qmp_query_iothreads(NULL);
2437 IOThreadInfoList *info;
2438 IOThreadInfo *value;
2440 for (info = info_list; info; info = info->next) {
2441 value = info->value;
2442 monitor_printf(mon, "%s:\n", value->id);
2443 monitor_printf(mon, " thread_id=%" PRId64 "\n", value->thread_id);
2444 monitor_printf(mon, " poll-max-ns=%" PRId64 "\n", value->poll_max_ns);
2445 monitor_printf(mon, " poll-grow=%" PRId64 "\n", value->poll_grow);
2446 monitor_printf(mon, " poll-shrink=%" PRId64 "\n", value->poll_shrink);
2449 qapi_free_IOThreadInfoList(info_list);
2452 void hmp_qom_list(Monitor *mon, const QDict *qdict)
2454 const char *path = qdict_get_try_str(qdict, "path");
2455 ObjectPropertyInfoList *list;
2456 Error *err = NULL;
2458 if (path == NULL) {
2459 monitor_printf(mon, "/\n");
2460 return;
2463 list = qmp_qom_list(path, &err);
2464 if (err == NULL) {
2465 ObjectPropertyInfoList *start = list;
2466 while (list != NULL) {
2467 ObjectPropertyInfo *value = list->value;
2469 monitor_printf(mon, "%s (%s)\n",
2470 value->name, value->type);
2471 list = list->next;
2473 qapi_free_ObjectPropertyInfoList(start);
2475 hmp_handle_error(mon, &err);
2478 void hmp_qom_set(Monitor *mon, const QDict *qdict)
2480 const char *path = qdict_get_str(qdict, "path");
2481 const char *property = qdict_get_str(qdict, "property");
2482 const char *value = qdict_get_str(qdict, "value");
2483 Error *err = NULL;
2484 bool ambiguous = false;
2485 Object *obj;
2487 obj = object_resolve_path(path, &ambiguous);
2488 if (obj == NULL) {
2489 error_set(&err, ERROR_CLASS_DEVICE_NOT_FOUND,
2490 "Device '%s' not found", path);
2491 } else {
2492 if (ambiguous) {
2493 monitor_printf(mon, "Warning: Path '%s' is ambiguous\n", path);
2495 object_property_parse(obj, value, property, &err);
2497 hmp_handle_error(mon, &err);
2500 void hmp_rocker(Monitor *mon, const QDict *qdict)
2502 const char *name = qdict_get_str(qdict, "name");
2503 RockerSwitch *rocker;
2504 Error *err = NULL;
2506 rocker = qmp_query_rocker(name, &err);
2507 if (err != NULL) {
2508 hmp_handle_error(mon, &err);
2509 return;
2512 monitor_printf(mon, "name: %s\n", rocker->name);
2513 monitor_printf(mon, "id: 0x%" PRIx64 "\n", rocker->id);
2514 monitor_printf(mon, "ports: %d\n", rocker->ports);
2516 qapi_free_RockerSwitch(rocker);
2519 void hmp_rocker_ports(Monitor *mon, const QDict *qdict)
2521 RockerPortList *list, *port;
2522 const char *name = qdict_get_str(qdict, "name");
2523 Error *err = NULL;
2525 list = qmp_query_rocker_ports(name, &err);
2526 if (err != NULL) {
2527 hmp_handle_error(mon, &err);
2528 return;
2531 monitor_printf(mon, " ena/ speed/ auto\n");
2532 monitor_printf(mon, " port link duplex neg?\n");
2534 for (port = list; port; port = port->next) {
2535 monitor_printf(mon, "%10s %-4s %-3s %2s %-3s\n",
2536 port->value->name,
2537 port->value->enabled ? port->value->link_up ?
2538 "up" : "down" : "!ena",
2539 port->value->speed == 10000 ? "10G" : "??",
2540 port->value->duplex ? "FD" : "HD",
2541 port->value->autoneg ? "Yes" : "No");
2544 qapi_free_RockerPortList(list);
2547 void hmp_rocker_of_dpa_flows(Monitor *mon, const QDict *qdict)
2549 RockerOfDpaFlowList *list, *info;
2550 const char *name = qdict_get_str(qdict, "name");
2551 uint32_t tbl_id = qdict_get_try_int(qdict, "tbl_id", -1);
2552 Error *err = NULL;
2554 list = qmp_query_rocker_of_dpa_flows(name, tbl_id != -1, tbl_id, &err);
2555 if (err != NULL) {
2556 hmp_handle_error(mon, &err);
2557 return;
2560 monitor_printf(mon, "prio tbl hits key(mask) --> actions\n");
2562 for (info = list; info; info = info->next) {
2563 RockerOfDpaFlow *flow = info->value;
2564 RockerOfDpaFlowKey *key = flow->key;
2565 RockerOfDpaFlowMask *mask = flow->mask;
2566 RockerOfDpaFlowAction *action = flow->action;
2568 if (flow->hits) {
2569 monitor_printf(mon, "%-4d %-3d %-4" PRIu64,
2570 key->priority, key->tbl_id, flow->hits);
2571 } else {
2572 monitor_printf(mon, "%-4d %-3d ",
2573 key->priority, key->tbl_id);
2576 if (key->has_in_pport) {
2577 monitor_printf(mon, " pport %d", key->in_pport);
2578 if (mask->has_in_pport) {
2579 monitor_printf(mon, "(0x%x)", mask->in_pport);
2583 if (key->has_vlan_id) {
2584 monitor_printf(mon, " vlan %d",
2585 key->vlan_id & VLAN_VID_MASK);
2586 if (mask->has_vlan_id) {
2587 monitor_printf(mon, "(0x%x)", mask->vlan_id);
2591 if (key->has_tunnel_id) {
2592 monitor_printf(mon, " tunnel %d", key->tunnel_id);
2593 if (mask->has_tunnel_id) {
2594 monitor_printf(mon, "(0x%x)", mask->tunnel_id);
2598 if (key->has_eth_type) {
2599 switch (key->eth_type) {
2600 case 0x0806:
2601 monitor_printf(mon, " ARP");
2602 break;
2603 case 0x0800:
2604 monitor_printf(mon, " IP");
2605 break;
2606 case 0x86dd:
2607 monitor_printf(mon, " IPv6");
2608 break;
2609 case 0x8809:
2610 monitor_printf(mon, " LACP");
2611 break;
2612 case 0x88cc:
2613 monitor_printf(mon, " LLDP");
2614 break;
2615 default:
2616 monitor_printf(mon, " eth type 0x%04x", key->eth_type);
2617 break;
2621 if (key->has_eth_src) {
2622 if ((strcmp(key->eth_src, "01:00:00:00:00:00") == 0) &&
2623 (mask->has_eth_src) &&
2624 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2625 monitor_printf(mon, " src <any mcast/bcast>");
2626 } else if ((strcmp(key->eth_src, "00:00:00:00:00:00") == 0) &&
2627 (mask->has_eth_src) &&
2628 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2629 monitor_printf(mon, " src <any ucast>");
2630 } else {
2631 monitor_printf(mon, " src %s", key->eth_src);
2632 if (mask->has_eth_src) {
2633 monitor_printf(mon, "(%s)", mask->eth_src);
2638 if (key->has_eth_dst) {
2639 if ((strcmp(key->eth_dst, "01:00:00:00:00:00") == 0) &&
2640 (mask->has_eth_dst) &&
2641 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2642 monitor_printf(mon, " dst <any mcast/bcast>");
2643 } else if ((strcmp(key->eth_dst, "00:00:00:00:00:00") == 0) &&
2644 (mask->has_eth_dst) &&
2645 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2646 monitor_printf(mon, " dst <any ucast>");
2647 } else {
2648 monitor_printf(mon, " dst %s", key->eth_dst);
2649 if (mask->has_eth_dst) {
2650 monitor_printf(mon, "(%s)", mask->eth_dst);
2655 if (key->has_ip_proto) {
2656 monitor_printf(mon, " proto %d", key->ip_proto);
2657 if (mask->has_ip_proto) {
2658 monitor_printf(mon, "(0x%x)", mask->ip_proto);
2662 if (key->has_ip_tos) {
2663 monitor_printf(mon, " TOS %d", key->ip_tos);
2664 if (mask->has_ip_tos) {
2665 monitor_printf(mon, "(0x%x)", mask->ip_tos);
2669 if (key->has_ip_dst) {
2670 monitor_printf(mon, " dst %s", key->ip_dst);
2673 if (action->has_goto_tbl || action->has_group_id ||
2674 action->has_new_vlan_id) {
2675 monitor_printf(mon, " -->");
2678 if (action->has_new_vlan_id) {
2679 monitor_printf(mon, " apply new vlan %d",
2680 ntohs(action->new_vlan_id));
2683 if (action->has_group_id) {
2684 monitor_printf(mon, " write group 0x%08x", action->group_id);
2687 if (action->has_goto_tbl) {
2688 monitor_printf(mon, " goto tbl %d", action->goto_tbl);
2691 monitor_printf(mon, "\n");
2694 qapi_free_RockerOfDpaFlowList(list);
2697 void hmp_rocker_of_dpa_groups(Monitor *mon, const QDict *qdict)
2699 RockerOfDpaGroupList *list, *g;
2700 const char *name = qdict_get_str(qdict, "name");
2701 uint8_t type = qdict_get_try_int(qdict, "type", 9);
2702 Error *err = NULL;
2703 bool set = false;
2705 list = qmp_query_rocker_of_dpa_groups(name, type != 9, type, &err);
2706 if (err != NULL) {
2707 hmp_handle_error(mon, &err);
2708 return;
2711 monitor_printf(mon, "id (decode) --> buckets\n");
2713 for (g = list; g; g = g->next) {
2714 RockerOfDpaGroup *group = g->value;
2716 monitor_printf(mon, "0x%08x", group->id);
2718 monitor_printf(mon, " (type %s", group->type == 0 ? "L2 interface" :
2719 group->type == 1 ? "L2 rewrite" :
2720 group->type == 2 ? "L3 unicast" :
2721 group->type == 3 ? "L2 multicast" :
2722 group->type == 4 ? "L2 flood" :
2723 group->type == 5 ? "L3 interface" :
2724 group->type == 6 ? "L3 multicast" :
2725 group->type == 7 ? "L3 ECMP" :
2726 group->type == 8 ? "L2 overlay" :
2727 "unknown");
2729 if (group->has_vlan_id) {
2730 monitor_printf(mon, " vlan %d", group->vlan_id);
2733 if (group->has_pport) {
2734 monitor_printf(mon, " pport %d", group->pport);
2737 if (group->has_index) {
2738 monitor_printf(mon, " index %d", group->index);
2741 monitor_printf(mon, ") -->");
2743 if (group->has_set_vlan_id && group->set_vlan_id) {
2744 set = true;
2745 monitor_printf(mon, " set vlan %d",
2746 group->set_vlan_id & VLAN_VID_MASK);
2749 if (group->has_set_eth_src) {
2750 if (!set) {
2751 set = true;
2752 monitor_printf(mon, " set");
2754 monitor_printf(mon, " src %s", group->set_eth_src);
2757 if (group->has_set_eth_dst) {
2758 if (!set) {
2759 set = true;
2760 monitor_printf(mon, " set");
2762 monitor_printf(mon, " dst %s", group->set_eth_dst);
2765 set = false;
2767 if (group->has_ttl_check && group->ttl_check) {
2768 monitor_printf(mon, " check TTL");
2771 if (group->has_group_id && group->group_id) {
2772 monitor_printf(mon, " group id 0x%08x", group->group_id);
2775 if (group->has_pop_vlan && group->pop_vlan) {
2776 monitor_printf(mon, " pop vlan");
2779 if (group->has_out_pport) {
2780 monitor_printf(mon, " out pport %d", group->out_pport);
2783 if (group->has_group_ids) {
2784 struct uint32List *id;
2786 monitor_printf(mon, " groups [");
2787 for (id = group->group_ids; id; id = id->next) {
2788 monitor_printf(mon, "0x%08x", id->value);
2789 if (id->next) {
2790 monitor_printf(mon, ",");
2793 monitor_printf(mon, "]");
2796 monitor_printf(mon, "\n");
2799 qapi_free_RockerOfDpaGroupList(list);
2802 void hmp_info_dump(Monitor *mon, const QDict *qdict)
2804 DumpQueryResult *result = qmp_query_dump(NULL);
2806 assert(result && result->status < DUMP_STATUS__MAX);
2807 monitor_printf(mon, "Status: %s\n", DumpStatus_lookup[result->status]);
2809 if (result->status == DUMP_STATUS_ACTIVE) {
2810 float percent = 0;
2811 assert(result->total != 0);
2812 percent = 100.0 * result->completed / result->total;
2813 monitor_printf(mon, "Finished: %.2f %%\n", percent);
2816 qapi_free_DumpQueryResult(result);
2819 void hmp_info_ramblock(Monitor *mon, const QDict *qdict)
2821 ram_block_dump(mon);
2824 void hmp_hotpluggable_cpus(Monitor *mon, const QDict *qdict)
2826 Error *err = NULL;
2827 HotpluggableCPUList *l = qmp_query_hotpluggable_cpus(&err);
2828 HotpluggableCPUList *saved = l;
2829 CpuInstanceProperties *c;
2831 if (err != NULL) {
2832 hmp_handle_error(mon, &err);
2833 return;
2836 monitor_printf(mon, "Hotpluggable CPUs:\n");
2837 while (l) {
2838 monitor_printf(mon, " type: \"%s\"\n", l->value->type);
2839 monitor_printf(mon, " vcpus_count: \"%" PRIu64 "\"\n",
2840 l->value->vcpus_count);
2841 if (l->value->has_qom_path) {
2842 monitor_printf(mon, " qom_path: \"%s\"\n", l->value->qom_path);
2845 c = l->value->props;
2846 monitor_printf(mon, " CPUInstance Properties:\n");
2847 if (c->has_node_id) {
2848 monitor_printf(mon, " node-id: \"%" PRIu64 "\"\n", c->node_id);
2850 if (c->has_socket_id) {
2851 monitor_printf(mon, " socket-id: \"%" PRIu64 "\"\n", c->socket_id);
2853 if (c->has_core_id) {
2854 monitor_printf(mon, " core-id: \"%" PRIu64 "\"\n", c->core_id);
2856 if (c->has_thread_id) {
2857 monitor_printf(mon, " thread-id: \"%" PRIu64 "\"\n", c->thread_id);
2860 l = l->next;
2863 qapi_free_HotpluggableCPUList(saved);
2866 void hmp_info_vm_generation_id(Monitor *mon, const QDict *qdict)
2868 Error *err = NULL;
2869 GuidInfo *info = qmp_query_vm_generation_id(&err);
2870 if (info) {
2871 monitor_printf(mon, "%s\n", info->guid);
2873 hmp_handle_error(mon, &err);
2874 qapi_free_GuidInfo(info);