]>
Commit | Line | Data |
---|---|---|
715c1860 | 1 | QEMU Machine Protocol Specification |
f544d174 | 2 | |
6fb55451 EB |
3 | 0. About This Document |
4 | ====================== | |
5 | ||
6 | Copyright (C) 2009-2015 Red Hat, Inc. | |
7 | ||
8 | This work is licensed under the terms of the GNU GPL, version 2 or | |
9 | later. See the COPYING file in the top-level directory. | |
10 | ||
f544d174 LC |
11 | 1. Introduction |
12 | =============== | |
13 | ||
e790e666 EB |
14 | This document specifies the QEMU Machine Protocol (QMP), a JSON-based |
15 | protocol which is available for applications to operate QEMU at the | |
16 | machine-level. It is also in use by the QEMU Guest Agent (QGA), which | |
17 | is available for host applications to interact with the guest | |
18 | operating system. | |
f544d174 LC |
19 | |
20 | 2. Protocol Specification | |
21 | ========================= | |
22 | ||
23 | This section details the protocol format. For the purpose of this document | |
715c1860 LC |
24 | "Client" is any application which is using QMP to communicate with QEMU and |
25 | "Server" is QEMU itself. | |
f544d174 LC |
26 | |
27 | JSON data structures, when mentioned in this document, are always in the | |
28 | following format: | |
29 | ||
30 | json-DATA-STRUCTURE-NAME | |
31 | ||
e790e666 EB |
32 | Where DATA-STRUCTURE-NAME is any valid JSON data structure, as defined |
33 | by the JSON standard: | |
f544d174 | 34 | |
e790e666 | 35 | http://www.ietf.org/rfc/rfc7159.txt |
f544d174 | 36 | |
e790e666 EB |
37 | The protocol is always encoded in UTF-8 except for synchronization |
38 | bytes (documented below); although thanks to json-string escape | |
39 | sequences, the server will reply using only the strict ASCII subset. | |
40 | ||
41 | For convenience, json-object members mentioned in this document will | |
42 | be in a certain order. However, in real protocol usage they can be in | |
43 | ANY order, thus no particular order should be assumed. On the other | |
44 | hand, use of json-array elements presumes that preserving order is | |
45 | important unless specifically documented otherwise. Repeating a key | |
46 | within a json-object gives unpredictable results. | |
47 | ||
48 | Also for convenience, the server will accept an extension of | |
49 | 'single-quoted' strings in place of the usual "double-quoted" | |
50 | json-string, and both input forms of strings understand an additional | |
51 | escape sequence of "\'" for a single quote. The server will only use | |
52 | double quoting on output. | |
f544d174 LC |
53 | |
54 | 2.1 General Definitions | |
55 | ----------------------- | |
56 | ||
57 | 2.1.1 All interactions transmitted by the Server are json-objects, always | |
58 | terminating with CRLF | |
59 | ||
60 | 2.1.2 All json-objects members are mandatory when not specified otherwise | |
61 | ||
62 | 2.2 Server Greeting | |
63 | ------------------- | |
64 | ||
65 | Right when connected the Server will issue a greeting message, which signals | |
66 | that the connection has been successfully established and that the Server is | |
5307d7d3 LC |
67 | ready for capabilities negotiation (for more information refer to section |
68 | '4. Capabilities Negotiation'). | |
f544d174 | 69 | |
715c1860 | 70 | The greeting message format is: |
f544d174 | 71 | |
ca9567e2 | 72 | { "QMP": { "version": json-object, "capabilities": json-array } } |
f544d174 LC |
73 | |
74 | Where, | |
75 | ||
ca9567e2 | 76 | - The "version" member contains the Server's version information (the format |
715c1860 | 77 | is the same of the query-version command) |
f544d174 | 78 | - The "capabilities" member specify the availability of features beyond the |
e790e666 EB |
79 | baseline specification; the order of elements in this array has no |
80 | particular significance, so a client must search the entire array | |
81 | when looking for a particular capability | |
82 | ||
83 | 2.2.1 Capabilities | |
84 | ------------------ | |
85 | ||
86 | As of the date this document was last revised, no server or client | |
87 | capability strings have been defined. | |
88 | ||
f544d174 LC |
89 | |
90 | 2.3 Issuing Commands | |
91 | -------------------- | |
92 | ||
93 | The format for command execution is: | |
94 | ||
95 | { "execute": json-string, "arguments": json-object, "id": json-value } | |
96 | ||
97 | Where, | |
98 | ||
99 | - The "execute" member identifies the command to be executed by the Server | |
100 | - The "arguments" member is used to pass any arguments required for the | |
e790e666 EB |
101 | execution of the command, it is optional when no arguments are |
102 | required. Each command documents what contents will be considered | |
103 | valid when handling the json-argument | |
f544d174 LC |
104 | - The "id" member is a transaction identification associated with the |
105 | command execution, it is optional and will be part of the response if | |
e790e666 EB |
106 | provided. The "id" member can be any json-value, although most |
107 | clients merely use a json-number incremented for each successive | |
108 | command | |
f544d174 LC |
109 | |
110 | 2.4 Commands Responses | |
111 | ---------------------- | |
112 | ||
113 | There are two possible responses which the Server will issue as the result | |
114 | of a command execution: success or error. | |
115 | ||
116 | 2.4.1 success | |
117 | ------------- | |
118 | ||
715c1860 | 119 | The format of a success response is: |
f544d174 | 120 | |
e790e666 | 121 | { "return": json-value, "id": json-value } |
f544d174 LC |
122 | |
123 | Where, | |
124 | ||
e790e666 EB |
125 | - The "return" member contains the data returned by the command, which |
126 | is defined on a per-command basis (usually a json-object or | |
127 | json-array of json-objects, but sometimes a json-number, json-string, | |
128 | or json-array of json-strings); it is an empty json-object if the | |
129 | command does not return data | |
f544d174 | 130 | - The "id" member contains the transaction identification associated |
715c1860 | 131 | with the command execution if issued by the Client |
f544d174 LC |
132 | |
133 | 2.4.2 error | |
134 | ----------- | |
135 | ||
715c1860 | 136 | The format of an error response is: |
f544d174 | 137 | |
de253f14 | 138 | { "error": { "class": json-string, "desc": json-string }, "id": json-value } |
f544d174 LC |
139 | |
140 | Where, | |
141 | ||
de253f14 | 142 | - The "class" member contains the error class name (eg. "GenericError") |
94048982 | 143 | - The "desc" member is a human-readable error message. Clients should |
77e595e7 | 144 | not attempt to parse this message. |
f544d174 | 145 | - The "id" member contains the transaction identification associated with |
715c1860 | 146 | the command execution if issued by the Client |
f544d174 LC |
147 | |
148 | NOTE: Some errors can occur before the Server is able to read the "id" member, | |
149 | in these cases the "id" member will not be part of the error response, even | |
150 | if provided by the client. | |
151 | ||
152 | 2.5 Asynchronous events | |
153 | ----------------------- | |
154 | ||
155 | As a result of state changes, the Server may send messages unilaterally | |
e790e666 EB |
156 | to the Client at any time, when not in the middle of any other |
157 | response. They are called "asynchronous events". | |
f544d174 | 158 | |
715c1860 | 159 | The format of asynchronous events is: |
f544d174 | 160 | |
94048982 | 161 | { "event": json-string, "data": json-object, |
f544d174 LC |
162 | "timestamp": { "seconds": json-number, "microseconds": json-number } } |
163 | ||
164 | Where, | |
165 | ||
166 | - The "event" member contains the event's name | |
167 | - The "data" member contains event specific data, which is defined in a | |
168 | per-event basis, it is optional | |
e790e666 EB |
169 | - The "timestamp" member contains the exact time of when the event |
170 | occurred in the Server. It is a fixed json-object with time in | |
171 | seconds and microseconds relative to the Unix Epoch (1 Jan 1970); if | |
172 | there is a failure to retrieve host time, both members of the | |
173 | timestamp will be set to -1. | |
f544d174 LC |
174 | |
175 | For a listing of supported asynchronous events, please, refer to the | |
176 | qmp-events.txt file. | |
177 | ||
e790e666 EB |
178 | 2.5 QGA Synchronization |
179 | ----------------------- | |
180 | ||
181 | When using QGA, an additional synchronization feature is built into | |
182 | the protocol. If the Client sends a raw 0xFF sentinel byte (not valid | |
183 | JSON), then the Server will reset its state and discard all pending | |
184 | data prior to the sentinel. Conversely, if the Client makes use of | |
185 | the 'guest-sync-delimited' command, the Server will send a raw 0xFF | |
186 | sentinel byte prior to its response, to aid the Client in discarding | |
187 | any data prior to the sentinel. | |
188 | ||
189 | ||
f544d174 LC |
190 | 3. QMP Examples |
191 | =============== | |
192 | ||
193 | This section provides some examples of real QMP usage, in all of them | |
715c1860 | 194 | "C" stands for "Client" and "S" stands for "Server". |
f544d174 LC |
195 | |
196 | 3.1 Server greeting | |
197 | ------------------- | |
198 | ||
715c1860 LC |
199 | S: { "QMP": { "version": { "qemu": { "micro": 50, "minor": 6, "major": 1 }, |
200 | "package": ""}, "capabilities": []}} | |
f544d174 | 201 | |
e790e666 EB |
202 | 3.2 Client QMP negotiation |
203 | -------------------------- | |
204 | C: { "execute": "qmp_capabilities" } | |
205 | S: { "return": {}} | |
206 | ||
207 | 3.3 Simple 'stop' execution | |
f544d174 LC |
208 | --------------------------- |
209 | ||
210 | C: { "execute": "stop" } | |
715c1860 | 211 | S: { "return": {} } |
f544d174 | 212 | |
e790e666 | 213 | 3.4 KVM information |
f544d174 LC |
214 | ------------------- |
215 | ||
94048982 | 216 | C: { "execute": "query-kvm", "id": "example" } |
715c1860 | 217 | S: { "return": { "enabled": true, "present": true }, "id": "example"} |
f544d174 | 218 | |
e790e666 | 219 | 3.5 Parsing error |
f544d174 LC |
220 | ------------------ |
221 | ||
222 | C: { "execute": } | |
715c1860 | 223 | S: { "error": { "class": "GenericError", "desc": "Invalid JSON syntax" } } |
f544d174 | 224 | |
e790e666 | 225 | 3.6 Powerdown event |
f544d174 LC |
226 | ------------------- |
227 | ||
715c1860 LC |
228 | S: { "timestamp": { "seconds": 1258551470, "microseconds": 802384 }, |
229 | "event": "POWERDOWN" } | |
f544d174 | 230 | |
5307d7d3 | 231 | 4. Capabilities Negotiation |
e790e666 | 232 | =========================== |
f544d174 | 233 | |
5307d7d3 LC |
234 | When a Client successfully establishes a connection, the Server is in |
235 | Capabilities Negotiation mode. | |
f544d174 | 236 | |
715c1860 LC |
237 | In this mode only the qmp_capabilities command is allowed to run, all |
238 | other commands will return the CommandNotFound error. Asynchronous | |
239 | messages are not delivered either. | |
5307d7d3 | 240 | |
715c1860 | 241 | Clients should use the qmp_capabilities command to enable capabilities |
5307d7d3 LC |
242 | advertised in the Server's greeting (section '2.2 Server Greeting') they |
243 | support. | |
f544d174 | 244 | |
715c1860 | 245 | When the qmp_capabilities command is issued, and if it does not return an |
5307d7d3 | 246 | error, the Server enters in Command mode where capabilities changes take |
715c1860 | 247 | effect, all commands (except qmp_capabilities) are allowed and asynchronous |
5307d7d3 | 248 | messages are delivered. |
f544d174 | 249 | |
5307d7d3 | 250 | 5 Compatibility Considerations |
e790e666 | 251 | ============================== |
94048982 | 252 | |
5307d7d3 LC |
253 | All protocol changes or new features which modify the protocol format in an |
254 | incompatible way are disabled by default and will be advertised by the | |
255 | capabilities array (section '2.2 Server Greeting'). Thus, Clients can check | |
256 | that array and enable the capabilities they support. | |
94048982 | 257 | |
1829851c PB |
258 | The QMP Server performs a type check on the arguments to a command. It |
259 | generates an error if a value does not have the expected type for its | |
260 | key, or if it does not understand a key that the Client included. The | |
261 | strictness of the Server catches wrong assumptions of Clients about | |
262 | the Server's schema. Clients can assume that, when such validation | |
263 | errors occur, they will be reported before the command generated any | |
264 | side effect. | |
265 | ||
266 | However, Clients must not assume any particular: | |
267 | ||
268 | - Length of json-arrays | |
269 | - Size of json-objects; in particular, future versions of QEMU may add | |
270 | new keys and Clients should be able to ignore them. | |
5307d7d3 LC |
271 | - Order of json-object members or json-array elements |
272 | - Amount of errors generated by a command, that is, new errors can be added | |
273 | to any existing command in newer versions of the Server | |
b3e5e3e6 | 274 | |
e790e666 EB |
275 | Any command or field name beginning with "x-" is deemed experimental, |
276 | and may be withdrawn or changed in an incompatible manner in a future | |
277 | release. | |
278 | ||
1829851c PB |
279 | Of course, the Server does guarantee to send valid JSON. But apart from |
280 | this, a Client should be "conservative in what they send, and liberal in | |
281 | what they accept". | |
282 | ||
b3e5e3e6 | 283 | 6. Downstream extension of QMP |
e790e666 | 284 | ============================== |
b3e5e3e6 MA |
285 | |
286 | We recommend that downstream consumers of QEMU do *not* modify QMP. | |
287 | Management tools should be able to support both upstream and downstream | |
288 | versions of QMP without special logic, and downstream extensions are | |
289 | inherently at odds with that. | |
290 | ||
291 | However, we recognize that it is sometimes impossible for downstreams to | |
292 | avoid modifying QMP. Both upstream and downstream need to take care to | |
293 | preserve long-term compatibility and interoperability. | |
294 | ||
295 | To help with that, QMP reserves JSON object member names beginning with | |
296 | '__' (double underscore) for downstream use ("downstream names"). This | |
297 | means upstream will never use any downstream names for its commands, | |
298 | arguments, errors, asynchronous events, and so forth. | |
299 | ||
300 | Any new names downstream wishes to add must begin with '__'. To | |
301 | ensure compatibility with other downstreams, it is strongly | |
715c1860 | 302 | recommended that you prefix your downstream names with '__RFQDN_' where |
b3e5e3e6 MA |
303 | RFQDN is a valid, reverse fully qualified domain name which you |
304 | control. For example, a qemu-kvm specific monitor command would be: | |
305 | ||
306 | (qemu) __org.linux-kvm_enable_irqchip | |
307 | ||
308 | Downstream must not change the server greeting (section 2.2) other than | |
309 | to offer additional capabilities. But see below for why even that is | |
310 | discouraged. | |
311 | ||
312 | Section '5 Compatibility Considerations' applies to downstream as well | |
313 | as to upstream, obviously. It follows that downstream must behave | |
314 | exactly like upstream for any input not containing members with | |
315 | downstream names ("downstream members"), except it may add members | |
316 | with downstream names to its output. | |
317 | ||
318 | Thus, a client should not be able to distinguish downstream from | |
319 | upstream as long as it doesn't send input with downstream members, and | |
320 | properly ignores any downstream members in the output it receives. | |
321 | ||
322 | Advice on downstream modifications: | |
323 | ||
324 | 1. Introducing new commands is okay. If you want to extend an existing | |
325 | command, consider introducing a new one with the new behaviour | |
326 | instead. | |
327 | ||
328 | 2. Introducing new asynchronous messages is okay. If you want to extend | |
329 | an existing message, consider adding a new one instead. | |
330 | ||
331 | 3. Introducing new errors for use in new commands is okay. Adding new | |
332 | errors to existing commands counts as extension, so 1. applies. | |
333 | ||
334 | 4. New capabilities are strongly discouraged. Capabilities are for | |
335 | evolving the basic protocol, and multiple diverging basic protocol | |
336 | dialects are most undesirable. |