]> git.proxmox.com Git - mirror_qemu.git/blame - hmp.c
hmp-commands-info: add sync-profile
[mirror_qemu.git] / hmp.c
CommitLineData
48a32bed
AL
1/*
2 * Human Monitor Interface
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
6b620ca3
PB
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.
48a32bed
AL
14 */
15
d38ea87a 16#include "qemu/osdep.h"
48a32bed 17#include "hmp.h"
1422e32d 18#include "net/net.h"
fafa4d50 19#include "net/eth.h"
8228e353 20#include "chardev/char.h"
4c7b7e9b 21#include "sysemu/block-backend.h"
52b26205 22#include "sysemu/sysemu.h"
213dcb06 23#include "qemu/config-file.h"
1de7afc9
PB
24#include "qemu/option.h"
25#include "qemu/timer.h"
1de7afc9 26#include "qemu/sockets.h"
83c9089e 27#include "monitor/monitor.h"
318660f8 28#include "monitor/qdev.h"
e688df6b 29#include "qapi/error.h"
cff8b2c6 30#include "qapi/opts-visitor.h"
eb815e24 31#include "qapi/qapi-builtin-visit.h"
112ed241
MA
32#include "qapi/qapi-commands-block.h"
33#include "qapi/qapi-commands-char.h"
34#include "qapi/qapi-commands-migration.h"
35#include "qapi/qapi-commands-misc.h"
36#include "qapi/qapi-commands-net.h"
37#include "qapi/qapi-commands-rocker.h"
38#include "qapi/qapi-commands-run-state.h"
39#include "qapi/qapi-commands-tpm.h"
40#include "qapi/qapi-commands-ui.h"
452fcdbc 41#include "qapi/qmp/qdict.h"
cc7a8ea7 42#include "qapi/qmp/qerror.h"
f4a06d13 43#include "qapi/string-input-visitor.h"
eb1539b2 44#include "qapi/string-output-visitor.h"
90998d58 45#include "qom/object_interfaces.h"
28ecbaee 46#include "ui/console.h"
bd269ebc 47#include "block/nbd.h"
bd093a36 48#include "block/qapi.h"
587da2c3 49#include "qemu-io.h"
f348b6d1 50#include "qemu/cutils.h"
d59ce6f3 51#include "qemu/error-report.h"
be9b23c4 52#include "exec/ramlist.h"
61b97833 53#include "hw/intc/intc.h"
5e22479a 54#include "migration/snapshot.h"
9d18af93 55#include "migration/misc.h"
48a32bed 56
22fa7da0
CR
57#ifdef CONFIG_SPICE
58#include <spice/enums.h>
59#endif
60
0cfd6a9a
LC
61static void hmp_handle_error(Monitor *mon, Error **errp)
62{
415168e0
MA
63 assert(errp);
64 if (*errp) {
193227f9 65 error_report_err(*errp);
0cfd6a9a
LC
66 }
67}
68
84f2d0ea 69void hmp_info_name(Monitor *mon, const QDict *qdict)
48a32bed
AL
70{
71 NameInfo *info;
72
73 info = qmp_query_name(NULL);
74 if (info->has_name) {
75 monitor_printf(mon, "%s\n", info->name);
76 }
77 qapi_free_NameInfo(info);
78}
b9c15f16 79
84f2d0ea 80void hmp_info_version(Monitor *mon, const QDict *qdict)
b9c15f16
LC
81{
82 VersionInfo *info;
83
84 info = qmp_query_version(NULL);
85
86 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
4752cdbb 87 info->qemu->major, info->qemu->minor, info->qemu->micro,
b9c15f16
LC
88 info->package);
89
90 qapi_free_VersionInfo(info);
91}
292a2602 92
84f2d0ea 93void hmp_info_kvm(Monitor *mon, const QDict *qdict)
292a2602
LC
94{
95 KvmInfo *info;
96
97 info = qmp_query_kvm(NULL);
98 monitor_printf(mon, "kvm support: ");
99 if (info->present) {
100 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
101 } else {
102 monitor_printf(mon, "not compiled\n");
103 }
104
105 qapi_free_KvmInfo(info);
106}
107
84f2d0ea 108void hmp_info_status(Monitor *mon, const QDict *qdict)
1fa9a5e4
LC
109{
110 StatusInfo *info;
111
112 info = qmp_query_status(NULL);
113
114 monitor_printf(mon, "VM status: %s%s",
115 info->running ? "running" : "paused",
116 info->singlestep ? " (single step mode)" : "");
117
118 if (!info->running && info->status != RUN_STATE_PAUSED) {
977c736f 119 monitor_printf(mon, " (%s)", RunState_str(info->status));
1fa9a5e4
LC
120 }
121
122 monitor_printf(mon, "\n");
123
124 qapi_free_StatusInfo(info);
125}
126
84f2d0ea 127void hmp_info_uuid(Monitor *mon, const QDict *qdict)
efab767e
LC
128{
129 UuidInfo *info;
130
131 info = qmp_query_uuid(NULL);
132 monitor_printf(mon, "%s\n", info->UUID);
133 qapi_free_UuidInfo(info);
134}
c5a415a0 135
84f2d0ea 136void hmp_info_chardev(Monitor *mon, const QDict *qdict)
c5a415a0
LC
137{
138 ChardevInfoList *char_info, *info;
139
140 char_info = qmp_query_chardev(NULL);
141 for (info = char_info; info; info = info->next) {
142 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
143 info->value->filename);
144 }
145
146 qapi_free_ChardevInfoList(char_info);
147}
7a7f325e 148
84f2d0ea 149void hmp_info_mice(Monitor *mon, const QDict *qdict)
e235cec3
LC
150{
151 MouseInfoList *mice_list, *mouse;
152
153 mice_list = qmp_query_mice(NULL);
154 if (!mice_list) {
155 monitor_printf(mon, "No mouse devices connected\n");
156 return;
157 }
158
159 for (mouse = mice_list; mouse; mouse = mouse->next) {
160 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
161 mouse->value->current ? '*' : ' ',
162 mouse->value->index, mouse->value->name,
163 mouse->value->absolute ? " (absolute)" : "");
164 }
165
166 qapi_free_MouseInfoList(mice_list);
167}
168
84f2d0ea 169void hmp_info_migrate(Monitor *mon, const QDict *qdict)
791e7c82
LC
170{
171 MigrationInfo *info;
bbf6da32 172 MigrationCapabilityStatusList *caps, *cap;
791e7c82
LC
173
174 info = qmp_query_migrate(NULL);
bbf6da32
OW
175 caps = qmp_query_migrate_capabilities(NULL);
176
9d18af93
PX
177 migration_global_dump(mon);
178
bbf6da32
OW
179 /* do not display parameters during setup */
180 if (info->has_status && caps) {
181 monitor_printf(mon, "capabilities: ");
182 for (cap = caps; cap; cap = cap->next) {
183 monitor_printf(mon, "%s: %s ",
977c736f 184 MigrationCapability_str(cap->value->capability),
bbf6da32
OW
185 cap->value->state ? "on" : "off");
186 }
187 monitor_printf(mon, "\n");
188 }
791e7c82
LC
189
190 if (info->has_status) {
d59ce6f3 191 monitor_printf(mon, "Migration status: %s",
977c736f 192 MigrationStatus_str(info->status));
d59ce6f3
DB
193 if (info->status == MIGRATION_STATUS_FAILED &&
194 info->has_error_desc) {
195 monitor_printf(mon, " (%s)\n", info->error_desc);
196 } else {
197 monitor_printf(mon, "\n");
198 }
199
7aa939af
JQ
200 monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
201 info->total_time);
2c52ddf1
JQ
202 if (info->has_expected_downtime) {
203 monitor_printf(mon, "expected downtime: %" PRIu64 " milliseconds\n",
204 info->expected_downtime);
205 }
9c5a9fcf
JQ
206 if (info->has_downtime) {
207 monitor_printf(mon, "downtime: %" PRIu64 " milliseconds\n",
208 info->downtime);
209 }
ed4fbd10
MH
210 if (info->has_setup_time) {
211 monitor_printf(mon, "setup: %" PRIu64 " milliseconds\n",
212 info->setup_time);
213 }
791e7c82
LC
214 }
215
216 if (info->has_ram) {
217 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
218 info->ram->transferred >> 10);
7e114f8c
MH
219 monitor_printf(mon, "throughput: %0.2f mbps\n",
220 info->ram->mbps);
791e7c82
LC
221 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
222 info->ram->remaining >> 10);
223 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
224 info->ram->total >> 10);
004d4c10
OW
225 monitor_printf(mon, "duplicate: %" PRIu64 " pages\n",
226 info->ram->duplicate);
f1c72795
PL
227 monitor_printf(mon, "skipped: %" PRIu64 " pages\n",
228 info->ram->skipped);
004d4c10
OW
229 monitor_printf(mon, "normal: %" PRIu64 " pages\n",
230 info->ram->normal);
231 monitor_printf(mon, "normal bytes: %" PRIu64 " kbytes\n",
232 info->ram->normal_bytes >> 10);
58570ed8
C
233 monitor_printf(mon, "dirty sync count: %" PRIu64 "\n",
234 info->ram->dirty_sync_count);
030ce1f8
CF
235 monitor_printf(mon, "page size: %" PRIu64 " kbytes\n",
236 info->ram->page_size >> 10);
a61c45bd
JQ
237 monitor_printf(mon, "multifd bytes: %" PRIu64 " kbytes\n",
238 info->ram->multifd_bytes >> 10);
030ce1f8 239
8d017193
JQ
240 if (info->ram->dirty_pages_rate) {
241 monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
242 info->ram->dirty_pages_rate);
243 }
d3bf5418
DDAG
244 if (info->ram->postcopy_requests) {
245 monitor_printf(mon, "postcopy request count: %" PRIu64 "\n",
246 info->ram->postcopy_requests);
247 }
791e7c82
LC
248 }
249
250 if (info->has_disk) {
251 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
252 info->disk->transferred >> 10);
253 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
254 info->disk->remaining >> 10);
255 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
256 info->disk->total >> 10);
257 }
258
f36d55af
OW
259 if (info->has_xbzrle_cache) {
260 monitor_printf(mon, "cache size: %" PRIu64 " bytes\n",
261 info->xbzrle_cache->cache_size);
262 monitor_printf(mon, "xbzrle transferred: %" PRIu64 " kbytes\n",
263 info->xbzrle_cache->bytes >> 10);
264 monitor_printf(mon, "xbzrle pages: %" PRIu64 " pages\n",
265 info->xbzrle_cache->pages);
266 monitor_printf(mon, "xbzrle cache miss: %" PRIu64 "\n",
267 info->xbzrle_cache->cache_miss);
8bc39233
C
268 monitor_printf(mon, "xbzrle cache miss rate: %0.2f\n",
269 info->xbzrle_cache->cache_miss_rate);
f36d55af
OW
270 monitor_printf(mon, "xbzrle overflow : %" PRIu64 "\n",
271 info->xbzrle_cache->overflow);
272 }
273
d85a31d1 274 if (info->has_cpu_throttle_percentage) {
4782893e 275 monitor_printf(mon, "cpu throttle percentage: %" PRIu64 "\n",
d85a31d1 276 info->cpu_throttle_percentage);
4782893e
JH
277 }
278
65ace060
AP
279 if (info->has_postcopy_blocktime) {
280 monitor_printf(mon, "postcopy blocktime: %u\n",
281 info->postcopy_blocktime);
282 }
283
284 if (info->has_postcopy_vcpu_blocktime) {
285 Visitor *v;
286 char *str;
287 v = string_output_visitor_new(false, &str);
288 visit_type_uint32List(v, NULL, &info->postcopy_vcpu_blocktime, NULL);
289 visit_complete(v, &str);
290 monitor_printf(mon, "postcopy vcpu blocktime: %s\n", str);
291 g_free(str);
292 visit_free(v);
293 }
791e7c82 294 qapi_free_MigrationInfo(info);
bbf6da32
OW
295 qapi_free_MigrationCapabilityStatusList(caps);
296}
297
84f2d0ea 298void hmp_info_migrate_capabilities(Monitor *mon, const QDict *qdict)
bbf6da32
OW
299{
300 MigrationCapabilityStatusList *caps, *cap;
301
302 caps = qmp_query_migrate_capabilities(NULL);
303
304 if (caps) {
bbf6da32 305 for (cap = caps; cap; cap = cap->next) {
d80a0169 306 monitor_printf(mon, "%s: %s\n",
977c736f 307 MigrationCapability_str(cap->value->capability),
bbf6da32
OW
308 cap->value->state ? "on" : "off");
309 }
bbf6da32
OW
310 }
311
312 qapi_free_MigrationCapabilityStatusList(caps);
791e7c82
LC
313}
314
50e9a629
LL
315void hmp_info_migrate_parameters(Monitor *mon, const QDict *qdict)
316{
317 MigrationParameters *params;
318
319 params = qmp_query_migrate_parameters(NULL);
320
321 if (params) {
de63ab61 322 assert(params->has_compress_level);
741d4086 323 monitor_printf(mon, "%s: %u\n",
977c736f 324 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL),
50e9a629 325 params->compress_level);
de63ab61 326 assert(params->has_compress_threads);
741d4086 327 monitor_printf(mon, "%s: %u\n",
977c736f 328 MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_THREADS),
50e9a629 329 params->compress_threads);
de63ab61 330 assert(params->has_decompress_threads);
741d4086 331 monitor_printf(mon, "%s: %u\n",
977c736f 332 MigrationParameter_str(MIGRATION_PARAMETER_DECOMPRESS_THREADS),
50e9a629 333 params->decompress_threads);
de63ab61 334 assert(params->has_cpu_throttle_initial);
741d4086 335 monitor_printf(mon, "%s: %u\n",
977c736f 336 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL),
d85a31d1 337 params->cpu_throttle_initial);
de63ab61 338 assert(params->has_cpu_throttle_increment);
741d4086 339 monitor_printf(mon, "%s: %u\n",
977c736f 340 MigrationParameter_str(MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT),
d85a31d1 341 params->cpu_throttle_increment);
8cc99dcd 342 assert(params->has_tls_creds);
2c02468c 343 monitor_printf(mon, "%s: '%s'\n",
977c736f 344 MigrationParameter_str(MIGRATION_PARAMETER_TLS_CREDS),
8cc99dcd
MA
345 params->tls_creds);
346 assert(params->has_tls_hostname);
2c02468c 347 monitor_printf(mon, "%s: '%s'\n",
977c736f 348 MigrationParameter_str(MIGRATION_PARAMETER_TLS_HOSTNAME),
8cc99dcd 349 params->tls_hostname);
2ff30257 350 assert(params->has_max_bandwidth);
741d4086 351 monitor_printf(mon, "%s: %" PRIu64 " bytes/second\n",
977c736f 352 MigrationParameter_str(MIGRATION_PARAMETER_MAX_BANDWIDTH),
2ff30257
AA
353 params->max_bandwidth);
354 assert(params->has_downtime_limit);
741d4086 355 monitor_printf(mon, "%s: %" PRIu64 " milliseconds\n",
977c736f 356 MigrationParameter_str(MIGRATION_PARAMETER_DOWNTIME_LIMIT),
2ff30257 357 params->downtime_limit);
fe39a4d4 358 assert(params->has_x_checkpoint_delay);
741d4086 359 monitor_printf(mon, "%s: %u\n",
977c736f 360 MigrationParameter_str(MIGRATION_PARAMETER_X_CHECKPOINT_DELAY),
68b53591 361 params->x_checkpoint_delay);
2833c59b
JQ
362 assert(params->has_block_incremental);
363 monitor_printf(mon, "%s: %s\n",
977c736f
MA
364 MigrationParameter_str(MIGRATION_PARAMETER_BLOCK_INCREMENTAL),
365 params->block_incremental ? "on" : "off");
741d4086 366 monitor_printf(mon, "%s: %u\n",
4075fb1c
JQ
367 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_CHANNELS),
368 params->x_multifd_channels);
741d4086 369 monitor_printf(mon, "%s: %u\n",
0fb86605
JQ
370 MigrationParameter_str(MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT),
371 params->x_multifd_page_count);
741d4086 372 monitor_printf(mon, "%s: %" PRIu64 "\n",
73af8dd8
JQ
373 MigrationParameter_str(MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE),
374 params->xbzrle_cache_size);
7e555c6c
DDAG
375 monitor_printf(mon, "%s: %" PRIu64 "\n",
376 MigrationParameter_str(MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH),
377 params->max_postcopy_bandwidth);
50e9a629
LL
378 }
379
380 qapi_free_MigrationParameters(params);
381}
382
84f2d0ea 383void hmp_info_migrate_cache_size(Monitor *mon, const QDict *qdict)
9e1ba4cc
OW
384{
385 monitor_printf(mon, "xbzrel cache size: %" PRId64 " kbytes\n",
386 qmp_query_migrate_cache_size(NULL) >> 10);
387}
388
84f2d0ea 389void hmp_info_cpus(Monitor *mon, const QDict *qdict)
de0b36b6 390{
137b5cb6 391 CpuInfoFastList *cpu_list, *cpu;
de0b36b6 392
137b5cb6 393 cpu_list = qmp_query_cpus_fast(NULL);
de0b36b6
LC
394
395 for (cpu = cpu_list; cpu; cpu = cpu->next) {
396 int active = ' ';
397
137b5cb6 398 if (cpu->value->cpu_index == monitor_get_cpu_index()) {
de0b36b6
LC
399 active = '*';
400 }
401
137b5cb6
VM
402 monitor_printf(mon, "%c CPU #%" PRId64 ":", active,
403 cpu->value->cpu_index);
0dfddbb5 404 monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
de0b36b6
LC
405 }
406
137b5cb6 407 qapi_free_CpuInfoFastList(cpu_list);
de0b36b6
LC
408}
409
289b276c
KW
410static void print_block_info(Monitor *mon, BlockInfo *info,
411 BlockDeviceInfo *inserted, bool verbose)
b2023818 412{
bd093a36 413 ImageInfo *image_info;
b2023818 414
8d6adccd
KW
415 assert(!info || !info->has_inserted || info->inserted == inserted);
416
ec18b0a9 417 if (info && *info->device) {
8d6adccd
KW
418 monitor_printf(mon, "%s", info->device);
419 if (inserted && inserted->has_node_name) {
420 monitor_printf(mon, " (%s)", inserted->node_name);
421 }
422 } else {
ec18b0a9 423 assert(info || inserted);
8d6adccd 424 monitor_printf(mon, "%s",
ec18b0a9
KW
425 inserted && inserted->has_node_name ? inserted->node_name
426 : info && info->has_qdev ? info->qdev
8d6adccd
KW
427 : "<anonymous>");
428 }
429
289b276c
KW
430 if (inserted) {
431 monitor_printf(mon, ": %s (%s%s%s)\n",
432 inserted->file,
433 inserted->drv,
434 inserted->ro ? ", read-only" : "",
435 inserted->encrypted ? ", encrypted" : "");
436 } else {
437 monitor_printf(mon, ": [not inserted]\n");
438 }
b2023818 439
8d6adccd 440 if (info) {
46eade7b
KW
441 if (info->has_qdev) {
442 monitor_printf(mon, " Attached to: %s\n", info->qdev);
443 }
8d6adccd
KW
444 if (info->has_io_status && info->io_status != BLOCK_DEVICE_IO_STATUS_OK) {
445 monitor_printf(mon, " I/O status: %s\n",
977c736f 446 BlockDeviceIoStatus_str(info->io_status));
8d6adccd 447 }
b2023818 448
8d6adccd
KW
449 if (info->removable) {
450 monitor_printf(mon, " Removable device: %slocked, tray %s\n",
451 info->locked ? "" : "not ",
452 info->tray_open ? "open" : "closed");
453 }
289b276c 454 }
fbe2e26c 455
b2023818 456
289b276c
KW
457 if (!inserted) {
458 return;
459 }
b2023818 460
289b276c
KW
461 monitor_printf(mon, " Cache mode: %s%s%s\n",
462 inserted->cache->writeback ? "writeback" : "writethrough",
463 inserted->cache->direct ? ", direct" : "",
464 inserted->cache->no_flush ? ", ignore flushes" : "");
465
466 if (inserted->has_backing_file) {
467 monitor_printf(mon,
468 " Backing file: %s "
469 "(chain depth: %" PRId64 ")\n",
470 inserted->backing_file,
471 inserted->backing_file_depth);
472 }
727f005e 473
289b276c
KW
474 if (inserted->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF) {
475 monitor_printf(mon, " Detect zeroes: %s\n",
977c736f 476 BlockdevDetectZeroesOptions_str(inserted->detect_zeroes));
289b276c 477 }
fbe2e26c 478
289b276c
KW
479 if (inserted->bps || inserted->bps_rd || inserted->bps_wr ||
480 inserted->iops || inserted->iops_rd || inserted->iops_wr)
481 {
482 monitor_printf(mon, " I/O throttling: bps=%" PRId64
483 " bps_rd=%" PRId64 " bps_wr=%" PRId64
484 " bps_max=%" PRId64
485 " bps_rd_max=%" PRId64
486 " bps_wr_max=%" PRId64
487 " iops=%" PRId64 " iops_rd=%" PRId64
488 " iops_wr=%" PRId64
489 " iops_max=%" PRId64
490 " iops_rd_max=%" PRId64
491 " iops_wr_max=%" PRId64
b8fe1694
AG
492 " iops_size=%" PRId64
493 " group=%s\n",
289b276c
KW
494 inserted->bps,
495 inserted->bps_rd,
496 inserted->bps_wr,
497 inserted->bps_max,
498 inserted->bps_rd_max,
499 inserted->bps_wr_max,
500 inserted->iops,
501 inserted->iops_rd,
502 inserted->iops_wr,
503 inserted->iops_max,
504 inserted->iops_rd_max,
505 inserted->iops_wr_max,
b8fe1694
AG
506 inserted->iops_size,
507 inserted->group);
289b276c 508 }
fbe2e26c 509
9419874f 510 if (verbose) {
289b276c
KW
511 monitor_printf(mon, "\nImages:\n");
512 image_info = inserted->image;
513 while (1) {
514 bdrv_image_info_dump((fprintf_function)monitor_printf,
515 mon, image_info);
516 if (image_info->has_backing_image) {
517 image_info = image_info->backing_image;
518 } else {
519 break;
520 }
521 }
522 }
523}
9e193c5a 524
289b276c
KW
525void hmp_info_block(Monitor *mon, const QDict *qdict)
526{
527 BlockInfoList *block_list, *info;
e6bb31ec 528 BlockDeviceInfoList *blockdev_list, *blockdev;
289b276c 529 const char *device = qdict_get_try_str(qdict, "device");
34acbc95
EB
530 bool verbose = qdict_get_try_bool(qdict, "verbose", false);
531 bool nodes = qdict_get_try_bool(qdict, "nodes", false);
e6bb31ec 532 bool printed = false;
9e193c5a 533
e6bb31ec
KW
534 /* Print BlockBackend information */
535 if (!nodes) {
f19e44bc 536 block_list = qmp_query_block(NULL);
e6bb31ec
KW
537 } else {
538 block_list = NULL;
539 }
fbe2e26c 540
289b276c
KW
541 for (info = block_list; info; info = info->next) {
542 if (device && strcmp(device, info->value->device)) {
543 continue;
465bee1d
PL
544 }
545
289b276c
KW
546 if (info != block_list) {
547 monitor_printf(mon, "\n");
fbe2e26c 548 }
bd093a36 549
289b276c
KW
550 print_block_info(mon, info->value, info->value->has_inserted
551 ? info->value->inserted : NULL,
552 verbose);
e6bb31ec 553 printed = true;
b2023818
LC
554 }
555
556 qapi_free_BlockInfoList(block_list);
e6bb31ec
KW
557
558 if ((!device && !nodes) || printed) {
559 return;
560 }
561
562 /* Print node information */
563 blockdev_list = qmp_query_named_block_nodes(NULL);
564 for (blockdev = blockdev_list; blockdev; blockdev = blockdev->next) {
565 assert(blockdev->value->has_node_name);
566 if (device && strcmp(device, blockdev->value->node_name)) {
567 continue;
568 }
569
570 if (blockdev != blockdev_list) {
571 monitor_printf(mon, "\n");
572 }
573
574 print_block_info(mon, NULL, blockdev->value, verbose);
575 }
576 qapi_free_BlockDeviceInfoList(blockdev_list);
b2023818
LC
577}
578
84f2d0ea 579void hmp_info_blockstats(Monitor *mon, const QDict *qdict)
f11f57e4
LC
580{
581 BlockStatsList *stats_list, *stats;
582
f71eaa74 583 stats_list = qmp_query_blockstats(false, false, NULL);
f11f57e4
LC
584
585 for (stats = stats_list; stats; stats = stats->next) {
586 if (!stats->value->has_device) {
587 continue;
588 }
589
590 monitor_printf(mon, "%s:", stats->value->device);
591 monitor_printf(mon, " rd_bytes=%" PRId64
592 " wr_bytes=%" PRId64
593 " rd_operations=%" PRId64
594 " wr_operations=%" PRId64
595 " flush_operations=%" PRId64
596 " wr_total_time_ns=%" PRId64
597 " rd_total_time_ns=%" PRId64
598 " flush_total_time_ns=%" PRId64
f4564d53
PL
599 " rd_merged=%" PRId64
600 " wr_merged=%" PRId64
cb38fffb 601 " idle_time_ns=%" PRId64
f11f57e4
LC
602 "\n",
603 stats->value->stats->rd_bytes,
604 stats->value->stats->wr_bytes,
605 stats->value->stats->rd_operations,
606 stats->value->stats->wr_operations,
607 stats->value->stats->flush_operations,
608 stats->value->stats->wr_total_time_ns,
609 stats->value->stats->rd_total_time_ns,
f4564d53
PL
610 stats->value->stats->flush_total_time_ns,
611 stats->value->stats->rd_merged,
cb38fffb
AG
612 stats->value->stats->wr_merged,
613 stats->value->stats->idle_time_ns);
f11f57e4
LC
614 }
615
616 qapi_free_BlockStatsList(stats_list);
617}
618
05eb4a25 619#ifdef CONFIG_VNC
0a9667ec
DDAG
620/* Helper for hmp_info_vnc_clients, _servers */
621static void hmp_info_VncBasicInfo(Monitor *mon, VncBasicInfo *info,
622 const char *name)
623{
624 monitor_printf(mon, " %s: %s:%s (%s%s)\n",
625 name,
626 info->host,
627 info->service,
977c736f 628 NetworkAddressFamily_str(info->family),
0a9667ec
DDAG
629 info->websocket ? " (Websocket)" : "");
630}
631
632/* Helper displaying and auth and crypt info */
633static void hmp_info_vnc_authcrypt(Monitor *mon, const char *indent,
634 VncPrimaryAuth auth,
635 VncVencryptSubAuth *vencrypt)
636{
637 monitor_printf(mon, "%sAuth: %s (Sub: %s)\n", indent,
977c736f
MA
638 VncPrimaryAuth_str(auth),
639 vencrypt ? VncVencryptSubAuth_str(*vencrypt) : "none");
0a9667ec
DDAG
640}
641
642static void hmp_info_vnc_clients(Monitor *mon, VncClientInfoList *client)
643{
644 while (client) {
645 VncClientInfo *cinfo = client->value;
646
647 hmp_info_VncBasicInfo(mon, qapi_VncClientInfo_base(cinfo), "Client");
648 monitor_printf(mon, " x509_dname: %s\n",
649 cinfo->has_x509_dname ?
650 cinfo->x509_dname : "none");
651 monitor_printf(mon, " sasl_username: %s\n",
652 cinfo->has_sasl_username ?
653 cinfo->sasl_username : "none");
654
655 client = client->next;
656 }
657}
658
659static void hmp_info_vnc_servers(Monitor *mon, VncServerInfo2List *server)
660{
661 while (server) {
662 VncServerInfo2 *sinfo = server->value;
663 hmp_info_VncBasicInfo(mon, qapi_VncServerInfo2_base(sinfo), "Server");
664 hmp_info_vnc_authcrypt(mon, " ", sinfo->auth,
665 sinfo->has_vencrypt ? &sinfo->vencrypt : NULL);
666 server = server->next;
667 }
668}
669
84f2d0ea 670void hmp_info_vnc(Monitor *mon, const QDict *qdict)
2b54aa87 671{
0a9667ec 672 VncInfo2List *info2l;
2b54aa87 673 Error *err = NULL;
2b54aa87 674
0a9667ec 675 info2l = qmp_query_vnc_servers(&err);
2b54aa87 676 if (err) {
554a39eb 677 hmp_handle_error(mon, &err);
2b54aa87
LC
678 return;
679 }
0a9667ec
DDAG
680 if (!info2l) {
681 monitor_printf(mon, "None\n");
682 return;
2b54aa87
LC
683 }
684
0a9667ec
DDAG
685 while (info2l) {
686 VncInfo2 *info = info2l->value;
687 monitor_printf(mon, "%s:\n", info->id);
688 hmp_info_vnc_servers(mon, info->server);
689 hmp_info_vnc_clients(mon, info->clients);
690 if (!info->server) {
691 /* The server entry displays its auth, we only
692 * need to display in the case of 'reverse' connections
693 * where there's no server.
694 */
695 hmp_info_vnc_authcrypt(mon, " ", info->auth,
696 info->has_vencrypt ? &info->vencrypt : NULL);
697 }
698 if (info->has_display) {
699 monitor_printf(mon, " Display: %s\n", info->display);
2b54aa87 700 }
0a9667ec 701 info2l = info2l->next;
2b54aa87
LC
702 }
703
0a9667ec
DDAG
704 qapi_free_VncInfo2List(info2l);
705
2b54aa87 706}
05eb4a25 707#endif
2b54aa87 708
206addd5 709#ifdef CONFIG_SPICE
84f2d0ea 710void hmp_info_spice(Monitor *mon, const QDict *qdict)
d1f29646
LC
711{
712 SpiceChannelList *chan;
713 SpiceInfo *info;
22fa7da0
CR
714 const char *channel_name;
715 const char * const channel_names[] = {
716 [SPICE_CHANNEL_MAIN] = "main",
717 [SPICE_CHANNEL_DISPLAY] = "display",
718 [SPICE_CHANNEL_INPUTS] = "inputs",
719 [SPICE_CHANNEL_CURSOR] = "cursor",
720 [SPICE_CHANNEL_PLAYBACK] = "playback",
721 [SPICE_CHANNEL_RECORD] = "record",
722 [SPICE_CHANNEL_TUNNEL] = "tunnel",
723 [SPICE_CHANNEL_SMARTCARD] = "smartcard",
724 [SPICE_CHANNEL_USBREDIR] = "usbredir",
725 [SPICE_CHANNEL_PORT] = "port",
7c6044a9
GH
726#if 0
727 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
728 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
729 * as quick fix for build failures with older versions. */
22fa7da0 730 [SPICE_CHANNEL_WEBDAV] = "webdav",
7c6044a9 731#endif
22fa7da0 732 };
d1f29646
LC
733
734 info = qmp_query_spice(NULL);
735
736 if (!info->enabled) {
737 monitor_printf(mon, "Server: disabled\n");
738 goto out;
739 }
740
741 monitor_printf(mon, "Server:\n");
742 if (info->has_port) {
743 monitor_printf(mon, " address: %s:%" PRId64 "\n",
744 info->host, info->port);
745 }
746 if (info->has_tls_port) {
747 monitor_printf(mon, " address: %s:%" PRId64 " [tls]\n",
748 info->host, info->tls_port);
749 }
61c4efe2
YH
750 monitor_printf(mon, " migrated: %s\n",
751 info->migrated ? "true" : "false");
d1f29646
LC
752 monitor_printf(mon, " auth: %s\n", info->auth);
753 monitor_printf(mon, " compiled: %s\n", info->compiled_version);
4efee029 754 monitor_printf(mon, " mouse-mode: %s\n",
977c736f 755 SpiceQueryMouseMode_str(info->mouse_mode));
d1f29646
LC
756
757 if (!info->has_channels || info->channels == NULL) {
758 monitor_printf(mon, "Channels: none\n");
759 } else {
760 for (chan = info->channels; chan; chan = chan->next) {
761 monitor_printf(mon, "Channel:\n");
762 monitor_printf(mon, " address: %s:%s%s\n",
ddf21908 763 chan->value->host, chan->value->port,
d1f29646
LC
764 chan->value->tls ? " [tls]" : "");
765 monitor_printf(mon, " session: %" PRId64 "\n",
766 chan->value->connection_id);
767 monitor_printf(mon, " channel: %" PRId64 ":%" PRId64 "\n",
768 chan->value->channel_type, chan->value->channel_id);
22fa7da0
CR
769
770 channel_name = "unknown";
771 if (chan->value->channel_type > 0 &&
772 chan->value->channel_type < ARRAY_SIZE(channel_names) &&
773 channel_names[chan->value->channel_type]) {
774 channel_name = channel_names[chan->value->channel_type];
775 }
776
777 monitor_printf(mon, " channel name: %s\n", channel_name);
d1f29646
LC
778 }
779 }
780
781out:
782 qapi_free_SpiceInfo(info);
783}
206addd5 784#endif
d1f29646 785
84f2d0ea 786void hmp_info_balloon(Monitor *mon, const QDict *qdict)
96637bcd
LC
787{
788 BalloonInfo *info;
789 Error *err = NULL;
790
791 info = qmp_query_balloon(&err);
792 if (err) {
554a39eb 793 hmp_handle_error(mon, &err);
96637bcd
LC
794 return;
795 }
796
01ceb97e 797 monitor_printf(mon, "balloon: actual=%" PRId64 "\n", info->actual >> 20);
96637bcd
LC
798
799 qapi_free_BalloonInfo(info);
800}
801
79627472
LC
802static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
803{
804 PciMemoryRegionList *region;
805
806 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
807 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
808 dev->slot, dev->function);
809 monitor_printf(mon, " ");
810
9fa02cd1
EB
811 if (dev->class_info->has_desc) {
812 monitor_printf(mon, "%s", dev->class_info->desc);
79627472 813 } else {
9fa02cd1 814 monitor_printf(mon, "Class %04" PRId64, dev->class_info->q_class);
79627472
LC
815 }
816
817 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
9fa02cd1 818 dev->id->vendor, dev->id->device);
79627472
LC
819
820 if (dev->has_irq) {
821 monitor_printf(mon, " IRQ %" PRId64 ".\n", dev->irq);
822 }
823
824 if (dev->has_pci_bridge) {
825 monitor_printf(mon, " BUS %" PRId64 ".\n",
9fa02cd1 826 dev->pci_bridge->bus->number);
79627472 827 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
9fa02cd1 828 dev->pci_bridge->bus->secondary);
79627472 829 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
9fa02cd1 830 dev->pci_bridge->bus->subordinate);
79627472
LC
831
832 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
9fa02cd1
EB
833 dev->pci_bridge->bus->io_range->base,
834 dev->pci_bridge->bus->io_range->limit);
79627472
LC
835
836 monitor_printf(mon,
837 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
9fa02cd1
EB
838 dev->pci_bridge->bus->memory_range->base,
839 dev->pci_bridge->bus->memory_range->limit);
79627472
LC
840
841 monitor_printf(mon, " prefetchable memory range "
842 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
9fa02cd1
EB
843 dev->pci_bridge->bus->prefetchable_range->base,
844 dev->pci_bridge->bus->prefetchable_range->limit);
79627472
LC
845 }
846
847 for (region = dev->regions; region; region = region->next) {
848 uint64_t addr, size;
849
850 addr = region->value->address;
851 size = region->value->size;
852
853 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
854
855 if (!strcmp(region->value->type, "io")) {
856 monitor_printf(mon, "I/O at 0x%04" PRIx64
857 " [0x%04" PRIx64 "].\n",
858 addr, addr + size - 1);
859 } else {
860 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
861 " [0x%08" PRIx64 "].\n",
862 region->value->mem_type_64 ? 64 : 32,
863 region->value->prefetch ? " prefetchable" : "",
864 addr, addr + size - 1);
865 }
866 }
867
868 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
869
870 if (dev->has_pci_bridge) {
871 if (dev->pci_bridge->has_devices) {
872 PciDeviceInfoList *cdev;
873 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
874 hmp_info_pci_device(mon, cdev->value);
875 }
876 }
877 }
878}
879
61b97833
HP
880static int hmp_info_irq_foreach(Object *obj, void *opaque)
881{
882 InterruptStatsProvider *intc;
883 InterruptStatsProviderClass *k;
884 Monitor *mon = opaque;
885
886 if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
887 intc = INTERRUPT_STATS_PROVIDER(obj);
888 k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
889 uint64_t *irq_counts;
890 unsigned int nb_irqs, i;
891 if (k->get_statistics &&
892 k->get_statistics(intc, &irq_counts, &nb_irqs)) {
893 if (nb_irqs > 0) {
894 monitor_printf(mon, "IRQ statistics for %s:\n",
895 object_get_typename(obj));
896 for (i = 0; i < nb_irqs; i++) {
897 if (irq_counts[i] > 0) {
898 monitor_printf(mon, "%2d: %" PRId64 "\n", i,
899 irq_counts[i]);
900 }
901 }
902 }
903 } else {
904 monitor_printf(mon, "IRQ statistics not available for %s.\n",
905 object_get_typename(obj));
906 }
907 }
908
909 return 0;
910}
911
912void hmp_info_irq(Monitor *mon, const QDict *qdict)
913{
914 object_child_foreach_recursive(object_get_root(),
915 hmp_info_irq_foreach, mon);
916}
917
918static int hmp_info_pic_foreach(Object *obj, void *opaque)
919{
920 InterruptStatsProvider *intc;
921 InterruptStatsProviderClass *k;
922 Monitor *mon = opaque;
923
924 if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
925 intc = INTERRUPT_STATS_PROVIDER(obj);
926 k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
927 if (k->print_info) {
928 k->print_info(intc, mon);
929 } else {
930 monitor_printf(mon, "Interrupt controller information not available for %s.\n",
931 object_get_typename(obj));
932 }
933 }
934
935 return 0;
936}
937
938void hmp_info_pic(Monitor *mon, const QDict *qdict)
939{
940 object_child_foreach_recursive(object_get_root(),
941 hmp_info_pic_foreach, mon);
942}
943
84f2d0ea 944void hmp_info_pci(Monitor *mon, const QDict *qdict)
79627472 945{
f46cee37 946 PciInfoList *info_list, *info;
79627472
LC
947 Error *err = NULL;
948
f46cee37 949 info_list = qmp_query_pci(&err);
79627472
LC
950 if (err) {
951 monitor_printf(mon, "PCI devices not supported\n");
952 error_free(err);
953 return;
954 }
955
f46cee37 956 for (info = info_list; info; info = info->next) {
79627472
LC
957 PciDeviceInfoList *dev;
958
959 for (dev = info->value->devices; dev; dev = dev->next) {
960 hmp_info_pci_device(mon, dev->value);
961 }
962 }
963
f46cee37 964 qapi_free_PciInfoList(info_list);
79627472
LC
965}
966
84f2d0ea 967void hmp_info_block_jobs(Monitor *mon, const QDict *qdict)
fb5458cd
SH
968{
969 BlockJobInfoList *list;
970 Error *err = NULL;
971
972 list = qmp_query_block_jobs(&err);
973 assert(!err);
974
975 if (!list) {
976 monitor_printf(mon, "No active jobs\n");
977 return;
978 }
979
980 while (list) {
981 if (strcmp(list->value->type, "stream") == 0) {
982 monitor_printf(mon, "Streaming device %s: Completed %" PRId64
983 " of %" PRId64 " bytes, speed limit %" PRId64
984 " bytes/s\n",
985 list->value->device,
986 list->value->offset,
987 list->value->len,
988 list->value->speed);
989 } else {
990 monitor_printf(mon, "Type %s, device %s: Completed %" PRId64
991 " of %" PRId64 " bytes, speed limit %" PRId64
992 " bytes/s\n",
993 list->value->type,
994 list->value->device,
995 list->value->offset,
996 list->value->len,
997 list->value->speed);
998 }
999 list = list->next;
1000 }
93bb1315
GA
1001
1002 qapi_free_BlockJobInfoList(list);
fb5458cd
SH
1003}
1004
d1a0cf73
SB
1005void hmp_info_tpm(Monitor *mon, const QDict *qdict)
1006{
1007 TPMInfoList *info_list, *info;
1008 Error *err = NULL;
1009 unsigned int c = 0;
1010 TPMPassthroughOptions *tpo;
f4ede81e 1011 TPMEmulatorOptions *teo;
d1a0cf73
SB
1012
1013 info_list = qmp_query_tpm(&err);
1014 if (err) {
1015 monitor_printf(mon, "TPM device not supported\n");
1016 error_free(err);
1017 return;
1018 }
1019
1020 if (info_list) {
1021 monitor_printf(mon, "TPM device:\n");
1022 }
1023
1024 for (info = info_list; info; info = info->next) {
1025 TPMInfo *ti = info->value;
1026 monitor_printf(mon, " tpm%d: model=%s\n",
977c736f 1027 c, TpmModel_str(ti->model));
d1a0cf73
SB
1028
1029 monitor_printf(mon, " \\ %s: type=%s",
977c736f 1030 ti->id, TpmTypeOptionsKind_str(ti->options->type));
d1a0cf73 1031
ce21131a 1032 switch (ti->options->type) {
88ca7bcf 1033 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH:
32bafa8f 1034 tpo = ti->options->u.passthrough.data;
d1a0cf73
SB
1035 monitor_printf(mon, "%s%s%s%s",
1036 tpo->has_path ? ",path=" : "",
1037 tpo->has_path ? tpo->path : "",
1038 tpo->has_cancel_path ? ",cancel-path=" : "",
1039 tpo->has_cancel_path ? tpo->cancel_path : "");
1040 break;
f4ede81e
AV
1041 case TPM_TYPE_OPTIONS_KIND_EMULATOR:
1042 teo = ti->options->u.emulator.data;
1043 monitor_printf(mon, ",chardev=%s", teo->chardev);
1044 break;
7fb1cf16 1045 case TPM_TYPE_OPTIONS_KIND__MAX:
d1a0cf73
SB
1046 break;
1047 }
1048 monitor_printf(mon, "\n");
1049 c++;
1050 }
1051 qapi_free_TPMInfoList(info_list);
1052}
1053
7a7f325e
LC
1054void hmp_quit(Monitor *mon, const QDict *qdict)
1055{
1056 monitor_suspend(mon);
1057 qmp_quit(NULL);
1058}
5f158f21
LC
1059
1060void hmp_stop(Monitor *mon, const QDict *qdict)
1061{
1062 qmp_stop(NULL);
1063}
38d22653 1064
dd12e1bb
EC
1065void hmp_sync_profile(Monitor *mon, const QDict *qdict)
1066{
1067 const char *op = qdict_get_try_str(qdict, "op");
1068
1069 if (op == NULL) {
1070 bool on = qsp_is_enabled();
1071
1072 monitor_printf(mon, "sync-profile is %s\n", on ? "on" : "off");
1073 return;
1074 }
1075 if (!strcmp(op, "on")) {
1076 qsp_enable();
1077 } else if (!strcmp(op, "off")) {
1078 qsp_disable();
1079 } else if (!strcmp(op, "reset")) {
1080 qsp_reset();
1081 } else {
1082 Error *err = NULL;
1083
1084 error_setg(&err, QERR_INVALID_PARAMETER, op);
1085 hmp_handle_error(mon, &err);
1086 }
1087}
1088
38d22653
LC
1089void hmp_system_reset(Monitor *mon, const QDict *qdict)
1090{
1091 qmp_system_reset(NULL);
1092}
5bc465e4
LC
1093
1094void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
1095{
1096 qmp_system_powerdown(NULL);
1097}
755f1968 1098
8e8581e6
DDAG
1099void hmp_exit_preconfig(Monitor *mon, const QDict *qdict)
1100{
1101 Error *err = NULL;
1102
361ac948 1103 qmp_x_exit_preconfig(&err);
8e8581e6
DDAG
1104 hmp_handle_error(mon, &err);
1105}
1106
755f1968
LC
1107void hmp_cpu(Monitor *mon, const QDict *qdict)
1108{
1109 int64_t cpu_index;
1110
1111 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
1112 use it are converted to the QAPI */
1113 cpu_index = qdict_get_int(qdict, "index");
1114 if (monitor_set_cpu(cpu_index) < 0) {
1115 monitor_printf(mon, "invalid CPU index\n");
1116 }
1117}
0cfd6a9a
LC
1118
1119void hmp_memsave(Monitor *mon, const QDict *qdict)
1120{
1121 uint32_t size = qdict_get_int(qdict, "size");
1122 const char *filename = qdict_get_str(qdict, "filename");
1123 uint64_t addr = qdict_get_int(qdict, "val");
e940f543 1124 Error *err = NULL;
854e67fe 1125 int cpu_index = monitor_get_cpu_index();
0cfd6a9a 1126
854e67fe
TH
1127 if (cpu_index < 0) {
1128 monitor_printf(mon, "No CPU available\n");
1129 return;
1130 }
1131
1132 qmp_memsave(addr, size, filename, true, cpu_index, &err);
e940f543 1133 hmp_handle_error(mon, &err);
0cfd6a9a 1134}
6d3962bf
LC
1135
1136void hmp_pmemsave(Monitor *mon, const QDict *qdict)
1137{
1138 uint32_t size = qdict_get_int(qdict, "size");
1139 const char *filename = qdict_get_str(qdict, "filename");
1140 uint64_t addr = qdict_get_int(qdict, "val");
e940f543 1141 Error *err = NULL;
6d3962bf 1142
e940f543
MA
1143 qmp_pmemsave(addr, size, filename, &err);
1144 hmp_handle_error(mon, &err);
1f590cf9
LL
1145}
1146
3949e594 1147void hmp_ringbuf_write(Monitor *mon, const QDict *qdict)
1f590cf9 1148{
1f590cf9
LL
1149 const char *chardev = qdict_get_str(qdict, "device");
1150 const char *data = qdict_get_str(qdict, "data");
e940f543 1151 Error *err = NULL;
1f590cf9 1152
e940f543 1153 qmp_ringbuf_write(chardev, data, false, 0, &err);
1f590cf9 1154
e940f543 1155 hmp_handle_error(mon, &err);
6d3962bf 1156}
e42e818b 1157
3949e594 1158void hmp_ringbuf_read(Monitor *mon, const QDict *qdict)
49b6d722
LL
1159{
1160 uint32_t size = qdict_get_int(qdict, "size");
1161 const char *chardev = qdict_get_str(qdict, "device");
3ab651fc 1162 char *data;
e940f543 1163 Error *err = NULL;
543f3412 1164 int i;
49b6d722 1165
e940f543
MA
1166 data = qmp_ringbuf_read(chardev, size, false, 0, &err);
1167 if (err) {
554a39eb 1168 hmp_handle_error(mon, &err);
49b6d722
LL
1169 return;
1170 }
1171
543f3412
MA
1172 for (i = 0; data[i]; i++) {
1173 unsigned char ch = data[i];
1174
1175 if (ch == '\\') {
1176 monitor_printf(mon, "\\\\");
1177 } else if ((ch < 0x20 && ch != '\n' && ch != '\t') || ch == 0x7F) {
1178 monitor_printf(mon, "\\u%04X", ch);
1179 } else {
1180 monitor_printf(mon, "%c", ch);
1181 }
1182
1183 }
1184 monitor_printf(mon, "\n");
3ab651fc 1185 g_free(data);
49b6d722
LL
1186}
1187
e42e818b
LC
1188void hmp_cont(Monitor *mon, const QDict *qdict)
1189{
e940f543 1190 Error *err = NULL;
e42e818b 1191
e940f543
MA
1192 qmp_cont(&err);
1193 hmp_handle_error(mon, &err);
e42e818b 1194}
ab49ab5c 1195
9b9df25a
GH
1196void hmp_system_wakeup(Monitor *mon, const QDict *qdict)
1197{
1198 qmp_system_wakeup(NULL);
1199}
1200
3e5a50d6 1201void hmp_nmi(Monitor *mon, const QDict *qdict)
ab49ab5c 1202{
e940f543 1203 Error *err = NULL;
ab49ab5c 1204
e940f543
MA
1205 qmp_inject_nmi(&err);
1206 hmp_handle_error(mon, &err);
ab49ab5c 1207}
4b37156c
LC
1208
1209void hmp_set_link(Monitor *mon, const QDict *qdict)
1210{
1211 const char *name = qdict_get_str(qdict, "name");
34acbc95 1212 bool up = qdict_get_bool(qdict, "up");
e940f543 1213 Error *err = NULL;
4b37156c 1214
e940f543
MA
1215 qmp_set_link(name, up, &err);
1216 hmp_handle_error(mon, &err);
4b37156c 1217}
a4dea8a9
LC
1218
1219void hmp_block_passwd(Monitor *mon, const QDict *qdict)
1220{
1221 const char *device = qdict_get_str(qdict, "device");
1222 const char *password = qdict_get_str(qdict, "password");
e940f543 1223 Error *err = NULL;
a4dea8a9 1224
e940f543
MA
1225 qmp_block_passwd(true, device, false, NULL, password, &err);
1226 hmp_handle_error(mon, &err);
a4dea8a9 1227}
d72f3264
LC
1228
1229void hmp_balloon(Monitor *mon, const QDict *qdict)
1230{
1231 int64_t value = qdict_get_int(qdict, "value");
e940f543 1232 Error *err = NULL;
d72f3264 1233
e940f543 1234 qmp_balloon(value, &err);
554a39eb 1235 hmp_handle_error(mon, &err);
d72f3264 1236}
5e7caacb
LC
1237
1238void hmp_block_resize(Monitor *mon, const QDict *qdict)
1239{
1240 const char *device = qdict_get_str(qdict, "device");
1241 int64_t size = qdict_get_int(qdict, "size");
e940f543 1242 Error *err = NULL;
5e7caacb 1243
e940f543
MA
1244 qmp_block_resize(true, device, false, NULL, size, &err);
1245 hmp_handle_error(mon, &err);
5e7caacb 1246}
6106e249 1247
d9b902db
PB
1248void hmp_drive_mirror(Monitor *mon, const QDict *qdict)
1249{
d9b902db
PB
1250 const char *filename = qdict_get_str(qdict, "target");
1251 const char *format = qdict_get_try_str(qdict, "format");
34acbc95
EB
1252 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1253 bool full = qdict_get_try_bool(qdict, "full", false);
e940f543 1254 Error *err = NULL;
faecd40a
EB
1255 DriveMirror mirror = {
1256 .device = (char *)qdict_get_str(qdict, "device"),
1257 .target = (char *)filename,
1258 .has_format = !!format,
1259 .format = (char *)format,
1260 .sync = full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
1261 .has_mode = true,
1262 .mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS,
1263 .unmap = true,
1264 };
d9b902db
PB
1265
1266 if (!filename) {
c6bd8c70 1267 error_setg(&err, QERR_MISSING_PARAMETER, "target");
e940f543 1268 hmp_handle_error(mon, &err);
d9b902db
PB
1269 return;
1270 }
faecd40a 1271 qmp_drive_mirror(&mirror, &err);
e940f543 1272 hmp_handle_error(mon, &err);
d9b902db
PB
1273}
1274
de90930a
SH
1275void hmp_drive_backup(Monitor *mon, const QDict *qdict)
1276{
1277 const char *device = qdict_get_str(qdict, "device");
1278 const char *filename = qdict_get_str(qdict, "target");
1279 const char *format = qdict_get_try_str(qdict, "format");
34acbc95
EB
1280 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1281 bool full = qdict_get_try_bool(qdict, "full", false);
13b9414b 1282 bool compress = qdict_get_try_bool(qdict, "compress", false);
e940f543 1283 Error *err = NULL;
81206a89
PB
1284 DriveBackup backup = {
1285 .device = (char *)device,
1286 .target = (char *)filename,
1287 .has_format = !!format,
1288 .format = (char *)format,
1289 .sync = full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
1290 .has_mode = true,
1291 .mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS,
13b9414b
PB
1292 .has_compress = !!compress,
1293 .compress = compress,
81206a89 1294 };
de90930a
SH
1295
1296 if (!filename) {
c6bd8c70 1297 error_setg(&err, QERR_MISSING_PARAMETER, "target");
e940f543 1298 hmp_handle_error(mon, &err);
de90930a
SH
1299 return;
1300 }
1301
81206a89 1302 qmp_drive_backup(&backup, &err);
e940f543 1303 hmp_handle_error(mon, &err);
de90930a
SH
1304}
1305
6106e249
LC
1306void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict)
1307{
1308 const char *device = qdict_get_str(qdict, "device");
1309 const char *filename = qdict_get_try_str(qdict, "snapshot-file");
1310 const char *format = qdict_get_try_str(qdict, "format");
34acbc95 1311 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
6cc2a415 1312 enum NewImageMode mode;
e940f543 1313 Error *err = NULL;
6106e249
LC
1314
1315 if (!filename) {
1316 /* In the future, if 'snapshot-file' is not specified, the snapshot
1317 will be taken internally. Today it's actually required. */
c6bd8c70 1318 error_setg(&err, QERR_MISSING_PARAMETER, "snapshot-file");
e940f543 1319 hmp_handle_error(mon, &err);
6106e249
LC
1320 return;
1321 }
1322
6cc2a415 1323 mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
0901f67e
BC
1324 qmp_blockdev_snapshot_sync(true, device, false, NULL,
1325 filename, false, NULL,
1326 !!format, format,
e940f543
MA
1327 true, mode, &err);
1328 hmp_handle_error(mon, &err);
6106e249 1329}
6cdedb07 1330
775ca88e
WX
1331void hmp_snapshot_blkdev_internal(Monitor *mon, const QDict *qdict)
1332{
1333 const char *device = qdict_get_str(qdict, "device");
1334 const char *name = qdict_get_str(qdict, "name");
e940f543 1335 Error *err = NULL;
775ca88e 1336
e940f543
MA
1337 qmp_blockdev_snapshot_internal_sync(device, name, &err);
1338 hmp_handle_error(mon, &err);
775ca88e
WX
1339}
1340
7a4ed2ee
WX
1341void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict)
1342{
1343 const char *device = qdict_get_str(qdict, "device");
1344 const char *name = qdict_get_str(qdict, "name");
1345 const char *id = qdict_get_try_str(qdict, "id");
e940f543 1346 Error *err = NULL;
7a4ed2ee
WX
1347
1348 qmp_blockdev_snapshot_delete_internal_sync(device, !!id, id,
e940f543
MA
1349 true, name, &err);
1350 hmp_handle_error(mon, &err);
7a4ed2ee
WX
1351}
1352
52b26205
JQ
1353void hmp_loadvm(Monitor *mon, const QDict *qdict)
1354{
1355 int saved_vm_running = runstate_is_running();
1356 const char *name = qdict_get_str(qdict, "name");
927d6638 1357 Error *err = NULL;
52b26205
JQ
1358
1359 vm_stop(RUN_STATE_RESTORE_VM);
1360
5e22479a 1361 if (load_snapshot(name, &err) == 0 && saved_vm_running) {
52b26205
JQ
1362 vm_start();
1363 }
927d6638 1364 hmp_handle_error(mon, &err);
52b26205
JQ
1365}
1366
d9c7d137
JQ
1367void hmp_savevm(Monitor *mon, const QDict *qdict)
1368{
927d6638
JQ
1369 Error *err = NULL;
1370
5e22479a 1371 save_snapshot(qdict_get_try_str(qdict, "name"), &err);
927d6638 1372 hmp_handle_error(mon, &err);
d9c7d137
JQ
1373}
1374
d905bb7b
JQ
1375void hmp_delvm(Monitor *mon, const QDict *qdict)
1376{
1377 BlockDriverState *bs;
32cd6550 1378 Error *err = NULL;
d905bb7b
JQ
1379 const char *name = qdict_get_str(qdict, "name");
1380
1381 if (bdrv_all_delete_snapshot(name, &bs, &err) < 0) {
1382 error_reportf_err(err,
1383 "Error while deleting snapshot on device '%s': ",
1384 bdrv_get_device_name(bs));
1385 }
1386}
1387
66830618
JQ
1388void hmp_info_snapshots(Monitor *mon, const QDict *qdict)
1389{
1390 BlockDriverState *bs, *bs1;
1391 BdrvNextIterator it1;
1392 QEMUSnapshotInfo *sn_tab, *sn;
1393 bool no_snapshot = true;
1394 int nb_sns, i;
1395 int total;
1396 int *global_snapshots;
1397 AioContext *aio_context;
1398
1399 typedef struct SnapshotEntry {
1400 QEMUSnapshotInfo sn;
1401 QTAILQ_ENTRY(SnapshotEntry) next;
1402 } SnapshotEntry;
1403
1404 typedef struct ImageEntry {
1405 const char *imagename;
1406 QTAILQ_ENTRY(ImageEntry) next;
1407 QTAILQ_HEAD(, SnapshotEntry) snapshots;
1408 } ImageEntry;
1409
1410 QTAILQ_HEAD(, ImageEntry) image_list =
1411 QTAILQ_HEAD_INITIALIZER(image_list);
1412
1413 ImageEntry *image_entry, *next_ie;
1414 SnapshotEntry *snapshot_entry;
1415
1416 bs = bdrv_all_find_vmstate_bs();
1417 if (!bs) {
1418 monitor_printf(mon, "No available block device supports snapshots\n");
1419 return;
1420 }
1421 aio_context = bdrv_get_aio_context(bs);
1422
1423 aio_context_acquire(aio_context);
1424 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1425 aio_context_release(aio_context);
1426
1427 if (nb_sns < 0) {
1428 monitor_printf(mon, "bdrv_snapshot_list: error %d\n", nb_sns);
1429 return;
1430 }
1431
1432 for (bs1 = bdrv_first(&it1); bs1; bs1 = bdrv_next(&it1)) {
1433 int bs1_nb_sns = 0;
1434 ImageEntry *ie;
1435 SnapshotEntry *se;
1436 AioContext *ctx = bdrv_get_aio_context(bs1);
1437
1438 aio_context_acquire(ctx);
1439 if (bdrv_can_snapshot(bs1)) {
1440 sn = NULL;
1441 bs1_nb_sns = bdrv_snapshot_list(bs1, &sn);
1442 if (bs1_nb_sns > 0) {
1443 no_snapshot = false;
1444 ie = g_new0(ImageEntry, 1);
1445 ie->imagename = bdrv_get_device_name(bs1);
1446 QTAILQ_INIT(&ie->snapshots);
1447 QTAILQ_INSERT_TAIL(&image_list, ie, next);
1448 for (i = 0; i < bs1_nb_sns; i++) {
1449 se = g_new0(SnapshotEntry, 1);
1450 se->sn = sn[i];
1451 QTAILQ_INSERT_TAIL(&ie->snapshots, se, next);
1452 }
1453 }
1454 g_free(sn);
1455 }
1456 aio_context_release(ctx);
1457 }
1458
1459 if (no_snapshot) {
1460 monitor_printf(mon, "There is no snapshot available.\n");
1461 return;
1462 }
1463
1464 global_snapshots = g_new0(int, nb_sns);
1465 total = 0;
1466 for (i = 0; i < nb_sns; i++) {
1467 SnapshotEntry *next_sn;
1468 if (bdrv_all_find_snapshot(sn_tab[i].name, &bs1) == 0) {
1469 global_snapshots[total] = i;
1470 total++;
1471 QTAILQ_FOREACH(image_entry, &image_list, next) {
1472 QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots,
1473 next, next_sn) {
1474 if (!strcmp(sn_tab[i].name, snapshot_entry->sn.name)) {
1475 QTAILQ_REMOVE(&image_entry->snapshots, snapshot_entry,
1476 next);
1477 g_free(snapshot_entry);
1478 }
1479 }
1480 }
1481 }
1482 }
1483
1484 monitor_printf(mon, "List of snapshots present on all disks:\n");
1485
1486 if (total > 0) {
1487 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1488 monitor_printf(mon, "\n");
1489 for (i = 0; i < total; i++) {
1490 sn = &sn_tab[global_snapshots[i]];
1491 /* The ID is not guaranteed to be the same on all images, so
1492 * overwrite it.
1493 */
1494 pstrcpy(sn->id_str, sizeof(sn->id_str), "--");
1495 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, sn);
1496 monitor_printf(mon, "\n");
1497 }
1498 } else {
1499 monitor_printf(mon, "None\n");
1500 }
1501
1502 QTAILQ_FOREACH(image_entry, &image_list, next) {
1503 if (QTAILQ_EMPTY(&image_entry->snapshots)) {
1504 continue;
1505 }
1506 monitor_printf(mon,
1507 "\nList of partial (non-loadable) snapshots on '%s':\n",
1508 image_entry->imagename);
1509 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon, NULL);
1510 monitor_printf(mon, "\n");
1511 QTAILQ_FOREACH(snapshot_entry, &image_entry->snapshots, next) {
1512 bdrv_snapshot_dump((fprintf_function)monitor_printf, mon,
1513 &snapshot_entry->sn);
1514 monitor_printf(mon, "\n");
1515 }
1516 }
1517
1518 QTAILQ_FOREACH_SAFE(image_entry, &image_list, next, next_ie) {
1519 SnapshotEntry *next_sn;
1520 QTAILQ_FOREACH_SAFE(snapshot_entry, &image_entry->snapshots, next,
1521 next_sn) {
1522 g_free(snapshot_entry);
1523 }
1524 g_free(image_entry);
1525 }
1526 g_free(sn_tab);
1527 g_free(global_snapshots);
1528
1529}
1530
6cdedb07
LC
1531void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
1532{
1533 qmp_migrate_cancel(NULL);
1534}
4f0a993b 1535
94ae12cb
DDAG
1536void hmp_migrate_continue(Monitor *mon, const QDict *qdict)
1537{
1538 Error *err = NULL;
1539 const char *state = qdict_get_str(qdict, "state");
1540 int val = qapi_enum_parse(&MigrationStatus_lookup, state, -1, &err);
1541
1542 if (val >= 0) {
1543 qmp_migrate_continue(val, &err);
1544 }
1545
1546 hmp_handle_error(mon, &err);
1547}
1548
bf1ae1f4
DDAG
1549void hmp_migrate_incoming(Monitor *mon, const QDict *qdict)
1550{
1551 Error *err = NULL;
1552 const char *uri = qdict_get_str(qdict, "uri");
1553
1554 qmp_migrate_incoming(uri, &err);
1555
1fa57f55 1556 hmp_handle_error(mon, &err);
bf1ae1f4
DDAG
1557}
1558
3b563c4b
PX
1559void hmp_migrate_recover(Monitor *mon, const QDict *qdict)
1560{
1561 Error *err = NULL;
1562 const char *uri = qdict_get_str(qdict, "uri");
1563
1564 qmp_migrate_recover(uri, &err);
1565
1566 hmp_handle_error(mon, &err);
1567}
1568
d37297dc
PX
1569void hmp_migrate_pause(Monitor *mon, const QDict *qdict)
1570{
1571 Error *err = NULL;
1572
1573 qmp_migrate_pause(&err);
1574
1575 hmp_handle_error(mon, &err);
1576}
1577
2ff30257 1578/* Kept for backwards compatibility */
4f0a993b
LC
1579void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
1580{
1581 double value = qdict_get_double(qdict, "value");
1582 qmp_migrate_set_downtime(value, NULL);
1583}
3dc85383 1584
9e1ba4cc
OW
1585void hmp_migrate_set_cache_size(Monitor *mon, const QDict *qdict)
1586{
1587 int64_t value = qdict_get_int(qdict, "value");
1588 Error *err = NULL;
1589
1590 qmp_migrate_set_cache_size(value, &err);
554a39eb 1591 hmp_handle_error(mon, &err);
9e1ba4cc
OW
1592}
1593
2ff30257 1594/* Kept for backwards compatibility */
3dc85383
LC
1595void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
1596{
1597 int64_t value = qdict_get_int(qdict, "value");
1598 qmp_migrate_set_speed(value, NULL);
1599}
fbf796fd 1600
00458433
OW
1601void hmp_migrate_set_capability(Monitor *mon, const QDict *qdict)
1602{
1603 const char *cap = qdict_get_str(qdict, "capability");
1604 bool state = qdict_get_bool(qdict, "state");
1605 Error *err = NULL;
1606 MigrationCapabilityStatusList *caps = g_malloc0(sizeof(*caps));
8e615e34 1607 int val;
00458433 1608
f7abe0ec 1609 val = qapi_enum_parse(&MigrationCapability_lookup, cap, -1, &err);
8e615e34
MAL
1610 if (val < 0) {
1611 goto end;
00458433
OW
1612 }
1613
8e615e34
MAL
1614 caps->value = g_malloc0(sizeof(*caps->value));
1615 caps->value->capability = val;
1616 caps->value->state = state;
1617 caps->next = NULL;
1618 qmp_migrate_set_capabilities(caps, &err);
00458433 1619
8e615e34 1620end:
00458433 1621 qapi_free_MigrationCapabilityStatusList(caps);
554a39eb 1622 hmp_handle_error(mon, &err);
00458433
OW
1623}
1624
50e9a629
LL
1625void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
1626{
1627 const char *param = qdict_get_str(qdict, "parameter");
69ef1f36 1628 const char *valuestr = qdict_get_str(qdict, "value");
f4a06d13 1629 Visitor *v = string_input_visitor_new(valuestr);
1bda8b3c 1630 MigrateSetParameters *p = g_new0(MigrateSetParameters, 1);
f46bfdbf 1631 uint64_t valuebw = 0;
73af8dd8 1632 uint64_t cache_size;
50e9a629 1633 Error *err = NULL;
262517b7 1634 int val, ret;
69ef1f36 1635
f7abe0ec 1636 val = qapi_enum_parse(&MigrationParameter_lookup, param, -1, &err);
262517b7
MAL
1637 if (val < 0) {
1638 goto cleanup;
1639 }
1640
1641 switch (val) {
1642 case MIGRATION_PARAMETER_COMPRESS_LEVEL:
1643 p->has_compress_level = true;
1644 visit_type_int(v, param, &p->compress_level, &err);
1645 break;
1646 case MIGRATION_PARAMETER_COMPRESS_THREADS:
1647 p->has_compress_threads = true;
1648 visit_type_int(v, param, &p->compress_threads, &err);
1649 break;
1650 case MIGRATION_PARAMETER_DECOMPRESS_THREADS:
1651 p->has_decompress_threads = true;
1652 visit_type_int(v, param, &p->decompress_threads, &err);
1653 break;
1654 case MIGRATION_PARAMETER_CPU_THROTTLE_INITIAL:
1655 p->has_cpu_throttle_initial = true;
1656 visit_type_int(v, param, &p->cpu_throttle_initial, &err);
1657 break;
1658 case MIGRATION_PARAMETER_CPU_THROTTLE_INCREMENT:
1659 p->has_cpu_throttle_increment = true;
1660 visit_type_int(v, param, &p->cpu_throttle_increment, &err);
1661 break;
1662 case MIGRATION_PARAMETER_TLS_CREDS:
1663 p->has_tls_creds = true;
1664 p->tls_creds = g_new0(StrOrNull, 1);
1665 p->tls_creds->type = QTYPE_QSTRING;
1666 visit_type_str(v, param, &p->tls_creds->u.s, &err);
1667 break;
1668 case MIGRATION_PARAMETER_TLS_HOSTNAME:
1669 p->has_tls_hostname = true;
1670 p->tls_hostname = g_new0(StrOrNull, 1);
1671 p->tls_hostname->type = QTYPE_QSTRING;
1672 visit_type_str(v, param, &p->tls_hostname->u.s, &err);
1673 break;
1674 case MIGRATION_PARAMETER_MAX_BANDWIDTH:
1675 p->has_max_bandwidth = true;
1676 /*
1677 * Can't use visit_type_size() here, because it
1678 * defaults to Bytes rather than Mebibytes.
1679 */
1680 ret = qemu_strtosz_MiB(valuestr, NULL, &valuebw);
1681 if (ret < 0 || valuebw > INT64_MAX
1682 || (size_t)valuebw != valuebw) {
1683 error_setg(&err, "Invalid size %s", valuestr);
50e9a629
LL
1684 break;
1685 }
262517b7
MAL
1686 p->max_bandwidth = valuebw;
1687 break;
1688 case MIGRATION_PARAMETER_DOWNTIME_LIMIT:
1689 p->has_downtime_limit = true;
1690 visit_type_int(v, param, &p->downtime_limit, &err);
1691 break;
1692 case MIGRATION_PARAMETER_X_CHECKPOINT_DELAY:
1693 p->has_x_checkpoint_delay = true;
1694 visit_type_int(v, param, &p->x_checkpoint_delay, &err);
1695 break;
1696 case MIGRATION_PARAMETER_BLOCK_INCREMENTAL:
1697 p->has_block_incremental = true;
1698 visit_type_bool(v, param, &p->block_incremental, &err);
1699 break;
4075fb1c
JQ
1700 case MIGRATION_PARAMETER_X_MULTIFD_CHANNELS:
1701 p->has_x_multifd_channels = true;
1702 visit_type_int(v, param, &p->x_multifd_channels, &err);
1703 break;
0fb86605
JQ
1704 case MIGRATION_PARAMETER_X_MULTIFD_PAGE_COUNT:
1705 p->has_x_multifd_page_count = true;
1706 visit_type_int(v, param, &p->x_multifd_page_count, &err);
1707 break;
73af8dd8
JQ
1708 case MIGRATION_PARAMETER_XBZRLE_CACHE_SIZE:
1709 p->has_xbzrle_cache_size = true;
1710 visit_type_size(v, param, &cache_size, &err);
1711 if (err || cache_size > INT64_MAX
1712 || (size_t)cache_size != cache_size) {
1713 error_setg(&err, "Invalid size %s", valuestr);
1714 break;
1715 }
1716 p->xbzrle_cache_size = cache_size;
1717 break;
7e555c6c
DDAG
1718 case MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH:
1719 p->has_max_postcopy_bandwidth = true;
1720 visit_type_size(v, param, &p->max_postcopy_bandwidth, &err);
1721 break;
262517b7
MAL
1722 default:
1723 assert(0);
50e9a629
LL
1724 }
1725
262517b7
MAL
1726 if (err) {
1727 goto cleanup;
50e9a629
LL
1728 }
1729
262517b7
MAL
1730 qmp_migrate_set_parameters(p, &err);
1731
69ef1f36 1732 cleanup:
1bda8b3c 1733 qapi_free_MigrateSetParameters(p);
f4a06d13 1734 visit_free(v);
554a39eb 1735 hmp_handle_error(mon, &err);
50e9a629
LL
1736}
1737
b8a185bc
MA
1738void hmp_client_migrate_info(Monitor *mon, const QDict *qdict)
1739{
1740 Error *err = NULL;
1741 const char *protocol = qdict_get_str(qdict, "protocol");
1742 const char *hostname = qdict_get_str(qdict, "hostname");
1743 bool has_port = qdict_haskey(qdict, "port");
1744 int port = qdict_get_try_int(qdict, "port", -1);
1745 bool has_tls_port = qdict_haskey(qdict, "tls-port");
1746 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1747 const char *cert_subject = qdict_get_try_str(qdict, "cert-subject");
1748
1749 qmp_client_migrate_info(protocol, hostname,
1750 has_port, port, has_tls_port, tls_port,
1751 !!cert_subject, cert_subject, &err);
1752 hmp_handle_error(mon, &err);
1753}
1754
4886a1bc
DDAG
1755void hmp_migrate_start_postcopy(Monitor *mon, const QDict *qdict)
1756{
1757 Error *err = NULL;
1758 qmp_migrate_start_postcopy(&err);
1759 hmp_handle_error(mon, &err);
1760}
1761
d89e666e
HZ
1762void hmp_x_colo_lost_heartbeat(Monitor *mon, const QDict *qdict)
1763{
1764 Error *err = NULL;
1765
1766 qmp_x_colo_lost_heartbeat(&err);
1767 hmp_handle_error(mon, &err);
1768}
1769
fbf796fd
LC
1770void hmp_set_password(Monitor *mon, const QDict *qdict)
1771{
1772 const char *protocol = qdict_get_str(qdict, "protocol");
1773 const char *password = qdict_get_str(qdict, "password");
1774 const char *connected = qdict_get_try_str(qdict, "connected");
1775 Error *err = NULL;
1776
1777 qmp_set_password(protocol, password, !!connected, connected, &err);
1778 hmp_handle_error(mon, &err);
1779}
9ad5372d
LC
1780
1781void hmp_expire_password(Monitor *mon, const QDict *qdict)
1782{
1783 const char *protocol = qdict_get_str(qdict, "protocol");
1784 const char *whenstr = qdict_get_str(qdict, "time");
1785 Error *err = NULL;
1786
1787 qmp_expire_password(protocol, whenstr, &err);
1788 hmp_handle_error(mon, &err);
1789}
c245b6a3
LC
1790
1791void hmp_eject(Monitor *mon, const QDict *qdict)
1792{
34acbc95 1793 bool force = qdict_get_try_bool(qdict, "force", false);
c245b6a3
LC
1794 const char *device = qdict_get_str(qdict, "device");
1795 Error *err = NULL;
1796
fbe2d816 1797 qmp_eject(true, device, false, NULL, true, force, &err);
c245b6a3
LC
1798 hmp_handle_error(mon, &err);
1799}
333a96ec 1800
05eb4a25 1801#ifdef CONFIG_VNC
c60bf339
SH
1802static void hmp_change_read_arg(void *opaque, const char *password,
1803 void *readline_opaque)
333a96ec
LC
1804{
1805 qmp_change_vnc_password(password, NULL);
c60bf339 1806 monitor_read_command(opaque, 1);
333a96ec 1807}
05eb4a25 1808#endif
333a96ec 1809
333a96ec
LC
1810void hmp_change(Monitor *mon, const QDict *qdict)
1811{
1812 const char *device = qdict_get_str(qdict, "device");
1813 const char *target = qdict_get_str(qdict, "target");
1814 const char *arg = qdict_get_try_str(qdict, "arg");
baead0ab
HR
1815 const char *read_only = qdict_get_try_str(qdict, "read-only-mode");
1816 BlockdevChangeReadOnlyMode read_only_mode = 0;
333a96ec
LC
1817 Error *err = NULL;
1818
05eb4a25 1819#ifdef CONFIG_VNC
10686749 1820 if (strcmp(device, "vnc") == 0) {
baead0ab
HR
1821 if (read_only) {
1822 monitor_printf(mon,
1823 "Parameter 'read-only-mode' is invalid for VNC\n");
1824 return;
1825 }
10686749
HR
1826 if (strcmp(target, "passwd") == 0 ||
1827 strcmp(target, "password") == 0) {
1828 if (!arg) {
1829 monitor_read_password(mon, hmp_change_read_arg, NULL);
1830 return;
1831 }
1832 }
1833 qmp_change("vnc", target, !!arg, arg, &err);
05eb4a25
MAL
1834 } else
1835#endif
1836 {
baead0ab
HR
1837 if (read_only) {
1838 read_only_mode =
f7abe0ec 1839 qapi_enum_parse(&BlockdevChangeReadOnlyMode_lookup,
06c60b6c 1840 read_only,
baead0ab
HR
1841 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN, &err);
1842 if (err) {
1843 hmp_handle_error(mon, &err);
1844 return;
1845 }
1846 }
1847
70e2cb3b
KW
1848 qmp_blockdev_change_medium(true, device, false, NULL, target,
1849 !!arg, arg, !!read_only, read_only_mode,
1850 &err);
333a96ec
LC
1851 }
1852
333a96ec
LC
1853 hmp_handle_error(mon, &err);
1854}
80047da5
LC
1855
1856void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
1857{
1858 Error *err = NULL;
83592184 1859 char *device = (char *) qdict_get_str(qdict, "device");
4dc9397b 1860 BlockIOThrottle throttle = {
4dc9397b
EB
1861 .bps = qdict_get_int(qdict, "bps"),
1862 .bps_rd = qdict_get_int(qdict, "bps_rd"),
1863 .bps_wr = qdict_get_int(qdict, "bps_wr"),
1864 .iops = qdict_get_int(qdict, "iops"),
1865 .iops_rd = qdict_get_int(qdict, "iops_rd"),
1866 .iops_wr = qdict_get_int(qdict, "iops_wr"),
1867 };
80047da5 1868
83592184
AG
1869 /* qmp_block_set_io_throttle has separate parameters for the
1870 * (deprecated) block device name and the qdev ID but the HMP
1871 * version has only one, so we must decide which one to pass. */
1872 if (blk_by_name(device)) {
1873 throttle.has_device = true;
1874 throttle.device = device;
1875 } else {
1876 throttle.has_id = true;
1877 throttle.id = device;
1878 }
1879
4dc9397b 1880 qmp_block_set_io_throttle(&throttle, &err);
80047da5
LC
1881 hmp_handle_error(mon, &err);
1882}
12bd451f
SH
1883
1884void hmp_block_stream(Monitor *mon, const QDict *qdict)
1885{
1886 Error *error = NULL;
1887 const char *device = qdict_get_str(qdict, "device");
1888 const char *base = qdict_get_try_str(qdict, "base");
c83c66c3 1889 int64_t speed = qdict_get_try_int(qdict, "speed", 0);
12bd451f 1890
11d6fbe0 1891 qmp_block_stream(true, device, device, base != NULL, base, false, NULL,
312fe09c 1892 false, NULL, qdict_haskey(qdict, "speed"), speed,
46663e5e 1893 true, BLOCKDEV_ON_ERROR_REPORT, &error);
12bd451f
SH
1894
1895 hmp_handle_error(mon, &error);
1896}
2d47c6e9
SH
1897
1898void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
1899{
1900 Error *error = NULL;
1901 const char *device = qdict_get_str(qdict, "device");
c6db2395 1902 int64_t value = qdict_get_int(qdict, "speed");
2d47c6e9
SH
1903
1904 qmp_block_job_set_speed(device, value, &error);
1905
1906 hmp_handle_error(mon, &error);
1907}
370521a1
SH
1908
1909void hmp_block_job_cancel(Monitor *mon, const QDict *qdict)
1910{
1911 Error *error = NULL;
1912 const char *device = qdict_get_str(qdict, "device");
34acbc95 1913 bool force = qdict_get_try_bool(qdict, "force", false);
370521a1 1914
6e37fb81
PB
1915 qmp_block_job_cancel(device, true, force, &error);
1916
1917 hmp_handle_error(mon, &error);
1918}
1919
1920void hmp_block_job_pause(Monitor *mon, const QDict *qdict)
1921{
1922 Error *error = NULL;
1923 const char *device = qdict_get_str(qdict, "device");
1924
1925 qmp_block_job_pause(device, &error);
1926
1927 hmp_handle_error(mon, &error);
1928}
1929
1930void hmp_block_job_resume(Monitor *mon, const QDict *qdict)
1931{
1932 Error *error = NULL;
1933 const char *device = qdict_get_str(qdict, "device");
1934
1935 qmp_block_job_resume(device, &error);
370521a1
SH
1936
1937 hmp_handle_error(mon, &error);
1938}
e1c37d0e 1939
aeae883b
PB
1940void hmp_block_job_complete(Monitor *mon, const QDict *qdict)
1941{
1942 Error *error = NULL;
1943 const char *device = qdict_get_str(qdict, "device");
1944
1945 qmp_block_job_complete(device, &error);
1946
1947 hmp_handle_error(mon, &error);
1948}
1949
e49f35bd 1950typedef struct HMPMigrationStatus
e1c37d0e
LC
1951{
1952 QEMUTimer *timer;
1953 Monitor *mon;
1954 bool is_block_migration;
e49f35bd 1955} HMPMigrationStatus;
e1c37d0e
LC
1956
1957static void hmp_migrate_status_cb(void *opaque)
1958{
e49f35bd 1959 HMPMigrationStatus *status = opaque;
e1c37d0e
LC
1960 MigrationInfo *info;
1961
1962 info = qmp_query_migrate(NULL);
24b8c39b
HZ
1963 if (!info->has_status || info->status == MIGRATION_STATUS_ACTIVE ||
1964 info->status == MIGRATION_STATUS_SETUP) {
e1c37d0e
LC
1965 if (info->has_disk) {
1966 int progress;
1967
1968 if (info->disk->remaining) {
1969 progress = info->disk->transferred * 100 / info->disk->total;
1970 } else {
1971 progress = 100;
1972 }
1973
1974 monitor_printf(status->mon, "Completed %d %%\r", progress);
1975 monitor_flush(status->mon);
1976 }
1977
bc72ad67 1978 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
e1c37d0e
LC
1979 } else {
1980 if (status->is_block_migration) {
1981 monitor_printf(status->mon, "\n");
1982 }
d59ce6f3
DB
1983 if (info->has_error_desc) {
1984 error_report("%s", info->error_desc);
1985 }
e1c37d0e 1986 monitor_resume(status->mon);
bc72ad67 1987 timer_del(status->timer);
e1c37d0e
LC
1988 g_free(status);
1989 }
1990
1991 qapi_free_MigrationInfo(info);
1992}
1993
1994void hmp_migrate(Monitor *mon, const QDict *qdict)
1995{
34acbc95
EB
1996 bool detach = qdict_get_try_bool(qdict, "detach", false);
1997 bool blk = qdict_get_try_bool(qdict, "blk", false);
1998 bool inc = qdict_get_try_bool(qdict, "inc", false);
7a4da28b 1999 bool resume = qdict_get_try_bool(qdict, "resume", false);
e1c37d0e
LC
2000 const char *uri = qdict_get_str(qdict, "uri");
2001 Error *err = NULL;
2002
7a4da28b
PX
2003 qmp_migrate(uri, !!blk, blk, !!inc, inc,
2004 false, false, true, resume, &err);
e1c37d0e 2005 if (err) {
554a39eb 2006 hmp_handle_error(mon, &err);
e1c37d0e
LC
2007 return;
2008 }
2009
2010 if (!detach) {
e49f35bd 2011 HMPMigrationStatus *status;
e1c37d0e
LC
2012
2013 if (monitor_suspend(mon) < 0) {
2014 monitor_printf(mon, "terminal does not allow synchronous "
2015 "migration, continuing detached\n");
2016 return;
2017 }
2018
2019 status = g_malloc0(sizeof(*status));
2020 status->mon = mon;
2021 status->is_block_migration = blk || inc;
bc72ad67 2022 status->timer = timer_new_ms(QEMU_CLOCK_REALTIME, hmp_migrate_status_cb,
e1c37d0e 2023 status);
bc72ad67 2024 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
e1c37d0e
LC
2025 }
2026}
a15fef21 2027
318660f8
MA
2028void hmp_device_add(Monitor *mon, const QDict *qdict)
2029{
485febc6
MA
2030 Error *err = NULL;
2031
2032 qmp_device_add((QDict *)qdict, NULL, &err);
2033 hmp_handle_error(mon, &err);
318660f8
MA
2034}
2035
a15fef21
LC
2036void hmp_device_del(Monitor *mon, const QDict *qdict)
2037{
2038 const char *id = qdict_get_str(qdict, "id");
2039 Error *err = NULL;
2040
2041 qmp_device_del(id, &err);
2042 hmp_handle_error(mon, &err);
2043}
783e9b48
WC
2044
2045void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict)
2046{
e940f543 2047 Error *err = NULL;
2da91b54 2048 bool win_dmp = qdict_get_try_bool(qdict, "windmp", false);
34acbc95
EB
2049 bool paging = qdict_get_try_bool(qdict, "paging", false);
2050 bool zlib = qdict_get_try_bool(qdict, "zlib", false);
2051 bool lzo = qdict_get_try_bool(qdict, "lzo", false);
2052 bool snappy = qdict_get_try_bool(qdict, "snappy", false);
75363769 2053 const char *file = qdict_get_str(qdict, "filename");
783e9b48
WC
2054 bool has_begin = qdict_haskey(qdict, "begin");
2055 bool has_length = qdict_haskey(qdict, "length");
228de9cf 2056 bool has_detach = qdict_haskey(qdict, "detach");
783e9b48
WC
2057 int64_t begin = 0;
2058 int64_t length = 0;
228de9cf 2059 bool detach = false;
b53ccc30 2060 enum DumpGuestMemoryFormat dump_format = DUMP_GUEST_MEMORY_FORMAT_ELF;
75363769 2061 char *prot;
783e9b48 2062
2da91b54
VP
2063 if (zlib + lzo + snappy + win_dmp > 1) {
2064 error_setg(&err, "only one of '-z|-l|-s|-w' can be set");
e940f543 2065 hmp_handle_error(mon, &err);
1b7a0f75
QN
2066 return;
2067 }
2068
2da91b54
VP
2069 if (win_dmp) {
2070 dump_format = DUMP_GUEST_MEMORY_FORMAT_WIN_DMP;
2071 }
2072
1b7a0f75
QN
2073 if (zlib) {
2074 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB;
2075 }
2076
2077 if (lzo) {
2078 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO;
2079 }
2080
2081 if (snappy) {
2082 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY;
2083 }
2084
783e9b48
WC
2085 if (has_begin) {
2086 begin = qdict_get_int(qdict, "begin");
2087 }
2088 if (has_length) {
2089 length = qdict_get_int(qdict, "length");
2090 }
228de9cf
PX
2091 if (has_detach) {
2092 detach = qdict_get_bool(qdict, "detach");
2093 }
783e9b48 2094
75363769
LC
2095 prot = g_strconcat("file:", file, NULL);
2096
228de9cf
PX
2097 qmp_dump_guest_memory(paging, prot, true, detach, has_begin, begin,
2098 has_length, length, true, dump_format, &err);
e940f543 2099 hmp_handle_error(mon, &err);
75363769 2100 g_free(prot);
783e9b48 2101}
928059a3
LC
2102
2103void hmp_netdev_add(Monitor *mon, const QDict *qdict)
2104{
2105 Error *err = NULL;
2106 QemuOpts *opts;
2107
2108 opts = qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict, &err);
84d18f06 2109 if (err) {
928059a3
LC
2110 goto out;
2111 }
2112
2113 netdev_add(opts, &err);
84d18f06 2114 if (err) {
928059a3
LC
2115 qemu_opts_del(opts);
2116 }
2117
2118out:
2119 hmp_handle_error(mon, &err);
2120}
5f964155
LC
2121
2122void hmp_netdev_del(Monitor *mon, const QDict *qdict)
2123{
2124 const char *id = qdict_get_str(qdict, "id");
2125 Error *err = NULL;
2126
2127 qmp_netdev_del(id, &err);
2128 hmp_handle_error(mon, &err);
2129}
208c9d1b 2130
cff8b2c6
PB
2131void hmp_object_add(Monitor *mon, const QDict *qdict)
2132{
2133 Error *err = NULL;
2134 QemuOpts *opts;
90998d58 2135 Object *obj = NULL;
cff8b2c6
PB
2136
2137 opts = qemu_opts_from_qdict(qemu_find_opts("object"), qdict, &err);
2138 if (err) {
90998d58
DB
2139 hmp_handle_error(mon, &err);
2140 return;
cff8b2c6
PB
2141 }
2142
3a464105 2143 obj = user_creatable_add_opts(opts, &err);
90998d58 2144 qemu_opts_del(opts);
cff8b2c6 2145
cff8b2c6 2146 if (err) {
90998d58 2147 hmp_handle_error(mon, &err);
cff8b2c6 2148 }
90998d58
DB
2149 if (obj) {
2150 object_unref(obj);
cff8b2c6 2151 }
cff8b2c6
PB
2152}
2153
208c9d1b
CB
2154void hmp_getfd(Monitor *mon, const QDict *qdict)
2155{
2156 const char *fdname = qdict_get_str(qdict, "fdname");
e940f543 2157 Error *err = NULL;
208c9d1b 2158
e940f543
MA
2159 qmp_getfd(fdname, &err);
2160 hmp_handle_error(mon, &err);
208c9d1b
CB
2161}
2162
2163void hmp_closefd(Monitor *mon, const QDict *qdict)
2164{
2165 const char *fdname = qdict_get_str(qdict, "fdname");
e940f543 2166 Error *err = NULL;
208c9d1b 2167
e940f543
MA
2168 qmp_closefd(fdname, &err);
2169 hmp_handle_error(mon, &err);
208c9d1b 2170}
e4c8f004 2171
3e5a50d6 2172void hmp_sendkey(Monitor *mon, const QDict *qdict)
e4c8f004
AK
2173{
2174 const char *keys = qdict_get_str(qdict, "keys");
9f328977 2175 KeyValueList *keylist, *head = NULL, *tmp = NULL;
e4c8f004
AK
2176 int has_hold_time = qdict_haskey(qdict, "hold-time");
2177 int hold_time = qdict_get_try_int(qdict, "hold-time", -1);
2178 Error *err = NULL;
5c99fa37 2179 const char *separator;
9f328977 2180 int keyname_len;
e4c8f004
AK
2181
2182 while (1) {
5c99fa37
KF
2183 separator = qemu_strchrnul(keys, '-');
2184 keyname_len = separator - keys;
e4c8f004
AK
2185
2186 /* Be compatible with old interface, convert user inputted "<" */
64ffbe04
WB
2187 if (keys[0] == '<' && keyname_len == 1) {
2188 keys = "less";
e4c8f004
AK
2189 keyname_len = 4;
2190 }
e4c8f004 2191
e4c8f004 2192 keylist = g_malloc0(sizeof(*keylist));
9f328977 2193 keylist->value = g_malloc0(sizeof(*keylist->value));
e4c8f004
AK
2194
2195 if (!head) {
2196 head = keylist;
2197 }
2198 if (tmp) {
2199 tmp->next = keylist;
2200 }
2201 tmp = keylist;
2202
64ffbe04 2203 if (strstart(keys, "0x", NULL)) {
9f328977 2204 char *endp;
64ffbe04
WB
2205 int value = strtoul(keys, &endp, 0);
2206 assert(endp <= keys + keyname_len);
2207 if (endp != keys + keyname_len) {
9f328977
LC
2208 goto err_out;
2209 }
568c73a4 2210 keylist->value->type = KEY_VALUE_KIND_NUMBER;
32bafa8f 2211 keylist->value->u.number.data = value;
9f328977 2212 } else {
64ffbe04 2213 int idx = index_from_key(keys, keyname_len);
7fb1cf16 2214 if (idx == Q_KEY_CODE__MAX) {
9f328977
LC
2215 goto err_out;
2216 }
568c73a4 2217 keylist->value->type = KEY_VALUE_KIND_QCODE;
32bafa8f 2218 keylist->value->u.qcode.data = idx;
9f328977
LC
2219 }
2220
5c99fa37 2221 if (!*separator) {
e4c8f004
AK
2222 break;
2223 }
2224 keys = separator + 1;
2225 }
2226
9f328977 2227 qmp_send_key(head, has_hold_time, hold_time, &err);
e4c8f004 2228 hmp_handle_error(mon, &err);
9f328977
LC
2229
2230out:
2231 qapi_free_KeyValueList(head);
2232 return;
2233
2234err_out:
64ffbe04 2235 monitor_printf(mon, "invalid parameter: %.*s\n", keyname_len, keys);
9f328977 2236 goto out;
e4c8f004 2237}
ad39cf6d 2238
3e5a50d6 2239void hmp_screendump(Monitor *mon, const QDict *qdict)
ad39cf6d
LC
2240{
2241 const char *filename = qdict_get_str(qdict, "filename");
f771c544
TH
2242 const char *id = qdict_get_try_str(qdict, "device");
2243 int64_t head = qdict_get_try_int(qdict, "head", 0);
ad39cf6d
LC
2244 Error *err = NULL;
2245
f771c544 2246 qmp_screendump(filename, id != NULL, id, id != NULL, head, &err);
ad39cf6d
LC
2247 hmp_handle_error(mon, &err);
2248}
4057725f
PB
2249
2250void hmp_nbd_server_start(Monitor *mon, const QDict *qdict)
2251{
2252 const char *uri = qdict_get_str(qdict, "uri");
34acbc95
EB
2253 bool writable = qdict_get_try_bool(qdict, "writable", false);
2254 bool all = qdict_get_try_bool(qdict, "all", false);
4057725f
PB
2255 Error *local_err = NULL;
2256 BlockInfoList *block_list, *info;
bd269ebc 2257 SocketAddress *addr;
4057725f
PB
2258
2259 if (writable && !all) {
2260 error_setg(&local_err, "-w only valid together with -a");
2261 goto exit;
2262 }
2263
2264 /* First check if the address is valid and start the server. */
2265 addr = socket_parse(uri, &local_err);
2266 if (local_err != NULL) {
2267 goto exit;
2268 }
2269
bd269ebc
MA
2270 nbd_server_start(addr, NULL, &local_err);
2271 qapi_free_SocketAddress(addr);
4057725f
PB
2272 if (local_err != NULL) {
2273 goto exit;
2274 }
2275
2276 if (!all) {
2277 return;
2278 }
2279
2280 /* Then try adding all block devices. If one fails, close all and
2281 * exit.
2282 */
2283 block_list = qmp_query_block(NULL);
2284
2285 for (info = block_list; info; info = info->next) {
2286 if (!info->value->has_inserted) {
2287 continue;
2288 }
2289
902a1f94
VSO
2290 qmp_nbd_server_add(info->value->device, false, NULL,
2291 true, writable, &local_err);
4057725f
PB
2292
2293 if (local_err != NULL) {
2294 qmp_nbd_server_stop(NULL);
2295 break;
2296 }
2297 }
2298
2299 qapi_free_BlockInfoList(block_list);
2300
2301exit:
2302 hmp_handle_error(mon, &local_err);
2303}
2304
2305void hmp_nbd_server_add(Monitor *mon, const QDict *qdict)
2306{
2307 const char *device = qdict_get_str(qdict, "device");
dba49323 2308 const char *name = qdict_get_try_str(qdict, "name");
34acbc95 2309 bool writable = qdict_get_try_bool(qdict, "writable", false);
4057725f
PB
2310 Error *local_err = NULL;
2311
dba49323 2312 qmp_nbd_server_add(device, !!name, name, true, writable, &local_err);
08fb10a7
EB
2313 hmp_handle_error(mon, &local_err);
2314}
4057725f 2315
08fb10a7
EB
2316void hmp_nbd_server_remove(Monitor *mon, const QDict *qdict)
2317{
2318 const char *name = qdict_get_str(qdict, "name");
2319 bool force = qdict_get_try_bool(qdict, "force", false);
2320 Error *err = NULL;
2321
2322 /* Rely on NBD_SERVER_REMOVE_MODE_SAFE being the default */
2323 qmp_nbd_server_remove(name, force, NBD_SERVER_REMOVE_MODE_HARD, &err);
2324 hmp_handle_error(mon, &err);
4057725f
PB
2325}
2326
2327void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict)
2328{
e940f543 2329 Error *err = NULL;
4057725f 2330
e940f543
MA
2331 qmp_nbd_server_stop(&err);
2332 hmp_handle_error(mon, &err);
4057725f 2333}
f1088908 2334
abf23329
JH
2335void hmp_cpu_add(Monitor *mon, const QDict *qdict)
2336{
2337 int cpuid;
2338 Error *err = NULL;
2339
2340 cpuid = qdict_get_int(qdict, "id");
2341 qmp_cpu_add(cpuid, &err);
2342 hmp_handle_error(mon, &err);
2343}
2344
f1088908
GH
2345void hmp_chardev_add(Monitor *mon, const QDict *qdict)
2346{
2347 const char *args = qdict_get_str(qdict, "args");
2348 Error *err = NULL;
2349 QemuOpts *opts;
2350
70b94331 2351 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args, true);
f1088908 2352 if (opts == NULL) {
312fd5f2 2353 error_setg(&err, "Parsing chardev args failed");
f1088908 2354 } else {
b4948be9 2355 qemu_chr_new_from_opts(opts, &err);
0a73336d 2356 qemu_opts_del(opts);
f1088908
GH
2357 }
2358 hmp_handle_error(mon, &err);
2359}
2360
75b60160
AN
2361void hmp_chardev_change(Monitor *mon, const QDict *qdict)
2362{
2363 const char *args = qdict_get_str(qdict, "args");
2364 const char *id;
2365 Error *err = NULL;
2366 ChardevBackend *backend = NULL;
2367 ChardevReturn *ret = NULL;
2368 QemuOpts *opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args,
2369 true);
2370 if (!opts) {
2371 error_setg(&err, "Parsing chardev args failed");
2372 goto end;
2373 }
2374
2375 id = qdict_get_str(qdict, "id");
2376 if (qemu_opts_id(opts)) {
2377 error_setg(&err, "Unexpected 'id' parameter");
2378 goto end;
2379 }
2380
2381 backend = qemu_chr_parse_opts(opts, &err);
2382 if (!backend) {
2383 goto end;
2384 }
2385
2386 ret = qmp_chardev_change(id, backend, &err);
2387
2388end:
2389 qapi_free_ChardevReturn(ret);
2390 qapi_free_ChardevBackend(backend);
2391 qemu_opts_del(opts);
2392 hmp_handle_error(mon, &err);
2393}
2394
f1088908
GH
2395void hmp_chardev_remove(Monitor *mon, const QDict *qdict)
2396{
2397 Error *local_err = NULL;
2398
2399 qmp_chardev_remove(qdict_get_str(qdict, "id"), &local_err);
2400 hmp_handle_error(mon, &local_err);
2401}
587da2c3 2402
bd1d5ad9
SF
2403void hmp_chardev_send_break(Monitor *mon, const QDict *qdict)
2404{
2405 Error *local_err = NULL;
2406
2407 qmp_chardev_send_break(qdict_get_str(qdict, "id"), &local_err);
2408 hmp_handle_error(mon, &local_err);
2409}
2410
587da2c3
KW
2411void hmp_qemu_io(Monitor *mon, const QDict *qdict)
2412{
4c7b7e9b 2413 BlockBackend *blk;
e7f98f2f 2414 BlockBackend *local_blk = NULL;
587da2c3
KW
2415 const char* device = qdict_get_str(qdict, "device");
2416 const char* command = qdict_get_str(qdict, "command");
2417 Error *err = NULL;
d7086422 2418 int ret;
587da2c3 2419
4c7b7e9b 2420 blk = blk_by_name(device);
e7f98f2f
KW
2421 if (!blk) {
2422 BlockDriverState *bs = bdrv_lookup_bs(NULL, device, &err);
2423 if (bs) {
6d0eb64d 2424 blk = local_blk = blk_new(0, BLK_PERM_ALL);
d7086422
KW
2425 ret = blk_insert_bs(blk, bs, &err);
2426 if (ret < 0) {
2427 goto fail;
2428 }
e7f98f2f
KW
2429 } else {
2430 goto fail;
2431 }
2432 }
2433
887354bd
KW
2434 /*
2435 * Notably absent: Proper permission management. This is sad, but it seems
2436 * almost impossible to achieve without changing the semantics and thereby
2437 * limiting the use cases of the qemu-io HMP command.
2438 *
2439 * In an ideal world we would unconditionally create a new BlockBackend for
2440 * qemuio_command(), but we have commands like 'reopen' and want them to
2441 * take effect on the exact BlockBackend whose name the user passed instead
2442 * of just on a temporary copy of it.
2443 *
2444 * Another problem is that deleting the temporary BlockBackend involves
2445 * draining all requests on it first, but some qemu-iotests cases want to
2446 * issue multiple aio_read/write requests and expect them to complete in
2447 * the background while the monitor has already returned.
2448 *
2449 * This is also what prevents us from saving the original permissions and
2450 * restoring them later: We can't revoke permissions until all requests
2451 * have completed, and we don't know when that is nor can we really let
2452 * anything else run before we have revoken them to avoid race conditions.
2453 *
2454 * What happens now is that command() in qemu-io-cmds.c can extend the
2455 * permissions if necessary for the qemu-io command. And they simply stay
2456 * extended, possibly resulting in a read-only guest device keeping write
2457 * permissions. Ugly, but it appears to be the lesser evil.
2458 */
1813d330 2459 qemuio_command(blk, command);
587da2c3 2460
e7f98f2f
KW
2461fail:
2462 blk_unref(local_blk);
587da2c3
KW
2463 hmp_handle_error(mon, &err);
2464}
ab2d0531
PB
2465
2466void hmp_object_del(Monitor *mon, const QDict *qdict)
2467{
2468 const char *id = qdict_get_str(qdict, "id");
2469 Error *err = NULL;
2470
90998d58 2471 user_creatable_del(id, &err);
ab2d0531
PB
2472 hmp_handle_error(mon, &err);
2473}
eb1539b2
HT
2474
2475void hmp_info_memdev(Monitor *mon, const QDict *qdict)
2476{
2477 Error *err = NULL;
2478 MemdevList *memdev_list = qmp_query_memdev(&err);
2479 MemdevList *m = memdev_list;
3b098d56 2480 Visitor *v;
976620ac 2481 char *str;
eb1539b2
HT
2482
2483 while (m) {
3b098d56
EB
2484 v = string_output_visitor_new(false, &str);
2485 visit_type_uint16List(v, NULL, &m->value->host_nodes, NULL);
e1ff3c67 2486 monitor_printf(mon, "memory backend: %s\n", m->value->id);
eb1539b2
HT
2487 monitor_printf(mon, " size: %" PRId64 "\n", m->value->size);
2488 monitor_printf(mon, " merge: %s\n",
2489 m->value->merge ? "true" : "false");
2490 monitor_printf(mon, " dump: %s\n",
2491 m->value->dump ? "true" : "false");
2492 monitor_printf(mon, " prealloc: %s\n",
2493 m->value->prealloc ? "true" : "false");
2494 monitor_printf(mon, " policy: %s\n",
977c736f 2495 HostMemPolicy_str(m->value->policy));
3b098d56 2496 visit_complete(v, &str);
976620ac 2497 monitor_printf(mon, " host nodes: %s\n", str);
eb1539b2 2498
976620ac 2499 g_free(str);
3b098d56 2500 visit_free(v);
eb1539b2 2501 m = m->next;
eb1539b2
HT
2502 }
2503
2504 monitor_printf(mon, "\n");
ecaf54a0
CF
2505
2506 qapi_free_MemdevList(memdev_list);
40c71f63 2507 hmp_handle_error(mon, &err);
eb1539b2 2508}
a631892f
ZG
2509
2510void hmp_info_memory_devices(Monitor *mon, const QDict *qdict)
2511{
2512 Error *err = NULL;
2513 MemoryDeviceInfoList *info_list = qmp_query_memory_devices(&err);
2514 MemoryDeviceInfoList *info;
2515 MemoryDeviceInfo *value;
2516 PCDIMMDeviceInfo *di;
2517
2518 for (info = info_list; info; info = info->next) {
2519 value = info->value;
2520
2521 if (value) {
1fd5d4fe 2522 switch (value->type) {
a631892f 2523 case MEMORY_DEVICE_INFO_KIND_DIMM:
32bafa8f 2524 di = value->u.dimm.data;
6388e18d
HZ
2525 break;
2526
2527 case MEMORY_DEVICE_INFO_KIND_NVDIMM:
2528 di = value->u.nvdimm.data;
2529 break;
2530
2531 default:
2532 di = NULL;
2533 break;
2534 }
a631892f 2535
6388e18d 2536 if (di) {
a631892f 2537 monitor_printf(mon, "Memory device [%s]: \"%s\"\n",
977c736f 2538 MemoryDeviceInfoKind_str(value->type),
a631892f
ZG
2539 di->id ? di->id : "");
2540 monitor_printf(mon, " addr: 0x%" PRIx64 "\n", di->addr);
2541 monitor_printf(mon, " slot: %" PRId64 "\n", di->slot);
2542 monitor_printf(mon, " node: %" PRId64 "\n", di->node);
2543 monitor_printf(mon, " size: %" PRIu64 "\n", di->size);
2544 monitor_printf(mon, " memdev: %s\n", di->memdev);
2545 monitor_printf(mon, " hotplugged: %s\n",
2546 di->hotplugged ? "true" : "false");
2547 monitor_printf(mon, " hotpluggable: %s\n",
2548 di->hotpluggable ? "true" : "false");
a631892f
ZG
2549 }
2550 }
2551 }
2552
2553 qapi_free_MemoryDeviceInfoList(info_list);
40c71f63 2554 hmp_handle_error(mon, &err);
a631892f 2555}
89d7fa9e 2556
62313160
TW
2557void hmp_info_iothreads(Monitor *mon, const QDict *qdict)
2558{
2559 IOThreadInfoList *info_list = qmp_query_iothreads(NULL);
2560 IOThreadInfoList *info;
5fc00480 2561 IOThreadInfo *value;
62313160
TW
2562
2563 for (info = info_list; info; info = info->next) {
5fc00480
PH
2564 value = info->value;
2565 monitor_printf(mon, "%s:\n", value->id);
2566 monitor_printf(mon, " thread_id=%" PRId64 "\n", value->thread_id);
2567 monitor_printf(mon, " poll-max-ns=%" PRId64 "\n", value->poll_max_ns);
2568 monitor_printf(mon, " poll-grow=%" PRId64 "\n", value->poll_grow);
2569 monitor_printf(mon, " poll-shrink=%" PRId64 "\n", value->poll_shrink);
62313160
TW
2570 }
2571
2572 qapi_free_IOThreadInfoList(info_list);
2573}
2574
89d7fa9e
AF
2575void hmp_qom_list(Monitor *mon, const QDict *qdict)
2576{
2577 const char *path = qdict_get_try_str(qdict, "path");
2578 ObjectPropertyInfoList *list;
2579 Error *err = NULL;
2580
2581 if (path == NULL) {
2582 monitor_printf(mon, "/\n");
2583 return;
2584 }
2585
2586 list = qmp_qom_list(path, &err);
2587 if (err == NULL) {
2588 ObjectPropertyInfoList *start = list;
2589 while (list != NULL) {
2590 ObjectPropertyInfo *value = list->value;
2591
2592 monitor_printf(mon, "%s (%s)\n",
2593 value->name, value->type);
2594 list = list->next;
2595 }
2596 qapi_free_ObjectPropertyInfoList(start);
2597 }
2598 hmp_handle_error(mon, &err);
2599}
c0e6ee9e
AF
2600
2601void hmp_qom_set(Monitor *mon, const QDict *qdict)
2602{
2603 const char *path = qdict_get_str(qdict, "path");
2604 const char *property = qdict_get_str(qdict, "property");
2605 const char *value = qdict_get_str(qdict, "value");
2606 Error *err = NULL;
2607 bool ambiguous = false;
2608 Object *obj;
2609
2610 obj = object_resolve_path(path, &ambiguous);
2611 if (obj == NULL) {
75158ebb
MA
2612 error_set(&err, ERROR_CLASS_DEVICE_NOT_FOUND,
2613 "Device '%s' not found", path);
c0e6ee9e
AF
2614 } else {
2615 if (ambiguous) {
2616 monitor_printf(mon, "Warning: Path '%s' is ambiguous\n", path);
2617 }
2618 object_property_parse(obj, value, property, &err);
2619 }
2620 hmp_handle_error(mon, &err);
2621}
fafa4d50
SF
2622
2623void hmp_rocker(Monitor *mon, const QDict *qdict)
2624{
2625 const char *name = qdict_get_str(qdict, "name");
2626 RockerSwitch *rocker;
533fdaed 2627 Error *err = NULL;
fafa4d50 2628
533fdaed
MA
2629 rocker = qmp_query_rocker(name, &err);
2630 if (err != NULL) {
2631 hmp_handle_error(mon, &err);
fafa4d50
SF
2632 return;
2633 }
2634
2635 monitor_printf(mon, "name: %s\n", rocker->name);
2636 monitor_printf(mon, "id: 0x%" PRIx64 "\n", rocker->id);
2637 monitor_printf(mon, "ports: %d\n", rocker->ports);
2638
2639 qapi_free_RockerSwitch(rocker);
2640}
2641
2642void hmp_rocker_ports(Monitor *mon, const QDict *qdict)
2643{
2644 RockerPortList *list, *port;
2645 const char *name = qdict_get_str(qdict, "name");
533fdaed 2646 Error *err = NULL;
fafa4d50 2647
533fdaed
MA
2648 list = qmp_query_rocker_ports(name, &err);
2649 if (err != NULL) {
2650 hmp_handle_error(mon, &err);
fafa4d50
SF
2651 return;
2652 }
2653
2654 monitor_printf(mon, " ena/ speed/ auto\n");
2655 monitor_printf(mon, " port link duplex neg?\n");
2656
2657 for (port = list; port; port = port->next) {
2658 monitor_printf(mon, "%10s %-4s %-3s %2s %-3s\n",
2659 port->value->name,
2660 port->value->enabled ? port->value->link_up ?
2661 "up" : "down" : "!ena",
2662 port->value->speed == 10000 ? "10G" : "??",
2663 port->value->duplex ? "FD" : "HD",
2664 port->value->autoneg ? "Yes" : "No");
2665 }
2666
2667 qapi_free_RockerPortList(list);
2668}
2669
2670void hmp_rocker_of_dpa_flows(Monitor *mon, const QDict *qdict)
2671{
2672 RockerOfDpaFlowList *list, *info;
2673 const char *name = qdict_get_str(qdict, "name");
2674 uint32_t tbl_id = qdict_get_try_int(qdict, "tbl_id", -1);
533fdaed 2675 Error *err = NULL;
fafa4d50 2676
533fdaed
MA
2677 list = qmp_query_rocker_of_dpa_flows(name, tbl_id != -1, tbl_id, &err);
2678 if (err != NULL) {
2679 hmp_handle_error(mon, &err);
fafa4d50
SF
2680 return;
2681 }
2682
2683 monitor_printf(mon, "prio tbl hits key(mask) --> actions\n");
2684
2685 for (info = list; info; info = info->next) {
2686 RockerOfDpaFlow *flow = info->value;
2687 RockerOfDpaFlowKey *key = flow->key;
2688 RockerOfDpaFlowMask *mask = flow->mask;
2689 RockerOfDpaFlowAction *action = flow->action;
2690
2691 if (flow->hits) {
2692 monitor_printf(mon, "%-4d %-3d %-4" PRIu64,
2693 key->priority, key->tbl_id, flow->hits);
2694 } else {
2695 monitor_printf(mon, "%-4d %-3d ",
2696 key->priority, key->tbl_id);
2697 }
2698
2699 if (key->has_in_pport) {
2700 monitor_printf(mon, " pport %d", key->in_pport);
2701 if (mask->has_in_pport) {
2702 monitor_printf(mon, "(0x%x)", mask->in_pport);
2703 }
2704 }
2705
2706 if (key->has_vlan_id) {
2707 monitor_printf(mon, " vlan %d",
2708 key->vlan_id & VLAN_VID_MASK);
2709 if (mask->has_vlan_id) {
2710 monitor_printf(mon, "(0x%x)", mask->vlan_id);
2711 }
2712 }
2713
2714 if (key->has_tunnel_id) {
2715 monitor_printf(mon, " tunnel %d", key->tunnel_id);
2716 if (mask->has_tunnel_id) {
2717 monitor_printf(mon, "(0x%x)", mask->tunnel_id);
2718 }
2719 }
2720
2721 if (key->has_eth_type) {
2722 switch (key->eth_type) {
2723 case 0x0806:
2724 monitor_printf(mon, " ARP");
2725 break;
2726 case 0x0800:
2727 monitor_printf(mon, " IP");
2728 break;
2729 case 0x86dd:
2730 monitor_printf(mon, " IPv6");
2731 break;
2732 case 0x8809:
2733 monitor_printf(mon, " LACP");
2734 break;
2735 case 0x88cc:
2736 monitor_printf(mon, " LLDP");
2737 break;
2738 default:
2739 monitor_printf(mon, " eth type 0x%04x", key->eth_type);
2740 break;
2741 }
2742 }
2743
2744 if (key->has_eth_src) {
2745 if ((strcmp(key->eth_src, "01:00:00:00:00:00") == 0) &&
2746 (mask->has_eth_src) &&
2747 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2748 monitor_printf(mon, " src <any mcast/bcast>");
2749 } else if ((strcmp(key->eth_src, "00:00:00:00:00:00") == 0) &&
2750 (mask->has_eth_src) &&
2751 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2752 monitor_printf(mon, " src <any ucast>");
2753 } else {
2754 monitor_printf(mon, " src %s", key->eth_src);
2755 if (mask->has_eth_src) {
2756 monitor_printf(mon, "(%s)", mask->eth_src);
2757 }
2758 }
2759 }
2760
2761 if (key->has_eth_dst) {
2762 if ((strcmp(key->eth_dst, "01:00:00:00:00:00") == 0) &&
2763 (mask->has_eth_dst) &&
2764 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2765 monitor_printf(mon, " dst <any mcast/bcast>");
2766 } else if ((strcmp(key->eth_dst, "00:00:00:00:00:00") == 0) &&
2767 (mask->has_eth_dst) &&
2768 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2769 monitor_printf(mon, " dst <any ucast>");
2770 } else {
2771 monitor_printf(mon, " dst %s", key->eth_dst);
2772 if (mask->has_eth_dst) {
2773 monitor_printf(mon, "(%s)", mask->eth_dst);
2774 }
2775 }
2776 }
2777
2778 if (key->has_ip_proto) {
2779 monitor_printf(mon, " proto %d", key->ip_proto);
2780 if (mask->has_ip_proto) {
2781 monitor_printf(mon, "(0x%x)", mask->ip_proto);
2782 }
2783 }
2784
2785 if (key->has_ip_tos) {
2786 monitor_printf(mon, " TOS %d", key->ip_tos);
2787 if (mask->has_ip_tos) {
2788 monitor_printf(mon, "(0x%x)", mask->ip_tos);
2789 }
2790 }
2791
2792 if (key->has_ip_dst) {
2793 monitor_printf(mon, " dst %s", key->ip_dst);
2794 }
2795
2796 if (action->has_goto_tbl || action->has_group_id ||
2797 action->has_new_vlan_id) {
2798 monitor_printf(mon, " -->");
2799 }
2800
2801 if (action->has_new_vlan_id) {
2802 monitor_printf(mon, " apply new vlan %d",
2803 ntohs(action->new_vlan_id));
2804 }
2805
2806 if (action->has_group_id) {
2807 monitor_printf(mon, " write group 0x%08x", action->group_id);
2808 }
2809
2810 if (action->has_goto_tbl) {
2811 monitor_printf(mon, " goto tbl %d", action->goto_tbl);
2812 }
2813
2814 monitor_printf(mon, "\n");
2815 }
2816
2817 qapi_free_RockerOfDpaFlowList(list);
2818}
2819
2820void hmp_rocker_of_dpa_groups(Monitor *mon, const QDict *qdict)
2821{
2822 RockerOfDpaGroupList *list, *g;
2823 const char *name = qdict_get_str(qdict, "name");
2824 uint8_t type = qdict_get_try_int(qdict, "type", 9);
533fdaed 2825 Error *err = NULL;
fafa4d50
SF
2826 bool set = false;
2827
533fdaed
MA
2828 list = qmp_query_rocker_of_dpa_groups(name, type != 9, type, &err);
2829 if (err != NULL) {
2830 hmp_handle_error(mon, &err);
fafa4d50
SF
2831 return;
2832 }
2833
2834 monitor_printf(mon, "id (decode) --> buckets\n");
2835
2836 for (g = list; g; g = g->next) {
2837 RockerOfDpaGroup *group = g->value;
2838
2839 monitor_printf(mon, "0x%08x", group->id);
2840
2841 monitor_printf(mon, " (type %s", group->type == 0 ? "L2 interface" :
2842 group->type == 1 ? "L2 rewrite" :
2843 group->type == 2 ? "L3 unicast" :
2844 group->type == 3 ? "L2 multicast" :
2845 group->type == 4 ? "L2 flood" :
2846 group->type == 5 ? "L3 interface" :
2847 group->type == 6 ? "L3 multicast" :
2848 group->type == 7 ? "L3 ECMP" :
2849 group->type == 8 ? "L2 overlay" :
2850 "unknown");
2851
2852 if (group->has_vlan_id) {
2853 monitor_printf(mon, " vlan %d", group->vlan_id);
2854 }
2855
2856 if (group->has_pport) {
2857 monitor_printf(mon, " pport %d", group->pport);
2858 }
2859
2860 if (group->has_index) {
2861 monitor_printf(mon, " index %d", group->index);
2862 }
2863
2864 monitor_printf(mon, ") -->");
2865
2866 if (group->has_set_vlan_id && group->set_vlan_id) {
2867 set = true;
2868 monitor_printf(mon, " set vlan %d",
2869 group->set_vlan_id & VLAN_VID_MASK);
2870 }
2871
2872 if (group->has_set_eth_src) {
2873 if (!set) {
2874 set = true;
2875 monitor_printf(mon, " set");
2876 }
2877 monitor_printf(mon, " src %s", group->set_eth_src);
2878 }
2879
2880 if (group->has_set_eth_dst) {
2881 if (!set) {
2882 set = true;
2883 monitor_printf(mon, " set");
2884 }
2885 monitor_printf(mon, " dst %s", group->set_eth_dst);
2886 }
2887
2888 set = false;
2889
2890 if (group->has_ttl_check && group->ttl_check) {
2891 monitor_printf(mon, " check TTL");
2892 }
2893
2894 if (group->has_group_id && group->group_id) {
2895 monitor_printf(mon, " group id 0x%08x", group->group_id);
2896 }
2897
2898 if (group->has_pop_vlan && group->pop_vlan) {
2899 monitor_printf(mon, " pop vlan");
2900 }
2901
2902 if (group->has_out_pport) {
2903 monitor_printf(mon, " out pport %d", group->out_pport);
2904 }
2905
2906 if (group->has_group_ids) {
2907 struct uint32List *id;
2908
2909 monitor_printf(mon, " groups [");
2910 for (id = group->group_ids; id; id = id->next) {
2911 monitor_printf(mon, "0x%08x", id->value);
2912 if (id->next) {
2913 monitor_printf(mon, ",");
2914 }
2915 }
2916 monitor_printf(mon, "]");
2917 }
2918
2919 monitor_printf(mon, "\n");
2920 }
2921
2922 qapi_free_RockerOfDpaGroupList(list);
2923}
4a6b52d6
PX
2924
2925void hmp_info_dump(Monitor *mon, const QDict *qdict)
2926{
2927 DumpQueryResult *result = qmp_query_dump(NULL);
2928
2929 assert(result && result->status < DUMP_STATUS__MAX);
977c736f 2930 monitor_printf(mon, "Status: %s\n", DumpStatus_str(result->status));
4a6b52d6
PX
2931
2932 if (result->status == DUMP_STATUS_ACTIVE) {
2933 float percent = 0;
2934 assert(result->total != 0);
2935 percent = 100.0 * result->completed / result->total;
2936 monitor_printf(mon, "Finished: %.2f %%\n", percent);
2937 }
2938
2939 qapi_free_DumpQueryResult(result);
2940}
d2d8d46f 2941
be9b23c4
PX
2942void hmp_info_ramblock(Monitor *mon, const QDict *qdict)
2943{
2944 ram_block_dump(mon);
2945}
2946
d2d8d46f
BR
2947void hmp_hotpluggable_cpus(Monitor *mon, const QDict *qdict)
2948{
2949 Error *err = NULL;
2950 HotpluggableCPUList *l = qmp_query_hotpluggable_cpus(&err);
2951 HotpluggableCPUList *saved = l;
2952 CpuInstanceProperties *c;
2953
2954 if (err != NULL) {
2955 hmp_handle_error(mon, &err);
2956 return;
2957 }
2958
2959 monitor_printf(mon, "Hotpluggable CPUs:\n");
2960 while (l) {
2961 monitor_printf(mon, " type: \"%s\"\n", l->value->type);
2962 monitor_printf(mon, " vcpus_count: \"%" PRIu64 "\"\n",
2963 l->value->vcpus_count);
2964 if (l->value->has_qom_path) {
2965 monitor_printf(mon, " qom_path: \"%s\"\n", l->value->qom_path);
2966 }
2967
2968 c = l->value->props;
2969 monitor_printf(mon, " CPUInstance Properties:\n");
27393c33
PK
2970 if (c->has_node_id) {
2971 monitor_printf(mon, " node-id: \"%" PRIu64 "\"\n", c->node_id);
d2d8d46f 2972 }
27393c33
PK
2973 if (c->has_socket_id) {
2974 monitor_printf(mon, " socket-id: \"%" PRIu64 "\"\n", c->socket_id);
d2d8d46f 2975 }
27393c33
PK
2976 if (c->has_core_id) {
2977 monitor_printf(mon, " core-id: \"%" PRIu64 "\"\n", c->core_id);
d2d8d46f 2978 }
27393c33
PK
2979 if (c->has_thread_id) {
2980 monitor_printf(mon, " thread-id: \"%" PRIu64 "\"\n", c->thread_id);
d2d8d46f
BR
2981 }
2982
2983 l = l->next;
2984 }
2985
2986 qapi_free_HotpluggableCPUList(saved);
2987}
39164c13
IM
2988
2989void hmp_info_vm_generation_id(Monitor *mon, const QDict *qdict)
2990{
72d9196f
BW
2991 Error *err = NULL;
2992 GuidInfo *info = qmp_query_vm_generation_id(&err);
39164c13
IM
2993 if (info) {
2994 monitor_printf(mon, "%s\n", info->guid);
2995 }
72d9196f 2996 hmp_handle_error(mon, &err);
39164c13
IM
2997 qapi_free_GuidInfo(info);
2998}
d0f63c1e
VG
2999
3000void hmp_info_memory_size_summary(Monitor *mon, const QDict *qdict)
3001{
3002 Error *err = NULL;
3003 MemoryInfo *info = qmp_query_memory_size_summary(&err);
3004 if (info) {
3005 monitor_printf(mon, "base memory: %" PRIu64 "\n",
3006 info->base_memory);
3007
3008 if (info->has_plugged_memory) {
3009 monitor_printf(mon, "plugged memory: %" PRIu64 "\n",
3010 info->plugged_memory);
3011 }
3012
3013 qapi_free_MemoryInfo(info);
3014 }
3015 hmp_handle_error(mon, &err);
3016}