]> git.proxmox.com Git - qemu.git/blame - hmp.c
compiler: add macro for GCC weak symbols
[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
16#include "hmp.h"
928059a3
LC
17#include "net.h"
18#include "qemu-option.h"
e1c37d0e 19#include "qemu-timer.h"
48a32bed 20#include "qmp-commands.h"
37003adf 21#include "monitor.h"
48a32bed 22
0cfd6a9a
LC
23static void hmp_handle_error(Monitor *mon, Error **errp)
24{
25 if (error_is_set(errp)) {
26 monitor_printf(mon, "%s\n", error_get_pretty(*errp));
27 error_free(*errp);
28 }
29}
30
48a32bed
AL
31void hmp_info_name(Monitor *mon)
32{
33 NameInfo *info;
34
35 info = qmp_query_name(NULL);
36 if (info->has_name) {
37 monitor_printf(mon, "%s\n", info->name);
38 }
39 qapi_free_NameInfo(info);
40}
b9c15f16
LC
41
42void hmp_info_version(Monitor *mon)
43{
44 VersionInfo *info;
45
46 info = qmp_query_version(NULL);
47
48 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
49 info->qemu.major, info->qemu.minor, info->qemu.micro,
50 info->package);
51
52 qapi_free_VersionInfo(info);
53}
292a2602
LC
54
55void hmp_info_kvm(Monitor *mon)
56{
57 KvmInfo *info;
58
59 info = qmp_query_kvm(NULL);
60 monitor_printf(mon, "kvm support: ");
61 if (info->present) {
62 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
63 } else {
64 monitor_printf(mon, "not compiled\n");
65 }
66
67 qapi_free_KvmInfo(info);
68}
69
1fa9a5e4
LC
70void hmp_info_status(Monitor *mon)
71{
72 StatusInfo *info;
73
74 info = qmp_query_status(NULL);
75
76 monitor_printf(mon, "VM status: %s%s",
77 info->running ? "running" : "paused",
78 info->singlestep ? " (single step mode)" : "");
79
80 if (!info->running && info->status != RUN_STATE_PAUSED) {
81 monitor_printf(mon, " (%s)", RunState_lookup[info->status]);
82 }
83
84 monitor_printf(mon, "\n");
85
86 qapi_free_StatusInfo(info);
87}
88
efab767e
LC
89void hmp_info_uuid(Monitor *mon)
90{
91 UuidInfo *info;
92
93 info = qmp_query_uuid(NULL);
94 monitor_printf(mon, "%s\n", info->UUID);
95 qapi_free_UuidInfo(info);
96}
c5a415a0
LC
97
98void hmp_info_chardev(Monitor *mon)
99{
100 ChardevInfoList *char_info, *info;
101
102 char_info = qmp_query_chardev(NULL);
103 for (info = char_info; info; info = info->next) {
104 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
105 info->value->filename);
106 }
107
108 qapi_free_ChardevInfoList(char_info);
109}
7a7f325e 110
e235cec3
LC
111void hmp_info_mice(Monitor *mon)
112{
113 MouseInfoList *mice_list, *mouse;
114
115 mice_list = qmp_query_mice(NULL);
116 if (!mice_list) {
117 monitor_printf(mon, "No mouse devices connected\n");
118 return;
119 }
120
121 for (mouse = mice_list; mouse; mouse = mouse->next) {
122 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
123 mouse->value->current ? '*' : ' ',
124 mouse->value->index, mouse->value->name,
125 mouse->value->absolute ? " (absolute)" : "");
126 }
127
128 qapi_free_MouseInfoList(mice_list);
129}
130
791e7c82
LC
131void hmp_info_migrate(Monitor *mon)
132{
133 MigrationInfo *info;
134
135 info = qmp_query_migrate(NULL);
136
137 if (info->has_status) {
138 monitor_printf(mon, "Migration status: %s\n", info->status);
139 }
140
141 if (info->has_ram) {
142 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
143 info->ram->transferred >> 10);
144 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
145 info->ram->remaining >> 10);
146 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
147 info->ram->total >> 10);
d5f8a570
JQ
148 monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
149 info->ram->total_time);
791e7c82
LC
150 }
151
152 if (info->has_disk) {
153 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
154 info->disk->transferred >> 10);
155 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
156 info->disk->remaining >> 10);
157 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
158 info->disk->total >> 10);
159 }
160
161 qapi_free_MigrationInfo(info);
162}
163
de0b36b6
LC
164void hmp_info_cpus(Monitor *mon)
165{
166 CpuInfoList *cpu_list, *cpu;
167
168 cpu_list = qmp_query_cpus(NULL);
169
170 for (cpu = cpu_list; cpu; cpu = cpu->next) {
171 int active = ' ';
172
173 if (cpu->value->CPU == monitor_get_cpu_index()) {
174 active = '*';
175 }
176
177 monitor_printf(mon, "%c CPU #%" PRId64 ": ", active, cpu->value->CPU);
178
179 if (cpu->value->has_pc) {
180 monitor_printf(mon, "pc=0x%016" PRIx64, cpu->value->pc);
181 }
182 if (cpu->value->has_nip) {
183 monitor_printf(mon, "nip=0x%016" PRIx64, cpu->value->nip);
184 }
185 if (cpu->value->has_npc) {
186 monitor_printf(mon, "pc=0x%016" PRIx64, cpu->value->pc);
187 monitor_printf(mon, "npc=0x%016" PRIx64, cpu->value->npc);
188 }
189 if (cpu->value->has_PC) {
190 monitor_printf(mon, "PC=0x%016" PRIx64, cpu->value->PC);
191 }
192
193 if (cpu->value->halted) {
194 monitor_printf(mon, " (halted)");
195 }
196
197 monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
198 }
199
200 qapi_free_CpuInfoList(cpu_list);
201}
202
b2023818
LC
203void hmp_info_block(Monitor *mon)
204{
205 BlockInfoList *block_list, *info;
206
207 block_list = qmp_query_block(NULL);
208
209 for (info = block_list; info; info = info->next) {
210 monitor_printf(mon, "%s: removable=%d",
211 info->value->device, info->value->removable);
212
213 if (info->value->removable) {
214 monitor_printf(mon, " locked=%d", info->value->locked);
215 monitor_printf(mon, " tray-open=%d", info->value->tray_open);
216 }
217
218 if (info->value->has_io_status) {
219 monitor_printf(mon, " io-status=%s",
220 BlockDeviceIoStatus_lookup[info->value->io_status]);
221 }
222
223 if (info->value->has_inserted) {
224 monitor_printf(mon, " file=");
225 monitor_print_filename(mon, info->value->inserted->file);
226
227 if (info->value->inserted->has_backing_file) {
228 monitor_printf(mon, " backing_file=");
229 monitor_print_filename(mon, info->value->inserted->backing_file);
75115d95
BC
230 monitor_printf(mon, " backing_file_depth=%" PRId64,
231 info->value->inserted->backing_file_depth);
b2023818
LC
232 }
233 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
234 info->value->inserted->ro,
235 info->value->inserted->drv,
236 info->value->inserted->encrypted);
727f005e
ZYW
237
238 monitor_printf(mon, " bps=%" PRId64 " bps_rd=%" PRId64
239 " bps_wr=%" PRId64 " iops=%" PRId64
240 " iops_rd=%" PRId64 " iops_wr=%" PRId64,
241 info->value->inserted->bps,
242 info->value->inserted->bps_rd,
243 info->value->inserted->bps_wr,
244 info->value->inserted->iops,
245 info->value->inserted->iops_rd,
246 info->value->inserted->iops_wr);
b2023818
LC
247 } else {
248 monitor_printf(mon, " [not inserted]");
249 }
250
251 monitor_printf(mon, "\n");
252 }
253
254 qapi_free_BlockInfoList(block_list);
255}
256
f11f57e4
LC
257void hmp_info_blockstats(Monitor *mon)
258{
259 BlockStatsList *stats_list, *stats;
260
261 stats_list = qmp_query_blockstats(NULL);
262
263 for (stats = stats_list; stats; stats = stats->next) {
264 if (!stats->value->has_device) {
265 continue;
266 }
267
268 monitor_printf(mon, "%s:", stats->value->device);
269 monitor_printf(mon, " rd_bytes=%" PRId64
270 " wr_bytes=%" PRId64
271 " rd_operations=%" PRId64
272 " wr_operations=%" PRId64
273 " flush_operations=%" PRId64
274 " wr_total_time_ns=%" PRId64
275 " rd_total_time_ns=%" PRId64
276 " flush_total_time_ns=%" PRId64
277 "\n",
278 stats->value->stats->rd_bytes,
279 stats->value->stats->wr_bytes,
280 stats->value->stats->rd_operations,
281 stats->value->stats->wr_operations,
282 stats->value->stats->flush_operations,
283 stats->value->stats->wr_total_time_ns,
284 stats->value->stats->rd_total_time_ns,
285 stats->value->stats->flush_total_time_ns);
286 }
287
288 qapi_free_BlockStatsList(stats_list);
289}
290
2b54aa87
LC
291void hmp_info_vnc(Monitor *mon)
292{
293 VncInfo *info;
294 Error *err = NULL;
295 VncClientInfoList *client;
296
297 info = qmp_query_vnc(&err);
298 if (err) {
299 monitor_printf(mon, "%s\n", error_get_pretty(err));
300 error_free(err);
301 return;
302 }
303
304 if (!info->enabled) {
305 monitor_printf(mon, "Server: disabled\n");
306 goto out;
307 }
308
309 monitor_printf(mon, "Server:\n");
310 if (info->has_host && info->has_service) {
311 monitor_printf(mon, " address: %s:%s\n", info->host, info->service);
312 }
313 if (info->has_auth) {
314 monitor_printf(mon, " auth: %s\n", info->auth);
315 }
316
317 if (!info->has_clients || info->clients == NULL) {
318 monitor_printf(mon, "Client: none\n");
319 } else {
320 for (client = info->clients; client; client = client->next) {
321 monitor_printf(mon, "Client:\n");
322 monitor_printf(mon, " address: %s:%s\n",
323 client->value->host, client->value->service);
324 monitor_printf(mon, " x509_dname: %s\n",
325 client->value->x509_dname ?
326 client->value->x509_dname : "none");
327 monitor_printf(mon, " username: %s\n",
328 client->value->has_sasl_username ?
329 client->value->sasl_username : "none");
330 }
331 }
332
333out:
334 qapi_free_VncInfo(info);
335}
336
d1f29646
LC
337void hmp_info_spice(Monitor *mon)
338{
339 SpiceChannelList *chan;
340 SpiceInfo *info;
341
342 info = qmp_query_spice(NULL);
343
344 if (!info->enabled) {
345 monitor_printf(mon, "Server: disabled\n");
346 goto out;
347 }
348
349 monitor_printf(mon, "Server:\n");
350 if (info->has_port) {
351 monitor_printf(mon, " address: %s:%" PRId64 "\n",
352 info->host, info->port);
353 }
354 if (info->has_tls_port) {
355 monitor_printf(mon, " address: %s:%" PRId64 " [tls]\n",
356 info->host, info->tls_port);
357 }
358 monitor_printf(mon, " auth: %s\n", info->auth);
359 monitor_printf(mon, " compiled: %s\n", info->compiled_version);
4efee029
AL
360 monitor_printf(mon, " mouse-mode: %s\n",
361 SpiceQueryMouseMode_lookup[info->mouse_mode]);
d1f29646
LC
362
363 if (!info->has_channels || info->channels == NULL) {
364 monitor_printf(mon, "Channels: none\n");
365 } else {
366 for (chan = info->channels; chan; chan = chan->next) {
367 monitor_printf(mon, "Channel:\n");
368 monitor_printf(mon, " address: %s:%s%s\n",
369 chan->value->host, chan->value->port,
370 chan->value->tls ? " [tls]" : "");
371 monitor_printf(mon, " session: %" PRId64 "\n",
372 chan->value->connection_id);
373 monitor_printf(mon, " channel: %" PRId64 ":%" PRId64 "\n",
374 chan->value->channel_type, chan->value->channel_id);
375 }
376 }
377
378out:
379 qapi_free_SpiceInfo(info);
380}
381
96637bcd
LC
382void hmp_info_balloon(Monitor *mon)
383{
384 BalloonInfo *info;
385 Error *err = NULL;
386
387 info = qmp_query_balloon(&err);
388 if (err) {
389 monitor_printf(mon, "%s\n", error_get_pretty(err));
390 error_free(err);
391 return;
392 }
393
394 monitor_printf(mon, "balloon: actual=%" PRId64, info->actual >> 20);
395 if (info->has_mem_swapped_in) {
396 monitor_printf(mon, " mem_swapped_in=%" PRId64, info->mem_swapped_in);
397 }
398 if (info->has_mem_swapped_out) {
399 monitor_printf(mon, " mem_swapped_out=%" PRId64, info->mem_swapped_out);
400 }
401 if (info->has_major_page_faults) {
402 monitor_printf(mon, " major_page_faults=%" PRId64,
403 info->major_page_faults);
404 }
405 if (info->has_minor_page_faults) {
406 monitor_printf(mon, " minor_page_faults=%" PRId64,
407 info->minor_page_faults);
408 }
409 if (info->has_free_mem) {
410 monitor_printf(mon, " free_mem=%" PRId64, info->free_mem);
411 }
412 if (info->has_total_mem) {
413 monitor_printf(mon, " total_mem=%" PRId64, info->total_mem);
414 }
415
416 monitor_printf(mon, "\n");
417
418 qapi_free_BalloonInfo(info);
419}
420
79627472
LC
421static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
422{
423 PciMemoryRegionList *region;
424
425 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
426 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
427 dev->slot, dev->function);
428 monitor_printf(mon, " ");
429
430 if (dev->class_info.has_desc) {
431 monitor_printf(mon, "%s", dev->class_info.desc);
432 } else {
433 monitor_printf(mon, "Class %04" PRId64, dev->class_info.class);
434 }
435
436 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
437 dev->id.vendor, dev->id.device);
438
439 if (dev->has_irq) {
440 monitor_printf(mon, " IRQ %" PRId64 ".\n", dev->irq);
441 }
442
443 if (dev->has_pci_bridge) {
444 monitor_printf(mon, " BUS %" PRId64 ".\n",
445 dev->pci_bridge->bus.number);
446 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
447 dev->pci_bridge->bus.secondary);
448 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
449 dev->pci_bridge->bus.subordinate);
450
451 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
452 dev->pci_bridge->bus.io_range->base,
453 dev->pci_bridge->bus.io_range->limit);
454
455 monitor_printf(mon,
456 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
457 dev->pci_bridge->bus.memory_range->base,
458 dev->pci_bridge->bus.memory_range->limit);
459
460 monitor_printf(mon, " prefetchable memory range "
461 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
462 dev->pci_bridge->bus.prefetchable_range->base,
463 dev->pci_bridge->bus.prefetchable_range->limit);
464 }
465
466 for (region = dev->regions; region; region = region->next) {
467 uint64_t addr, size;
468
469 addr = region->value->address;
470 size = region->value->size;
471
472 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
473
474 if (!strcmp(region->value->type, "io")) {
475 monitor_printf(mon, "I/O at 0x%04" PRIx64
476 " [0x%04" PRIx64 "].\n",
477 addr, addr + size - 1);
478 } else {
479 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
480 " [0x%08" PRIx64 "].\n",
481 region->value->mem_type_64 ? 64 : 32,
482 region->value->prefetch ? " prefetchable" : "",
483 addr, addr + size - 1);
484 }
485 }
486
487 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
488
489 if (dev->has_pci_bridge) {
490 if (dev->pci_bridge->has_devices) {
491 PciDeviceInfoList *cdev;
492 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
493 hmp_info_pci_device(mon, cdev->value);
494 }
495 }
496 }
497}
498
499void hmp_info_pci(Monitor *mon)
500{
f46cee37 501 PciInfoList *info_list, *info;
79627472
LC
502 Error *err = NULL;
503
f46cee37 504 info_list = qmp_query_pci(&err);
79627472
LC
505 if (err) {
506 monitor_printf(mon, "PCI devices not supported\n");
507 error_free(err);
508 return;
509 }
510
f46cee37 511 for (info = info_list; info; info = info->next) {
79627472
LC
512 PciDeviceInfoList *dev;
513
514 for (dev = info->value->devices; dev; dev = dev->next) {
515 hmp_info_pci_device(mon, dev->value);
516 }
517 }
518
f46cee37 519 qapi_free_PciInfoList(info_list);
79627472
LC
520}
521
fb5458cd
SH
522void hmp_info_block_jobs(Monitor *mon)
523{
524 BlockJobInfoList *list;
525 Error *err = NULL;
526
527 list = qmp_query_block_jobs(&err);
528 assert(!err);
529
530 if (!list) {
531 monitor_printf(mon, "No active jobs\n");
532 return;
533 }
534
535 while (list) {
536 if (strcmp(list->value->type, "stream") == 0) {
537 monitor_printf(mon, "Streaming device %s: Completed %" PRId64
538 " of %" PRId64 " bytes, speed limit %" PRId64
539 " bytes/s\n",
540 list->value->device,
541 list->value->offset,
542 list->value->len,
543 list->value->speed);
544 } else {
545 monitor_printf(mon, "Type %s, device %s: Completed %" PRId64
546 " of %" PRId64 " bytes, speed limit %" PRId64
547 " bytes/s\n",
548 list->value->type,
549 list->value->device,
550 list->value->offset,
551 list->value->len,
552 list->value->speed);
553 }
554 list = list->next;
555 }
556}
557
7a7f325e
LC
558void hmp_quit(Monitor *mon, const QDict *qdict)
559{
560 monitor_suspend(mon);
561 qmp_quit(NULL);
562}
5f158f21
LC
563
564void hmp_stop(Monitor *mon, const QDict *qdict)
565{
566 qmp_stop(NULL);
567}
38d22653
LC
568
569void hmp_system_reset(Monitor *mon, const QDict *qdict)
570{
571 qmp_system_reset(NULL);
572}
5bc465e4
LC
573
574void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
575{
576 qmp_system_powerdown(NULL);
577}
755f1968
LC
578
579void hmp_cpu(Monitor *mon, const QDict *qdict)
580{
581 int64_t cpu_index;
582
583 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
584 use it are converted to the QAPI */
585 cpu_index = qdict_get_int(qdict, "index");
586 if (monitor_set_cpu(cpu_index) < 0) {
587 monitor_printf(mon, "invalid CPU index\n");
588 }
589}
0cfd6a9a
LC
590
591void hmp_memsave(Monitor *mon, const QDict *qdict)
592{
593 uint32_t size = qdict_get_int(qdict, "size");
594 const char *filename = qdict_get_str(qdict, "filename");
595 uint64_t addr = qdict_get_int(qdict, "val");
596 Error *errp = NULL;
597
598 qmp_memsave(addr, size, filename, true, monitor_get_cpu_index(), &errp);
599 hmp_handle_error(mon, &errp);
600}
6d3962bf
LC
601
602void hmp_pmemsave(Monitor *mon, const QDict *qdict)
603{
604 uint32_t size = qdict_get_int(qdict, "size");
605 const char *filename = qdict_get_str(qdict, "filename");
606 uint64_t addr = qdict_get_int(qdict, "val");
607 Error *errp = NULL;
608
609 qmp_pmemsave(addr, size, filename, &errp);
610 hmp_handle_error(mon, &errp);
611}
e42e818b
LC
612
613static void hmp_cont_cb(void *opaque, int err)
614{
e42e818b 615 if (!err) {
8b7f6fbb 616 qmp_cont(NULL);
e42e818b
LC
617 }
618}
619
8b7f6fbb
LC
620static bool key_is_missing(const BlockInfo *bdev)
621{
622 return (bdev->inserted && bdev->inserted->encryption_key_missing);
623}
624
e42e818b
LC
625void hmp_cont(Monitor *mon, const QDict *qdict)
626{
8b7f6fbb 627 BlockInfoList *bdev_list, *bdev;
e42e818b
LC
628 Error *errp = NULL;
629
8b7f6fbb
LC
630 bdev_list = qmp_query_block(NULL);
631 for (bdev = bdev_list; bdev; bdev = bdev->next) {
632 if (key_is_missing(bdev->value)) {
633 monitor_read_block_device_key(mon, bdev->value->device,
634 hmp_cont_cb, NULL);
635 goto out;
e42e818b 636 }
e42e818b 637 }
8b7f6fbb
LC
638
639 qmp_cont(&errp);
640 hmp_handle_error(mon, &errp);
641
642out:
643 qapi_free_BlockInfoList(bdev_list);
e42e818b 644}
ab49ab5c 645
9b9df25a
GH
646void hmp_system_wakeup(Monitor *mon, const QDict *qdict)
647{
648 qmp_system_wakeup(NULL);
649}
650
ab49ab5c
LC
651void hmp_inject_nmi(Monitor *mon, const QDict *qdict)
652{
653 Error *errp = NULL;
654
655 qmp_inject_nmi(&errp);
656 hmp_handle_error(mon, &errp);
657}
4b37156c
LC
658
659void hmp_set_link(Monitor *mon, const QDict *qdict)
660{
661 const char *name = qdict_get_str(qdict, "name");
662 int up = qdict_get_bool(qdict, "up");
663 Error *errp = NULL;
664
665 qmp_set_link(name, up, &errp);
666 hmp_handle_error(mon, &errp);
667}
a4dea8a9
LC
668
669void hmp_block_passwd(Monitor *mon, const QDict *qdict)
670{
671 const char *device = qdict_get_str(qdict, "device");
672 const char *password = qdict_get_str(qdict, "password");
673 Error *errp = NULL;
674
675 qmp_block_passwd(device, password, &errp);
676 hmp_handle_error(mon, &errp);
677}
d72f3264
LC
678
679void hmp_balloon(Monitor *mon, const QDict *qdict)
680{
681 int64_t value = qdict_get_int(qdict, "value");
682 Error *errp = NULL;
683
684 qmp_balloon(value, &errp);
685 if (error_is_set(&errp)) {
686 monitor_printf(mon, "balloon: %s\n", error_get_pretty(errp));
687 error_free(errp);
688 }
689}
5e7caacb
LC
690
691void hmp_block_resize(Monitor *mon, const QDict *qdict)
692{
693 const char *device = qdict_get_str(qdict, "device");
694 int64_t size = qdict_get_int(qdict, "size");
695 Error *errp = NULL;
696
697 qmp_block_resize(device, size, &errp);
698 hmp_handle_error(mon, &errp);
699}
6106e249
LC
700
701void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict)
702{
703 const char *device = qdict_get_str(qdict, "device");
704 const char *filename = qdict_get_try_str(qdict, "snapshot-file");
705 const char *format = qdict_get_try_str(qdict, "format");
6cc2a415
PB
706 int reuse = qdict_get_try_bool(qdict, "reuse", 0);
707 enum NewImageMode mode;
6106e249
LC
708 Error *errp = NULL;
709
710 if (!filename) {
711 /* In the future, if 'snapshot-file' is not specified, the snapshot
712 will be taken internally. Today it's actually required. */
713 error_set(&errp, QERR_MISSING_PARAMETER, "snapshot-file");
714 hmp_handle_error(mon, &errp);
715 return;
716 }
717
6cc2a415
PB
718 mode = reuse ? NEW_IMAGE_MODE_EXISTING : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
719 qmp_blockdev_snapshot_sync(device, filename, !!format, format,
720 true, mode, &errp);
6106e249
LC
721 hmp_handle_error(mon, &errp);
722}
6cdedb07
LC
723
724void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
725{
726 qmp_migrate_cancel(NULL);
727}
4f0a993b
LC
728
729void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
730{
731 double value = qdict_get_double(qdict, "value");
732 qmp_migrate_set_downtime(value, NULL);
733}
3dc85383
LC
734
735void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
736{
737 int64_t value = qdict_get_int(qdict, "value");
738 qmp_migrate_set_speed(value, NULL);
739}
fbf796fd
LC
740
741void hmp_set_password(Monitor *mon, const QDict *qdict)
742{
743 const char *protocol = qdict_get_str(qdict, "protocol");
744 const char *password = qdict_get_str(qdict, "password");
745 const char *connected = qdict_get_try_str(qdict, "connected");
746 Error *err = NULL;
747
748 qmp_set_password(protocol, password, !!connected, connected, &err);
749 hmp_handle_error(mon, &err);
750}
9ad5372d
LC
751
752void hmp_expire_password(Monitor *mon, const QDict *qdict)
753{
754 const char *protocol = qdict_get_str(qdict, "protocol");
755 const char *whenstr = qdict_get_str(qdict, "time");
756 Error *err = NULL;
757
758 qmp_expire_password(protocol, whenstr, &err);
759 hmp_handle_error(mon, &err);
760}
c245b6a3
LC
761
762void hmp_eject(Monitor *mon, const QDict *qdict)
763{
764 int force = qdict_get_try_bool(qdict, "force", 0);
765 const char *device = qdict_get_str(qdict, "device");
766 Error *err = NULL;
767
768 qmp_eject(device, true, force, &err);
769 hmp_handle_error(mon, &err);
770}
333a96ec
LC
771
772static void hmp_change_read_arg(Monitor *mon, const char *password,
773 void *opaque)
774{
775 qmp_change_vnc_password(password, NULL);
776 monitor_read_command(mon, 1);
777}
778
333a96ec
LC
779void hmp_change(Monitor *mon, const QDict *qdict)
780{
781 const char *device = qdict_get_str(qdict, "device");
782 const char *target = qdict_get_str(qdict, "target");
783 const char *arg = qdict_get_try_str(qdict, "arg");
784 Error *err = NULL;
785
786 if (strcmp(device, "vnc") == 0 &&
787 (strcmp(target, "passwd") == 0 ||
788 strcmp(target, "password") == 0)) {
789 if (!arg) {
790 monitor_read_password(mon, hmp_change_read_arg, NULL);
791 return;
792 }
793 }
794
795 qmp_change(device, target, !!arg, arg, &err);
ab878ddf
LC
796 if (error_is_set(&err) &&
797 error_get_class(err) == ERROR_CLASS_DEVICE_ENCRYPTED) {
eef5ad10
LC
798 error_free(err);
799 monitor_read_block_device_key(mon, device, NULL, NULL);
333a96ec
LC
800 return;
801 }
802 hmp_handle_error(mon, &err);
803}
80047da5
LC
804
805void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
806{
807 Error *err = NULL;
808
809 qmp_block_set_io_throttle(qdict_get_str(qdict, "device"),
810 qdict_get_int(qdict, "bps"),
811 qdict_get_int(qdict, "bps_rd"),
812 qdict_get_int(qdict, "bps_wr"),
813 qdict_get_int(qdict, "iops"),
814 qdict_get_int(qdict, "iops_rd"),
815 qdict_get_int(qdict, "iops_wr"), &err);
816 hmp_handle_error(mon, &err);
817}
12bd451f
SH
818
819void hmp_block_stream(Monitor *mon, const QDict *qdict)
820{
821 Error *error = NULL;
822 const char *device = qdict_get_str(qdict, "device");
823 const char *base = qdict_get_try_str(qdict, "base");
c83c66c3 824 int64_t speed = qdict_get_try_int(qdict, "speed", 0);
12bd451f 825
c83c66c3
SH
826 qmp_block_stream(device, base != NULL, base,
827 qdict_haskey(qdict, "speed"), speed, &error);
12bd451f
SH
828
829 hmp_handle_error(mon, &error);
830}
2d47c6e9
SH
831
832void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict)
833{
834 Error *error = NULL;
835 const char *device = qdict_get_str(qdict, "device");
c6db2395 836 int64_t value = qdict_get_int(qdict, "speed");
2d47c6e9
SH
837
838 qmp_block_job_set_speed(device, value, &error);
839
840 hmp_handle_error(mon, &error);
841}
370521a1
SH
842
843void hmp_block_job_cancel(Monitor *mon, const QDict *qdict)
844{
845 Error *error = NULL;
846 const char *device = qdict_get_str(qdict, "device");
847
848 qmp_block_job_cancel(device, &error);
849
850 hmp_handle_error(mon, &error);
851}
e1c37d0e
LC
852
853typedef struct MigrationStatus
854{
855 QEMUTimer *timer;
856 Monitor *mon;
857 bool is_block_migration;
858} MigrationStatus;
859
860static void hmp_migrate_status_cb(void *opaque)
861{
862 MigrationStatus *status = opaque;
863 MigrationInfo *info;
864
865 info = qmp_query_migrate(NULL);
866 if (!info->has_status || strcmp(info->status, "active") == 0) {
867 if (info->has_disk) {
868 int progress;
869
870 if (info->disk->remaining) {
871 progress = info->disk->transferred * 100 / info->disk->total;
872 } else {
873 progress = 100;
874 }
875
876 monitor_printf(status->mon, "Completed %d %%\r", progress);
877 monitor_flush(status->mon);
878 }
879
880 qemu_mod_timer(status->timer, qemu_get_clock_ms(rt_clock) + 1000);
881 } else {
882 if (status->is_block_migration) {
883 monitor_printf(status->mon, "\n");
884 }
885 monitor_resume(status->mon);
886 qemu_del_timer(status->timer);
887 g_free(status);
888 }
889
890 qapi_free_MigrationInfo(info);
891}
892
893void hmp_migrate(Monitor *mon, const QDict *qdict)
894{
895 int detach = qdict_get_try_bool(qdict, "detach", 0);
896 int blk = qdict_get_try_bool(qdict, "blk", 0);
897 int inc = qdict_get_try_bool(qdict, "inc", 0);
898 const char *uri = qdict_get_str(qdict, "uri");
899 Error *err = NULL;
900
901 qmp_migrate(uri, !!blk, blk, !!inc, inc, false, false, &err);
902 if (err) {
903 monitor_printf(mon, "migrate: %s\n", error_get_pretty(err));
904 error_free(err);
905 return;
906 }
907
908 if (!detach) {
909 MigrationStatus *status;
910
911 if (monitor_suspend(mon) < 0) {
912 monitor_printf(mon, "terminal does not allow synchronous "
913 "migration, continuing detached\n");
914 return;
915 }
916
917 status = g_malloc0(sizeof(*status));
918 status->mon = mon;
919 status->is_block_migration = blk || inc;
920 status->timer = qemu_new_timer_ms(rt_clock, hmp_migrate_status_cb,
921 status);
922 qemu_mod_timer(status->timer, qemu_get_clock_ms(rt_clock));
923 }
924}
a15fef21
LC
925
926void hmp_device_del(Monitor *mon, const QDict *qdict)
927{
928 const char *id = qdict_get_str(qdict, "id");
929 Error *err = NULL;
930
931 qmp_device_del(id, &err);
932 hmp_handle_error(mon, &err);
933}
783e9b48
WC
934
935void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict)
936{
937 Error *errp = NULL;
938 int paging = qdict_get_try_bool(qdict, "paging", 0);
939 const char *file = qdict_get_str(qdict, "protocol");
940 bool has_begin = qdict_haskey(qdict, "begin");
941 bool has_length = qdict_haskey(qdict, "length");
942 int64_t begin = 0;
943 int64_t length = 0;
944
945 if (has_begin) {
946 begin = qdict_get_int(qdict, "begin");
947 }
948 if (has_length) {
949 length = qdict_get_int(qdict, "length");
950 }
951
952 qmp_dump_guest_memory(paging, file, has_begin, begin, has_length, length,
953 &errp);
954 hmp_handle_error(mon, &errp);
955}
928059a3
LC
956
957void hmp_netdev_add(Monitor *mon, const QDict *qdict)
958{
959 Error *err = NULL;
960 QemuOpts *opts;
961
962 opts = qemu_opts_from_qdict(qemu_find_opts("netdev"), qdict, &err);
963 if (error_is_set(&err)) {
964 goto out;
965 }
966
967 netdev_add(opts, &err);
968 if (error_is_set(&err)) {
969 qemu_opts_del(opts);
970 }
971
972out:
973 hmp_handle_error(mon, &err);
974}
5f964155
LC
975
976void hmp_netdev_del(Monitor *mon, const QDict *qdict)
977{
978 const char *id = qdict_get_str(qdict, "id");
979 Error *err = NULL;
980
981 qmp_netdev_del(id, &err);
982 hmp_handle_error(mon, &err);
983}
208c9d1b
CB
984
985void hmp_getfd(Monitor *mon, const QDict *qdict)
986{
987 const char *fdname = qdict_get_str(qdict, "fdname");
988 Error *errp = NULL;
989
990 qmp_getfd(fdname, &errp);
991 hmp_handle_error(mon, &errp);
992}
993
994void hmp_closefd(Monitor *mon, const QDict *qdict)
995{
996 const char *fdname = qdict_get_str(qdict, "fdname");
997 Error *errp = NULL;
998
999 qmp_closefd(fdname, &errp);
1000 hmp_handle_error(mon, &errp);
1001}