qmp-commands: move 'x-blockdev-change' doc to schema
[qemu/kevin.git] / docs / qmp-commands.txt
blob7870756abc1b9096f12572f9ea22031f224bf67d
1                         QMP Supported Commands
2                         ----------------------
4 This document describes all commands currently supported by QMP.
6 Most of the time their usage is exactly the same as in the user Monitor, this
7 means that any other document which also describe commands (the manpage,
8 QEMU's manual, etc) can and should be consulted.
10 QMP has two types of commands: regular and query commands. Regular commands
11 usually change the Virtual Machine's state someway, while query commands just
12 return information. The sections below are divided accordingly.
14 It's important to observe that all communication examples are formatted in
15 a reader-friendly way, so that they're easier to understand. However, in real
16 protocol usage, they're emitted as a single line.
18 Also, the following notation is used to denote data flow:
20 -> data issued by the Client
21 <- Server data response
23 Please, refer to the QMP specification (docs/qmp-spec.txt) for detailed
24 information on the Server command and response formats.
26 NOTE: This document is temporary and will be replaced soon.
28 1. Stability Considerations
29 ===========================
31 The current QMP command set (described in this file) may be useful for a
32 number of use cases, however it's limited and several commands have bad
33 defined semantics, specially with regard to command completion.
35 These problems are going to be solved incrementally in the next QEMU releases
36 and we're going to establish a deprecation policy for badly defined commands.
38 If you're planning to adopt QMP, please observe the following:
40     1. The deprecation policy will take effect and be documented soon, please
41        check the documentation of each used command as soon as a new release of
42        QEMU is available
44     2. DO NOT rely on anything which is not explicit documented
46     3. Errors, in special, are not documented. Applications should NOT check
47        for specific errors classes or data (it's strongly recommended to only
48        check for the "error" key)
50 2. Regular Commands
51 ===================
53 Server's responses in the examples below are always a success response, please
54 refer to the QMP specification for more details on error responses.
56 device_add
57 ----------
59 Add a device.
61 Arguments:
63 - "driver": the name of the new device's driver (json-string)
64 - "bus": the device's parent bus (device tree path, json-string, optional)
65 - "id": the device's ID, must be unique (json-string)
66 - device properties
68 Example:
70 -> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
71 <- { "return": {} }
73 Notes:
75 (1) For detailed information about this command, please refer to the
76     'docs/qdev-device-use.txt' file.
78 (2) It's possible to list device properties by running QEMU with the
79     "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
81 cpu
82 ---
84 Set the default CPU.
86 Arguments:
88 - "index": the CPU's index (json-int)
90 Example:
92 -> { "execute": "cpu", "arguments": { "index": 0 } }
93 <- { "return": {} }
95 Note: CPUs' indexes are obtained with the 'query-cpus' command.
97 xen-load-devices-state
98 ----------------------
100 Load the state of all devices from file. The RAM and the block devices
101 of the VM are not loaded by this command.
103 Arguments:
105 - "filename": the file to load the state of the devices from as binary
106 data. See xen-save-devices-state.txt for a description of the binary
107 format.
109 Example:
111 -> { "execute": "xen-load-devices-state",
112      "arguments": { "filename": "/tmp/resume" } }
113 <- { "return": {} }
115 migrate-set-cache-size
116 ----------------------
118 Set cache size to be used by XBZRLE migration, the cache size will be rounded
119 down to the nearest power of 2
121 Arguments:
123 - "value": cache size in bytes (json-int)
125 Example:
127 -> { "execute": "migrate-set-cache-size", "arguments": { "value": 536870912 } }
128 <- { "return": {} }
130 x-colo-lost-heartbeat
131 --------------------
133 Tell COLO that heartbeat is lost, a failover or takeover is needed.
135 Example:
137 -> { "execute": "x-colo-lost-heartbeat" }
138 <- { "return": {} }
140 query-dump
141 ----------
143 Query background dump status.
145 Arguments: None.
147 Example:
149 -> { "execute": "query-dump" }
150 <- { "return": { "status": "active", "completed": 1024000,
151                  "total": 2048000 } }
153 blockdev-mirror
154 ------------
156 Start mirroring a block device's writes to another block device. target
157 specifies the target of mirror operation.
159 Arguments:
161 - "job-id": Identifier for the newly-created block job. If omitted,
162             the device name will be used. (json-string, optional)
163 - "device": The device name or node-name of a root node whose writes should be
164             mirrored (json-string)
165 - "target": device name to mirror to (json-string)
166 - "replaces": the block driver node name to replace when finished
167               (json-string, optional)
168 - "speed": maximum speed of the streaming job, in bytes per second
169   (json-int)
170 - "granularity": granularity of the dirty bitmap, in bytes (json-int, optional)
171 - "buf_size": maximum amount of data in flight from source to target, in bytes
172   (json-int, default 10M)
173 - "sync": what parts of the disk image should be copied to the destination;
174   possibilities include "full" for all the disk, "top" for only the sectors
175   allocated in the topmost image, or "none" to only replicate new I/O
176   (MirrorSyncMode).
177 - "on-source-error": the action to take on an error on the source
178   (BlockdevOnError, default 'report')
179 - "on-target-error": the action to take on an error on the target
180   (BlockdevOnError, default 'report')
182 The default value of the granularity is the image cluster size clamped
183 between 4096 and 65536, if the image format defines one.  If the format
184 does not define a cluster size, the default value of the granularity
185 is 65536.
187 Example:
189 -> { "execute": "blockdev-mirror", "arguments": { "device": "ide-hd0",
190                                                   "target": "target0",
191                                                   "sync": "full" } }
192 <- { "return": {} }
194 qmp_capabilities
195 ----------------
197 Enable QMP capabilities.
199 Arguments: None.
201 Example:
203 -> { "execute": "qmp_capabilities" }
204 <- { "return": {} }
206 Note: This command must be issued before issuing any other command.
208 3. Query Commands
209 =================
212 query-qmp-schema
213 ----------------
215 Return the QMP wire schema.  The returned value is a json-array of
216 named schema entities.  Entities are commands, events and various
217 types.  See docs/qapi-code-gen.txt for information on their structure
218 and intended use.