qmp-spec.txt 14.0 KB
Newer Older
L
Luiz Capitulino 已提交
1
                      QEMU Machine Protocol Specification
L
Luiz Capitulino 已提交
2

3 4 5
0. About This Document
======================

6
Copyright (C) 2009-2016 Red Hat, Inc.
7 8 9 10

This work is licensed under the terms of the GNU GPL, version 2 or
later. See the COPYING file in the top-level directory.

L
Luiz Capitulino 已提交
11 12 13
1. Introduction
===============

14 15 16 17 18
This document specifies the QEMU Machine Protocol (QMP), a JSON-based
protocol which is available for applications to operate QEMU at the
machine-level.  It is also in use by the QEMU Guest Agent (QGA), which
is available for host applications to interact with the guest
operating system.
L
Luiz Capitulino 已提交
19 20 21 22 23

2. Protocol Specification
=========================

This section details the protocol format. For the purpose of this document
L
Luiz Capitulino 已提交
24 25
"Client" is any application which is using QMP to communicate with QEMU and
"Server" is QEMU itself.
L
Luiz Capitulino 已提交
26 27 28 29 30 31

JSON data structures, when mentioned in this document, are always in the
following format:

    json-DATA-STRUCTURE-NAME

32 33
Where DATA-STRUCTURE-NAME is any valid JSON data structure, as defined
by the JSON standard:
L
Luiz Capitulino 已提交
34

35
http://www.ietf.org/rfc/rfc7159.txt
L
Luiz Capitulino 已提交
36

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
The protocol is always encoded in UTF-8 except for synchronization
bytes (documented below); although thanks to json-string escape
sequences, the server will reply using only the strict ASCII subset.

For convenience, json-object members mentioned in this document will
be in a certain order. However, in real protocol usage they can be in
ANY order, thus no particular order should be assumed. On the other
hand, use of json-array elements presumes that preserving order is
important unless specifically documented otherwise.  Repeating a key
within a json-object gives unpredictable results.

Also for convenience, the server will accept an extension of
'single-quoted' strings in place of the usual "double-quoted"
json-string, and both input forms of strings understand an additional
escape sequence of "\'" for a single quote. The server will only use
double quoting on output.
L
Luiz Capitulino 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66

2.1 General Definitions
-----------------------

2.1.1 All interactions transmitted by the Server are json-objects, always
      terminating with CRLF

2.1.2 All json-objects members are mandatory when not specified otherwise

2.2 Server Greeting
-------------------

Right when connected the Server will issue a greeting message, which signals
that the connection has been successfully established and that the Server is
67 68
ready for capabilities negotiation (for more information refer to section
'4. Capabilities Negotiation').
L
Luiz Capitulino 已提交
69

L
Luiz Capitulino 已提交
70
The greeting message format is:
L
Luiz Capitulino 已提交
71

72
{ "QMP": { "version": json-object, "capabilities": json-array } }
L
Luiz Capitulino 已提交
73 74 75

 Where,

76
- The "version" member contains the Server's version information (the format
L
Luiz Capitulino 已提交
77
  is the same of the query-version command)
L
Luiz Capitulino 已提交
78
- The "capabilities" member specify the availability of features beyond the
79
  baseline specification; the order of elements in this array has no
80
  particular significance.
81 82 83 84

2.2.1 Capabilities
------------------

85
Currently supported capabilities are:
86

87
- "oob": the QMP server supports "out-of-band" (OOB) command
88
  execution, as described in section "2.3.1 Out-of-band execution".
L
Luiz Capitulino 已提交
89 90 91 92 93 94

2.3 Issuing Commands
--------------------

The format for command execution is:

95 96 97 98 99
{ "execute": json-string, "arguments": json-object, "id": json-value }

or

{ "exec-oob": json-string, "arguments": json-object, "id": json-value }
L
Luiz Capitulino 已提交
100 101 102

 Where,

103 104
- The "execute" or "exec-oob" member identifies the command to be
  executed by the server.  The latter requests out-of-band execution.
