]> git.proxmox.com Git - qemu.git/blame_incremental - qmp-commands.hx
add mode field to blockdev-snapshot-sync transaction item
[qemu.git] / qmp-commands.hx
... / ...
CommitLineData
1HXCOMM QMP dispatch table and documentation
2HXCOMM Text between SQMP and EQMP is copied to the QMP documention file and
3HXCOMM does not show up in the other formats.
4
5SQMP
6 QMP Supported Commands
7 ----------------------
8
9This document describes all commands currently supported by QMP.
10
11Most of the time their usage is exactly the same as in the user Monitor, this
12means that any other document which also describe commands (the manpage,
13QEMU's manual, etc) can and should be consulted.
14
15QMP has two types of commands: regular and query commands. Regular commands
16usually change the Virtual Machine's state someway, while query commands just
17return information. The sections below are divided accordingly.
18
19It's important to observe that all communication examples are formatted in
20a reader-friendly way, so that they're easier to understand. However, in real
21protocol usage, they're emitted as a single line.
22
23Also, the following notation is used to denote data flow:
24
25-> data issued by the Client
26<- Server data response
27
28Please, refer to the QMP specification (QMP/qmp-spec.txt) for detailed
29information on the Server command and response formats.
30
31NOTE: This document is temporary and will be replaced soon.
32
331. Stability Considerations
34===========================
35
36The current QMP command set (described in this file) may be useful for a
37number of use cases, however it's limited and several commands have bad
38defined semantics, specially with regard to command completion.
39
40These problems are going to be solved incrementally in the next QEMU releases
41and we're going to establish a deprecation policy for badly defined commands.
42
43If you're planning to adopt QMP, please observe the following:
44
45 1. The deprecation policy will take effect and be documented soon, please
46 check the documentation of each used command as soon as a new release of
47 QEMU is available
48
49 2. DO NOT rely on anything which is not explicit documented
50
51 3. Errors, in special, are not documented. Applications should NOT check
52 for specific errors classes or data (it's strongly recommended to only
53 check for the "error" key)
54
552. Regular Commands
56===================
57
58Server's responses in the examples below are always a success response, please
59refer to the QMP specification for more details on error responses.
60
61EQMP
62
63 {
64 .name = "quit",
65 .args_type = "",
66 .mhandler.cmd_new = qmp_marshal_input_quit,
67 },
68
69SQMP
70quit
71----
72
73Quit the emulator.
74
75Arguments: None.
76
77Example:
78
79-> { "execute": "quit" }
80<- { "return": {} }
81
82EQMP
83
84 {
85 .name = "eject",
86 .args_type = "force:-f,device:B",
87 .mhandler.cmd_new = qmp_marshal_input_eject,
88 },
89
90SQMP
91eject
92-----
93
94Eject a removable medium.
95
96Arguments:
97
98- force: force ejection (json-bool, optional)
99- device: device name (json-string)
100
101Example:
102
103-> { "execute": "eject", "arguments": { "device": "ide1-cd0" } }
104<- { "return": {} }
105
106Note: The "force" argument defaults to false.
107
108EQMP
109
110 {
111 .name = "change",
112 .args_type = "device:B,target:F,arg:s?",
113 .mhandler.cmd_new = qmp_marshal_input_change,
114 },
115
116SQMP
117change
118------
119
120Change a removable medium or VNC configuration.
121
122Arguments:
123
124- "device": device name (json-string)
125- "target": filename or item (json-string)
126- "arg": additional argument (json-string, optional)
127
128Examples:
129
1301. Change a removable medium
131
132-> { "execute": "change",
133 "arguments": { "device": "ide1-cd0",
134 "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
135<- { "return": {} }
136
1372. Change VNC password
138
139-> { "execute": "change",
140 "arguments": { "device": "vnc", "target": "password",
141 "arg": "foobar1" } }
142<- { "return": {} }
143
144EQMP
145
146 {
147 .name = "screendump",
148 .args_type = "filename:F",
149 .params = "filename",
150 .help = "save screen into PPM image 'filename'",
151 .user_print = monitor_user_noop,
152 .mhandler.cmd_new = do_screen_dump,
153 },
154
155SQMP
156screendump
157----------
158
159Save screen into PPM image.
160
161Arguments:
162
163- "filename": file path (json-string)
164
165Example:
166
167-> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
168<- { "return": {} }
169
170EQMP
171
172 {
173 .name = "stop",
174 .args_type = "",
175 .mhandler.cmd_new = qmp_marshal_input_stop,
176 },
177
178SQMP
179stop
180----
181
182Stop the emulator.
183
184Arguments: None.
185
186Example:
187
188-> { "execute": "stop" }
189<- { "return": {} }
190
191EQMP
192
193 {
194 .name = "cont",
195 .args_type = "",
196 .mhandler.cmd_new = qmp_marshal_input_cont,
197 },
198
199SQMP
200cont
201----
202
203Resume emulation.
204
205Arguments: None.
206
207Example:
208
209-> { "execute": "cont" }
210<- { "return": {} }
211
212EQMP
213
214 {
215 .name = "system_wakeup",
216 .args_type = "",
217 .mhandler.cmd_new = qmp_marshal_input_system_wakeup,
218 },
219
220SQMP
221system_wakeup
222-------------
223
224Wakeup guest from suspend.
225
226Arguments: None.
227
228Example:
229
230-> { "execute": "system_wakeup" }
231<- { "return": {} }
232
233EQMP
234
235 {
236 .name = "system_reset",
237 .args_type = "",
238 .mhandler.cmd_new = qmp_marshal_input_system_reset,
239 },
240
241SQMP
242system_reset
243------------
244
245Reset the system.
246
247Arguments: None.
248
249Example:
250
251-> { "execute": "system_reset" }
252<- { "return": {} }
253
254EQMP
255
256 {
257 .name = "system_powerdown",
258 .args_type = "",
259 .mhandler.cmd_new = qmp_marshal_input_system_powerdown,
260 },
261
262SQMP
263system_powerdown
264----------------
265
266Send system power down event.
267
268Arguments: None.
269
270Example:
271
272-> { "execute": "system_powerdown" }
273<- { "return": {} }
274
275EQMP
276
277 {
278 .name = "device_add",
279 .args_type = "device:O",
280 .params = "driver[,prop=value][,...]",
281 .help = "add device, like -device on the command line",
282 .user_print = monitor_user_noop,
283 .mhandler.cmd_new = do_device_add,
284 },
285
286SQMP
287device_add
288----------
289
290Add a device.
291
292Arguments:
293
294- "driver": the name of the new device's driver (json-string)
295- "bus": the device's parent bus (device tree path, json-string, optional)
296- "id": the device's ID, must be unique (json-string)
297- device properties
298
299Example:
300
301-> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
302<- { "return": {} }
303
304Notes:
305
306(1) For detailed information about this command, please refer to the
307 'docs/qdev-device-use.txt' file.
308
309(2) It's possible to list device properties by running QEMU with the
310 "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
311
312EQMP
313
314 {
315 .name = "device_del",
316 .args_type = "id:s",
317 .params = "device",
318 .help = "remove device",
319 .user_print = monitor_user_noop,
320 .mhandler.cmd_new = do_device_del,
321 },
322
323SQMP
324device_del
325----------
326
327Remove a device.
328
329Arguments:
330
331- "id": the device's ID (json-string)
332
333Example:
334
335-> { "execute": "device_del", "arguments": { "id": "net1" } }
336<- { "return": {} }
337
338EQMP
339
340 {
341 .name = "cpu",
342 .args_type = "index:i",
343 .mhandler.cmd_new = qmp_marshal_input_cpu,
344 },
345
346SQMP
347cpu
348---
349
350Set the default CPU.
351
352Arguments:
353
354- "index": the CPU's index (json-int)
355
356Example:
357
358-> { "execute": "cpu", "arguments": { "index": 0 } }
359<- { "return": {} }
360
361Note: CPUs' indexes are obtained with the 'query-cpus' command.
362
363EQMP
364
365 {
366 .name = "memsave",
367 .args_type = "val:l,size:i,filename:s,cpu:i?",
368 .mhandler.cmd_new = qmp_marshal_input_memsave,
369 },
370
371SQMP
372memsave
373-------
374
375Save to disk virtual memory dump starting at 'val' of size 'size'.
376
377Arguments:
378
379- "val": the starting address (json-int)
380- "size": the memory size, in bytes (json-int)
381- "filename": file path (json-string)
382- "cpu": virtual CPU index (json-int, optional)
383
384Example:
385
386-> { "execute": "memsave",
387 "arguments": { "val": 10,
388 "size": 100,
389 "filename": "/tmp/virtual-mem-dump" } }
390<- { "return": {} }
391
392EQMP
393
394 {
395 .name = "pmemsave",
396 .args_type = "val:l,size:i,filename:s",
397 .mhandler.cmd_new = qmp_marshal_input_pmemsave,
398 },
399
400SQMP
401pmemsave
402--------
403
404Save to disk physical memory dump starting at 'val' of size 'size'.
405
406Arguments:
407
408- "val": the starting address (json-int)
409- "size": the memory size, in bytes (json-int)
410- "filename": file path (json-string)
411
412Example:
413
414-> { "execute": "pmemsave",
415 "arguments": { "val": 10,
416 "size": 100,
417 "filename": "/tmp/physical-mem-dump" } }
418<- { "return": {} }
419
420EQMP
421
422 {
423 .name = "inject-nmi",
424 .args_type = "",
425 .mhandler.cmd_new = qmp_marshal_input_inject_nmi,
426 },
427
428SQMP
429inject-nmi
430----------
431
432Inject an NMI on guest's CPUs.
433
434Arguments: None.
435
436Example:
437
438-> { "execute": "inject-nmi" }
439<- { "return": {} }
440
441Note: inject-nmi is only supported for x86 guest currently, it will
442 returns "Unsupported" error for non-x86 guest.
443
444EQMP
445
446 {
447 .name = "migrate",
448 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
449 .params = "[-d] [-b] [-i] uri",
450 .help = "migrate to URI (using -d to not wait for completion)"
451 "\n\t\t\t -b for migration without shared storage with"
452 " full copy of disk\n\t\t\t -i for migration without "
453 "shared storage with incremental copy of disk "
454 "(base image shared between src and destination)",
455 .user_print = monitor_user_noop,
456 .mhandler.cmd_new = do_migrate,
457 },
458
459SQMP
460migrate
461-------
462
463Migrate to URI.
464
465Arguments:
466
467- "blk": block migration, full disk copy (json-bool, optional)
468- "inc": incremental disk copy (json-bool, optional)
469- "uri": Destination URI (json-string)
470
471Example:
472
473-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
474<- { "return": {} }
475
476Notes:
477
478(1) The 'query-migrate' command should be used to check migration's progress
479 and final result (this information is provided by the 'status' member)
480(2) All boolean arguments default to false
481(3) The user Monitor's "detach" argument is invalid in QMP and should not
482 be used
483
484EQMP
485
486 {
487 .name = "migrate_cancel",
488 .args_type = "",
489 .mhandler.cmd_new = qmp_marshal_input_migrate_cancel,
490 },
491
492SQMP
493migrate_cancel
494--------------
495
496Cancel the current migration.
497
498Arguments: None.
499
500Example:
501
502-> { "execute": "migrate_cancel" }
503<- { "return": {} }
504
505EQMP
506
507 {
508 .name = "migrate_set_speed",
509 .args_type = "value:o",
510 .mhandler.cmd_new = qmp_marshal_input_migrate_set_speed,
511 },
512
513SQMP
514migrate_set_speed
515-----------------
516
517Set maximum speed for migrations.
518
519Arguments:
520
521- "value": maximum speed, in bytes per second (json-int)
522
523Example:
524
525-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
526<- { "return": {} }
527
528EQMP
529
530 {
531 .name = "migrate_set_downtime",
532 .args_type = "value:T",
533 .mhandler.cmd_new = qmp_marshal_input_migrate_set_downtime,
534 },
535
536SQMP
537migrate_set_downtime
538--------------------
539
540Set maximum tolerated downtime (in seconds) for migrations.
541
542Arguments:
543
544- "value": maximum downtime (json-number)
545
546Example:
547
548-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
549<- { "return": {} }
550
551EQMP
552
553 {
554 .name = "client_migrate_info",
555 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
556 .params = "protocol hostname port tls-port cert-subject",
557 .help = "send migration info to spice/vnc client",
558 .user_print = monitor_user_noop,
559 .mhandler.cmd_async = client_migrate_info,
560 .flags = MONITOR_CMD_ASYNC,
561 },
562
563SQMP
564client_migrate_info
565------------------
566
567Set the spice/vnc connection info for the migration target. The spice/vnc
568server will ask the spice/vnc client to automatically reconnect using the
569new parameters (if specified) once the vm migration finished successfully.
570
571Arguments:
572
573- "protocol": protocol: "spice" or "vnc" (json-string)
574- "hostname": migration target hostname (json-string)
575- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
576- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
577- "cert-subject": server certificate subject (json-string, optional)
578
579Example:
580
581-> { "execute": "client_migrate_info",
582 "arguments": { "protocol": "spice",
583 "hostname": "virt42.lab.kraxel.org",
584 "port": 1234 } }
585<- { "return": {} }
586
587EQMP
588
589 {
590 .name = "netdev_add",
591 .args_type = "netdev:O",
592 .params = "[user|tap|socket],id=str[,prop=value][,...]",
593 .help = "add host network device",
594 .user_print = monitor_user_noop,
595 .mhandler.cmd_new = do_netdev_add,
596 },
597
598SQMP
599netdev_add
600----------
601
602Add host network device.
603
604Arguments:
605
606- "type": the device type, "tap", "user", ... (json-string)
607- "id": the device's ID, must be unique (json-string)
608- device options
609
610Example:
611
612-> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
613<- { "return": {} }
614
615Note: The supported device options are the same ones supported by the '-net'
616 command-line argument, which are listed in the '-help' output or QEMU's
617 manual
618
619EQMP
620
621 {
622 .name = "netdev_del",
623 .args_type = "id:s",
624 .params = "id",
625 .help = "remove host network device",
626 .user_print = monitor_user_noop,
627 .mhandler.cmd_new = do_netdev_del,
628 },
629
630SQMP
631netdev_del
632----------
633
634Remove host network device.
635
636Arguments:
637
638- "id": the device's ID, must be unique (json-string)
639
640Example:
641
642-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
643<- { "return": {} }
644
645
646EQMP
647
648 {
649 .name = "block_resize",
650 .args_type = "device:B,size:o",
651 .mhandler.cmd_new = qmp_marshal_input_block_resize,
652 },
653
654SQMP
655block_resize
656------------
657
658Resize a block image while a guest is running.
659
660Arguments:
661
662- "device": the device's ID, must be unique (json-string)
663- "size": new size
664
665Example:
666
667-> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
668<- { "return": {} }
669
670EQMP
671
672 {
673 .name = "block_stream",
674 .args_type = "device:B,base:s?",
675 .mhandler.cmd_new = qmp_marshal_input_block_stream,
676 },
677
678 {
679 .name = "block_job_set_speed",
680 .args_type = "device:B,value:o",
681 .mhandler.cmd_new = qmp_marshal_input_block_job_set_speed,
682 },
683
684 {
685 .name = "block_job_cancel",
686 .args_type = "device:B",
687 .mhandler.cmd_new = qmp_marshal_input_block_job_cancel,
688 },
689 {
690 .name = "transaction",
691 .args_type = "actions:O",
692 .mhandler.cmd_new = qmp_marshal_input_transaction,
693 },
694
695SQMP
696transaction
697-----------
698
699Atomically operate on one or more block devices. The only supported
700operation for now is snapshotting. If there is any failure performing
701any of the operations, all snapshots for the group are abandoned, and
702the original disks pre-snapshot attempt are used.
703
704A list of dictionaries is accepted, that contains the actions to be performed.
705For snapshots this is the device, the file to use for the new snapshot,
706and the format. The default format, if not specified, is qcow2.
707
708Each new snapshot defaults to being created by QEMU (wiping any
709contents if the file already exists), but it is also possible to reuse
710an externally-created file. In the latter case, you should ensure that
711the new image file has the same contents as the current one; QEMU cannot
712perform any meaningful check. Typically this is achieved by using the
713current image file as the backing file for the new image.
714
715Arguments:
716
717actions array:
718 - "type": the operation to perform. The only supported
719 value is "blockdev-snapshot-sync". (json-string)
720 - "data": a dictionary. The contents depend on the value
721 of "type". When "type" is "blockdev-snapshot-sync":
722 - "device": device name to snapshot (json-string)
723 - "snapshot-file": name of new image file (json-string)
724 - "format": format of new image (json-string, optional)
725 - "mode": whether and how QEMU should create the snapshot file
726 (NewImageMode, optional, default "absolute-paths")
727
728Example:
729
730-> { "execute": "transaction",
731 "arguments": { "actions": [
732 { 'type': 'blockdev-snapshot-sync', 'data' : { "device": "ide-hd0",
733 "snapshot-file": "/some/place/my-image",
734 "format": "qcow2" } },
735 { 'type': 'blockdev-snapshot-sync', 'data' : { "device": "ide-hd1",
736 "snapshot-file": "/some/place/my-image2",
737 "mode": "existing",
738 "format": "qcow2" } } ] } }
739<- { "return": {} }
740
741EQMP
742
743 {
744 .name = "blockdev-snapshot-sync",
745 .args_type = "device:B,snapshot-file:s,format:s?",
746 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_sync,
747 },
748
749SQMP
750blockdev-snapshot-sync
751----------------------
752
753Synchronous snapshot of a block device. snapshot-file specifies the
754target of the new image. If the file exists, or if it is a device, the
755snapshot will be created in the existing file/device. If does not
756exist, a new file will be created. format specifies the format of the
757snapshot image, default is qcow2.
758
759Arguments:
760
761- "device": device name to snapshot (json-string)
762- "snapshot-file": name of new image file (json-string)
763- "format": format of new image (json-string, optional)
764
765Example:
766
767-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
768 "snapshot-file":
769 "/some/place/my-image",
770 "format": "qcow2" } }
771<- { "return": {} }
772
773EQMP
774
775 {
776 .name = "balloon",
777 .args_type = "value:M",
778 .mhandler.cmd_new = qmp_marshal_input_balloon,
779 },
780
781SQMP
782balloon
783-------
784
785Request VM to change its memory allocation (in bytes).
786
787Arguments:
788
789- "value": New memory allocation (json-int)
790
791Example:
792
793-> { "execute": "balloon", "arguments": { "value": 536870912 } }
794<- { "return": {} }
795
796EQMP
797
798 {
799 .name = "set_link",
800 .args_type = "name:s,up:b",
801 .mhandler.cmd_new = qmp_marshal_input_set_link,
802 },
803
804SQMP
805set_link
806--------
807
808Change the link status of a network adapter.
809
810Arguments:
811
812- "name": network device name (json-string)
813- "up": status is up (json-bool)
814
815Example:
816
817-> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
818<- { "return": {} }
819
820EQMP
821
822 {
823 .name = "getfd",
824 .args_type = "fdname:s",
825 .params = "getfd name",
826 .help = "receive a file descriptor via SCM rights and assign it a name",
827 .user_print = monitor_user_noop,
828 .mhandler.cmd_new = do_getfd,
829 },
830
831SQMP
832getfd
833-----
834
835Receive a file descriptor via SCM rights and assign it a name.
836
837Arguments:
838
839- "fdname": file descriptor name (json-string)
840
841Example:
842
843-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
844<- { "return": {} }
845
846EQMP
847
848 {
849 .name = "closefd",
850 .args_type = "fdname:s",
851 .params = "closefd name",
852 .help = "close a file descriptor previously passed via SCM rights",
853 .user_print = monitor_user_noop,
854 .mhandler.cmd_new = do_closefd,
855 },
856
857SQMP
858closefd
859-------
860
861Close a file descriptor previously passed via SCM rights.
862
863Arguments:
864
865- "fdname": file descriptor name (json-string)
866
867Example:
868
869-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
870<- { "return": {} }
871
872EQMP
873
874 {
875 .name = "block_passwd",
876 .args_type = "device:B,password:s",
877 .mhandler.cmd_new = qmp_marshal_input_block_passwd,
878 },
879
880SQMP
881block_passwd
882------------
883
884Set the password of encrypted block devices.
885
886Arguments:
887
888- "device": device name (json-string)
889- "password": password (json-string)
890
891Example:
892
893-> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
894 "password": "12345" } }
895<- { "return": {} }
896
897EQMP
898
899 {
900 .name = "block_set_io_throttle",
901 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
902 .mhandler.cmd_new = qmp_marshal_input_block_set_io_throttle,
903 },
904
905SQMP
906block_set_io_throttle
907------------
908
909Change I/O throttle limits for a block drive.
910
911Arguments:
912
913- "device": device name (json-string)
914- "bps": total throughput limit in bytes per second(json-int)
915- "bps_rd": read throughput limit in bytes per second(json-int)
916- "bps_wr": read throughput limit in bytes per second(json-int)
917- "iops": total I/O operations per second(json-int)
918- "iops_rd": read I/O operations per second(json-int)
919- "iops_wr": write I/O operations per second(json-int)
920
921Example:
922
923-> { "execute": "block_set_io_throttle", "arguments": { "device": "virtio0",
924 "bps": "1000000",
925 "bps_rd": "0",
926 "bps_wr": "0",
927 "iops": "0",
928 "iops_rd": "0",
929 "iops_wr": "0" } }
930<- { "return": {} }
931
932EQMP
933
934 {
935 .name = "set_password",
936 .args_type = "protocol:s,password:s,connected:s?",
937 .mhandler.cmd_new = qmp_marshal_input_set_password,
938 },
939
940SQMP
941set_password
942------------
943
944Set the password for vnc/spice protocols.
945
946Arguments:
947
948- "protocol": protocol name (json-string)
949- "password": password (json-string)
950- "connected": [ keep | disconnect | fail ] (josn-string, optional)
951
952Example:
953
954-> { "execute": "set_password", "arguments": { "protocol": "vnc",
955 "password": "secret" } }
956<- { "return": {} }
957
958EQMP
959
960 {
961 .name = "expire_password",
962 .args_type = "protocol:s,time:s",
963 .mhandler.cmd_new = qmp_marshal_input_expire_password,
964 },
965
966SQMP
967expire_password
968---------------
969
970Set the password expire time for vnc/spice protocols.
971
972Arguments:
973
974- "protocol": protocol name (json-string)
975- "time": [ now | never | +secs | secs ] (json-string)
976
977Example:
978
979-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
980 "time": "+60" } }
981<- { "return": {} }
982
983EQMP
984
985 {
986 .name = "add_client",
987 .args_type = "protocol:s,fdname:s,skipauth:b?,tls:b?",
988 .params = "protocol fdname skipauth tls",
989 .help = "add a graphics client",
990 .user_print = monitor_user_noop,
991 .mhandler.cmd_new = add_graphics_client,
992 },
993
994SQMP
995add_client
996----------
997
998Add a graphics client
999
1000Arguments:
1001
1002- "protocol": protocol name (json-string)
1003- "fdname": file descriptor name (json-string)
1004- "skipauth": whether to skip authentication (json-bool, optional)
1005- "tls": whether to perform TLS (json-bool, optional)
1006
1007Example:
1008
1009-> { "execute": "add_client", "arguments": { "protocol": "vnc",
1010 "fdname": "myclient" } }
1011<- { "return": {} }
1012
1013EQMP
1014 {
1015 .name = "qmp_capabilities",
1016 .args_type = "",
1017 .params = "",
1018 .help = "enable QMP capabilities",
1019 .user_print = monitor_user_noop,
1020 .mhandler.cmd_new = do_qmp_capabilities,
1021 },
1022
1023SQMP
1024qmp_capabilities
1025----------------
1026
1027Enable QMP capabilities.
1028
1029Arguments: None.
1030
1031Example:
1032
1033-> { "execute": "qmp_capabilities" }
1034<- { "return": {} }
1035
1036Note: This command must be issued before issuing any other command.
1037
1038EQMP
1039
1040 {
1041 .name = "human-monitor-command",
1042 .args_type = "command-line:s,cpu-index:i?",
1043 .mhandler.cmd_new = qmp_marshal_input_human_monitor_command,
1044 },
1045
1046SQMP
1047human-monitor-command
1048---------------------
1049
1050Execute a Human Monitor command.
1051
1052Arguments:
1053
1054- command-line: the command name and its arguments, just like the
1055 Human Monitor's shell (json-string)
1056- cpu-index: select the CPU number to be used by commands which access CPU
1057 data, like 'info registers'. The Monitor selects CPU 0 if this
1058 argument is not provided (json-int, optional)
1059
1060Example:
1061
1062-> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1063<- { "return": "kvm support: enabled\r\n" }
1064
1065Notes:
1066
1067(1) The Human Monitor is NOT an stable interface, this means that command
1068 names, arguments and responses can change or be removed at ANY time.
1069 Applications that rely on long term stability guarantees should NOT
1070 use this command
1071
1072(2) Limitations:
1073
1074 o This command is stateless, this means that commands that depend
1075 on state information (such as getfd) might not work
1076
1077 o Commands that prompt the user for data (eg. 'cont' when the block
1078 device is encrypted) don't currently work
1079
10803. Query Commands
1081=================
1082
1083HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1084HXCOMM this! We will possibly move query commands definitions inside those
1085HXCOMM sections, just like regular commands.
1086
1087EQMP
1088
1089SQMP
1090query-version
1091-------------
1092
1093Show QEMU version.
1094
1095Return a json-object with the following information:
1096
1097- "qemu": A json-object containing three integer values:
1098 - "major": QEMU's major version (json-int)
1099 - "minor": QEMU's minor version (json-int)
1100 - "micro": QEMU's micro version (json-int)
1101- "package": package's version (json-string)
1102
1103Example:
1104
1105-> { "execute": "query-version" }
1106<- {
1107 "return":{
1108 "qemu":{
1109 "major":0,
1110 "minor":11,
1111 "micro":5
1112 },
1113 "package":""
1114 }
1115 }
1116
1117EQMP
1118
1119 {
1120 .name = "query-version",
1121 .args_type = "",
1122 .mhandler.cmd_new = qmp_marshal_input_query_version,
1123 },
1124
1125SQMP
1126query-commands
1127--------------
1128
1129List QMP available commands.
1130
1131Each command is represented by a json-object, the returned value is a json-array
1132of all commands.
1133
1134Each json-object contain:
1135
1136- "name": command's name (json-string)
1137
1138Example:
1139
1140-> { "execute": "query-commands" }
1141<- {
1142 "return":[
1143 {
1144 "name":"query-balloon"
1145 },
1146 {
1147 "name":"system_powerdown"
1148 }
1149 ]
1150 }
1151
1152Note: This example has been shortened as the real response is too long.
1153
1154EQMP
1155
1156 {
1157 .name = "query-commands",
1158 .args_type = "",
1159 .mhandler.cmd_new = qmp_marshal_input_query_commands,
1160 },
1161
1162SQMP
1163query-chardev
1164-------------
1165
1166Each device is represented by a json-object. The returned value is a json-array
1167of all devices.
1168
1169Each json-object contain the following:
1170
1171- "label": device's label (json-string)
1172- "filename": device's file (json-string)
1173
1174Example:
1175
1176-> { "execute": "query-chardev" }
1177<- {
1178 "return":[
1179 {
1180 "label":"monitor",
1181 "filename":"stdio"
1182 },
1183 {
1184 "label":"serial0",
1185 "filename":"vc"
1186 }
1187 ]
1188 }
1189
1190EQMP
1191
1192 {
1193 .name = "query-chardev",
1194 .args_type = "",
1195 .mhandler.cmd_new = qmp_marshal_input_query_chardev,
1196 },
1197
1198SQMP
1199query-block
1200-----------
1201
1202Show the block devices.
1203
1204Each block device information is stored in a json-object and the returned value
1205is a json-array of all devices.
1206
1207Each json-object contain the following:
1208
1209- "device": device name (json-string)
1210- "type": device type (json-string)
1211 - deprecated, retained for backward compatibility
1212 - Possible values: "unknown"
1213- "removable": true if the device is removable, false otherwise (json-bool)
1214- "locked": true if the device is locked, false otherwise (json-bool)
1215- "tray-open": only present if removable, true if the device has a tray,
1216 and it is open (json-bool)
1217- "inserted": only present if the device is inserted, it is a json-object
1218 containing the following:
1219 - "file": device file name (json-string)
1220 - "ro": true if read-only, false otherwise (json-bool)
1221 - "drv": driver format name (json-string)
1222 - Possible values: "blkdebug", "bochs", "cloop", "cow", "dmg",
1223 "file", "file", "ftp", "ftps", "host_cdrom",
1224 "host_device", "host_floppy", "http", "https",
1225 "nbd", "parallels", "qcow", "qcow2", "raw",
1226 "tftp", "vdi", "vmdk", "vpc", "vvfat"
1227 - "backing_file": backing file name (json-string, optional)
1228 - "encrypted": true if encrypted, false otherwise (json-bool)
1229 - "bps": limit total bytes per second (json-int)
1230 - "bps_rd": limit read bytes per second (json-int)
1231 - "bps_wr": limit write bytes per second (json-int)
1232 - "iops": limit total I/O operations per second (json-int)
1233 - "iops_rd": limit read operations per second (json-int)
1234 - "iops_wr": limit write operations per second (json-int)
1235
1236- "io-status": I/O operation status, only present if the device supports it
1237 and the VM is configured to stop on errors. It's always reset
1238 to "ok" when the "cont" command is issued (json_string, optional)
1239 - Possible values: "ok", "failed", "nospace"
1240
1241Example:
1242
1243-> { "execute": "query-block" }
1244<- {
1245 "return":[
1246 {
1247 "io-status": "ok",
1248 "device":"ide0-hd0",
1249 "locked":false,
1250 "removable":false,
1251 "inserted":{
1252 "ro":false,
1253 "drv":"qcow2",
1254 "encrypted":false,
1255 "file":"disks/test.img",
1256 "bps":1000000,
1257 "bps_rd":0,
1258 "bps_wr":0,
1259 "iops":1000000,
1260 "iops_rd":0,
1261 "iops_wr":0,
1262 },
1263 "type":"unknown"
1264 },
1265 {
1266 "io-status": "ok",
1267 "device":"ide1-cd0",
1268 "locked":false,
1269 "removable":true,
1270 "type":"unknown"
1271 },
1272 {
1273 "device":"floppy0",
1274 "locked":false,
1275 "removable":true,
1276 "type":"unknown"
1277 },
1278 {
1279 "device":"sd0",
1280 "locked":false,
1281 "removable":true,
1282 "type":"unknown"
1283 }
1284 ]
1285 }
1286
1287EQMP
1288
1289 {
1290 .name = "query-block",
1291 .args_type = "",
1292 .mhandler.cmd_new = qmp_marshal_input_query_block,
1293 },
1294
1295SQMP
1296query-blockstats
1297----------------
1298
1299Show block device statistics.
1300
1301Each device statistic information is stored in a json-object and the returned
1302value is a json-array of all devices.
1303
1304Each json-object contain the following:
1305
1306- "device": device name (json-string)
1307- "stats": A json-object with the statistics information, it contains:
1308 - "rd_bytes": bytes read (json-int)
1309 - "wr_bytes": bytes written (json-int)
1310 - "rd_operations": read operations (json-int)
1311 - "wr_operations": write operations (json-int)
1312 - "flush_operations": cache flush operations (json-int)
1313 - "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
1314 - "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
1315 - "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
1316 - "wr_highest_offset": Highest offset of a sector written since the
1317 BlockDriverState has been opened (json-int)
1318- "parent": Contains recursively the statistics of the underlying
1319 protocol (e.g. the host file for a qcow2 image). If there is
1320 no underlying protocol, this field is omitted
1321 (json-object, optional)
1322
1323Example:
1324
1325-> { "execute": "query-blockstats" }
1326<- {
1327 "return":[
1328 {
1329 "device":"ide0-hd0",
1330 "parent":{
1331 "stats":{
1332 "wr_highest_offset":3686448128,
1333 "wr_bytes":9786368,
1334 "wr_operations":751,
1335 "rd_bytes":122567168,
1336 "rd_operations":36772
1337 "wr_total_times_ns":313253456
1338 "rd_total_times_ns":3465673657
1339 "flush_total_times_ns":49653
1340 "flush_operations":61,
1341 }
1342 },
1343 "stats":{
1344 "wr_highest_offset":2821110784,
1345 "wr_bytes":9786368,
1346 "wr_operations":692,
1347 "rd_bytes":122739200,
1348 "rd_operations":36604
1349 "flush_operations":51,
1350 "wr_total_times_ns":313253456
1351 "rd_total_times_ns":3465673657
1352 "flush_total_times_ns":49653
1353 }
1354 },
1355 {
1356 "device":"ide1-cd0",
1357 "stats":{
1358 "wr_highest_offset":0,
1359 "wr_bytes":0,
1360 "wr_operations":0,
1361 "rd_bytes":0,
1362 "rd_operations":0
1363 "flush_operations":0,
1364 "wr_total_times_ns":0
1365 "rd_total_times_ns":0
1366 "flush_total_times_ns":0
1367 }
1368 },
1369 {
1370 "device":"floppy0",
1371 "stats":{
1372 "wr_highest_offset":0,
1373 "wr_bytes":0,
1374 "wr_operations":0,
1375 "rd_bytes":0,
1376 "rd_operations":0
1377 "flush_operations":0,
1378 "wr_total_times_ns":0
1379 "rd_total_times_ns":0
1380 "flush_total_times_ns":0
1381 }
1382 },
1383 {
1384 "device":"sd0",
1385 "stats":{
1386 "wr_highest_offset":0,
1387 "wr_bytes":0,
1388 "wr_operations":0,
1389 "rd_bytes":0,
1390 "rd_operations":0
1391 "flush_operations":0,
1392 "wr_total_times_ns":0
1393 "rd_total_times_ns":0
1394 "flush_total_times_ns":0
1395 }
1396 }
1397 ]
1398 }
1399
1400EQMP
1401
1402 {
1403 .name = "query-blockstats",
1404 .args_type = "",
1405 .mhandler.cmd_new = qmp_marshal_input_query_blockstats,
1406 },
1407
1408SQMP
1409query-cpus
1410----------
1411
1412Show CPU information.
1413
1414Return a json-array. Each CPU is represented by a json-object, which contains:
1415
1416- "CPU": CPU index (json-int)
1417- "current": true if this is the current CPU, false otherwise (json-bool)
1418- "halted": true if the cpu is halted, false otherwise (json-bool)
1419- Current program counter. The key's name depends on the architecture:
1420 "pc": i386/x86_64 (json-int)
1421 "nip": PPC (json-int)
1422 "pc" and "npc": sparc (json-int)
1423 "PC": mips (json-int)
1424- "thread_id": ID of the underlying host thread (json-int)
1425
1426Example:
1427
1428-> { "execute": "query-cpus" }
1429<- {
1430 "return":[
1431 {
1432 "CPU":0,
1433 "current":true,
1434 "halted":false,
1435 "pc":3227107138
1436 "thread_id":3134
1437 },
1438 {
1439 "CPU":1,
1440 "current":false,
1441 "halted":true,
1442 "pc":7108165
1443 "thread_id":3135
1444 }
1445 ]
1446 }
1447
1448EQMP
1449
1450 {
1451 .name = "query-cpus",
1452 .args_type = "",
1453 .mhandler.cmd_new = qmp_marshal_input_query_cpus,
1454 },
1455
1456SQMP
1457query-pci
1458---------
1459
1460PCI buses and devices information.
1461
1462The returned value is a json-array of all buses. Each bus is represented by
1463a json-object, which has a key with a json-array of all PCI devices attached
1464to it. Each device is represented by a json-object.
1465
1466The bus json-object contains the following:
1467
1468- "bus": bus number (json-int)
1469- "devices": a json-array of json-objects, each json-object represents a
1470 PCI device
1471
1472The PCI device json-object contains the following:
1473
1474- "bus": identical to the parent's bus number (json-int)
1475- "slot": slot number (json-int)
1476- "function": function number (json-int)
1477- "class_info": a json-object containing:
1478 - "desc": device class description (json-string, optional)
1479 - "class": device class number (json-int)
1480- "id": a json-object containing:
1481 - "device": device ID (json-int)
1482 - "vendor": vendor ID (json-int)
1483- "irq": device's IRQ if assigned (json-int, optional)
1484- "qdev_id": qdev id string (json-string)
1485- "pci_bridge": It's a json-object, only present if this device is a
1486 PCI bridge, contains:
1487 - "bus": bus number (json-int)
1488 - "secondary": secondary bus number (json-int)
1489 - "subordinate": subordinate bus number (json-int)
1490 - "io_range": I/O memory range information, a json-object with the
1491 following members:
1492 - "base": base address, in bytes (json-int)
1493 - "limit": limit address, in bytes (json-int)
1494 - "memory_range": memory range information, a json-object with the
1495 following members:
1496 - "base": base address, in bytes (json-int)
1497 - "limit": limit address, in bytes (json-int)
1498 - "prefetchable_range": Prefetchable memory range information, a
1499 json-object with the following members:
1500 - "base": base address, in bytes (json-int)
1501 - "limit": limit address, in bytes (json-int)
1502 - "devices": a json-array of PCI devices if there's any attached, each
1503 each element is represented by a json-object, which contains
1504 the same members of the 'PCI device json-object' described
1505 above (optional)
1506- "regions": a json-array of json-objects, each json-object represents a
1507 memory region of this device
1508
1509The memory range json-object contains the following:
1510
1511- "base": base memory address (json-int)
1512- "limit": limit value (json-int)
1513
1514The region json-object can be an I/O region or a memory region, an I/O region
1515json-object contains the following:
1516
1517- "type": "io" (json-string, fixed)
1518- "bar": BAR number (json-int)
1519- "address": memory address (json-int)
1520- "size": memory size (json-int)
1521
1522A memory region json-object contains the following:
1523
1524- "type": "memory" (json-string, fixed)
1525- "bar": BAR number (json-int)
1526- "address": memory address (json-int)
1527- "size": memory size (json-int)
1528- "mem_type_64": true or false (json-bool)
1529- "prefetch": true or false (json-bool)
1530
1531Example:
1532
1533-> { "execute": "query-pci" }
1534<- {
1535 "return":[
1536 {
1537 "bus":0,
1538 "devices":[
1539 {
1540 "bus":0,
1541 "qdev_id":"",
1542 "slot":0,
1543 "class_info":{
1544 "class":1536,
1545 "desc":"Host bridge"
1546 },
1547 "id":{
1548 "device":32902,
1549 "vendor":4663
1550 },
1551 "function":0,
1552 "regions":[
1553
1554 ]
1555 },
1556 {
1557 "bus":0,
1558 "qdev_id":"",
1559 "slot":1,
1560 "class_info":{
1561 "class":1537,
1562 "desc":"ISA bridge"
1563 },
1564 "id":{
1565 "device":32902,
1566 "vendor":28672
1567 },
1568 "function":0,
1569 "regions":[
1570
1571 ]
1572 },
1573 {
1574 "bus":0,
1575 "qdev_id":"",
1576 "slot":1,
1577 "class_info":{
1578 "class":257,
1579 "desc":"IDE controller"
1580 },
1581 "id":{
1582 "device":32902,
1583 "vendor":28688
1584 },
1585 "function":1,
1586 "regions":[
1587 {
1588 "bar":4,
1589 "size":16,
1590 "address":49152,
1591 "type":"io"
1592 }
1593 ]
1594 },
1595 {
1596 "bus":0,
1597 "qdev_id":"",
1598 "slot":2,
1599 "class_info":{
1600 "class":768,
1601 "desc":"VGA controller"
1602 },
1603 "id":{
1604 "device":4115,
1605 "vendor":184
1606 },
1607 "function":0,
1608 "regions":[
1609 {
1610 "prefetch":true,
1611 "mem_type_64":false,
1612 "bar":0,
1613 "size":33554432,
1614 "address":4026531840,
1615 "type":"memory"
1616 },
1617 {
1618 "prefetch":false,
1619 "mem_type_64":false,
1620 "bar":1,
1621 "size":4096,
1622 "address":4060086272,
1623 "type":"memory"
1624 },
1625 {
1626 "prefetch":false,
1627 "mem_type_64":false,
1628 "bar":6,
1629 "size":65536,
1630 "address":-1,
1631 "type":"memory"
1632 }
1633 ]
1634 },
1635 {
1636 "bus":0,
1637 "qdev_id":"",
1638 "irq":11,
1639 "slot":4,
1640 "class_info":{
1641 "class":1280,
1642 "desc":"RAM controller"
1643 },
1644 "id":{
1645 "device":6900,
1646 "vendor":4098
1647 },
1648 "function":0,
1649 "regions":[
1650 {
1651 "bar":0,
1652 "size":32,
1653 "address":49280,
1654 "type":"io"
1655 }
1656 ]
1657 }
1658 ]
1659 }
1660 ]
1661 }
1662
1663Note: This example has been shortened as the real response is too long.
1664
1665EQMP
1666
1667 {
1668 .name = "query-pci",
1669 .args_type = "",
1670 .mhandler.cmd_new = qmp_marshal_input_query_pci,
1671 },
1672
1673SQMP
1674query-kvm
1675---------
1676
1677Show KVM information.
1678
1679Return a json-object with the following information:
1680
1681- "enabled": true if KVM support is enabled, false otherwise (json-bool)
1682- "present": true if QEMU has KVM support, false otherwise (json-bool)
1683
1684Example:
1685
1686-> { "execute": "query-kvm" }
1687<- { "return": { "enabled": true, "present": true } }
1688
1689EQMP
1690
1691 {
1692 .name = "query-kvm",
1693 .args_type = "",
1694 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
1695 },
1696
1697SQMP
1698query-status
1699------------
1700
1701Return a json-object with the following information:
1702
1703- "running": true if the VM is running, or false if it is paused (json-bool)
1704- "singlestep": true if the VM is in single step mode,
1705 false otherwise (json-bool)
1706- "status": one of the following values (json-string)
1707 "debug" - QEMU is running on a debugger
1708 "inmigrate" - guest is paused waiting for an incoming migration
1709 "internal-error" - An internal error that prevents further guest
1710 execution has occurred
1711 "io-error" - the last IOP has failed and the device is configured
1712 to pause on I/O errors
1713 "paused" - guest has been paused via the 'stop' command
1714 "postmigrate" - guest is paused following a successful 'migrate'
1715 "prelaunch" - QEMU was started with -S and guest has not started
1716 "finish-migrate" - guest is paused to finish the migration process
1717 "restore-vm" - guest is paused to restore VM state
1718 "running" - guest is actively running
1719 "save-vm" - guest is paused to save the VM state
1720 "shutdown" - guest is shut down (and -no-shutdown is in use)
1721 "watchdog" - the watchdog action is configured to pause and
1722 has been triggered
1723
1724Example:
1725
1726-> { "execute": "query-status" }
1727<- { "return": { "running": true, "singlestep": false, "status": "running" } }
1728
1729EQMP
1730
1731 {
1732 .name = "query-status",
1733 .args_type = "",
1734 .mhandler.cmd_new = qmp_marshal_input_query_status,
1735 },
1736
1737SQMP
1738query-mice
1739----------
1740
1741Show VM mice information.
1742
1743Each mouse is represented by a json-object, the returned value is a json-array
1744of all mice.
1745
1746The mouse json-object contains the following:
1747
1748- "name": mouse's name (json-string)
1749- "index": mouse's index (json-int)
1750- "current": true if this mouse is receiving events, false otherwise (json-bool)
1751- "absolute": true if the mouse generates absolute input events (json-bool)
1752
1753Example:
1754
1755-> { "execute": "query-mice" }
1756<- {
1757 "return":[
1758 {
1759 "name":"QEMU Microsoft Mouse",
1760 "index":0,
1761 "current":false,
1762 "absolute":false
1763 },
1764 {
1765 "name":"QEMU PS/2 Mouse",
1766 "index":1,
1767 "current":true,
1768 "absolute":true
1769 }
1770 ]
1771 }
1772
1773EQMP
1774
1775 {
1776 .name = "query-mice",
1777 .args_type = "",
1778 .mhandler.cmd_new = qmp_marshal_input_query_mice,
1779 },
1780
1781SQMP
1782query-vnc
1783---------
1784
1785Show VNC server information.
1786
1787Return a json-object with server information. Connected clients are returned
1788as a json-array of json-objects.
1789
1790The main json-object contains the following:
1791
1792- "enabled": true or false (json-bool)
1793- "host": server's IP address (json-string)
1794- "family": address family (json-string)
1795 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1796- "service": server's port number (json-string)
1797- "auth": authentication method (json-string)
1798 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
1799 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
1800 "vencrypt+plain", "vencrypt+tls+none",
1801 "vencrypt+tls+plain", "vencrypt+tls+sasl",
1802 "vencrypt+tls+vnc", "vencrypt+x509+none",
1803 "vencrypt+x509+plain", "vencrypt+x509+sasl",
1804 "vencrypt+x509+vnc", "vnc"
1805- "clients": a json-array of all connected clients
1806
1807Clients are described by a json-object, each one contain the following:
1808
1809- "host": client's IP address (json-string)
1810- "family": address family (json-string)
1811 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1812- "service": client's port number (json-string)
1813- "x509_dname": TLS dname (json-string, optional)
1814- "sasl_username": SASL username (json-string, optional)
1815
1816Example:
1817
1818-> { "execute": "query-vnc" }
1819<- {
1820 "return":{
1821 "enabled":true,
1822 "host":"0.0.0.0",
1823 "service":"50402",
1824 "auth":"vnc",
1825 "family":"ipv4",
1826 "clients":[
1827 {
1828 "host":"127.0.0.1",
1829 "service":"50401",
1830 "family":"ipv4"
1831 }
1832 ]
1833 }
1834 }
1835
1836EQMP
1837
1838 {
1839 .name = "query-vnc",
1840 .args_type = "",
1841 .mhandler.cmd_new = qmp_marshal_input_query_vnc,
1842 },
1843
1844SQMP
1845query-spice
1846-----------
1847
1848Show SPICE server information.
1849
1850Return a json-object with server information. Connected clients are returned
1851as a json-array of json-objects.
1852
1853The main json-object contains the following:
1854
1855- "enabled": true or false (json-bool)
1856- "host": server's IP address (json-string)
1857- "port": server's port number (json-int, optional)
1858- "tls-port": server's port number (json-int, optional)
1859- "auth": authentication method (json-string)
1860 - Possible values: "none", "spice"
1861- "channels": a json-array of all active channels clients
1862
1863Channels are described by a json-object, each one contain the following:
1864
1865- "host": client's IP address (json-string)
1866- "family": address family (json-string)
1867 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1868- "port": client's port number (json-string)
1869- "connection-id": spice connection id. All channels with the same id
1870 belong to the same spice session (json-int)
1871- "channel-type": channel type. "1" is the main control channel, filter for
1872 this one if you want track spice sessions only (json-int)
1873- "channel-id": channel id. Usually "0", might be different needed when
1874 multiple channels of the same type exist, such as multiple
1875 display channels in a multihead setup (json-int)
1876- "tls": whevener the channel is encrypted (json-bool)
1877
1878Example:
1879
1880-> { "execute": "query-spice" }
1881<- {
1882 "return": {
1883 "enabled": true,
1884 "auth": "spice",
1885 "port": 5920,
1886 "tls-port": 5921,
1887 "host": "0.0.0.0",
1888 "channels": [
1889 {
1890 "port": "54924",
1891 "family": "ipv4",
1892 "channel-type": 1,
1893 "connection-id": 1804289383,
1894 "host": "127.0.0.1",
1895 "channel-id": 0,
1896 "tls": true
1897 },
1898 {
1899 "port": "36710",
1900 "family": "ipv4",
1901 "channel-type": 4,
1902 "connection-id": 1804289383,
1903 "host": "127.0.0.1",
1904 "channel-id": 0,
1905 "tls": false
1906 },
1907 [ ... more channels follow ... ]
1908 ]
1909 }
1910 }
1911
1912EQMP
1913
1914#if defined(CONFIG_SPICE)
1915 {
1916 .name = "query-spice",
1917 .args_type = "",
1918 .mhandler.cmd_new = qmp_marshal_input_query_spice,
1919 },
1920#endif
1921
1922SQMP
1923query-name
1924----------
1925
1926Show VM name.
1927
1928Return a json-object with the following information:
1929
1930- "name": VM's name (json-string, optional)
1931
1932Example:
1933
1934-> { "execute": "query-name" }
1935<- { "return": { "name": "qemu-name" } }
1936
1937EQMP
1938
1939 {
1940 .name = "query-name",
1941 .args_type = "",
1942 .mhandler.cmd_new = qmp_marshal_input_query_name,
1943 },
1944
1945SQMP
1946query-uuid
1947----------
1948
1949Show VM UUID.
1950
1951Return a json-object with the following information:
1952
1953- "UUID": Universally Unique Identifier (json-string)
1954
1955Example:
1956
1957-> { "execute": "query-uuid" }
1958<- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
1959
1960EQMP
1961
1962 {
1963 .name = "query-uuid",
1964 .args_type = "",
1965 .mhandler.cmd_new = qmp_marshal_input_query_uuid,
1966 },
1967
1968SQMP
1969query-migrate
1970-------------
1971
1972Migration status.
1973
1974Return a json-object. If migration is active there will be another json-object
1975with RAM migration status and if block migration is active another one with
1976block migration status.
1977
1978The main json-object contains the following:
1979
1980- "status": migration status (json-string)
1981 - Possible values: "active", "completed", "failed", "cancelled"
1982- "ram": only present if "status" is "active", it is a json-object with the
1983 following RAM information (in bytes):
1984 - "transferred": amount transferred (json-int)
1985 - "remaining": amount remaining (json-int)
1986 - "total": total (json-int)
1987- "disk": only present if "status" is "active" and it is a block migration,
1988 it is a json-object with the following disk information (in bytes):
1989 - "transferred": amount transferred (json-int)
1990 - "remaining": amount remaining (json-int)
1991 - "total": total (json-int)
1992
1993Examples:
1994
19951. Before the first migration
1996
1997-> { "execute": "query-migrate" }
1998<- { "return": {} }
1999
20002. Migration is done and has succeeded
2001
2002-> { "execute": "query-migrate" }
2003<- { "return": { "status": "completed" } }
2004
20053. Migration is done and has failed
2006
2007-> { "execute": "query-migrate" }
2008<- { "return": { "status": "failed" } }
2009
20104. Migration is being performed and is not a block migration:
2011
2012-> { "execute": "query-migrate" }
2013<- {
2014 "return":{
2015 "status":"active",
2016 "ram":{
2017 "transferred":123,
2018 "remaining":123,
2019 "total":246
2020 }
2021 }
2022 }
2023
20245. Migration is being performed and is a block migration:
2025
2026-> { "execute": "query-migrate" }
2027<- {
2028 "return":{
2029 "status":"active",
2030 "ram":{
2031 "total":1057024,
2032 "remaining":1053304,
2033 "transferred":3720
2034 },
2035 "disk":{
2036 "total":20971520,
2037 "remaining":20880384,
2038 "transferred":91136
2039 }
2040 }
2041 }
2042
2043EQMP
2044
2045 {
2046 .name = "query-migrate",
2047 .args_type = "",
2048 .mhandler.cmd_new = qmp_marshal_input_query_migrate,
2049 },
2050
2051SQMP
2052query-balloon
2053-------------
2054
2055Show balloon information.
2056
2057Make an asynchronous request for balloon info. When the request completes a
2058json-object will be returned containing the following data:
2059
2060- "actual": current balloon value in bytes (json-int)
2061- "mem_swapped_in": Amount of memory swapped in bytes (json-int, optional)
2062- "mem_swapped_out": Amount of memory swapped out in bytes (json-int, optional)
2063- "major_page_faults": Number of major faults (json-int, optional)
2064- "minor_page_faults": Number of minor faults (json-int, optional)
2065- "free_mem": Total amount of free and unused memory in
2066 bytes (json-int, optional)
2067- "total_mem": Total amount of available memory in bytes (json-int, optional)
2068
2069Example:
2070
2071-> { "execute": "query-balloon" }
2072<- {
2073 "return":{
2074 "actual":1073741824,
2075 "mem_swapped_in":0,
2076 "mem_swapped_out":0,
2077 "major_page_faults":142,
2078 "minor_page_faults":239245,
2079 "free_mem":1014185984,
2080 "total_mem":1044668416
2081 }
2082 }
2083
2084EQMP
2085
2086 {
2087 .name = "query-balloon",
2088 .args_type = "",
2089 .mhandler.cmd_new = qmp_marshal_input_query_balloon,
2090 },
2091
2092 {
2093 .name = "query-block-jobs",
2094 .args_type = "",
2095 .mhandler.cmd_new = qmp_marshal_input_query_block_jobs,
2096 },
2097
2098 {
2099 .name = "qom-list",
2100 .args_type = "path:s",
2101 .mhandler.cmd_new = qmp_marshal_input_qom_list,
2102 },
2103
2104 {
2105 .name = "qom-set",
2106 .args_type = "path:s,property:s,opts:O",
2107 .mhandler.cmd_new = qmp_qom_set,
2108 },
2109
2110 {
2111 .name = "qom-get",
2112 .args_type = "path:s,property:s",
2113 .mhandler.cmd_new = qmp_qom_get,
2114 },
2115
2116 {
2117 .name = "change-vnc-password",
2118 .args_type = "password:s",
2119 .mhandler.cmd_new = qmp_marshal_input_change_vnc_password,
2120 },
2121 {
2122 .name = "qom-list-types",
2123 .args_type = "implements:s?,abstract:b?",
2124 .mhandler.cmd_new = qmp_marshal_input_qom_list_types,
2125 },