]> git.proxmox.com Git - mirror_qemu.git/blame - hmp.c
qapi: Swap visit_* arguments for consistent 'name' placement
[mirror_qemu.git] / hmp.c
CommitLineData
48a32bed
AL
1/*
2 * Human Monitor Interface
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
6b620ca3
PB
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
48a32bed
AL
14 */
15
d38ea87a 16#include "qemu/osdep.h"
48a32bed 17#include "hmp.h"
1422e32d 18#include "net/net.h"
fafa4d50 19#include "net/eth.h"
dccfcd0e 20#include "sysemu/char.h"
4c7b7e9b 21#include "sysemu/block-backend.h"
1de7afc9
PB
22#include "qemu/option.h"
23#include "qemu/timer.h"
48a32bed 24#include "qmp-commands.h"
1de7afc9 25#include "qemu/sockets.h"
83c9089e 26#include "monitor/monitor.h"
318660f8 27#include "monitor/qdev.h"
cff8b2c6 28#include "qapi/opts-visitor.h"
cc7a8ea7 29#include "qapi/qmp/qerror.h"
eb1539b2 30#include "qapi/string-output-visitor.h"
baead0ab 31#include "qapi/util.h"
eb1539b2 32#include "qapi-visit.h"
28ecbaee 33#include "ui/console.h"
bd093a36 34#include "block/qapi.h"
587da2c3 35#include "qemu-io.h"
48a32bed 36
22fa7da0
CR
37#ifdef CONFIG_SPICE
38#include <spice/enums.h>
39#endif
40
0cfd6a9a
LC
41static void hmp_handle_error(Monitor *mon, Error **errp)
42{
415168e0
MA
43 assert(errp);
44 if (*errp) {
193227f9 45 error_report_err(*errp);
0cfd6a9a
LC
46 }
47}
48
84f2d0ea 49void hmp_info_name(Monitor *mon, const QDict *qdict)
48a32bed
AL
50{
51 NameInfo *info;
52
53 info = qmp_query_name(NULL);
54 if (info->has_name) {
55 monitor_printf(mon, "%s\n", info->name);
56 }
57 qapi_free_NameInfo(info);
58}
b9c15f16 59
84f2d0ea 60void hmp_info_version(Monitor *mon, const QDict *qdict)
b9c15f16
LC
61{
62 VersionInfo *info;
63
64 info = qmp_query_version(NULL);
65
66 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
4752cdbb 67 info->qemu->major, info->qemu->minor, info->qemu->micro,
b9c15f16
LC
68 info->package);
69
70 qapi_free_VersionInfo(info);
71}
292a2602 72
84f2d0ea 73void hmp_info_kvm(Monitor *mon, const QDict *qdict)
292a2602
LC
74{
75 KvmInfo *info;
76
77 info = qmp_query_kvm(NULL);
78 monitor_printf(mon, "kvm support: ");
79 if (info->present) {
80 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
81 } else {
82 monitor_printf(mon, "not compiled\n");
83 }
84
85 qapi_free_KvmInfo(info);
86}
87
84f2d0ea 88void hmp_info_status(Monitor *mon, const QDict *qdict)
1fa9a5e4
LC
89{
90 StatusInfo *info;
91
92 info = qmp_query_status(NULL);
93
94 monitor_printf(mon, "VM status: %s%s",
95 info->running ? "running" : "paused",
96 info->singlestep ? " (single step mode)" : "");
97
98 if (!info->running && info->status != RUN_STATE_PAUSED) {
99 monitor_printf(mon, " (%s)", RunState_lookup[info->status]);
100 }
101
102 monitor_printf(mon, "\n");
103
104 qapi_free_StatusInfo(info);
105}
106
84f2d0ea 107void hmp_info_uuid(Monitor *mon, const QDict *qdict)
efab767e
LC
108{
109 UuidInfo *info;
110
111 info = qmp_query_uuid(NULL);
112 monitor_printf(mon, "%s\n", info->UUID);
113 qapi_free_UuidInfo(info);
114}
c5a415a0 115
84f2d0ea 116void hmp_info_chardev(Monitor *mon, const QDict *qdict)
c5a415a0
LC
117{
118 ChardevInfoList *char_info, *info;
119
120 char_info = qmp_query_chardev(NULL);
121 for (info = char_info; info; info = info->next) {
122 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
123 info->value->filename);
124 }
125
126 qapi_free_ChardevInfoList(char_info);
127}
7a7f325e 128
84f2d0ea 129void hmp_info_mice(Monitor *mon, const QDict *qdict)
e235cec3
LC
130{
131 MouseInfoList *mice_list, *mouse;
132
133 mice_list = qmp_query_mice(NULL);
134 if (!mice_list) {
135 monitor_printf(mon, "No mouse devices connected\n");
136 return;
137 }
138
139 for (mouse = mice_list; mouse; mouse = mouse->next) {
140 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
141 mouse->value->current ? '*' : ' ',
142 mouse->value->index, mouse->value->name,
143 mouse->value->absolute ? " (absolute)" : "");
144 }
145
146 qapi_free_MouseInfoList(mice_list);
147}
148
84f2d0ea 149void hmp_info_migrate(Monitor *mon, const QDict *qdict)
791e7c82
LC
150{
151 MigrationInfo *info;
bbf6da32 152 MigrationCapabilityStatusList *caps, *cap;
791e7c82
LC
153
154 info = qmp_query_migrate(NULL);
bbf6da32
OW
155 caps = qmp_query_migrate_capabilities(NULL);
156
157 /* do not display parameters during setup */
158 if (info->has_status && caps) {
159 monitor_printf(mon, "capabilities: ");
160 for (cap = caps; cap; cap = cap->next) {
161 monitor_printf(mon, "%s: %s ",
162 MigrationCapability_lookup[cap->value->capability],
163 cap->value->state ? "on" : "off");
164 }
165 monitor_printf(mon, "\n");
166 }
791e7c82
LC
167
168 if (info->has_status) {
24b8c39b
HZ
169 monitor_printf(mon, "Migration status: %s\n",
170 MigrationStatus_lookup[info->status]);
7aa939af
JQ
171 monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
172 info->total_time);
2c52ddf1
JQ
173 if (info->has_expected_downtime) {
174 monitor_printf(mon, "expected downtime: %" PRIu64 " milliseconds\n",
175 info->expected_downtime);
176 }
9c5a9fcf
JQ
177 if (info->has_downtime) {
178 monitor_printf(mon, "downtime: %" PRIu64 " milliseconds\n",
179 info->downtime);
180 }
ed4fbd10
MH
181 if (info->has_setup_time) {
182 monitor_printf(mon, "setup: %" PRIu64 " milliseconds\n",
183 info->setup_time);
184 }
791e7c82
LC
185 }
186
187 if (info->has_ram) {
188 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
189 info->ram->transferred >> 10);
7e114f8c
MH
190 monitor_printf(mon, "throughput: %0.2f mbps\n",
191 info->ram->mbps);
791e7c82
LC
192 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
193 info->ram->remaining >> 10);
194 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
195 info->ram->total >> 10);
004d4c10
OW
196 monitor_printf(mon, "duplicate: %" PRIu64 " pages\n",
197 info->ram->duplicate);
f1c72795
PL
198 monitor_printf(mon, "skipped: %" PRIu64 " pages\n",
199 info->ram->skipped);
004d4c10
OW
200 monitor_printf(mon, "normal: %" PRIu64 " pages\n",
201 info->ram->normal);
202 monitor_printf(mon, "normal bytes: %" PRIu64 " kbytes\n",
203 info->ram->normal_bytes >> 10);
58570ed8
C
204 monitor_printf(mon, "dirty sync count: %" PRIu64 "\n",
205 info->ram->dirty_sync_count);
8d017193
JQ
206 if (info->ram->dirty_pages_rate) {
207 monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
208 info->ram->dirty_pages_rate);
209 }
791e7c82
LC
210 }
211
212 if (info->has_disk) {
213 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
214 info->disk->transferred >> 10);
215 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
216 info->disk->remaining >> 10);
217 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
218 info->disk->total >> 10);
219 }
220
f36d55af
OW
221 if (info->has_xbzrle_cache) {
222 monitor_printf(mon, "cache size: %" PRIu64 " bytes\n",
223 info->xbzrle_cache->cache_size);
224 monitor_printf(mon, "xbzrle transferred: %" PRIu64 " kbytes\n",
225 info->xbzrle_cache->bytes >> 10);
226 monitor_printf(mon, "xbzrle pages: %" PRIu64 " pages\n",
227 info->xbzrle_cache->pages);
228 monitor_printf(mon, "xbzrle cache miss: %" PRIu64 "\n",
229 info->xbzrle_cache->cache_miss);
8bc39233
C
230 monitor_printf(mon, "xbzrle cache miss rate: %0.2f\n",
231 info->xbzrle_cache->cache_miss_rate);
f36d55af
OW
232 monitor_printf(mon, "xbzrle overflow : %" PRIu64 "\n",
233 info->xbzrle_cache->overflow);
234 }
235
4782893e
JH
236 if (info->has_x_cpu_throttle_percentage) {
237 monitor_printf(mon, "cpu throttle percentage: %" PRIu64 "\n",
238 info->x_cpu_throttle_percentage);
239 }
240
791e7c82 241 qapi_free_MigrationInfo(info);
bbf6da32
OW
242 qapi_free_MigrationCapabilityStatusList(caps);
243}
244
84f2d0ea 245void hmp_info_migrate_capabilities(Monitor *mon, const QDict *qdict)
bbf6da32
OW
246{
247 MigrationCapabilityStatusList *caps, *cap;
248
249 caps = qmp_query_migrate_capabilities(NULL);
250
251 if (caps) {
252 monitor_printf(mon, "capabilities: ");
253 for (cap = caps; cap; cap = cap->next) {
254 monitor_printf(mon, "%s: %s ",
255 MigrationCapability_lookup[cap->value->capability],
256 cap->value->state ? "on" : "off");
257 }
258 monitor_printf(mon, "\n");
259 }
260
261 qapi_free_MigrationCapabilityStatusList(caps);
791e7c82
LC
262}
263
50e9a629
LL
264void hmp_info_migrate_parameters(Monitor *mon, const QDict *qdict)
265{
266 MigrationParameters *params;
267
268 params = qmp_query_migrate_parameters(NULL);
269
270 if (params) {
271 monitor_printf(mon, "parameters:");
272 monitor_printf(mon, " %s: %" PRId64,
273 MigrationParameter_lookup[MIGRATION_PARAMETER_COMPRESS_LEVEL],
274 params->compress_level);
275 monitor_printf(mon, " %s: %" PRId64,
276 MigrationParameter_lookup[MIGRATION_PARAMETER_COMPRESS_THREADS],
277 params->compress_threads);
278 monitor_printf(mon, " %s: %" PRId64,
279 MigrationParameter_lookup[MIGRATION_PARAMETER_DECOMPRESS_THREADS],
280 params->decompress_threads);
1626fee3
JH
281 monitor_printf(mon, " %s: %" PRId64,
282 MigrationParameter_lookup[MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL],
283 params->x_cpu_throttle_initial);
284 monitor_printf(mon, " %s: %" PRId64,
285 MigrationParameter_lookup[MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT],
286 params->x_cpu_throttle_increment);
50e9a629
LL
287 monitor_printf(mon, "\n");
288 }
289
290 qapi_free_MigrationParameters(params);
291}
292
84f2d0ea 293void hmp_info_migrate_cache_size(Monitor *mon, const QDict *qdict)
9e1ba4cc
OW
294{
295 monitor_printf(mon, "xbzrel cache size: %" PRId64 " kbytes\n",
296 qmp_query_migrate_cache_size(NULL) >> 10);
297}
298
84f2d0ea 299void hmp_info_cpus(Monitor *mon, const QDict *qdict)
de0b36b6
LC
300{
301 CpuInfoList *cpu_list, *cpu;
302
303 cpu_list = qmp_query_cpus(NULL);
304
305 for (cpu = cpu_list; cpu; cpu = cpu->next) {
306 int active = ' ';
307
308 if (cpu->value->CPU == monitor_get_cpu_index()) {
309 active = '*';
310 }
311
852bef0e 312 monitor_printf(mon, "%c CPU #%" PRId64 ":", active, cpu->value->CPU);
de0b36b6 313
86f4b687
EB
314 switch (cpu->value->arch) {
315 case CPU_INFO_ARCH_X86:
316 monitor_printf(mon, " pc=0x%016" PRIx64, cpu->value->u.x86->pc);
317 break;
318 case CPU_INFO_ARCH_PPC:
319 monitor_printf(mon, " nip=0x%016" PRIx64, cpu->value->u.ppc->nip);
320 break;
321 case CPU_INFO_ARCH_SPARC:
322 monitor_printf(mon, " pc=0x%016" PRIx64, cpu->value->u.sparc->pc);
323 monitor_printf(mon, " npc=0x%016" PRIx64, cpu->value->u.sparc->npc);
324 break;
325 case CPU_INFO_ARCH_MIPS:
326 monitor_printf(mon, " PC=0x%016" PRIx64, cpu->value->u.mips->PC);
327 break;
328 case CPU_INFO_ARCH_TRICORE:
329 monitor_printf(mon, " PC=0x%016" PRIx64, cpu->value->u.tricore->PC);
330 break;
331 default:
332 break;
de0b36b6
LC
333 }
334
335 if (cpu->value->halted) {
336 monitor_printf(mon, " (halted)");
337 }
338
339 monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
340 }
341
342 qapi_free_CpuInfoList(cpu_list);
343}
344
289b276c
KW
345static void print_block_info(Monitor *mon, BlockInfo *info,
346 BlockDeviceInfo *inserted, bool verbose)
b2023818 347{
bd093a36 348 ImageInfo *image_info;
b2023818 349
8d6adccd
KW
350 assert(!info || !info->has_inserted || info->inserted == inserted);
351
352 if (info) {
353 monitor_printf(mon, "%s", info->device);
354 if (inserted && inserted->has_node_name) {
355 monitor_printf(mon, " (%s)", inserted->node_name);
356 }
357 } else {
358 assert(inserted);
359 monitor_printf(mon, "%s",
360 inserted->has_node_name
361 ? inserted->node_name
362 : "<anonymous>");
363 }
364
289b276c
KW
365 if (inserted) {
366 monitor_printf(mon, ": %s (%s%s%s)\n",
367 inserted->file,
368 inserted->drv,
369 inserted->ro ? ", read-only" : "",
370 inserted->encrypted ? ", encrypted" : "");
371 } else {
372 monitor_printf(mon, ": [not inserted]\n");
373 }
b2023818 374
8d6adccd
KW
375 if (info) {
376 if (info->has_io_status && info->io_status != BLOCK_DEVICE_IO_STATUS_OK) {
377 monitor_printf(mon, " I/O status: %s\n",
378 BlockDeviceIoStatus_lookup[info->io_status]);
379 }
b2023818 380
8d6adccd
KW
381 if (info->removable) {
382 monitor_printf(mon, " Removable device: %slocked, tray %s\n",
383 info->locked ? "" : "not ",
384 info->tray_open ? "open" : "closed");
385 }
289b276c 386 }
fbe2e26c 387
b2023818 388
289b276c
KW
389 if (!inserted) {
390 return;
391 }
b2023818 392
289b276c
KW
393 monitor_printf(mon, " Cache mode: %s%s%s\n",
394 inserted->cache->writeback ? "writeback" : "writethrough",
395 inserted->cache->direct ? ", direct" : "",
396 inserted->cache->no_flush ? ", ignore flushes" : "");
397
398 if (inserted->has_backing_file) {
399 monitor_printf(mon,
400 " Backing file: %s "
401 "(chain depth: %" PRId64 ")\n",
402 inserted->backing_file,
403 inserted->backing_file_depth);
404 }
727f005e 405
289b276c
KW
406 if (inserted->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF) {
407 monitor_printf(mon, " Detect zeroes: %s\n",
408 BlockdevDetectZeroesOptions_lookup[inserted->detect_zeroes]);
409 }
fbe2e26c 410
289b276c
KW
411 if (inserted->bps || inserted->bps_rd || inserted->bps_wr ||
412 inserted->iops || inserted->iops_rd || inserted->iops_wr)
413 {
414 monitor_printf(mon, " I/O throttling: bps=%" PRId64
415 " bps_rd=%" PRId64 " bps_wr=%" PRId64
416 " bps_max=%" PRId64
417 " bps_rd_max=%" PRId64
418 " bps_wr_max=%" PRId64
419 " iops=%" PRId64 " iops_rd=%" PRId64
420 " iops_wr=%" PRId64
421 " iops_max=%" PRId64
422 " iops_rd_max=%" PRId64
423 " iops_wr_max=%" PRId64
b8fe1694
AG
424 " iops_size=%" PRId64
425 " group=%s\n",
289b276c
KW
426 inserted->bps,
427 inserted->bps_rd,
428 inserted->bps_wr,
429 inserted->bps_max,
430 inserted->bps_rd_max,
431 inserted->bps_wr_max,
432 inserted->iops,
433 inserted->iops_rd,
434 inserted->iops_wr,
435 inserted->iops_max,
436 inserted->iops_rd_max,
437 inserted->iops_wr_max,
b8fe1694
AG
438 inserted->iops_size,
439 inserted->group);
289b276c 440 }
fbe2e26c 441
9419874f 442 if (verbose) {
289b276c
KW
443 monitor_printf(mon, "\nImages:\n");
444 image_info = inserted->image;
445 while (1) {
446 bdrv_image_info_dump((fprintf_function)monitor_printf,
447 mon, image_info);
448 if (image_info->has_backing_image) {
449 image_info = image_info->backing_image;
450 } else {
451 break;
452 }
453 }
454 }
455}
9e193c5a 456
289b276c
KW
457void hmp_info_block(Monitor *mon, const QDict *qdict)
458{
459 BlockInfoList *block_list, *info;
e6bb31ec 460 BlockDeviceInfoList *blockdev_list, *blockdev;
289b276c 461 const char *device = qdict_get_try_str(qdict, "device");
34acbc95
EB
462 bool verbose = qdict_get_try_bool(qdict, "verbose", false);
463 bool nodes = qdict_get_try_bool(qdict, "nodes", false);
e6bb31ec 464 bool printed = false;
9e193c5a 465
e6bb31ec
KW
466 /* Print BlockBackend information */
467 if (!nodes) {
f19e44bc 468 block_list = qmp_query_block(NULL);
e6bb31ec
KW
469 } else {
470 block_list = NULL;
471 }
fbe2e26c 472
289b276c
KW
473 for (info = block_list; info; info = info->next) {
474 if (device && strcmp(device, info->value->device)) {
475 continue;
465bee1d
PL
476 }
477
289b276c
KW
478 if (info != block_list) {
479 monitor_printf(mon, "\n");
fbe2e26c 480 }
bd093a36 481
289b276c
KW
482 print_block_info(mon, info->value, info->value->has_inserted
483 ? info->value->inserted : NULL,
484 verbose);
e6bb31ec 485 printed = true;
b2023818
LC
486 }
487
488 qapi_free_BlockInfoList(block_list);
e6bb31ec
KW
489
490 if ((!device && !nodes) || printed) {
491 return;
492 }
493
494 /* Print node information */
495 blockdev_list = qmp_query_named_block_nodes(NULL);
496 for (blockdev = blockdev_list; blockdev; blockdev = blockdev->next) {
497 assert(blockdev->value->has_node_name);
498 if (device && strcmp(device, blockdev->value->node_name)) {
499 continue;
500 }
501
502 if (blockdev != blockdev_list) {
503 monitor_printf(mon, "\n");
504 }
505
506 print_block_info(mon, NULL, blockdev->value, verbose);
507 }
508 qapi_free_BlockDeviceInfoList(blockdev_list);
b2023818
LC
509}
510
84f2d0ea 511void hmp_info_blockstats(Monitor *mon, const QDict *qdict)
f11f57e4
LC
512{
513 BlockStatsList *stats_list, *stats;
514
f71eaa74 515 stats_list = qmp_query_blockstats(false, false, NULL);
f11f57e4
LC
516
517 for (stats = stats_list; stats; stats = stats->next) {
518 if (!stats->value->has_device) {
519 continue;
520 }
521
522 monitor_printf(mon, "%s:", stats->value->device);
523 monitor_printf(mon, " rd_bytes=%" PRId64
524 " wr_bytes=%" PRId64
525 " rd_operations=%" PRId64
526 " wr_operations=%" PRId64
527 " flush_operations=%" PRId64
528 " wr_total_time_ns=%" PRId64
529 " rd_total_time_ns=%" PRId64
530 " flush_total_time_ns=%" PRId64
f4564d53
PL
531 " rd_merged=%" PRId64
532 " wr_merged=%" PRId64
cb38fffb 533 " idle_time_ns=%" PRId64
f11f57e4
LC
534 "\n",
535 stats->value->stats->rd_bytes,
536 stats->value->stats->wr_bytes,
537 stats->value->stats->rd_operations,
538 stats->value->stats->wr_operations,
539 stats->value->stats->flush_operations,
540 stats->value->stats->wr_total_time_ns,
541 stats->value->stats->rd_total_time_ns,
f4564d53
PL
542 stats->value->stats->flush_total_time_ns,
543 stats->value->stats->rd_merged,
cb38fffb
AG
544 stats->value->stats->wr_merged,
545 stats->value->stats->idle_time_ns);
f11f57e4
LC
546 }
547
548 qapi_free_BlockStatsList(stats_list);
549}
550
84f2d0ea 551void hmp_info_vnc(Monitor *mon, const QDict *qdict)
2b54aa87
LC
552{
553 VncInfo *info;
554 Error *err = NULL;
555 VncClientInfoList *client;
556
557 info = qmp_query_vnc(&err);
558 if (err) {
193227f9 559 error_report_err(err);
2b54aa87
LC
560 return;
561 }
562
563 if (!info->enabled) {
564 monitor_printf(mon, "Server: disabled\n");
565 goto out;
566 }
567
568 monitor_printf(mon, "Server:\n");
569 if (info->has_host && info->has_service) {
570 monitor_printf(mon, " address: %s:%s\n", info->host, info->service);
571 }
572 if (info->has_auth) {
573 monitor_printf(mon, " auth: %s\n", info->auth);
574 }
575
576 if (!info->has_clients || info->clients == NULL) {
577 monitor_printf(mon, "Client: none\n");
578 } else {
579 for (client = info->clients; client; client = client->next) {
580 monitor_printf(mon, "Client:\n");
581 monitor_printf(mon, " address: %s:%s\n",
ddf21908
EB
582 client->value->host,
583 client->value->service);
2b54aa87
LC
584 monitor_printf(mon, " x509_dname: %s\n",
585 client->value->x509_dname ?
586 client->value->x509_dname : "none");
587 monitor_printf(mon, " username: %s\n",
588 client->value->has_sasl_username ?
589 client->value->sasl_username : "none");
590 }
591 }
592
593out:
594 qapi_free_VncInfo(info);
595}
596
206addd5 597#ifdef CONFIG_SPICE
84f2d0ea 598void hmp_info_spice(Monitor *mon, const QDict *qdict)
d1f29646
LC
599{
600 SpiceChannelList *chan;
601 SpiceInfo *info;
22fa7da0
CR
602 const char *channel_name;
603 const char * const channel_names[] = {
604 [SPICE_CHANNEL_MAIN] = "main",
605 [SPICE_CHANNEL_DISPLAY] = "display",
606 [SPICE_CHANNEL_INPUTS] = "inputs",
607 [SPICE_CHANNEL_CURSOR] = "cursor",
608 [SPICE_CHANNEL_PLAYBACK] = "playback",
609 [SPICE_CHANNEL_RECORD] = "record",
610 [SPICE_CHANNEL_TUNNEL] = "tunnel",
611 [SPICE_CHANNEL_SMARTCARD] = "smartcard",
612 [SPICE_CHANNEL_USBREDIR] = "usbredir",
613 [SPICE_CHANNEL_PORT] = "port",
7c6044a9
GH
614#if 0
615 /* minimum spice-protocol is 0.12.3, webdav was added in 0.12.7,
616 * no easy way to #ifdef (SPICE_CHANNEL_* is a enum). Disable
617 * as quick fix for build failures with older versions. */
22fa7da0 618 [SPICE_CHANNEL_WEBDAV] = "webdav",
7c6044a9 619#endif
22fa7da0 620 };
d1f29646
LC
621
622 info = qmp_query_spice(NULL);
623
624 if (!info->enabled) {
625 monitor_printf(mon, "Server: disabled\n");
626 goto out;
627 }
628
629 monitor_printf(mon, "Server:\n");
630 if (info->has_port) {
631 monitor_printf(mon, " address: %s:%" PRId64 "\n",
632 info->host, info->port);
633 }
634 if (info->has_tls_port) {
635 monitor_printf(mon, " address: %s:%" PRId64 " [tls]\n",
636 info->host, info->tls_port);
637 }
61c4efe2
YH
638 monitor_printf(mon, " migrated: %s\n",
639 info->migrated ? "true" : "false");
d1f29646
LC
640 monitor_printf(mon, " auth: %s\n", info->auth);
641 monitor_printf(mon, " compiled: %s\n", info->compiled_version);
4efee029
AL
642 monitor_printf(mon, " mouse-mode: %s\n",
643 SpiceQueryMouseMode_lookup[info->mouse_mode]);
d1f29646
LC
644
645 if (!info->has_channels || info->channels == NULL) {
646 monitor_printf(mon, "Channels: none\n");
647 } else {
648 for (chan = info->channels; chan; chan = chan->next) {
649 monitor_printf(mon, "Channel:\n");
650 monitor_printf(mon, " address: %s:%s%s\n",
ddf21908 651 chan->value->host, chan->value->port,
d1f29646
LC
652 chan->value->tls ? " [tls]" : "");
653 monitor_printf(mon, " session: %" PRId64 "\n",
654 chan->value->connection_id);
655 monitor_printf(mon, " channel: %" PRId64 ":%" PRId64 "\n",
656 chan->value->channel_type, chan->value->channel_id);
22fa7da0
CR
657
658 channel_name = "unknown";
659 if (chan->value->channel_type > 0 &&
660 chan->value->channel_type < ARRAY_SIZE(channel_names) &&
661 channel_names[chan->value->channel_type]) {
662 channel_name = channel_names[chan->value->channel_type];
663 }
664
665 monitor_printf(mon, " channel name: %s\n", channel_name);
d1f29646
LC
666 }
667 }
668
669out:
670 qapi_free_SpiceInfo(info);
671}
206addd5 672#endif
d1f29646 673
84f2d0ea 674void hmp_info_balloon(Monitor *mon, const QDict *qdict)
96637bcd
LC
675{
676 BalloonInfo *info;
677 Error *err = NULL;
678
679 info = qmp_query_balloon(&err);
680 if (err) {
193227f9 681 error_report_err(err);
96637bcd
LC
682 return;
683 }
684
01ceb97e 685 monitor_printf(mon, "balloon: actual=%" PRId64 "\n", info->actual >> 20);
96637bcd
LC
686
687 qapi_free_BalloonInfo(info);
688}
689
79627472
LC
690static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
691{
692 PciMemoryRegionList *region;
693
694 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
695 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
696 dev->slot, dev->function);
697 monitor_printf(mon, " ");
698
9fa02cd1
EB
699 if (dev->class_info->has_desc) {
700 monitor_printf(mon, "%s", dev->class_info->desc);
79627472 701 } else {
9fa02cd1 702 monitor_printf(mon, "Class %04" PRId64, dev->class_info->q_class);
79627472
LC
703 }
704
705 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
9fa02cd1 706 dev->id->vendor, dev->id->device);
79627472
LC
707
708 if (dev->has_irq) {
709 monitor_printf(mon, " IRQ %" PRId64 ".\n", dev->irq);
710 }
711
712 if (dev->has_pci_bridge) {
713 monitor_printf(mon, " BUS %" PRId64 ".\n",
9fa02cd1 714 dev->pci_bridge->bus->number);
79627472 715 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
9fa02cd1 716 dev->pci_bridge->bus->secondary);
79627472 717 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
9fa02cd1 718 dev->pci_bridge->bus->subordinate);
79627472
LC
719
720 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
9fa02cd1
EB
721 dev->pci_bridge->bus->io_range->base,
722 dev->pci_bridge->bus->io_range->limit);
79627472
LC
723
724 monitor_printf(mon,
725 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
9fa02cd1
EB
726 dev->pci_bridge->bus->memory_range->base,
727 dev->pci_bridge->bus->memory_range->limit);
79627472
LC
728
729 monitor_printf(mon, " prefetchable memory range "
730 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
9fa02cd1
EB
731 dev->pci_bridge->bus->prefetchable_range->base,
732 dev->pci_bridge->bus->prefetchable_range->limit);
79627472
LC
733 }
734
735 for (region = dev->regions; region; region = region->next) {
736 uint64_t addr, size;
737
738 addr = region->value->address;
739 size = region->value->size;
740
741 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
742
743 if (!strcmp(region->value->type, "io")) {
744 monitor_printf(mon, "I/O at 0x%04" PRIx64
745 " [0x%04" PRIx64 "].\n",
746 addr, addr + size - 1);
747 } else {
748 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
749 " [0x%08" PRIx64 "].\n",
750 region->value->mem_type_64 ? 64 : 32,
751 region->value->prefetch ? " prefetchable" : "",
752 addr, addr + size - 1);
753 }
754 }
755
756 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
757
758 if (dev->has_pci_bridge) {
759 if (dev->pci_bridge->has_devices) {
760 PciDeviceInfoList *cdev;
761 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
762 hmp_info_pci_device(mon, cdev->value);
763 }
764 }
765 }
766}
767
84f2d0ea 768void hmp_info_pci(Monitor *mon, const QDict *qdict)
79627472 769{
f46cee37 770 PciInfoList *info_list, *info;
79627472
LC
771 Error *err = NULL;
772
f46cee37 773 info_list = qmp_query_pci(&err);
79627472
LC
774 if (err) {
775 monitor_printf(mon, "PCI devices not supported\n");
776 error_free(err);
777 return;
778 }
779
f46cee37 780 for (info = info_list; info; info = info->next) {
79627472
LC
781 PciDeviceInfoList *dev;
782
783 for (dev = info->value->devices; dev; dev = dev->next) {
784 hmp_info_pci_device(mon, dev->value);
785 }
786 }
787
f46cee37 788 qapi_free_PciInfoList(info_list);
79627472
LC
789}
790
84f2d0ea 791void hmp_info_block_jobs(Monitor *mon, const QDict *qdict)
fb5458cd
SH
792{
793 BlockJobInfoList *list;
794 Error *err = NULL;
795
796 list = qmp_query_block_jobs(&err);
797 assert(!err);
798
799 if (!list) {
800 monitor_printf(mon, "No active jobs\n");
801 return;
802 }
803
804 while (list) {
805 if (strcmp(list->value->type, "stream") == 0) {
806 monitor_printf(mon, "Streaming device %s: Completed %" PRId64
807 " of %" PRId64 " bytes, speed limit %" PRId64
808 " bytes/s\n",
809 list->value->device,
810 list->value->offset,
811 list->value->len,
812 list->value->speed);
813 } else {
814 monitor_printf(mon, "Type %s, device %s: Completed %" PRId64
815 " of %" PRId64 " bytes, speed limit %" PRId64
816 " bytes/s\n",
817 list->value->type,
818 list->value->device,
819 list->value->offset,
820 list->value->len,
821 list->value->speed);
822 }
823 list = list->next;
824 }
93bb1315
GA
825
826 qapi_free_BlockJobInfoList(list);
fb5458cd
SH
827}
828
d1a0cf73
SB
829void hmp_info_tpm(Monitor *mon, const QDict *qdict)
830{
831 TPMInfoList *info_list, *info;
832 Error *err = NULL;
833 unsigned int c = 0;
834 TPMPassthroughOptions *tpo;
835
836 info_list = qmp_query_tpm(&err);
837 if (err) {
838 monitor_printf(mon, "TPM device not supported\n");
839 error_free(err);
840 return;
841 }
842
843 if (info_list) {
844 monitor_printf(mon, "TPM device:\n");
845 }
846
847 for (info = info_list; info; info = info->next) {
848 TPMInfo *ti = info->value;
849 monitor_printf(mon, " tpm%d: model=%s\n",
850 c, TpmModel_lookup[ti->model]);
851
852 monitor_printf(mon, " \\ %s: type=%s",
ce21131a 853 ti->id, TpmTypeOptionsKind_lookup[ti->options->type]);
d1a0cf73 854
ce21131a 855 switch (ti->options->type) {
88ca7bcf 856 case TPM_TYPE_OPTIONS_KIND_PASSTHROUGH:
ce21131a 857 tpo = ti->options->u.passthrough;
d1a0cf73
SB
858 monitor_printf(mon, "%s%s%s%s",
859 tpo->has_path ? ",path=" : "",
860 tpo->has_path ? tpo->path : "",
861 tpo->has_cancel_path ? ",cancel-path=" : "",
862 tpo->has_cancel_path ? tpo->cancel_path : "");
863 break;
7fb1cf16 864 case TPM_TYPE_OPTIONS_KIND__MAX:
d1a0cf73
SB
865 break;
866 }
867 monitor_printf(mon, "\n");
868 c++;
869 }
870 qapi_free_TPMInfoList(info_list);
871}
872
7a7f325e
LC
873void hmp_quit(Monitor *mon, const QDict *qdict)
874{
875 monitor_suspend(mon);
876 qmp_quit(NULL);
877}
5f158f21
LC
878
879void hmp_stop(Monitor *mon, const QDict *qdict)
880{
881 qmp_stop(NULL);
882}
38d22653
LC
883
884void hmp_system_reset(Monitor *mon, const QDict *qdict)
885{
886 qmp_system_reset(NULL);
887}
5bc465e4
LC
888
889void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
890{
891 qmp_system_powerdown(NULL);
892}
755f1968
LC
893
894void hmp_cpu(Monitor *mon, const QDict *qdict)
895{
896 int64_t cpu_index;
897
898 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
899 use it are converted to the QAPI */
900 cpu_index = qdict_get_int(qdict, "index");
901 if (monitor_set_cpu(cpu_index) < 0) {
902 monitor_printf(mon, "invalid CPU index\n");
903 }
904}
0cfd6a9a
LC
905
906void hmp_memsave(Monitor *mon, const QDict *qdict)
907{
908 uint32_t size = qdict_get_int(qdict, "size");
909 const char *filename = qdict_get_str(qdict, "filename");
910 uint64_t addr = qdict_get_int(qdict, "val");
e940f543 911 Error *err = NULL;
0cfd6a9a 912
e940f543
MA
913 qmp_memsave(addr, size, filename, true, monitor_get_cpu_index(), &err);
914 hmp_handle_error(mon, &err);
0cfd6a9a 915}
6d3962bf
LC
916
917void hmp_pmemsave(Monitor *mon, const QDict *qdict)
918{
919 uint32_t size = qdict_get_int(qdict, "size");
920 const char *filename = qdict_get_str(qdict, "filename");
921 uint64_t addr = qdict_get_int(qdict, "val");
e940f543 922 Error *err = NULL;
6d3962bf 923
e940f543
MA
924 qmp_pmemsave(addr, size, filename, &err);
925 hmp_handle_error(mon, &err);
1f590cf9
LL
926}
927
3949e594 928void hmp_ringbuf_write(Monitor *mon, const QDict *qdict)
1f590cf9 929{
1f590cf9
LL
930 const char *chardev = qdict_get_str(qdict, "device");
931 const char *data = qdict_get_str(qdict, "data");
e940f543 932 Error *err = NULL;
1f590cf9 933
e940f543 934 qmp_ringbuf_write(chardev, data, false, 0, &err);
1f590cf9 935
e940f543 936 hmp_handle_error(mon, &err);
6d3962bf 937}
e42e818b 938
3949e594 939void hmp_ringbuf_read(Monitor *mon, const QDict *qdict)
49b6d722
LL
940{
941 uint32_t size = qdict_get_int(qdict, "size");
942 const char *chardev = qdict_get_str(qdict, "device");
3ab651fc 943 char *data;
e940f543 944 Error *err = NULL;
543f3412 945 int i;
49b6d722 946
e940f543
MA
947 data = qmp_ringbuf_read(chardev, size, false, 0, &err);
948 if (err) {
193227f9 949 error_report_err(err);
49b6d722
LL
950 return;
951 }
952
543f3412
MA
953 for (i = 0; data[i]; i++) {
954 unsigned char ch = data[i];
955
956 if (ch == '\\') {
957 monitor_printf(mon, "\\\\");
958 } else if ((ch < 0x20 && ch != '\n' && ch != '\t') || ch == 0x7F) {
959 monitor_printf(mon, "\\u%04X", ch);
960 } else {
961 monitor_printf(mon, "%c", ch);
962 }
963
964 }
965 monitor_printf(mon, "\n");
3ab651fc 966 g_free(data);
49b6d722
LL
967}
968
e42e818b
LC
969static void hmp_cont_cb(void *opaque, int err)
970{
e42e818b 971 if (!err) {
8b7f6fbb 972 qmp_cont(NULL);
e42e818b
LC
973 }
974}
975
8b7f6fbb
LC
976static bool key_is_missing(const BlockInfo *bdev)
977{
978 return (bdev->inserted && bdev->inserted->encryption_key_missing);
979}
980
e42e818b
LC
981void hmp_cont(Monitor *mon, const QDict *qdict)
982{
8b7f6fbb 983 BlockInfoList *bdev_list, *bdev;
e940f543 984 Error *err = NULL;
e42e818b 985
8b7f6fbb
LC
986 bdev_list = qmp_query_block(NULL);
987 for (bdev = bdev_list; bdev; bdev = bdev->next) {
988 if (key_is_missing(bdev->value)) {
989 monitor_read_block_device_key(mon, bdev->value->device,
990 hmp_cont_cb, NULL);
991 goto out;
e42e818b 992 }
e42e818b 993 }
8b7f6fbb 994
e940f543
MA
995 qmp_cont(&err);
996 hmp_handle_error(mon, &err);
8b7f6fbb
LC
997
998out:
999 qapi_free_BlockInfoList(bdev_list);
e42e818b 1000}
ab49ab5c 1001
9b9df25a
GH
1002void hmp_system_wakeup(Monitor *mon, const QDict *qdict)
1003{
1004 qmp_system_wakeup(NULL);
1005}
1006
3e5a50d6 1007void hmp_nmi(Monitor *mon, const QDict *qdict)
ab49ab5c 1008{
e940f543 1009 Error *err = NULL;
ab49ab5c 1010
e940f543
MA
1011 qmp_inject_nmi(&err);
1012 hmp_handle_error(mon, &err);
ab49ab5c 1013}
4b37156c
LC
1014
1015void hmp_set_link(Monitor *mon, const QDict *qdict)
1016{
1017 const char *name = qdict_get_str(qdict, "name");
34acbc95 1018 bool up = qdict_get_bool(qdict, "up");
e940f543 1019 Error *err = NULL;
4b37156c 1020
e940f543
MA
1021 qmp_set_link(name, up, &err);
1022 hmp_handle_error(mon, &err);
4b37156c 1023}
a4dea8a9
LC
1024
1025void hmp_block_passwd(Monitor *mon, const QDict *qdict)
1026{
1027 const char *device = qdict_get_str(qdict, "device");
1028 const char *password = qdict_get_str(qdict, "password");
e940f543 1029 Error *err = NULL;
a4dea8a9 1030
e940f543
MA
1031 qmp_block_passwd(true, device, false, NULL, password, &err);
1032 hmp_handle_error(mon, &err);
a4dea8a9 1033}
d72f3264
LC
1034
1035void hmp_balloon(Monitor *mon, const QDict *qdict)
1036{
1037 int64_t value = qdict_get_int(qdict, "value");
e940f543 1038 Error *err = NULL;
d72f3264 1039
e940f543
MA
1040 qmp_balloon(value, &err);
1041 if (err) {
193227f9 1042 error_report_err(err);
d72f3264
LC
1043 }
1044}
5e7caacb
LC
1045
1046void hmp_block_resize(Monitor *mon, const QDict *qdict)
1047{
1048 const char *device = qdict_get_str(qdict, "device");
1049 int64_t size = qdict_get_int(qdict, "size");
e940f543 1050 Error *err = NULL;
5e7caacb 1051
e940f543
MA
1052 qmp_block_resize(true, device, false, NULL, size, &err);
1053 hmp_handle_error(mon, &err);
5e7caacb 1054}
6106e249 1055
d9b902db
PB
1056void hmp_drive_mirror(Monitor *mon, const QDict *qdict)
1057{
1058 const char *device = qdict_get_str(qdict, "device");
1059 const char *filename = qdict_get_str(qdict, "target");
1060 const char *format = qdict_get_try_str(qdict, "format");
34acbc95
EB
1061 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1062 bool full = qdict_get_try_bool(qdict, "full", false);
d9b902db 1063 enum NewImageMode mode;
e940f543 1064 Error *err = NULL;
d9b902db
PB
1065
1066 if (!filename) {
c6bd8c70 1067 error_setg(&err, QERR_MISSING_PARAMETER, "target");
e940f543 1068 hmp_handle_error(mon, &err);
d9b902db
PB
1069 return;
1070 }
1071
1072 if (reuse) {
1073 mode = NEW_IMAGE_MODE_EXISTING;
1074 } else {
1075 mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1076 }
1077
1078 qmp_drive_mirror(device, filename, !!format, format,
09158f00 1079 false, NULL, false, NULL,
d9b902db 1080 full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
08e4ed6c 1081 true, mode, false, 0, false, 0, false, 0,
0fc9f8ea 1082 false, 0, false, 0, false, true, &err);
e940f543 1083 hmp_handle_error(mon, &err);
d9b902db
PB
1084}
1085
de90930a
SH
1086void hmp_drive_backup(Monitor *mon, const QDict *qdict)
1087{
1088 const char *device = qdict_get_str(qdict, "device");
1089 const char *filename = qdict_get_str(qdict, "target");
1090 const char *format = qdict_get_try_str(qdict, "format");
34acbc95
EB
1091 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
1092 bool full = qdict_get_try_bool(qdict, "full", false);
de90930a 1093 enum NewImageMode mode;
e940f543 1094 Error *err = NULL;
de90930a
SH
1095
1096 if (!filename) {
c6bd8c70 1097 error_setg(&err, QERR_MISSING_PARAMETER, "target");
e940f543 1098 hmp_handle_error(mon, &err);
de90930a
SH
1099 return;
1100 }
1101
1102 if (reuse) {
1103 mode = NEW_IMAGE_MODE_EXISTING;
1104 } else {
1105 mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1106 }
1107
1108 qmp_drive_backup(device, filename, !!format, format,
1109 full ? MIRROR_SYNC_MODE_FULL : MIRROR_SYNC_MODE_TOP,
d58d8453
JS
1110 true, mode, false, 0, false, NULL,
1111 false, 0, false, 0, &err);
e940f543 1112 hmp_handle_error(mon, &err);
de90930a
SH
1113}
1114
6106e249
LC
1115void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict)
1116{
1117 const char *device = qdict_get_str(qdict, "device");
1118 const char *filename = qdict_get_try_str(qdict, "snapshot-file");
1119 const char *format = qdict_get_try_str(qdict, "format");
34acbc95 1120 bool reuse = qdict_get_try_bool(qdict, "reuse", false);
6cc2a415 1121 enum NewImageMode mode;
e940f543 1122 Error *err = NULL;
6106e249
LC
1123
1124 if (!filename) {
1125 /* In the future, if 'snapshot-file' is not specified, the snapshot
1126 will be taken internally. Today it's actually required. */
c6bd8c70 1127 error_setg(&err, QERR_MISSING_PARAMETER, "snapshot-file");
e940f543 1128 hmp_handle_error(mon, &err);
6106e249
LC
1129 return;
1130 }
1131
6cc2a415 1132 mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
0901f67e
BC
1133 qmp_blockdev_snapshot_sync(true, device, false, NULL,
1134 filename, false, NULL,
1135 !!format, format,
e940f543
MA
1136 true, mode, &err);
1137 hmp_handle_error(mon, &err);
6106e249 1138}
6cdedb07 1139
775ca88e
WX
1140void hmp_snapshot_blkdev_internal(Monitor *mon, const QDict *qdict)
1141{
1142 const char *device = qdict_get_str(qdict, "device");
1143 const char *name = qdict_get_str(qdict, "name");
e940f543 1144 Error *err = NULL;
775ca88e 1145
e940f543
MA
1146 qmp_blockdev_snapshot_internal_sync(device, name, &err);
1147 hmp_handle_error(mon, &err);
775ca88e
WX
1148}
1149
7a4ed2ee
WX
1150void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict)
1151{
1152 const char *device = qdict_get_str(qdict, "device");
1153 const char *name = qdict_get_str(qdict, "name");
1154 const char *id = qdict_get_try_str(qdict, "id");
e940f543 1155 Error *err = NULL;
7a4ed2ee
WX
1156
1157 qmp_blockdev_snapshot_delete_internal_sync(device, !!id, id,
e940f543
MA
1158 true, name, &err);
1159 hmp_handle_error(mon, &err);
7a4ed2ee
WX
1160}
1161
6cdedb07
LC
1162void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
1163{
1164 qmp_migrate_cancel(NULL);
1165}
4f0a993b 1166
bf1ae1f4
DDAG
1167void hmp_migrate_incoming(Monitor *mon, const QDict *qdict)
1168{
1169 Error *err = NULL;
1170 const char *uri = qdict_get_str(qdict, "uri");
1171
1172 qmp_migrate_incoming(uri, &err);
1173
1fa57f55 1174 hmp_handle_error(mon, &err);
bf1ae1f4
DDAG
1175}
1176
4f0a993b
LC
1177void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
1178{
1179 double value = qdict_get_double(qdict, "value");
1180 qmp_migrate_set_downtime(value, NULL);
1181}
3dc85383 1182
9e1ba4cc
OW
1183void hmp_migrate_set_cache_size(Monitor *mon, const QDict *qdict)
1184{
1185 int64_t value = qdict_get_int(qdict, "value");
1186 Error *err = NULL;
1187
1188 qmp_migrate_set_cache_size(value, &err);
1189 if (err) {
193227f9 1190 error_report_err(err);
9e1ba4cc
OW
1191 return;
1192 }
1193}
1194
3dc85383
LC
1195void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
1196{
1197 int64_t value = qdict_get_int(qdict, "value");
1198 qmp_migrate_set_speed(value, NULL);
1199}
fbf796fd 1200
00458433
OW
1201void hmp_migrate_set_capability(Monitor *mon, const QDict *qdict)
1202{
1203 const char *cap = qdict_get_str(qdict, "capability");
1204 bool state = qdict_get_bool(qdict, "state");
1205 Error *err = NULL;
1206 MigrationCapabilityStatusList *caps = g_malloc0(sizeof(*caps));
1207 int i;
1208
7fb1cf16 1209 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
00458433
OW
1210 if (strcmp(cap, MigrationCapability_lookup[i]) == 0) {
1211 caps->value = g_malloc0(sizeof(*caps->value));
1212 caps->value->capability = i;
1213 caps->value->state = state;
1214 caps->next = NULL;
1215 qmp_migrate_set_capabilities(caps, &err);
1216 break;
1217 }
1218 }
1219
7fb1cf16 1220 if (i == MIGRATION_CAPABILITY__MAX) {
c6bd8c70 1221 error_setg(&err, QERR_INVALID_PARAMETER, cap);
00458433
OW
1222 }
1223
1224 qapi_free_MigrationCapabilityStatusList(caps);
1225
1226 if (err) {
193227f9 1227 error_report_err(err);
00458433
OW
1228 }
1229}
1230
50e9a629
LL
1231void hmp_migrate_set_parameter(Monitor *mon, const QDict *qdict)
1232{
1233 const char *param = qdict_get_str(qdict, "parameter");
1234 int value = qdict_get_int(qdict, "value");
1235 Error *err = NULL;
1236 bool has_compress_level = false;
1237 bool has_compress_threads = false;
1238 bool has_decompress_threads = false;
1626fee3
JH
1239 bool has_x_cpu_throttle_initial = false;
1240 bool has_x_cpu_throttle_increment = false;
50e9a629
LL
1241 int i;
1242
7fb1cf16 1243 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
50e9a629
LL
1244 if (strcmp(param, MigrationParameter_lookup[i]) == 0) {
1245 switch (i) {
1246 case MIGRATION_PARAMETER_COMPRESS_LEVEL:
1247 has_compress_level = true;
1248 break;
1249 case MIGRATION_PARAMETER_COMPRESS_THREADS:
1250 has_compress_threads = true;
1251 break;
1252 case MIGRATION_PARAMETER_DECOMPRESS_THREADS:
1253 has_decompress_threads = true;
1254 break;
1626fee3
JH
1255 case MIGRATION_PARAMETER_X_CPU_THROTTLE_INITIAL:
1256 has_x_cpu_throttle_initial = true;
1257 break;
1258 case MIGRATION_PARAMETER_X_CPU_THROTTLE_INCREMENT:
1259 has_x_cpu_throttle_increment = true;
1260 break;
50e9a629
LL
1261 }
1262 qmp_migrate_set_parameters(has_compress_level, value,
1263 has_compress_threads, value,
1264 has_decompress_threads, value,
1626fee3
JH
1265 has_x_cpu_throttle_initial, value,
1266 has_x_cpu_throttle_increment, value,
50e9a629
LL
1267 &err);
1268 break;
1269 }
1270 }
1271
7fb1cf16 1272 if (i == MIGRATION_PARAMETER__MAX) {
c6bd8c70 1273 error_setg(&err, QERR_INVALID_PARAMETER, param);
50e9a629
LL
1274 }
1275
1276 if (err) {
193227f9 1277 error_report_err(err);
50e9a629
LL
1278 }
1279}
1280
b8a185bc
MA
1281void hmp_client_migrate_info(Monitor *mon, const QDict *qdict)
1282{
1283 Error *err = NULL;
1284 const char *protocol = qdict_get_str(qdict, "protocol");
1285 const char *hostname = qdict_get_str(qdict, "hostname");
1286 bool has_port = qdict_haskey(qdict, "port");
1287 int port = qdict_get_try_int(qdict, "port", -1);
1288 bool has_tls_port = qdict_haskey(qdict, "tls-port");
1289 int tls_port = qdict_get_try_int(qdict, "tls-port", -1);
1290 const char *cert_subject = qdict_get_try_str(qdict, "cert-subject");
1291
1292 qmp_client_migrate_info(protocol, hostname,
1293 has_port, port, has_tls_port, tls_port,
1294 !!cert_subject, cert_subject, &err);
1295 hmp_handle_error(mon, &err);
1296}
1297
4886a1bc
DDAG
1298void hmp_migrate_start_postcopy(Monitor *mon, const QDict *qdict)
1299{
1300 Error *err = NULL;
1301 qmp_migrate_start_postcopy(&err);
1302 hmp_handle_error(mon, &err);
1303}
1304
fbf796fd
LC
1305void hmp_set_password(Monitor *mon, const QDict *qdict)
1306{
1307 const char *protocol = qdict_get_str(qdict, "protocol");
1308 const char *password = qdict_get_str(qdict, "password");
1309 const char *connected = qdict_get_try_str(qdict, "connected");
1310 Error *err = NULL;
1311
1312 qmp_set_password(protocol, password, !!connected, connected, &err);
1313 hmp_handle_error(mon, &err);
1314}
9ad5372d
LC
1315
1316void hmp_expire_password(Monitor *mon, const QDict *qdict)
1317{
1318 const char *protocol = qdict_get_str(qdict, "protocol");
1319 const char *whenstr = qdict_get_str(qdict, "time");
1320 Error *err = NULL;
1321
1322 qmp_expire_password(protocol, whenstr, &err);
1323 hmp_handle_error(mon, &err);
1324}
c245b6a3
LC
1325
1326void hmp_eject(Monitor *mon, const QDict *qdict)
1327{
34acbc95 1328 bool force = qdict_get_try_bool(qdict, "force", false);
c245b6a3
LC
1329 const char *device = qdict_get_str(qdict, "device");
1330 Error *err = NULL;
1331
1332 qmp_eject(device, true, force, &err);
1333 hmp_handle_error(mon, &err);
1334}
333a96ec 1335
c60bf339
SH
1336static void hmp_change_read_arg(void *opaque, const char *password,
1337 void *readline_opaque)
333a96ec
LC
1338{
1339 qmp_change_vnc_password(password, NULL);
c60bf339 1340 monitor_read_command(opaque, 1);
333a96ec
LC
1341}
1342
333a96ec
LC
1343void hmp_change(Monitor *mon, const QDict *qdict)
1344{
1345 const char *device = qdict_get_str(qdict, "device");
1346 const char *target = qdict_get_str(qdict, "target");
1347 const char *arg = qdict_get_try_str(qdict, "arg");
baead0ab
HR
1348 const char *read_only = qdict_get_try_str(qdict, "read-only-mode");
1349 BlockdevChangeReadOnlyMode read_only_mode = 0;
333a96ec
LC
1350 Error *err = NULL;
1351
10686749 1352 if (strcmp(device, "vnc") == 0) {
baead0ab
HR
1353 if (read_only) {
1354 monitor_printf(mon,
1355 "Parameter 'read-only-mode' is invalid for VNC\n");
1356 return;
1357 }
10686749
HR
1358 if (strcmp(target, "passwd") == 0 ||
1359 strcmp(target, "password") == 0) {
1360 if (!arg) {
1361 monitor_read_password(mon, hmp_change_read_arg, NULL);
1362 return;
1363 }
1364 }
1365 qmp_change("vnc", target, !!arg, arg, &err);
1366 } else {
baead0ab
HR
1367 if (read_only) {
1368 read_only_mode =
1369 qapi_enum_parse(BlockdevChangeReadOnlyMode_lookup,
7fb1cf16 1370 read_only, BLOCKDEV_CHANGE_READ_ONLY_MODE__MAX,
baead0ab
HR
1371 BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN, &err);
1372 if (err) {
1373 hmp_handle_error(mon, &err);
1374 return;
1375 }
1376 }
1377
1378 qmp_blockdev_change_medium(device, target, !!arg, arg,
1379 !!read_only, read_only_mode, &err);
10686749
HR
1380 if (err &&
1381 error_get_class(err) == ERROR_CLASS_DEVICE_ENCRYPTED) {
1382 error_free(err);
1383 monitor_read_block_device_key(mon, device, NULL, NULL);
333a96ec
LC
1384 return;
1385 }
1386 }
1387
333a96ec
LC
1388 hmp_handle_error(mon, &err);
1389}
80047da5
LC
1390
1391void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
1392{
1393 Error *err = NULL;
1394
1395 qmp_block_set_io_throttle(qdict_get_str(qdict, "device"),
1396 qdict_get_int(qdict, "bps"),
1397 qdict_get_int(qdict, "bps_rd"),
1398 qdict_get_int(qdict, "bps_wr"),
1399 qdict_get_int(qdict, "iops"),
1400 qdict_get_int(qdict, "iops_rd"),
3e9fab69
BC
1401 qdict_get_int(qdict, "iops_wr"),
1402 false, /* no burst max via HMP */
1403 0,
1404 false,
1405 0,
1406 false,
1407 0,
1408 false,
1409 0,
1410 false,
1411 0,
1412 false,
2024c1df
BC
1413 0,
1414 false, /* No default I/O size */
76f4afb4
AG
1415 0,
1416 false,
1417 NULL, &err);
80047da5
LC
1418 hmp_handle_error(mon, &err);
1419}
12bd451f
SH
1420
1421void hmp_block_stream(Monitor *mon, const QDict *qdict)
1422{
1423 Error *error = NULL;
1424 const char *device = qdict_get_str(qdict, "device");
1425 const char *base = qdict_get_try_str(qdict, "base");
c83c66c3 1426 int64_t speed = qdict_get_try_int(qdict, "speed", 0);
12bd451f 1427
13d8cc51 1428 qmp_block_stream(device, base != NULL, base, false, NULL,
1d809098 1429 qdict_haskey(qdict, "speed"), speed,
46663e5e 1430 true, BLOCKDEV_ON_ERROR_REPORT, &error);
12bd451f
SH
1431
1432 hmp_handle_error(mon, &error);
1433}
2d47c6e9
SH
1434
1435void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
1436{
1437 Error *error = NULL;
1438 const char *device = qdict_get_str(qdict, "device");
c6db2395 1439 int64_t value = qdict_get_int(qdict, "speed");
2d47c6e9
SH
1440
1441 qmp_block_job_set_speed(device, value, &error);
1442
1443 hmp_handle_error(mon, &error);
1444}
370521a1
SH
1445
1446void hmp_block_job_cancel(Monitor *mon, const QDict *qdict)
1447{
1448 Error *error = NULL;
1449 const char *device = qdict_get_str(qdict, "device");
34acbc95 1450 bool force = qdict_get_try_bool(qdict, "force", false);
370521a1 1451
6e37fb81
PB
1452 qmp_block_job_cancel(device, true, force, &error);
1453
1454 hmp_handle_error(mon, &error);
1455}
1456
1457void hmp_block_job_pause(Monitor *mon, const QDict *qdict)
1458{
1459 Error *error = NULL;
1460 const char *device = qdict_get_str(qdict, "device");
1461
1462 qmp_block_job_pause(device, &error);
1463
1464 hmp_handle_error(mon, &error);
1465}
1466
1467void hmp_block_job_resume(Monitor *mon, const QDict *qdict)
1468{
1469 Error *error = NULL;
1470 const char *device = qdict_get_str(qdict, "device");
1471
1472 qmp_block_job_resume(device, &error);
370521a1
SH
1473
1474 hmp_handle_error(mon, &error);
1475}
e1c37d0e 1476
aeae883b
PB
1477void hmp_block_job_complete(Monitor *mon, const QDict *qdict)
1478{
1479 Error *error = NULL;
1480 const char *device = qdict_get_str(qdict, "device");
1481
1482 qmp_block_job_complete(device, &error);
1483
1484 hmp_handle_error(mon, &error);
1485}
1486
e49f35bd 1487typedef struct HMPMigrationStatus
e1c37d0e
LC
1488{
1489 QEMUTimer *timer;
1490 Monitor *mon;
1491 bool is_block_migration;
e49f35bd 1492} HMPMigrationStatus;
e1c37d0e
LC
1493
1494static void hmp_migrate_status_cb(void *opaque)
1495{
e49f35bd 1496 HMPMigrationStatus *status = opaque;
e1c37d0e
LC
1497 MigrationInfo *info;
1498
1499 info = qmp_query_migrate(NULL);
24b8c39b
HZ
1500 if (!info->has_status || info->status == MIGRATION_STATUS_ACTIVE ||
1501 info->status == MIGRATION_STATUS_SETUP) {
e1c37d0e
LC
1502 if (info->has_disk) {
1503 int progress;
1504
1505 if (info->disk->remaining) {
1506 progress = info->disk->transferred * 100 / info->disk->total;
1507 } else {
1508 progress = 100;
1509 }
1510
1511 monitor_printf(status->mon, "Completed %d %%\r", progress);
1512 monitor_flush(status->mon);
1513 }
1514
bc72ad67 1515 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + 1000);
e1c37d0e
LC
1516 } else {
1517 if (status->is_block_migration) {
1518 monitor_printf(status->mon, "\n");
1519 }
1520 monitor_resume(status->mon);
bc72ad67 1521 timer_del(status->timer);
e1c37d0e
LC
1522 g_free(status);
1523 }
1524
1525 qapi_free_MigrationInfo(info);
1526}
1527
1528void hmp_migrate(Monitor *mon, const QDict *qdict)
1529{
34acbc95
EB
1530 bool detach = qdict_get_try_bool(qdict, "detach", false);
1531 bool blk = qdict_get_try_bool(qdict, "blk", false);
1532 bool inc = qdict_get_try_bool(qdict, "inc", false);
e1c37d0e
LC
1533 const char *uri = qdict_get_str(qdict, "uri");
1534 Error *err = NULL;
1535
1536 qmp_migrate(uri, !!blk, blk, !!inc, inc, false, false, &err);
1537 if (err) {
193227f9 1538 error_report_err(err);
e1c37d0e
LC
1539 return;
1540 }
1541
1542 if (!detach) {
e49f35bd 1543 HMPMigrationStatus *status;
e1c37d0e
LC
1544
1545 if (monitor_suspend(mon) < 0) {
1546 monitor_printf(mon, "terminal does not allow synchronous "
1547 "migration, continuing detached\n");
1548 return;
1549 }
1550
1551 status = g_malloc0(sizeof(*status));
1552 status->mon = mon;
1553 status->is_block_migration = blk || inc;
bc72ad67 1554 status->timer = timer_new_ms(QEMU_CLOCK_REALTIME, hmp_migrate_status_cb,
e1c37d0e 1555 status);
bc72ad67 1556 timer_mod(status->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME));
e1c37d0e
LC
1557 }
1558}
a15fef21 1559
318660f8
MA
1560void hmp_device_add(Monitor *mon, const QDict *qdict)
1561{
485febc6
MA
1562 Error *err = NULL;
1563
1564 qmp_device_add((QDict *)qdict, NULL, &err);
1565 hmp_handle_error(mon, &err);
318660f8
MA
1566}
1567
a15fef21
LC
1568void hmp_device_del(Monitor *mon, const QDict *qdict)
1569{
1570 const char *id = qdict_get_str(qdict, "id");
1571 Error *err = NULL;
1572
1573 qmp_device_del(id, &err);
1574 hmp_handle_error(mon, &err);
1575}
783e9b48
WC
1576
1577void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict)
1578{
e940f543 1579 Error *err = NULL;
34acbc95
EB
1580 bool paging = qdict_get_try_bool(qdict, "paging", false);
1581 bool zlib = qdict_get_try_bool(qdict, "zlib", false);
1582 bool lzo = qdict_get_try_bool(qdict, "lzo", false);
1583 bool snappy = qdict_get_try_bool(qdict, "snappy", false);
75363769 1584 const char *file = qdict_get_str(qdict, "filename");
783e9b48
WC
1585 bool has_begin = qdict_haskey(qdict, "begin");
1586 bool has_length = qdict_haskey(qdict, "length");
1587 int64_t begin = 0;
1588 int64_t length = 0;
b53ccc30 1589 enum DumpGuestMemoryFormat dump_format = DUMP_GUEST_MEMORY_FORMAT_ELF;
75363769 1590 char *prot;
783e9b48 1591
1b7a0f75 1592 if (zlib + lzo + snappy > 1) {
e940f543
MA
1593 error_setg(&err, "only one of '-z|-l|-s' can be set");
1594 hmp_handle_error(mon, &err);
1b7a0f75
QN
1595 return;
1596 }
1597
1598 if (zlib) {
1599 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB;
1600 }
1601
1602 if (lzo) {
1603 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO;
1604 }
1605
1606 if (snappy) {
1607 dump_format = DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY;
1608 }
1609
783e9b48
WC
1610 if (has_begin) {
1611 begin = qdict_get_int(qdict, "begin");
1612 }
1613 if (has_length) {
1614 length = qdict_get_int(qdict, "length");
1615 }
1616
75363769
LC
1617 prot = g_strconcat("file:", file, NULL);
1618
1619 qmp_dump_guest_memory(paging, prot, has_begin, begin, has_length, length,
e940f543
MA
1620 true, dump_format, &err);
1621 hmp_handle_error(mon, &err);
75363769 1622 g_free(prot);
783e9b48 1623}
928059a3
LC
1624
1625void hmp_netdev_add(Monitor *mon, const QDict *qdict)
1626{
1627 Error *err = NULL;
1628 QemuOpts *opts;
1629
1630 opts = qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict, &err);
84d18f06 1631 if (err) {
928059a3
LC
1632 goto out;
1633 }
1634
1635 netdev_add(opts, &err);
84d18f06 1636 if (err) {
928059a3
LC
1637 qemu_opts_del(opts);
1638 }
1639
1640out:
1641 hmp_handle_error(mon, &err);
1642}
5f964155
LC
1643
1644void hmp_netdev_del(Monitor *mon, const QDict *qdict)
1645{
1646 const char *id = qdict_get_str(qdict, "id");
1647 Error *err = NULL;
1648
1649 qmp_netdev_del(id, &err);
1650 hmp_handle_error(mon, &err);
1651}
208c9d1b 1652
cff8b2c6
PB
1653void hmp_object_add(Monitor *mon, const QDict *qdict)
1654{
1655 Error *err = NULL;
f9f3a5ec 1656 Error *err_end = NULL;
cff8b2c6
PB
1657 QemuOpts *opts;
1658 char *type = NULL;
1659 char *id = NULL;
cff8b2c6
PB
1660 OptsVisitor *ov;
1661 QDict *pdict;
9b65859d 1662 Visitor *v;
cff8b2c6
PB
1663
1664 opts = qemu_opts_from_qdict(qemu_find_opts("object"), qdict, &err);
1665 if (err) {
1666 goto out;
1667 }
1668
1669 ov = opts_visitor_new(opts);
1670 pdict = qdict_clone_shallow(qdict);
9b65859d 1671 v = opts_get_visitor(ov);
cff8b2c6 1672
9b65859d 1673 visit_start_struct(v, NULL, NULL, NULL, 0, &err);
cff8b2c6
PB
1674 if (err) {
1675 goto out_clean;
1676 }
1677
1678 qdict_del(pdict, "qom-type");
51e72bc1 1679 visit_type_str(v, "qom-type", &type, &err);
cff8b2c6 1680 if (err) {
f9f3a5ec 1681 goto out_end;
cff8b2c6
PB
1682 }
1683
1684 qdict_del(pdict, "id");
51e72bc1 1685 visit_type_str(v, "id", &id, &err);
cff8b2c6 1686 if (err) {
f9f3a5ec 1687 goto out_end;
cff8b2c6
PB
1688 }
1689
9b65859d 1690 object_add(type, id, pdict, v, &err);
f9f3a5ec
MA
1691
1692out_end:
9b65859d 1693 visit_end_struct(v, &err_end);
f9f3a5ec 1694 if (!err && err_end) {
cff8b2c6
PB
1695 qmp_object_del(id, NULL);
1696 }
f9f3a5ec 1697 error_propagate(&err, err_end);
cff8b2c6
PB
1698out_clean:
1699 opts_visitor_cleanup(ov);
1700
1701 QDECREF(pdict);
1702 qemu_opts_del(opts);
1703 g_free(id);
1704 g_free(type);
cff8b2c6
PB
1705
1706out:
1707 hmp_handle_error(mon, &err);
1708}
1709
208c9d1b
CB
1710void hmp_getfd(Monitor *mon, const QDict *qdict)
1711{
1712 const char *fdname = qdict_get_str(qdict, "fdname");
e940f543 1713 Error *err = NULL;
208c9d1b 1714
e940f543
MA
1715 qmp_getfd(fdname, &err);
1716 hmp_handle_error(mon, &err);
208c9d1b
CB
1717}
1718
1719void hmp_closefd(Monitor *mon, const QDict *qdict)
1720{
1721 const char *fdname = qdict_get_str(qdict, "fdname");
e940f543 1722 Error *err = NULL;
208c9d1b 1723
e940f543
MA
1724 qmp_closefd(fdname, &err);
1725 hmp_handle_error(mon, &err);
208c9d1b 1726}
e4c8f004 1727
3e5a50d6 1728void hmp_sendkey(Monitor *mon, const QDict *qdict)
e4c8f004
AK
1729{
1730 const char *keys = qdict_get_str(qdict, "keys");
9f328977 1731 KeyValueList *keylist, *head = NULL, *tmp = NULL;
e4c8f004
AK
1732 int has_hold_time = qdict_haskey(qdict, "hold-time");
1733 int hold_time = qdict_get_try_int(qdict, "hold-time", -1);
1734 Error *err = NULL;
e4c8f004 1735 char *separator;
9f328977 1736 int keyname_len;
e4c8f004
AK
1737
1738 while (1) {
1739 separator = strchr(keys, '-');
1740 keyname_len = separator ? separator - keys : strlen(keys);
e4c8f004
AK
1741
1742 /* Be compatible with old interface, convert user inputted "<" */
64ffbe04
WB
1743 if (keys[0] == '<' && keyname_len == 1) {
1744 keys = "less";
e4c8f004
AK
1745 keyname_len = 4;
1746 }
e4c8f004 1747
e4c8f004 1748 keylist = g_malloc0(sizeof(*keylist));
9f328977 1749 keylist->value = g_malloc0(sizeof(*keylist->value));
e4c8f004
AK
1750
1751 if (!head) {
1752 head = keylist;
1753 }
1754 if (tmp) {
1755 tmp->next = keylist;
1756 }
1757 tmp = keylist;
1758
64ffbe04 1759 if (strstart(keys, "0x", NULL)) {
9f328977 1760 char *endp;
64ffbe04
WB
1761 int value = strtoul(keys, &endp, 0);
1762 assert(endp <= keys + keyname_len);
1763 if (endp != keys + keyname_len) {
9f328977
LC
1764 goto err_out;
1765 }
568c73a4
EB
1766 keylist->value->type = KEY_VALUE_KIND_NUMBER;
1767 keylist->value->u.number = value;
9f328977 1768 } else {
64ffbe04 1769 int idx = index_from_key(keys, keyname_len);
7fb1cf16 1770 if (idx == Q_KEY_CODE__MAX) {
9f328977
LC
1771 goto err_out;
1772 }
568c73a4
EB
1773 keylist->value->type = KEY_VALUE_KIND_QCODE;
1774 keylist->value->u.qcode = idx;
9f328977
LC
1775 }
1776
e4c8f004
AK
1777 if (!separator) {
1778 break;
1779 }
1780 keys = separator + 1;
1781 }
1782
9f328977 1783 qmp_send_key(head, has_hold_time, hold_time, &err);
e4c8f004 1784 hmp_handle_error(mon, &err);
9f328977
LC
1785
1786out:
1787 qapi_free_KeyValueList(head);
1788 return;
1789
1790err_out:
64ffbe04 1791 monitor_printf(mon, "invalid parameter: %.*s\n", keyname_len, keys);
9f328977 1792 goto out;
e4c8f004 1793}
ad39cf6d 1794
3e5a50d6 1795void hmp_screendump(Monitor *mon, const QDict *qdict)
ad39cf6d
LC
1796{
1797 const char *filename = qdict_get_str(qdict, "filename");
1798 Error *err = NULL;
1799
1800 qmp_screendump(filename, &err);
1801 hmp_handle_error(mon, &err);
1802}
4057725f
PB
1803
1804void hmp_nbd_server_start(Monitor *mon, const QDict *qdict)
1805{
1806 const char *uri = qdict_get_str(qdict, "uri");
34acbc95
EB
1807 bool writable = qdict_get_try_bool(qdict, "writable", false);
1808 bool all = qdict_get_try_bool(qdict, "all", false);
4057725f
PB
1809 Error *local_err = NULL;
1810 BlockInfoList *block_list, *info;
1811 SocketAddress *addr;
1812
1813 if (writable && !all) {
1814 error_setg(&local_err, "-w only valid together with -a");
1815 goto exit;
1816 }
1817
1818 /* First check if the address is valid and start the server. */
1819 addr = socket_parse(uri, &local_err);
1820 if (local_err != NULL) {
1821 goto exit;
1822 }
1823
1824 qmp_nbd_server_start(addr, &local_err);
1825 qapi_free_SocketAddress(addr);
1826 if (local_err != NULL) {
1827 goto exit;
1828 }
1829
1830 if (!all) {
1831 return;
1832 }
1833
1834 /* Then try adding all block devices. If one fails, close all and
1835 * exit.
1836 */
1837 block_list = qmp_query_block(NULL);
1838
1839 for (info = block_list; info; info = info->next) {
1840 if (!info->value->has_inserted) {
1841 continue;
1842 }
1843
1844 qmp_nbd_server_add(info->value->device, true, writable, &local_err);
1845
1846 if (local_err != NULL) {
1847 qmp_nbd_server_stop(NULL);
1848 break;
1849 }
1850 }
1851
1852 qapi_free_BlockInfoList(block_list);
1853
1854exit:
1855 hmp_handle_error(mon, &local_err);
1856}
1857
1858void hmp_nbd_server_add(Monitor *mon, const QDict *qdict)
1859{
1860 const char *device = qdict_get_str(qdict, "device");
34acbc95 1861 bool writable = qdict_get_try_bool(qdict, "writable", false);
4057725f
PB
1862 Error *local_err = NULL;
1863
1864 qmp_nbd_server_add(device, true, writable, &local_err);
1865
1866 if (local_err != NULL) {
1867 hmp_handle_error(mon, &local_err);
1868 }
1869}
1870
1871void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict)
1872{
e940f543 1873 Error *err = NULL;
4057725f 1874
e940f543
MA
1875 qmp_nbd_server_stop(&err);
1876 hmp_handle_error(mon, &err);
4057725f 1877}
f1088908 1878
abf23329
JH
1879void hmp_cpu_add(Monitor *mon, const QDict *qdict)
1880{
1881 int cpuid;
1882 Error *err = NULL;
1883
1884 cpuid = qdict_get_int(qdict, "id");
1885 qmp_cpu_add(cpuid, &err);
1886 hmp_handle_error(mon, &err);
1887}
1888
f1088908
GH
1889void hmp_chardev_add(Monitor *mon, const QDict *qdict)
1890{
1891 const char *args = qdict_get_str(qdict, "args");
1892 Error *err = NULL;
1893 QemuOpts *opts;
1894
70b94331 1895 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), args, true);
f1088908 1896 if (opts == NULL) {
312fd5f2 1897 error_setg(&err, "Parsing chardev args failed");
f1088908
GH
1898 } else {
1899 qemu_chr_new_from_opts(opts, NULL, &err);
1900 }
1901 hmp_handle_error(mon, &err);
1902}
1903
1904void hmp_chardev_remove(Monitor *mon, const QDict *qdict)
1905{
1906 Error *local_err = NULL;
1907
1908 qmp_chardev_remove(qdict_get_str(qdict, "id"), &local_err);
1909 hmp_handle_error(mon, &local_err);
1910}
587da2c3
KW
1911
1912void hmp_qemu_io(Monitor *mon, const QDict *qdict)
1913{
4c7b7e9b 1914 BlockBackend *blk;
587da2c3
KW
1915 const char* device = qdict_get_str(qdict, "device");
1916 const char* command = qdict_get_str(qdict, "command");
1917 Error *err = NULL;
1918
4c7b7e9b
HR
1919 blk = blk_by_name(device);
1920 if (blk) {
1921 qemuio_command(blk, command);
587da2c3 1922 } else {
75158ebb
MA
1923 error_set(&err, ERROR_CLASS_DEVICE_NOT_FOUND,
1924 "Device '%s' not found", device);
587da2c3
KW
1925 }
1926
1927 hmp_handle_error(mon, &err);
1928}
ab2d0531
PB
1929
1930void hmp_object_del(Monitor *mon, const QDict *qdict)
1931{
1932 const char *id = qdict_get_str(qdict, "id");
1933 Error *err = NULL;
1934
1935 qmp_object_del(id, &err);
1936 hmp_handle_error(mon, &err);
1937}
eb1539b2
HT
1938
1939void hmp_info_memdev(Monitor *mon, const QDict *qdict)
1940{
1941 Error *err = NULL;
1942 MemdevList *memdev_list = qmp_query_memdev(&err);
1943 MemdevList *m = memdev_list;
1944 StringOutputVisitor *ov;
976620ac 1945 char *str;
eb1539b2
HT
1946 int i = 0;
1947
1948
1949 while (m) {
1950 ov = string_output_visitor_new(false);
51e72bc1
EB
1951 visit_type_uint16List(string_output_get_visitor(ov), NULL,
1952 &m->value->host_nodes, NULL);
8f4e5ac3 1953 monitor_printf(mon, "memory backend: %d\n", i);
eb1539b2
HT
1954 monitor_printf(mon, " size: %" PRId64 "\n", m->value->size);
1955 monitor_printf(mon, " merge: %s\n",
1956 m->value->merge ? "true" : "false");
1957 monitor_printf(mon, " dump: %s\n",
1958 m->value->dump ? "true" : "false");
1959 monitor_printf(mon, " prealloc: %s\n",
1960 m->value->prealloc ? "true" : "false");
1961 monitor_printf(mon, " policy: %s\n",
1962 HostMemPolicy_lookup[m->value->policy]);
976620ac
CF
1963 str = string_output_get_string(ov);
1964 monitor_printf(mon, " host nodes: %s\n", str);
eb1539b2 1965
976620ac 1966 g_free(str);
eb1539b2
HT
1967 string_output_visitor_cleanup(ov);
1968 m = m->next;
1969 i++;
1970 }
1971
1972 monitor_printf(mon, "\n");
ecaf54a0
CF
1973
1974 qapi_free_MemdevList(memdev_list);
eb1539b2 1975}
a631892f
ZG
1976
1977void hmp_info_memory_devices(Monitor *mon, const QDict *qdict)
1978{
1979 Error *err = NULL;
1980 MemoryDeviceInfoList *info_list = qmp_query_memory_devices(&err);
1981 MemoryDeviceInfoList *info;
1982 MemoryDeviceInfo *value;
1983 PCDIMMDeviceInfo *di;
1984
1985 for (info = info_list; info; info = info->next) {
1986 value = info->value;
1987
1988 if (value) {
1fd5d4fe 1989 switch (value->type) {
a631892f 1990 case MEMORY_DEVICE_INFO_KIND_DIMM:
1fd5d4fe 1991 di = value->u.dimm;
a631892f
ZG
1992
1993 monitor_printf(mon, "Memory device [%s]: \"%s\"\n",
1fd5d4fe 1994 MemoryDeviceInfoKind_lookup[value->type],
a631892f
ZG
1995 di->id ? di->id : "");
1996 monitor_printf(mon, " addr: 0x%" PRIx64 "\n", di->addr);
1997 monitor_printf(mon, " slot: %" PRId64 "\n", di->slot);
1998 monitor_printf(mon, " node: %" PRId64 "\n", di->node);
1999 monitor_printf(mon, " size: %" PRIu64 "\n", di->size);
2000 monitor_printf(mon, " memdev: %s\n", di->memdev);
2001 monitor_printf(mon, " hotplugged: %s\n",
2002 di->hotplugged ? "true" : "false");
2003 monitor_printf(mon, " hotpluggable: %s\n",
2004 di->hotpluggable ? "true" : "false");
2005 break;
2006 default:
2007 break;
2008 }
2009 }
2010 }
2011
2012 qapi_free_MemoryDeviceInfoList(info_list);
2013}
89d7fa9e 2014
62313160
TW
2015void hmp_info_iothreads(Monitor *mon, const QDict *qdict)
2016{
2017 IOThreadInfoList *info_list = qmp_query_iothreads(NULL);
2018 IOThreadInfoList *info;
2019
2020 for (info = info_list; info; info = info->next) {
2021 monitor_printf(mon, "%s: thread_id=%" PRId64 "\n",
2022 info->value->id, info->value->thread_id);
2023 }
2024
2025 qapi_free_IOThreadInfoList(info_list);
2026}
2027
89d7fa9e
AF
2028void hmp_qom_list(Monitor *mon, const QDict *qdict)
2029{
2030 const char *path = qdict_get_try_str(qdict, "path");
2031 ObjectPropertyInfoList *list;
2032 Error *err = NULL;
2033
2034 if (path == NULL) {
2035 monitor_printf(mon, "/\n");
2036 return;
2037 }
2038
2039 list = qmp_qom_list(path, &err);
2040 if (err == NULL) {
2041 ObjectPropertyInfoList *start = list;
2042 while (list != NULL) {
2043 ObjectPropertyInfo *value = list->value;
2044
2045 monitor_printf(mon, "%s (%s)\n",
2046 value->name, value->type);
2047 list = list->next;
2048 }
2049 qapi_free_ObjectPropertyInfoList(start);
2050 }
2051 hmp_handle_error(mon, &err);
2052}
c0e6ee9e
AF
2053
2054void hmp_qom_set(Monitor *mon, const QDict *qdict)
2055{
2056 const char *path = qdict_get_str(qdict, "path");
2057 const char *property = qdict_get_str(qdict, "property");
2058 const char *value = qdict_get_str(qdict, "value");
2059 Error *err = NULL;
2060 bool ambiguous = false;
2061 Object *obj;
2062
2063 obj = object_resolve_path(path, &ambiguous);
2064 if (obj == NULL) {
75158ebb
MA
2065 error_set(&err, ERROR_CLASS_DEVICE_NOT_FOUND,
2066 "Device '%s' not found", path);
c0e6ee9e
AF
2067 } else {
2068 if (ambiguous) {
2069 monitor_printf(mon, "Warning: Path '%s' is ambiguous\n", path);
2070 }
2071 object_property_parse(obj, value, property, &err);
2072 }
2073 hmp_handle_error(mon, &err);
2074}
fafa4d50
SF
2075
2076void hmp_rocker(Monitor *mon, const QDict *qdict)
2077{
2078 const char *name = qdict_get_str(qdict, "name");
2079 RockerSwitch *rocker;
533fdaed 2080 Error *err = NULL;
fafa4d50 2081
533fdaed
MA
2082 rocker = qmp_query_rocker(name, &err);
2083 if (err != NULL) {
2084 hmp_handle_error(mon, &err);
fafa4d50
SF
2085 return;
2086 }
2087
2088 monitor_printf(mon, "name: %s\n", rocker->name);
2089 monitor_printf(mon, "id: 0x%" PRIx64 "\n", rocker->id);
2090 monitor_printf(mon, "ports: %d\n", rocker->ports);
2091
2092 qapi_free_RockerSwitch(rocker);
2093}
2094
2095void hmp_rocker_ports(Monitor *mon, const QDict *qdict)
2096{
2097 RockerPortList *list, *port;
2098 const char *name = qdict_get_str(qdict, "name");
533fdaed 2099 Error *err = NULL;
fafa4d50 2100
533fdaed
MA
2101 list = qmp_query_rocker_ports(name, &err);
2102 if (err != NULL) {
2103 hmp_handle_error(mon, &err);
fafa4d50
SF
2104 return;
2105 }
2106
2107 monitor_printf(mon, " ena/ speed/ auto\n");
2108 monitor_printf(mon, " port link duplex neg?\n");
2109
2110 for (port = list; port; port = port->next) {
2111 monitor_printf(mon, "%10s %-4s %-3s %2s %-3s\n",
2112 port->value->name,
2113 port->value->enabled ? port->value->link_up ?
2114 "up" : "down" : "!ena",
2115 port->value->speed == 10000 ? "10G" : "??",
2116 port->value->duplex ? "FD" : "HD",
2117 port->value->autoneg ? "Yes" : "No");
2118 }
2119
2120 qapi_free_RockerPortList(list);
2121}
2122
2123void hmp_rocker_of_dpa_flows(Monitor *mon, const QDict *qdict)
2124{
2125 RockerOfDpaFlowList *list, *info;
2126 const char *name = qdict_get_str(qdict, "name");
2127 uint32_t tbl_id = qdict_get_try_int(qdict, "tbl_id", -1);
533fdaed 2128 Error *err = NULL;
fafa4d50 2129
533fdaed
MA
2130 list = qmp_query_rocker_of_dpa_flows(name, tbl_id != -1, tbl_id, &err);
2131 if (err != NULL) {
2132 hmp_handle_error(mon, &err);
fafa4d50
SF
2133 return;
2134 }
2135
2136 monitor_printf(mon, "prio tbl hits key(mask) --> actions\n");
2137
2138 for (info = list; info; info = info->next) {
2139 RockerOfDpaFlow *flow = info->value;
2140 RockerOfDpaFlowKey *key = flow->key;
2141 RockerOfDpaFlowMask *mask = flow->mask;
2142 RockerOfDpaFlowAction *action = flow->action;
2143
2144 if (flow->hits) {
2145 monitor_printf(mon, "%-4d %-3d %-4" PRIu64,
2146 key->priority, key->tbl_id, flow->hits);
2147 } else {
2148 monitor_printf(mon, "%-4d %-3d ",
2149 key->priority, key->tbl_id);
2150 }
2151
2152 if (key->has_in_pport) {
2153 monitor_printf(mon, " pport %d", key->in_pport);
2154 if (mask->has_in_pport) {
2155 monitor_printf(mon, "(0x%x)", mask->in_pport);
2156 }
2157 }
2158
2159 if (key->has_vlan_id) {
2160 monitor_printf(mon, " vlan %d",
2161 key->vlan_id & VLAN_VID_MASK);
2162 if (mask->has_vlan_id) {
2163 monitor_printf(mon, "(0x%x)", mask->vlan_id);
2164 }
2165 }
2166
2167 if (key->has_tunnel_id) {
2168 monitor_printf(mon, " tunnel %d", key->tunnel_id);
2169 if (mask->has_tunnel_id) {
2170 monitor_printf(mon, "(0x%x)", mask->tunnel_id);
2171 }
2172 }
2173
2174 if (key->has_eth_type) {
2175 switch (key->eth_type) {
2176 case 0x0806:
2177 monitor_printf(mon, " ARP");
2178 break;
2179 case 0x0800:
2180 monitor_printf(mon, " IP");
2181 break;
2182 case 0x86dd:
2183 monitor_printf(mon, " IPv6");
2184 break;
2185 case 0x8809:
2186 monitor_printf(mon, " LACP");
2187 break;
2188 case 0x88cc:
2189 monitor_printf(mon, " LLDP");
2190 break;
2191 default:
2192 monitor_printf(mon, " eth type 0x%04x", key->eth_type);
2193 break;
2194 }
2195 }
2196
2197 if (key->has_eth_src) {
2198 if ((strcmp(key->eth_src, "01:00:00:00:00:00") == 0) &&
2199 (mask->has_eth_src) &&
2200 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2201 monitor_printf(mon, " src <any mcast/bcast>");
2202 } else if ((strcmp(key->eth_src, "00:00:00:00:00:00") == 0) &&
2203 (mask->has_eth_src) &&
2204 (strcmp(mask->eth_src, "01:00:00:00:00:00") == 0)) {
2205 monitor_printf(mon, " src <any ucast>");
2206 } else {
2207 monitor_printf(mon, " src %s", key->eth_src);
2208 if (mask->has_eth_src) {
2209 monitor_printf(mon, "(%s)", mask->eth_src);
2210 }
2211 }
2212 }
2213
2214 if (key->has_eth_dst) {
2215 if ((strcmp(key->eth_dst, "01:00:00:00:00:00") == 0) &&
2216 (mask->has_eth_dst) &&
2217 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2218 monitor_printf(mon, " dst <any mcast/bcast>");
2219 } else if ((strcmp(key->eth_dst, "00:00:00:00:00:00") == 0) &&
2220 (mask->has_eth_dst) &&
2221 (strcmp(mask->eth_dst, "01:00:00:00:00:00") == 0)) {
2222 monitor_printf(mon, " dst <any ucast>");
2223 } else {
2224 monitor_printf(mon, " dst %s", key->eth_dst);
2225 if (mask->has_eth_dst) {
2226 monitor_printf(mon, "(%s)", mask->eth_dst);
2227 }
2228 }
2229 }
2230
2231 if (key->has_ip_proto) {
2232 monitor_printf(mon, " proto %d", key->ip_proto);
2233 if (mask->has_ip_proto) {
2234 monitor_printf(mon, "(0x%x)", mask->ip_proto);
2235 }
2236 }
2237
2238 if (key->has_ip_tos) {
2239 monitor_printf(mon, " TOS %d", key->ip_tos);
2240 if (mask->has_ip_tos) {
2241 monitor_printf(mon, "(0x%x)", mask->ip_tos);
2242 }
2243 }
2244
2245 if (key->has_ip_dst) {
2246 monitor_printf(mon, " dst %s", key->ip_dst);
2247 }
2248
2249 if (action->has_goto_tbl || action->has_group_id ||
2250 action->has_new_vlan_id) {
2251 monitor_printf(mon, " -->");
2252 }
2253
2254 if (action->has_new_vlan_id) {
2255 monitor_printf(mon, " apply new vlan %d",
2256 ntohs(action->new_vlan_id));
2257 }
2258
2259 if (action->has_group_id) {
2260 monitor_printf(mon, " write group 0x%08x", action->group_id);
2261 }
2262
2263 if (action->has_goto_tbl) {
2264 monitor_printf(mon, " goto tbl %d", action->goto_tbl);
2265 }
2266
2267 monitor_printf(mon, "\n");
2268 }
2269
2270 qapi_free_RockerOfDpaFlowList(list);
2271}
2272
2273void hmp_rocker_of_dpa_groups(Monitor *mon, const QDict *qdict)
2274{
2275 RockerOfDpaGroupList *list, *g;
2276 const char *name = qdict_get_str(qdict, "name");
2277 uint8_t type = qdict_get_try_int(qdict, "type", 9);
533fdaed 2278 Error *err = NULL;
fafa4d50
SF
2279 bool set = false;
2280
533fdaed
MA
2281 list = qmp_query_rocker_of_dpa_groups(name, type != 9, type, &err);
2282 if (err != NULL) {
2283 hmp_handle_error(mon, &err);
fafa4d50
SF
2284 return;
2285 }
2286
2287 monitor_printf(mon, "id (decode) --> buckets\n");
2288
2289 for (g = list; g; g = g->next) {
2290 RockerOfDpaGroup *group = g->value;
2291
2292 monitor_printf(mon, "0x%08x", group->id);
2293
2294 monitor_printf(mon, " (type %s", group->type == 0 ? "L2 interface" :
2295 group->type == 1 ? "L2 rewrite" :
2296 group->type == 2 ? "L3 unicast" :
2297 group->type == 3 ? "L2 multicast" :
2298 group->type == 4 ? "L2 flood" :
2299 group->type == 5 ? "L3 interface" :
2300 group->type == 6 ? "L3 multicast" :
2301 group->type == 7 ? "L3 ECMP" :
2302 group->type == 8 ? "L2 overlay" :
2303 "unknown");
2304
2305 if (group->has_vlan_id) {
2306 monitor_printf(mon, " vlan %d", group->vlan_id);
2307 }
2308
2309 if (group->has_pport) {
2310 monitor_printf(mon, " pport %d", group->pport);
2311 }
2312
2313 if (group->has_index) {
2314 monitor_printf(mon, " index %d", group->index);
2315 }
2316
2317 monitor_printf(mon, ") -->");
2318
2319 if (group->has_set_vlan_id && group->set_vlan_id) {
2320 set = true;
2321 monitor_printf(mon, " set vlan %d",
2322 group->set_vlan_id & VLAN_VID_MASK);
2323 }
2324
2325 if (group->has_set_eth_src) {
2326 if (!set) {
2327 set = true;
2328 monitor_printf(mon, " set");
2329 }
2330 monitor_printf(mon, " src %s", group->set_eth_src);
2331 }
2332
2333 if (group->has_set_eth_dst) {
2334 if (!set) {
2335 set = true;
2336 monitor_printf(mon, " set");
2337 }
2338 monitor_printf(mon, " dst %s", group->set_eth_dst);
2339 }
2340
2341 set = false;
2342
2343 if (group->has_ttl_check && group->ttl_check) {
2344 monitor_printf(mon, " check TTL");
2345 }
2346
2347 if (group->has_group_id && group->group_id) {
2348 monitor_printf(mon, " group id 0x%08x", group->group_id);
2349 }
2350
2351 if (group->has_pop_vlan && group->pop_vlan) {
2352 monitor_printf(mon, " pop vlan");
2353 }
2354
2355 if (group->has_out_pport) {
2356 monitor_printf(mon, " out pport %d", group->out_pport);
2357 }
2358
2359 if (group->has_group_ids) {
2360 struct uint32List *id;
2361
2362 monitor_printf(mon, " groups [");
2363 for (id = group->group_ids; id; id = id->next) {
2364 monitor_printf(mon, "0x%08x", id->value);
2365 if (id->next) {
2366 monitor_printf(mon, ",");
2367 }
2368 }
2369 monitor_printf(mon, "]");
2370 }
2371
2372 monitor_printf(mon, "\n");
2373 }
2374
2375 qapi_free_RockerOfDpaGroupList(list);
2376}