L
Luiz Capitulino 已提交
105
- The "arguments" member is used to pass any arguments required for the
106 107 108
  execution of the command, it is optional when no arguments are
  required. Each command documents what contents will be considered
  valid when handling the json-argument
L
Luiz Capitulino 已提交
109
- The "id" member is a transaction identification associated with the
110 111 112
  command execution, it is optional and will be part of the response
  if provided.  The "id" member can be any json-value.  A json-number
  incremented for each successive command works fine.
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

2.3.1 Out-of-band execution
---------------------------

The server normally reads, executes and responds to one command after
the other.  The client therefore receives command responses in issue
order.

With out-of-band execution enabled via capability negotiation (section
4.), the server reads and queues commands as they arrive.  It executes
commands from the queue one after the other.  Commands executed
out-of-band jump the queue: the command get executed right away,
possibly overtaking prior in-band commands.  The client may therefore
receive such a command's response before responses from prior in-band
commands.

129 130 131 132
To be able to match responses back to their commands, the client needs
to pass "id" with out-of-band commands.  Passing it with all commands
is recommended for clients that accept capability "oob".

133 134 135 136 137 138
If the client sends in-band commands faster than the server can
execute them, the server will eventually drop commands to limit the
queue length.  The sever sends event COMMAND_DROPPED then.

Only a few commands support out-of-band execution.  The ones that do
have "allow-oob": true in output of query-qmp-schema.
L
Luiz Capitulino 已提交
139 140 141 142 143 144 145

2.4 Commands Responses
----------------------

There are two possible responses which the Server will issue as the result
of a command execution: success or error.

146 147 148 149 150
As long as the commands were issued with a proper "id" field, then the
same "id" field will be attached in the corresponding response message
so that requests and responses can match.  Clients should drop all the
responses that have an unknown "id" field.

L
Luiz Capitulino 已提交
151 152 153
2.4.1 success
-------------

L
Luiz Capitulino 已提交
154
The format of a success response is:
L
Luiz Capitulino 已提交
155

156
{ "return": json-value, "id": json-value }
L
Luiz Capitulino 已提交
157 158 159

 Where,

160 161 162 163 164
- The "return" member contains the data returned by the command, which
  is defined on a per-command basis (usually a json-object or
  json-array of json-objects, but sometimes a json-number, json-string,
  or json-array of json-strings); it is an empty json-object if the
  command does not return data
L
Luiz Capitulino 已提交
165
- The "id" member contains the transaction identification associated
L
Luiz Capitulino 已提交
166
  with the command execution if issued by the Client
L
Luiz Capitulino 已提交
167 168 169 170

2.4.2 error
-----------

L
Luiz Capitulino 已提交
171
The format of an error response is:
L
Luiz Capitulino 已提交
172

173
{ "error": { "class": json-string, "desc": json-string }, "id": json-value }
L
Luiz Capitulino 已提交
174 175 176

 Where,

177
- The "class" member contains the error class name (eg. "GenericError")
L
Luiz Capitulino 已提交
178
- The "desc" member is a human-readable error message. Clients should
179
  not attempt to parse this message.
L
Luiz Capitulino 已提交
180
- The "id" member contains the transaction identification associated with
L
Luiz Capitulino 已提交
181
  the command execution if issued by the Client
L
Luiz Capitulino 已提交
182 183 184 185 186 187 188 189 190

NOTE: Some errors can occur before the Server is able to read the "id" member,
in these cases the "id" member will not be part of the error response, even
if provided by the client.

2.5 Asynchronous events
-----------------------

As a result of state changes, the Server may send messages unilaterally
191 192
to the Client at any time, when not in the middle of any other
response. They are called "asynchronous events".
L
Luiz Capitulino 已提交
193

L
Luiz Capitulino 已提交
194
The format of asynchronous events is:
L
Luiz Capitulino 已提交
195

L
Luiz Capitulino 已提交
196
{ "event": json-string, "data": json-object,
L
Luiz Capitulino 已提交
197 198 199 200 201 202 203
  "timestamp": { "seconds": json-number, "microseconds": json-number } }

 Where,

