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