1 HXCOMM QMP dispatch table and documentation
2 HXCOMM Text between SQMP and EQMP is copied to the QMP documention file and
3 HXCOMM does not show up
in the other formats
.
9 This document describes all commands currently supported by QMP
.
11 Most of the time their usage is exactly the same as
in the user Monitor
, this
12 means that any other document which also describe
commands (the manpage
,
13 QEMU
's manual, etc) can and should be consulted.
15 QMP has two types of commands: regular and query commands. Regular commands
16 usually change the Virtual Machine's state someway
, while query commands just
17 return information
. The sections below are divided accordingly
.
19 It
's important to observe that all communication examples are formatted in
20 a reader-friendly way, so that they're easier to understand
. However
, in real
21 protocol usage
, they
're emitted as a single line.
23 Also, the following notation is used to denote data flow:
25 -> data issued by the Client
26 <- Server data response
28 Please, refer to the QMP specification (QMP/qmp-spec.txt) for detailed
29 information on the Server command and response formats.
31 NOTE: This document is temporary and will be replaced soon.
33 1. Stability Considerations
34 ===========================
36 The current QMP command set (described in this file) may be useful for a
37 number of use cases, however it's limited and several commands have bad
38 defined semantics
, specially with regard to command completion
.
40 These problems are going to be solved incrementally
in the next QEMU releases
41 and we
're going to establish a deprecation policy for badly defined commands.
43 If you're planning to adopt QMP
, please observe the following
:
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
49 2. DO NOT rely on anything which is not explicit documented
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)
58 Server's responses
in the examples below are always a success response
, please
59 refer to the QMP specification
for more details on error responses
.
66 .mhandler
.cmd_new
= qmp_marshal_input_quit
,
79 -> { "execute": "quit" }
86 .args_type
= "force:-f,device:B",
87 .mhandler
.cmd_new
= qmp_marshal_input_eject
,
94 Eject a removable medium
.
98 - force
: force
ejection (json
-bool
, optional
)
99 - device
: device
name (json
-string
)
103 -> { "execute": "eject", "arguments": { "device": "ide1-cd0" } }
106 Note
: The
"force" argument defaults to
false.
112 .args_type
= "device:B,target:F,arg:s?",
113 .mhandler
.cmd_new
= qmp_marshal_input_change
,
120 Change a removable medium or VNC configuration
.
124 - "device": device
name (json
-string
)
125 - "target": filename or
item (json
-string
)
126 - "arg": additional
argument (json
-string
, optional
)
130 1. Change a removable medium
132 -> { "execute": "change",
133 "arguments": { "device": "ide1-cd0",
134 "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
137 2. Change VNC password
139 -> { "execute": "change",
140 "arguments": { "device": "vnc", "target": "password",
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
,
159 Save screen into PPM image
.
163 - "filename": file
path (json
-string
)
167 -> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
175 .mhandler
.cmd_new
= qmp_marshal_input_stop
,
188 -> { "execute": "stop" }
196 .mhandler
.cmd_new
= qmp_marshal_input_cont
,
209 -> { "execute": "cont" }
215 .name
= "system_wakeup",
217 .mhandler
.cmd_new
= qmp_marshal_input_system_wakeup
,
224 Wakeup guest from suspend
.
230 -> { "execute": "system_wakeup" }
236 .name
= "system_reset",
238 .mhandler
.cmd_new
= qmp_marshal_input_system_reset
,
251 -> { "execute": "system_reset" }
257 .name
= "system_powerdown",
259 .mhandler
.cmd_new
= qmp_marshal_input_system_powerdown
,
266 Send system power down event
.
272 -> { "execute": "system_powerdown" }
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
,
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)
301 -> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
306 (1) For detailed information about this command, please refer to the
307 'docs
/qdev
-device
-use
.txt
' file.
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
315 .name = "device_del",
317 .mhandler.cmd_new = qmp_marshal_input_device_del,
328 - "id": the device's
ID (json
-string
)
332 -> { "execute": "device_del", "arguments": { "id": "net1" } }
339 .args_type
= "index:i",
340 .mhandler
.cmd_new
= qmp_marshal_input_cpu
,
351 - "index": the CPU
's index (json-int)
355 -> { "execute": "cpu", "arguments": { "index": 0 } }
358 Note: CPUs' indexes are obtained with the
'query-cpus' command
.
364 .args_type
= "val:l,size:i,filename:s,cpu:i?",
365 .mhandler
.cmd_new
= qmp_marshal_input_memsave
,
372 Save to disk virtual memory dump starting at
'val' of size
'size'.
376 - "val": the starting
address (json
-int
)
377 - "size": the memory size
, in bytes (json
-int
)
378 - "filename": file
path (json
-string
)
379 - "cpu": virtual CPU
index (json
-int
, optional
)
383 -> { "execute": "memsave",
384 "arguments": { "val": 10,
386 "filename": "/tmp/virtual-mem-dump" } }
393 .args_type
= "val:l,size:i,filename:s",
394 .mhandler
.cmd_new
= qmp_marshal_input_pmemsave
,
401 Save to disk physical memory dump starting at
'val' of size
'size'.
405 - "val": the starting
address (json
-int
)
406 - "size": the memory size
, in bytes (json
-int
)
407 - "filename": file
path (json
-string
)
411 -> { "execute": "pmemsave",
412 "arguments": { "val": 10,
414 "filename": "/tmp/physical-mem-dump" } }
420 .name
= "inject-nmi",
422 .mhandler
.cmd_new
= qmp_marshal_input_inject_nmi
,
429 Inject an NMI on guest
's CPUs.
435 -> { "execute": "inject-nmi" }
438 Note: inject-nmi fails when the guest doesn't support injecting
.
439 Currently
, only x86 guests
do.
444 .name
= "xen-save-devices-state",
445 .args_type
= "filename:F",
446 .mhandler
.cmd_new
= qmp_marshal_input_xen_save_devices_state
,
450 xen
-save
-devices
-state
453 Save the state of all devices to file
. The RAM and the block devices
454 of the VM are not saved by
this command
.
458 - "filename": the file to save the state of the devices to as binary
459 data
. See xen
-save
-devices
-state
.txt
for a description of the binary
464 -> { "execute": "xen-save-devices-state",
465 "arguments": { "filename": "/tmp/save" } }
472 .args_type
= "detach:-d,blk:-b,inc:-i,uri:s",
473 .mhandler
.cmd_new
= qmp_marshal_input_migrate
,
484 - "blk": block migration
, full disk
copy (json
-bool
, optional
)
485 - "inc": incremental disk
copy (json
-bool
, optional
)
486 - "uri": Destination
URI (json
-string
)
490 -> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
495 (1) The
'query-migrate' command should be used to check migration
's progress
496 and final result (this information is provided by the 'status
' member)
497 (2) All boolean arguments default to false
498 (3) The user Monitor's
"detach" argument is invalid
in QMP and should not
504 .name
= "migrate_cancel",
506 .mhandler
.cmd_new
= qmp_marshal_input_migrate_cancel
,
513 Cancel the current migration
.
519 -> { "execute": "migrate_cancel" }
524 .name
= "migrate-set-cache-size",
525 .args_type
= "value:o",
526 .mhandler
.cmd_new
= qmp_marshal_input_migrate_set_cache_size
,
530 migrate
-set
-cache
-size
531 ---------------------
533 Set cache size to be used by XBZRLE migration
, the cache size will be rounded
534 down to the nearest power of
2
538 - "value": cache size
in bytes (json
-int
)
542 -> { "execute": "migrate-set-cache-size", "arguments": { "value": 536870912 } }
547 .name
= "query-migrate-cache-size",
549 .mhandler
.cmd_new
= qmp_marshal_input_query_migrate_cache_size
,
553 query
-migrate
-cache
-size
554 ---------------------
556 Show cache size to be used by XBZRLE migration
558 returns a json
-object with the following information
:
563 -> { "execute": "query-migrate-cache-size" }
564 <- { "return": 67108864 }
569 .name
= "migrate_set_speed",
570 .args_type
= "value:o",
571 .mhandler
.cmd_new
= qmp_marshal_input_migrate_set_speed
,
578 Set maximum speed
for migrations
.
582 - "value": maximum speed
, in bytes per
second (json
-int
)
586 -> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
592 .name
= "migrate_set_downtime",
593 .args_type
= "value:T",
594 .mhandler
.cmd_new
= qmp_marshal_input_migrate_set_downtime
,
601 Set maximum tolerated
downtime (in seconds
) for migrations
.
605 - "value": maximum
downtime (json
-number
)
609 -> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
615 .name
= "client_migrate_info",
616 .args_type
= "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
617 .params
= "protocol hostname port tls-port cert-subject",
618 .help
= "send migration info to spice/vnc client",
619 .user_print
= monitor_user_noop
,
620 .mhandler
.cmd_async
= client_migrate_info
,
621 .flags
= MONITOR_CMD_ASYNC
,
628 Set the spice
/vnc connection info
for the migration target
. The spice
/vnc
629 server will ask the spice
/vnc client to automatically reconnect
using the
630 new parameters (if specified
) once the vm migration finished successfully
.
634 - "protocol": protocol
: "spice" or
"vnc" (json
-string
)
635 - "hostname": migration target
hostname (json
-string
)
636 - "port": spice
/vnc tcp port
for plaintext
channels (json
-int
, optional
)
637 - "tls-port": spice tcp port
for tls
-secured
channels (json
-int
, optional
)
638 - "cert-subject": server certificate
subject (json
-string
, optional
)
642 -> { "execute": "client_migrate_info",
643 "arguments": { "protocol": "spice",
644 "hostname": "virt42.lab.kraxel.org",
651 .name
= "dump-guest-memory",
652 .args_type
= "paging:b,protocol:s,begin:i?,end:i?",
653 .params
= "-p protocol [begin] [length]",
654 .help
= "dump guest memory to file",
655 .user_print
= monitor_user_noop
,
656 .mhandler
.cmd_new
= qmp_marshal_input_dump_guest_memory
,
663 Dump guest memory to file
. The file can be processed with crash or gdb
.
667 - "paging": do paging to get guest
's memory mapping (json-bool)
668 - "protocol": destination file(started with "file:") or destination file
669 descriptor (started with "fd:") (json-string)
670 - "begin": the starting physical address. It's optional
, and should be specified
671 with length
together (json
-int
)
672 - "length": the memory size
, in bytes
. It
's optional, and should be specified
673 with begin together (json-int)
677 -> { "execute": "dump-guest-memory", "arguments": { "protocol": "fd:dump" } }
682 (1) All boolean arguments default to false
687 .name = "netdev_add",
688 .args_type = "netdev:O",
689 .mhandler.cmd_new = qmp_netdev_add,
696 Add host network device.
700 - "type": the device type, "tap", "user", ... (json-string)
701 - "id": the device's ID
, must be
unique (json
-string
)
706 -> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
709 Note
: The supported device options are the same ones supported by the
'-net'
710 command
-line argument
, which are listed
in the
'-help' output or QEMU
's
716 .name = "netdev_del",
718 .mhandler.cmd_new = qmp_marshal_input_netdev_del,
725 Remove host network device.
729 - "id": the device's ID
, must be
unique (json
-string
)
733 -> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
740 .name
= "block_resize",
741 .args_type
= "device:B,size:o",
742 .mhandler
.cmd_new
= qmp_marshal_input_block_resize
,
749 Resize a block image
while a guest is running
.
753 - "device": the device
's ID, must be unique (json-string)
758 -> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
764 .name = "block-stream",
765 .args_type = "device:B,base:s?,speed:o?",
766 .mhandler.cmd_new = qmp_marshal_input_block_stream,
770 .name = "block-job-set-speed",
771 .args_type = "device:B,speed:o",
772 .mhandler.cmd_new = qmp_marshal_input_block_job_set_speed,
776 .name = "block-job-cancel",
777 .args_type = "device:B",
778 .mhandler.cmd_new = qmp_marshal_input_block_job_cancel,
781 .name = "transaction",
782 .args_type = "actions:q",
783 .mhandler.cmd_new = qmp_marshal_input_transaction,
790 Atomically operate on one or more block devices. The only supported
791 operation for now is snapshotting. If there is any failure performing
792 any of the operations, all snapshots for the group are abandoned, and
793 the original disks pre-snapshot attempt are used.
795 A list of dictionaries is accepted, that contains the actions to be performed.
796 For snapshots this is the device, the file to use for the new snapshot,
797 and the format. The default format, if not specified, is qcow2.
799 Each new snapshot defaults to being created by QEMU (wiping any
800 contents if the file already exists), but it is also possible to reuse
801 an externally-created file. In the latter case, you should ensure that
802 the new image file has the same contents as the current one; QEMU cannot
803 perform any meaningful check. Typically this is achieved by using the
804 current image file as the backing file for the new image.
809 - "type": the operation to perform. The only supported
810 value is "blockdev-snapshot-sync". (json-string)
811 - "data": a dictionary. The contents depend on the value
812 of "type". When "type" is "blockdev-snapshot-sync":
813 - "device": device name to snapshot (json-string)
814 - "snapshot-file": name of new image file (json-string)
815 - "format": format of new image (json-string, optional)
816 - "mode": whether and how QEMU should create the snapshot file
817 (NewImageMode, optional, default "absolute-paths")
821 -> { "execute": "transaction",
822 "arguments": { "actions": [
823 { 'type
': 'blockdev
-snapshot
-sync
', 'data
' : { "device": "ide-hd0",
824 "snapshot-file": "/some/place/my-image",
825 "format": "qcow2" } },
826 { 'type
': 'blockdev
-snapshot
-sync
', 'data
' : { "device": "ide-hd1",
827 "snapshot-file": "/some/place/my-image2",
829 "format": "qcow2" } } ] } }
835 .name = "blockdev-snapshot-sync",
836 .args_type = "device:B,snapshot-file:s,format:s?,mode:s?",
837 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_sync,
841 blockdev-snapshot-sync
842 ----------------------
844 Synchronous snapshot of a block device. snapshot-file specifies the
845 target of the new image. If the file exists, or if it is a device, the
846 snapshot will be created in the existing file/device. If does not
847 exist, a new file will be created. format specifies the format of the
848 snapshot image, default is qcow2.
852 - "device": device name to snapshot (json-string)
853 - "snapshot-file": name of new image file (json-string)
854 - "mode": whether and how QEMU should create the snapshot file
855 (NewImageMode, optional, default "absolute-paths")
856 - "format": format of new image (json-string, optional)
860 -> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
862 "/some/place/my-image",
863 "format": "qcow2" } }
870 .args_type = "value:M",
871 .mhandler.cmd_new = qmp_marshal_input_balloon,
878 Request VM to change its memory allocation (in bytes).
882 - "value": New memory allocation (json-int)
886 -> { "execute": "balloon", "arguments": { "value": 536870912 } }
893 .args_type = "name:s,up:b",
894 .mhandler.cmd_new = qmp_marshal_input_set_link,
901 Change the link status of a network adapter.
905 - "name": network device name (json-string)
906 - "up": status is up (json-bool)
910 -> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
917 .args_type = "fdname:s",
918 .params = "getfd name",
919 .help = "receive a file descriptor via SCM rights and assign it a name",
920 .mhandler.cmd_new = qmp_marshal_input_getfd,
927 Receive a file descriptor via SCM rights and assign it a name.
931 - "fdname": file descriptor name (json-string)
935 -> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
940 (1) If the name specified by the "fdname" argument already exists,
941 the file descriptor assigned to it will be closed and replaced
942 by the received file descriptor.
943 (2) The 'closefd
' command can be used to explicitly close the file
944 descriptor when it is no longer needed.
950 .args_type = "fdname:s",
951 .params = "closefd name",
952 .help = "close a file descriptor previously passed via SCM rights",
953 .mhandler.cmd_new = qmp_marshal_input_closefd,
960 Close a file descriptor previously passed via SCM rights.
964 - "fdname": file descriptor name (json-string)
968 -> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
975 .args_type = "fdset-id:i?,opaque:s?",
976 .params = "add-fd fdset-id opaque",
977 .help = "Add a file descriptor, that was passed via SCM rights, to an fd set",
978 .mhandler.cmd_new = qmp_marshal_input_add_fd,
985 Add a file descriptor, that was passed via SCM rights, to an fd set.
989 - "fdset-id": The ID of the fd set to add the file descriptor to.
991 - "opaque": A free-form string that can be used to describe the fd.
992 (json-string, optional)
994 Return a json-object with the following information:
996 - "fdset-id": The ID of the fd set that the fd was added to. (json-int)
997 - "fd": The file descriptor that was received via SCM rights and added to the
1002 -> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
1003 <- { "return": { "fdset-id": 1, "fd": 3 } }
1007 (1) The list of fd sets is shared by all monitor connections.
1008 (2) If "fdset-id" is not specified, a new fd set will be created.
1013 .name = "remove-fd",
1014 .args_type = "fdset-id:i,fd:i?",
1015 .params = "remove-fd fdset-id fd",
1016 .help = "Remove a file descriptor from an fd set",
1017 .mhandler.cmd_new = qmp_marshal_input_remove_fd,
1024 Remove a file descriptor from an fd set.
1028 - "fdset-id": The ID of the fd set that the file descriptor belongs to.
1030 - "fd": The file descriptor that is to be removed. (json-int, optional)
1034 -> { "execute": "remove-fd", "arguments": { "fdset-id": 1, "fd": 3 } }
1039 (1) The list of fd sets is shared by all monitor connections.
1040 (2) If "fd" is not specified, all file descriptors in "fdset-id" will be
1046 .name = "query-fdsets",
1048 .help = "Return information describing all fd sets",
1049 .mhandler.cmd_new = qmp_marshal_input_query_fdsets,
1056 Return information describing all fd sets.
1062 -> { "execute": "query-fdsets" }
1068 "opaque": "rdonly:/path/to/file"
1072 "opaque": "rdwr:/path/to/file"
1091 Note: The list of fd sets is shared by all monitor connections.
1096 .name = "block_passwd",
1097 .args_type = "device:B,password:s",
1098 .mhandler.cmd_new = qmp_marshal_input_block_passwd,
1105 Set the password of encrypted block devices.
1109 - "device": device name (json-string)
1110 - "password": password (json-string)
1114 -> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
1115 "password": "12345" } }
1121 .name = "block_set_io_throttle",
1122 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1123 .mhandler.cmd_new = qmp_marshal_input_block_set_io_throttle,
1127 block_set_io_throttle
1130 Change I/O throttle limits for a block drive.
1134 - "device": device name (json-string)
1135 - "bps": total throughput limit in bytes per second(json-int)
1136 - "bps_rd": read throughput limit in bytes per second(json-int)
1137 - "bps_wr": read throughput limit in bytes per second(json-int)
1138 - "iops": total I/O operations per second(json-int)
1139 - "iops_rd": read I/O operations per second(json-int)
1140 - "iops_wr": write I/O operations per second(json-int)
1144 -> { "execute": "block_set_io_throttle", "arguments": { "device": "virtio0",
1156 .name = "set_password",
1157 .args_type = "protocol:s,password:s,connected:s?",
1158 .mhandler.cmd_new = qmp_marshal_input_set_password,
1165 Set the password for vnc/spice protocols.
1169 - "protocol": protocol name (json-string)
1170 - "password": password (json-string)
1171 - "connected": [ keep | disconnect | fail ] (josn-string, optional)
1175 -> { "execute": "set_password", "arguments": { "protocol": "vnc",
1176 "password": "secret" } }
1182 .name = "expire_password",
1183 .args_type = "protocol:s,time:s",
1184 .mhandler.cmd_new = qmp_marshal_input_expire_password,
1191 Set the password expire time for vnc/spice protocols.
1195 - "protocol": protocol name (json-string)
1196 - "time": [ now | never | +secs | secs ] (json-string)
1200 -> { "execute": "expire_password", "arguments": { "protocol": "vnc",
1207 .name = "add_client",
1208 .args_type = "protocol:s,fdname:s,skipauth:b?,tls:b?",
1209 .params = "protocol fdname skipauth tls",
1210 .help = "add a graphics client",
1211 .user_print = monitor_user_noop,
1212 .mhandler.cmd_new = add_graphics_client,
1219 Add a graphics client
1223 - "protocol": protocol name (json-string)
1224 - "fdname": file descriptor name (json-string)
1225 - "skipauth": whether to skip authentication (json-bool, optional)
1226 - "tls": whether to perform TLS (json-bool, optional)
1230 -> { "execute": "add_client", "arguments": { "protocol": "vnc",
1231 "fdname": "myclient" } }
1236 .name = "qmp_capabilities",
1239 .help = "enable QMP capabilities",
1240 .user_print = monitor_user_noop,
1241 .mhandler.cmd_new = do_qmp_capabilities,
1248 Enable QMP capabilities.
1254 -> { "execute": "qmp_capabilities" }
1257 Note: This command must be issued before issuing any other command.
1262 .name = "human-monitor-command",
1263 .args_type = "command-line:s,cpu-index:i?",
1264 .mhandler.cmd_new = qmp_marshal_input_human_monitor_command,
1268 human-monitor-command
1269 ---------------------
1271 Execute a Human Monitor command.
1275 - command-line: the command name and its arguments, just like the
1276 Human Monitor's
shell (json
-string
)
1277 - cpu
-index
: select the CPU number to be used by commands which access CPU
1278 data
, like
'info registers'. The Monitor selects CPU
0 if this
1279 argument is not
provided (json
-int
, optional
)
1283 -> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1284 <- { "return": "kvm support: enabled\r\n" }
1288 (1) The Human Monitor is NOT an stable
interface, this means that command
1289 names
, arguments and responses can change or be removed at ANY time
.
1290 Applications that rely on long term stability guarantees should NOT
1295 o This command is stateless
, this means that commands that depend
1296 on state
information (such as getfd
) might not work
1298 o Commands that prompt the user
for data (eg
. 'cont' when the block
1299 device is encrypted
) don
't currently work
1304 HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1305 HXCOMM this! We will possibly move query commands definitions inside those
1306 HXCOMM sections, just like regular commands.
1316 Return a json-object with the following information:
1318 - "qemu": A json-object containing three integer values:
1319 - "major": QEMU's major
version (json
-int
)
1320 - "minor": QEMU
's minor version (json-int)
1321 - "micro": QEMU's micro
version (json
-int
)
1322 - "package": package's version (json-string)
1326 -> { "execute": "query-version" }
1341 .name = "query-version",
1343 .mhandler.cmd_new = qmp_marshal_input_query_version,
1350 List QMP available commands.
1352 Each command is represented by a json-object, the returned value is a json-array
1355 Each json-object contain:
1357 - "name": command's
name (json
-string
)
1361 -> { "execute": "query-commands" }
1365 "name":"query-balloon"
1368 "name":"system_powerdown"
1373 Note
: This example has been shortened as the real response is too long
.
1378 .name
= "query-commands",
1380 .mhandler
.cmd_new
= qmp_marshal_input_query_commands
,
1387 List QMP available events
.
1389 Each event is represented by a json
-object
, the returned value is a json
-array
1392 Each json
-object contains
:
1394 - "name": event
's name (json-string)
1398 -> { "execute": "query-events" }
1410 Note: This example has been shortened as the real response is too long.
1415 .name = "query-events",
1417 .mhandler.cmd_new = qmp_marshal_input_query_events,
1424 Each device is represented by a json-object. The returned value is a json-array
1427 Each json-object contain the following:
1429 - "label": device's
label (json
-string
)
1430 - "filename": device
's file (json-string)
1434 -> { "execute": "query-chardev" }
1451 .name = "query-chardev",
1453 .mhandler.cmd_new = qmp_marshal_input_query_chardev,
1460 Show the block devices.
1462 Each block device information is stored in a json-object and the returned value
1463 is a json-array of all devices.
1465 Each json-object contain the following:
1467 - "device": device name (json-string)
1468 - "type": device type (json-string)
1469 - deprecated, retained for backward compatibility
1470 - Possible values: "unknown"
1471 - "removable": true if the device is removable, false otherwise (json-bool)
1472 - "locked": true if the device is locked, false otherwise (json-bool)
1473 - "tray-open": only present if removable, true if the device has a tray,
1474 and it is open (json-bool)
1475 - "inserted": only present if the device is inserted, it is a json-object
1476 containing the following:
1477 - "file": device file name (json-string)
1478 - "ro": true if read-only, false otherwise (json-bool)
1479 - "drv": driver format name (json-string)
1480 - Possible values: "blkdebug", "bochs", "cloop", "cow", "dmg",
1481 "file", "file", "ftp", "ftps", "host_cdrom",
1482 "host_device", "host_floppy", "http", "https",
1483 "nbd", "parallels", "qcow", "qcow2", "raw",
1484 "tftp", "vdi", "vmdk", "vpc", "vvfat"
1485 - "backing_file": backing file name (json-string, optional)
1486 - "backing_file_depth": number of files in the backing file chain (json-int)
1487 - "encrypted": true if encrypted, false otherwise (json-bool)
1488 - "bps": limit total bytes per second (json-int)
1489 - "bps_rd": limit read bytes per second (json-int)
1490 - "bps_wr": limit write bytes per second (json-int)
1491 - "iops": limit total I/O operations per second (json-int)
1492 - "iops_rd": limit read operations per second (json-int)
1493 - "iops_wr": limit write operations per second (json-int)
1495 - "io-status": I/O operation status, only present if the device supports it
1496 and the VM is configured to stop on errors. It's always reset
1497 to
"ok" when the
"cont" command is
issued (json_string
, optional
)
1498 - Possible values
: "ok", "failed", "nospace"
1502 -> { "execute": "query-block" }
1507 "device":"ide0-hd0",
1514 "file":"disks/test.img",
1515 "backing_file_depth":0,
1527 "device":"ide1-cd0",
1550 .name
= "query-block",
1552 .mhandler
.cmd_new
= qmp_marshal_input_query_block
,
1559 Show block device statistics
.
1561 Each device statistic information is stored
in a json
-object and the returned
1562 value is a json
-array of all devices
.
1564 Each json
-object contain the following
:
1566 - "device": device
name (json
-string
)
1567 - "stats": A json
-object with the statistics information
, it contains
:
1568 - "rd_bytes": bytes
read (json
-int
)
1569 - "wr_bytes": bytes
written (json
-int
)
1570 - "rd_operations": read
operations (json
-int
)
1571 - "wr_operations": write
operations (json
-int
)
1572 - "flush_operations": cache flush
operations (json
-int
)
1573 - "wr_total_time_ns": total time spend on writes
in nano
-seconds (json
-int
)
1574 - "rd_total_time_ns": total time spend on reads
in nano
-seconds (json
-int
)
1575 - "flush_total_time_ns": total time spend on cache flushes
in nano
-seconds (json
-int
)
1576 - "wr_highest_offset": Highest offset of a sector written since the
1577 BlockDriverState has been
opened (json
-int
)
1578 - "parent": Contains recursively the statistics of the underlying
1579 protocol (e
.g
. the host file
for a qcow2 image
). If there is
1580 no underlying protocol
, this field is omitted
1581 (json
-object
, optional
)
1585 -> { "execute": "query-blockstats" }
1589 "device":"ide0-hd0",
1592 "wr_highest_offset":3686448128,
1594 "wr_operations":751,
1595 "rd_bytes":122567168,
1596 "rd_operations":36772
1597 "wr_total_times_ns":313253456
1598 "rd_total_times_ns":3465673657
1599 "flush_total_times_ns":49653
1600 "flush_operations":61,
1604 "wr_highest_offset":2821110784,
1606 "wr_operations":692,
1607 "rd_bytes":122739200,
1608 "rd_operations":36604
1609 "flush_operations":51,
1610 "wr_total_times_ns":313253456
1611 "rd_total_times_ns":3465673657
1612 "flush_total_times_ns":49653
1616 "device":"ide1-cd0",
1618 "wr_highest_offset":0,
1623 "flush_operations":0,
1624 "wr_total_times_ns":0
1625 "rd_total_times_ns":0
1626 "flush_total_times_ns":0
1632 "wr_highest_offset":0,
1637 "flush_operations":0,
1638 "wr_total_times_ns":0
1639 "rd_total_times_ns":0
1640 "flush_total_times_ns":0
1646 "wr_highest_offset":0,
1651 "flush_operations":0,
1652 "wr_total_times_ns":0
1653 "rd_total_times_ns":0
1654 "flush_total_times_ns":0
1663 .name
= "query-blockstats",
1665 .mhandler
.cmd_new
= qmp_marshal_input_query_blockstats
,
1672 Show CPU information
.
1674 Return a json
-array
. Each CPU is represented by a json
-object
, which contains
:
1676 - "CPU": CPU
index (json
-int
)
1677 - "current": true if this is the current CPU
, false otherwise (json
-bool
)
1678 - "halted": true if the cpu is halted
, false otherwise (json
-bool
)
1679 - Current program counter
. The key
's name depends on the architecture:
1680 "pc": i386/x86_64 (json-int)
1681 "nip": PPC (json-int)
1682 "pc" and "npc": sparc (json-int)
1683 "PC": mips (json-int)
1684 - "thread_id": ID of the underlying host thread (json-int)
1688 -> { "execute": "query-cpus" }
1711 .name = "query-cpus",
1713 .mhandler.cmd_new = qmp_marshal_input_query_cpus,
1720 PCI buses and devices information.
1722 The returned value is a json-array of all buses. Each bus is represented by
1723 a json-object, which has a key with a json-array of all PCI devices attached
1724 to it. Each device is represented by a json-object.
1726 The bus json-object contains the following:
1728 - "bus": bus number (json-int)
1729 - "devices": a json-array of json-objects, each json-object represents a
1732 The PCI device json-object contains the following:
1734 - "bus": identical to the parent's bus
number (json
-int
)
1735 - "slot": slot
number (json
-int
)
1736 - "function": function number (json
-int
)
1737 - "class_info": a json
-object containing
:
1738 - "desc": device
class description (json
-string
, optional
)
1739 - "class": device
class number (json
-int
)
1740 - "id": a json
-object containing
:
1741 - "device": device
ID (json
-int
)
1742 - "vendor": vendor
ID (json
-int
)
1743 - "irq": device
's IRQ if assigned (json-int, optional)
1744 - "qdev_id": qdev id string (json-string)
1745 - "pci_bridge": It's a json
-object
, only present
if this device is a
1746 PCI bridge
, contains
:
1747 - "bus": bus
number (json
-int
)
1748 - "secondary": secondary bus
number (json
-int
)
1749 - "subordinate": subordinate bus
number (json
-int
)
1750 - "io_range": I
/O memory range information
, a json
-object with the
1752 - "base": base address
, in bytes (json
-int
)
1753 - "limit": limit address
, in bytes (json
-int
)
1754 - "memory_range": memory range information
, a json
-object with the
1756 - "base": base address
, in bytes (json
-int
)
1757 - "limit": limit address
, in bytes (json
-int
)
1758 - "prefetchable_range": Prefetchable memory range information
, a
1759 json
-object with the following members
:
1760 - "base": base address
, in bytes (json
-int
)
1761 - "limit": limit address
, in bytes (json
-int
)
1762 - "devices": a json
-array of PCI devices
if there
's any attached, each
1763 each element is represented by a json-object, which contains
1764 the same members of the 'PCI device json
-object
' described
1766 - "regions": a json-array of json-objects, each json-object represents a
1767 memory region of this device
1769 The memory range json-object contains the following:
1771 - "base": base memory address (json-int)
1772 - "limit": limit value (json-int)
1774 The region json-object can be an I/O region or a memory region, an I/O region
1775 json-object contains the following:
1777 - "type": "io" (json-string, fixed)
1778 - "bar": BAR number (json-int)
1779 - "address": memory address (json-int)
1780 - "size": memory size (json-int)
1782 A memory region json-object contains the following:
1784 - "type": "memory" (json-string, fixed)
1785 - "bar": BAR number (json-int)
1786 - "address": memory address (json-int)
1787 - "size": memory size (json-int)
1788 - "mem_type_64": true or false (json-bool)
1789 - "prefetch": true or false (json-bool)
1793 -> { "execute": "query-pci" }
1805 "desc":"Host bridge"
1839 "desc":"IDE controller"
1861 "desc":"VGA controller"
1871 "mem_type_64":false,
1874 "address":4026531840,
1879 "mem_type_64":false,
1882 "address":4060086272,
1887 "mem_type_64":false,
1902 "desc":"RAM controller"
1923 Note: This example has been shortened as the real response is too long.
1928 .name = "query-pci",
1930 .mhandler.cmd_new = qmp_marshal_input_query_pci,
1937 Show KVM information.
1939 Return a json-object with the following information:
1941 - "enabled": true if KVM support is enabled, false otherwise (json-bool)
1942 - "present": true if QEMU has KVM support, false otherwise (json-bool)
1946 -> { "execute": "query-kvm" }
1947 <- { "return": { "enabled": true, "present": true } }
1952 .name = "query-kvm",
1954 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
1961 Return a json-object with the following information:
1963 - "running": true if the VM is running, or false if it is paused (json-bool)
1964 - "singlestep": true if the VM is in single step mode,
1965 false otherwise (json-bool)
1966 - "status": one of the following values (json-string)
1967 "debug" - QEMU is running on a debugger
1968 "inmigrate" - guest is paused waiting for an incoming migration
1969 "internal-error" - An internal error that prevents further guest
1970 execution has occurred
1971 "io-error" - the last IOP has failed and the device is configured
1972 to pause on I/O errors
1973 "paused" - guest has been paused via the 'stop
' command
1974 "postmigrate" - guest is paused following a successful 'migrate
'
1975 "prelaunch" - QEMU was started with -S and guest has not started
1976 "finish-migrate" - guest is paused to finish the migration process
1977 "restore-vm" - guest is paused to restore VM state
1978 "running" - guest is actively running
1979 "save-vm" - guest is paused to save the VM state
1980 "shutdown" - guest is shut down (and -no-shutdown is in use)
1981 "watchdog" - the watchdog action is configured to pause and
1986 -> { "execute": "query-status" }
1987 <- { "return": { "running": true, "singlestep": false, "status": "running" } }
1992 .name = "query-status",
1994 .mhandler.cmd_new = qmp_marshal_input_query_status,
2001 Show VM mice information.
2003 Each mouse is represented by a json-object, the returned value is a json-array
2006 The mouse json-object contains the following:
2008 - "name": mouse's
name (json
-string
)
2009 - "index": mouse
's index (json-int)
2010 - "current": true if this mouse is receiving events, false otherwise (json-bool)
2011 - "absolute": true if the mouse generates absolute input events (json-bool)
2015 -> { "execute": "query-mice" }
2019 "name":"QEMU Microsoft Mouse",
2025 "name":"QEMU PS/2 Mouse",
2036 .name = "query-mice",
2038 .mhandler.cmd_new = qmp_marshal_input_query_mice,
2045 Show VNC server information.
2047 Return a json-object with server information. Connected clients are returned
2048 as a json-array of json-objects.
2050 The main json-object contains the following:
2052 - "enabled": true or false (json-bool)
2053 - "host": server's IP
address (json
-string
)
2054 - "family": address
family (json
-string
)
2055 - Possible values
: "ipv4", "ipv6", "unix", "unknown"
2056 - "service": server
's port number (json-string)
2057 - "auth": authentication method (json-string)
2058 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
2059 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
2060 "vencrypt+plain", "vencrypt+tls+none",
2061 "vencrypt+tls+plain", "vencrypt+tls+sasl",
2062 "vencrypt+tls+vnc", "vencrypt+x509+none",
2063 "vencrypt+x509+plain", "vencrypt+x509+sasl",
2064 "vencrypt+x509+vnc", "vnc"
2065 - "clients": a json-array of all connected clients
2067 Clients are described by a json-object, each one contain the following:
2069 - "host": client's IP
address (json
-string
)
2070 - "family": address
family (json
-string
)
2071 - Possible values
: "ipv4", "ipv6", "unix", "unknown"
2072 - "service": client
's port number (json-string)
2073 - "x509_dname": TLS dname (json-string, optional)
2074 - "sasl_username": SASL username (json-string, optional)
2078 -> { "execute": "query-vnc" }
2099 .name = "query-vnc",
2101 .mhandler.cmd_new = qmp_marshal_input_query_vnc,
2108 Show SPICE server information.
2110 Return a json-object with server information. Connected clients are returned
2111 as a json-array of json-objects.
2113 The main json-object contains the following:
2115 - "enabled": true or false (json-bool)
2116 - "host": server's IP
address (json
-string
)
2117 - "port": server
's port number (json-int, optional)
2118 - "tls-port": server's port
number (json
-int
, optional
)
2119 - "auth": authentication
method (json
-string
)
2120 - Possible values
: "none", "spice"
2121 - "channels": a json
-array of all active channels clients
2123 Channels are described by a json
-object
, each one contain the following
:
2125 - "host": client
's IP address (json-string)
2126 - "family": address family (json-string)
2127 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2128 - "port": client's port
number (json
-string
)
2129 - "connection-id": spice connection id
. All channels with the same id
2130 belong to the same spice
session (json
-int
)
2131 - "channel-type": channel type
. "1" is the main control channel
, filter
for
2132 this one
if you want track spice sessions
only (json
-int
)
2133 - "channel-id": channel id
. Usually
"0", might be different needed when
2134 multiple channels of the same type exist
, such as multiple
2135 display channels
in a multihead
setup (json
-int
)
2136 - "tls": whevener the channel is
encrypted (json
-bool
)
2140 -> { "execute": "query-spice" }
2153 "connection-id": 1804289383,
2154 "host": "127.0.0.1",
2162 "connection-id": 1804289383,
2163 "host": "127.0.0.1",
2167 [ ... more channels follow
... ]
2174 #
if defined(CONFIG_SPICE
)
2176 .name
= "query-spice",
2178 .mhandler
.cmd_new
= qmp_marshal_input_query_spice
,
2188 Return a json
-object with the following information
:
2190 - "name": VM
's name (json-string, optional)
2194 -> { "execute": "query-name" }
2195 <- { "return": { "name": "qemu-name" } }
2200 .name = "query-name",
2202 .mhandler.cmd_new = qmp_marshal_input_query_name,
2211 Return a json-object with the following information:
2213 - "UUID": Universally Unique Identifier (json-string)
2217 -> { "execute": "query-uuid" }
2218 <- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
2223 .name = "query-uuid",
2225 .mhandler.cmd_new = qmp_marshal_input_query_uuid,
2234 Return a json-object. If migration is active there will be another json-object
2235 with RAM migration status and if block migration is active another one with
2236 block migration status.
2238 The main json-object contains the following:
2240 - "status": migration status (json-string)
2241 - Possible values: "active", "completed", "failed", "cancelled"
2242 - "total-time": total amount of ms since migration started. If
2243 migration has ended, it returns the total migration
2245 - "ram": only present if "status" is "active", it is a json-object with the
2246 following RAM information (in bytes):
2247 - "transferred": amount transferred (json-int)
2248 - "remaining": amount remaining (json-int)
2249 - "total": total (json-int)
2250 - "duplicate": number of duplicated pages (json-int)
2251 - "normal" : number of normal pages transferred (json-int)
2252 - "normal-bytes" : number of normal bytes transferred (json-int)
2253 - "disk": only present if "status" is "active" and it is a block migration,
2254 it is a json-object with the following disk information (in bytes):
2255 - "transferred": amount transferred (json-int)
2256 - "remaining": amount remaining (json-int)
2257 - "total": total (json-int)
2258 - "xbzrle-cache": only present if XBZRLE is active.
2259 It is a json-object with the following XBZRLE information:
2260 - "cache-size": XBZRLE cache size
2261 - "bytes": total XBZRLE bytes transferred
2262 - "pages": number of XBZRLE compressed pages
2263 - "cache-miss": number of cache misses
2264 - "overflow": number of XBZRLE overflows
2267 1. Before the first migration
2269 -> { "execute": "query-migrate" }
2272 2. Migration is done and has succeeded
2274 -> { "execute": "query-migrate" }
2276 "status": "completed",
2284 "normal-bytes":123456
2289 3. Migration is done and has failed
2291 -> { "execute": "query-migrate" }
2292 <- { "return": { "status": "failed" } }
2294 4. Migration is being performed and is not a block migration:
2296 -> { "execute": "query-migrate" }
2307 "normal-bytes":123456
2312 5. Migration is being performed and is a block migration:
2314 -> { "execute": "query-migrate" }
2320 "remaining":1053304,
2325 "normal-bytes":123456
2329 "remaining":20880384,
2335 6. Migration is being performed and XBZRLE is active:
2337 -> { "execute": "query-migrate" }
2341 "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
2344 "remaining":1053304,
2349 "normal-bytes":3412992
2352 "cache-size":67108864,
2364 .name = "query-migrate",
2366 .mhandler.cmd_new = qmp_marshal_input_query_migrate,
2370 migrate-set-capabilities
2373 Enable/Disable migration capabilities
2375 - "xbzrle": xbzrle support
2381 -> { "execute": "migrate-set-capabilities" , "arguments":
2382 { "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
2387 .name = "migrate-set-capabilities",
2388 .args_type = "capabilities:O",
2389 .params = "capability:s,state:b",
2390 .mhandler.cmd_new = qmp_marshal_input_migrate_set_capabilities,
2393 query-migrate-capabilities
2396 Query current migration capabilities
2398 - "capabilities": migration capabilities state
2399 - "xbzrle" : XBZRLE state (json-bool)
2405 -> { "execute": "query-migrate-capabilities" }
2407 "capabilities" : [ { "capability" : "xbzrle", "state" : false } ]
2413 .name = "query-migrate-capabilities",
2415 .mhandler.cmd_new = qmp_marshal_input_query_migrate_capabilities,
2422 Show balloon information.
2424 Make an asynchronous request for balloon info. When the request completes a
2425 json-object will be returned containing the following data:
2427 - "actual": current balloon value in bytes (json-int)
2428 - "mem_swapped_in": Amount of memory swapped in bytes (json-int, optional)
2429 - "mem_swapped_out": Amount of memory swapped out in bytes (json-int, optional)
2430 - "major_page_faults": Number of major faults (json-int, optional)
2431 - "minor_page_faults": Number of minor faults (json-int, optional)
2432 - "free_mem": Total amount of free and unused memory in
2433 bytes (json-int, optional)
2434 - "total_mem": Total amount of available memory in bytes (json-int, optional)
2438 -> { "execute": "query-balloon" }
2441 "actual":1073741824,
2443 "mem_swapped_out":0,
2444 "major_page_faults":142,
2445 "minor_page_faults":239245,
2446 "free_mem":1014185984,
2447 "total_mem":1044668416
2454 .name = "query-balloon",
2456 .mhandler.cmd_new = qmp_marshal_input_query_balloon,
2460 .name = "query-block-jobs",
2462 .mhandler.cmd_new = qmp_marshal_input_query_block_jobs,
2467 .args_type = "path:s",
2468 .mhandler.cmd_new = qmp_marshal_input_qom_list,
2473 .args_type = "path:s,property:s,value:q",
2474 .mhandler.cmd_new = qmp_qom_set,
2479 .args_type = "path:s,property:s",
2480 .mhandler.cmd_new = qmp_qom_get,
2484 .name = "change-vnc-password",
2485 .args_type = "password:s",
2486 .mhandler.cmd_new = qmp_marshal_input_change_vnc_password,
2489 .name = "qom-list-types",
2490 .args_type = "implements:s?,abstract:b?",
2491 .mhandler.cmd_new = qmp_marshal_input_qom_list_types,
2495 .name = "device-list-properties",
2496 .args_type = "typename:s",
2497 .mhandler.cmd_new = qmp_marshal_input_device_list_properties,
2501 .name = "query-machines",
2503 .mhandler.cmd_new = qmp_marshal_input_query_machines,
2507 .name = "query-cpu-definitions",
2509 .mhandler.cmd_new = qmp_marshal_input_query_cpu_definitions,
2513 .name = "query-target",
2515 .mhandler.cmd_new = qmp_marshal_input_query_target,