- The "event" member contains the event's name
- The "data" member contains event specific data, which is defined in a
  per-event basis, it is optional
204 205 206 207 208
- The "timestamp" member contains the exact time of when the event
  occurred in the Server. It is a fixed json-object with time in
  seconds and microseconds relative to the Unix Epoch (1 Jan 1970); if
  there is a failure to retrieve host time, both members of the
  timestamp will be set to -1.
L
Luiz Capitulino 已提交
209 210 211 212

For a listing of supported asynchronous events, please, refer to the
qmp-events.txt file.

213 214 215 216 217
Some events are rate-limited to at most one per second.  If additional
"similar" events arrive within one second, all but the last one are
dropped, and the last one is delayed.  "Similar" normally means same
event type.  See qmp-events.txt for details.

W
Wei Yang 已提交
218
2.6 QGA Synchronization
219 220 221 222 223 224 225 226 227 228 229
-----------------------

When using QGA, an additional synchronization feature is built into
the protocol.  If the Client sends a raw 0xFF sentinel byte (not valid
JSON), then the Server will reset its state and discard all pending
data prior to the sentinel.  Conversely, if the Client makes use of
the 'guest-sync-delimited' command, the Server will send a raw 0xFF
sentinel byte prior to its response, to aid the Client in discarding
any data prior to the sentinel.


L
Luiz Capitulino 已提交
230 231 232 233
3. QMP Examples
===============

This section provides some examples of real QMP usage, in all of them
L
Luiz Capitulino 已提交
234
"C" stands for "Client" and "S" stands for "Server".
L
Luiz Capitulino 已提交
235 236 237 238

3.1 Server greeting
-------------------

239 240 241 242 243
S: { "QMP": {"version": {"qemu": {"micro": 0, "minor": 0, "major": 3},
     "package": "v3.0.0"}, "capabilities": ["oob"] } }

3.2 Capabilities negotiation
----------------------------
L
Luiz Capitulino 已提交
244

245
C: { "execute": "qmp_capabilities", "arguments": { "enable": ["oob"] } }
246 247 248
S: { "return": {}}

3.3 Simple 'stop' execution
L
Luiz Capitulino 已提交
249 250 251
---------------------------

C: { "execute": "stop" }
L
Luiz Capitulino 已提交
252
S: { "return": {} }
L
Luiz Capitulino 已提交
253

254
3.4 KVM information
L
Luiz Capitulino 已提交
255 256
-------------------

L
Luiz Capitulino 已提交
257
C: { "execute": "query-kvm", "id": "example" }
L
Luiz Capitulino 已提交
258
S: { "return": { "enabled": true, "present": true }, "id": "example"}
L
Luiz Capitulino 已提交
259

260
3.5 Parsing error
L
Luiz Capitulino 已提交
261 262 263
------------------

C: { "execute": }
L
Luiz Capitulino 已提交
264
S: { "error": { "class": "GenericError", "desc": "Invalid JSON syntax" } }
L
Luiz Capitulino 已提交
265

266
3.6 Powerdown event
L
Luiz Capitulino 已提交
267 268
-------------------

L
Luiz Capitulino 已提交
269 270
S: { "timestamp": { "seconds": 1258551470, "microseconds": 802384 },
    "event": "POWERDOWN" }
L
Luiz Capitulino 已提交
271

272 273 274
3.7 Out-of-band execution
-------------------------

275
C: { "exec-oob": "migrate-pause", "id": 42 }
276 277 278 279 280
S: { "id": 42,
     "error": { "class": "GenericError",
      "desc": "migrate-pause is currently only supported during postcopy-active state" } }


281
4. Capabilities Negotiation
282
===========================
L
Luiz Capitulino 已提交
283

284 285
When a Client successfully establishes a connection, the Server is in
Capabilities Negotiation mode.
L
Luiz Capitulino 已提交
286

L
Luiz Capitulino 已提交
287 288 289
In this mode only the qmp_capabilities command is allowed to run, all
other commands will return the CommandNotFound error. Asynchronous
messages are not delivered either.
290

L
Luiz Capitulino 已提交
291
Clients should use the qmp_capabilities command to enable capabilities
292 293
advertised in the Server's greeting (section '2.2 Server Greeting') they
support.
L
Luiz Capitulino 已提交
294

L
Luiz Capitulino 已提交
295
When the qmp_capabilities command is issued, and if it does not return an
296
error, the Server enters in Command mode where capabilities changes take
L
Luiz Capitulino 已提交
297
effect, all commands (except qmp_capabilities) are allowed and asynchronous
298
messages are delivered.
L
Luiz Capitulino 已提交
299

300
5 Compatibility Considerations
301
==============================
L
Luiz Capitulino 已提交
302

303 304 305 306
All protocol changes or new features which modify the protocol format in an
incompatible way are disabled by default and will be advertised by the
capabilities array (section '2.2 Server Greeting'). Thus, Clients can check
that array and enable the capabilities they support.
L
Luiz Capitulino 已提交
307

P
Paolo Bonzini 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320
The QMP Server performs a type check on the arguments to a command.  It
generates an error if a value does not have the expected type for its
key, or if it does not understand a key that the Client included.  The
strictness of the Server catches wrong assumptions of Clients about
the Server's schema.  Clients can assume that, when such validation
errors occur, they will be reported before the command generated any
side effect.

However, Clients must not assume any particular:

- Length of json-arrays
- Size of json-objects; in particular, future versions of QEMU may add
  new keys and Clients should be able to ignore them.
321 322 323
- Order of json-object members or json-array elements
- Amount of errors generated by a command, that is, new errors can be added
  to any existing command in newer versions of the Server
324

325
Any command or member name beginning with "x-" is deemed experimental,
326 327 328
and may be withdrawn or changed in an incompatible manner in a future
release.

P
Paolo Bonzini 已提交
329 330 331 332
Of course, the Server does guarantee to send valid JSON.  But apart from
this, a Client should be "conservative in what they send, and liberal in
what they accept".

333
6. Downstream extension of QMP
334
==============================
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351

We recommend that downstream consumers of QEMU do *not* modify QMP.
Management tools should be able to support both upstream and downstream
versions of QMP without special logic, and downstream extensions are
inherently at odds with that.

However, we recognize that it is sometimes impossible for downstreams to
avoid modifying QMP.  Both upstream and downstream need to take care to
preserve long-term compatibility and interoperability.

To help with that, QMP reserves JSON object member names beginning with
'__' (double underscore) for downstream use ("downstream names").  This
means upstream will never use any downstream names for its commands,
arguments, errors, asynchronous events, and so forth.

Any new names downstream wishes to add must begin with '__'.  To
ensure compatibility with other downstreams, it is strongly
L
Luiz Capitulino 已提交
352
recommended that you prefix your downstream names with '__RFQDN_' where
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
RFQDN is a valid, reverse fully qualified domain name which you
control.  For example, a qemu-kvm specific monitor command would be:

    (qemu) __org.linux-kvm_enable_irqchip

Downstream must not change the server greeting (section 2.2) other than
to offer additional capabilities.  But see below for why even that is
discouraged.

Section '5 Compatibility Considerations' applies to downstream as well
as to upstream, obviously.  It follows that downstream must behave
exactly like upstream for any input not containing members with
downstream names ("downstream members"), except it may add members
with downstream names to its output.

Thus, a client should not be able to distinguish downstream from
upstream as long as it doesn't send input with downstream members, and
properly ignores any downstream members in the output it receives.

Advice on downstream modifications:

1. Introducing new commands is okay.  If you want to extend an existing
   command, consider introducing a new one with the new behaviour
   instead.

2. Introducing new asynchronous messages is okay.  If you want to extend
   an existing message, consider adding a new one instead.

3. Introducing new errors for use in new commands is okay.  Adding new
   errors to existing commands counts as extension, so 1. applies.

4. New capabilities are strongly discouraged.  Capabilities are for
   evolving the basic protocol, and multiple diverging basic protocol
   dialects are most undesirable.