Documentation/QMP: Difference between revisions

From QEMU
(Use wait=off instead of the obsolete nowait parameter)
 
(46 intermediate revisions by 8 users not shown)
Line 1: Line 1:
= QEMU Monitor Protocol =
= QEMU Machine Protocol =


The QEMU Monitor Protocol (QMP) is a [http://www.json.org/ JSON]-based protocol which allows applications to communicate with a QEMU instance.
The QEMU Machine Protocol (QMP) is a [http://www.json.org/ JSON]-based protocol which allows applications to control a QEMU instance.


QMP's main features are:
Features:


* Lightweight, text-based, easy to parse data format
* Lightweight, text-based, easy to parse data format
* Asynchronous messages support (ie. events)
* Asynchronous messages support (events)
* Capabilities negotiation
* Capabilities negotiation
* API/ABI stability guarantees
* API/ABI stability guarantees


Please, check the [http://git.savannah.gnu.org/cgit/qemu.git/tree/QMP/README README] file for more information.
Please, also check the [http://git.qemu.org/?p=qemu.git;a=blob_plain;f=docs/interop/qmp-intro.txt;hb=HEAD QMP intro] file for more information.
 
== Status ==
 
A supported version of QMP is available since QEMU 0.14.
 
However, several commands in the current API have badly defined semantics. To address this, we plan to begin adding replacement commands soon. We will also have a deprecation policy for the old commands.


== Examples ==
== Examples ==
Line 22: Line 16:
The first example explains some important details about QMP. The others are simpler and run on top of the first one.
The first example explains some important details about QMP. The others are simpler and run on top of the first one.


In all examples, 'C' stands for 'Client' and 'S' stands for 'Server'.
In all examples "C" stands for "Client" and "S" stands for "Server".


=== Capabilities Negotiation ===
=== Capabilities Negotiation ===


When a new QMP connection is established, QMP sends its greeting message and enters ''capabilities negotiation mode''. In this mode, only the "qmp_capabilities" command works. To exit negotiation mode and enter ''command mode'', the qmp_capabilities command must be issued.
When a new QMP connection is established, QMP sends its greeting message and enters ''capabilities negotiation'' mode. In this mode, only the qmp_capabilities command works. To exit ''capabilities negotiation'' mode and enter ''command mode'', the qmp_capabilities command must be issued:


   S: {
   S: {
Line 33: Line 27:
                 "qemu": {
                 "qemu": {
                     "micro": 0,
                     "micro": 0,
                     "minor": 0,
                     "minor": 6,
                     "major": 1
                     "major": 1
                 },
                 },
Line 45: Line 39:
  S: { "return": {}}
  S: { "return": {}}


The "{ "return": {}}" response is QMP's success response. An error response will contain the "error" keyword instead of "return".
The ''{ "return": {} }'' response is QMP's success response. An error response will contain the "error" keyword instead of "return".


=== Eject a medium ===
=== Eject a medium ===
Line 73: Line 67:
== Development ==
== Development ==


Main developer in charge is [mailto:lcapitulino@redhat.com Luiz Capitulino]. All QMP-related discussions happen on the [http://lists.nongnu.org/mailman/listinfo/qemu-devel qemu-devel] mailing list.
QMP being a core part of QEMU, all discussions happen on the [http://lists.nongnu.org/mailman/listinfo/qemu-devel qemu-devel] mailing list.
 
Next features, hot fixes and other patches are stored in the QMP unstable repository:
 
http://repo.or.cz/w/qemu/qmp-unstable.git
 
'''IMPORTANT''': all branches in this repository are constantly ''rebased'' (master inclusive).
 
=== TODO ===


* Finish conversion of old QMP commands to the QAPI
== Trying it ==
** Missing commands: netdev_add/del, add_graphics_client, device_add, screen_dump
** Commands that possibly depend on the new QMP server: closefd, getfd, qmp_capabilities
* Integrate the new QMP server (from Anthony's tree)
* Asynchronous command support
* Convert (possibly all) HMP commands to the QAPI
** Will make them "appear" on QMP
** Will make it possible to make HMP a QMP front-end
* Add the "event" QAPI type
* Schema instrospection
* Improve QError errors
 
== Testing ==
 
This section describes the following ways of testing QMP:
 
* By hand (cumbersome, only worth it if you're chasing a specific bug)
* qmp-shell script (automates part of the job)
* Libvirt integration (assumes familiarity with [http://libvirt.org libvirt])
* libvirt-TCK
* kvm-autotest
 
Please, note that it's very recommended to read the [http://git.savannah.gnu.org/cgit/qemu.git/tree/QMP/README README] and [http://git.savannah.gnu.org/cgit/qemu.git/tree/QMP/qmp-spec.txt spec] files, as some of the testing procedures may require knowledge about the protocol format.


=== By hand ===
=== By hand ===
Line 111: Line 75:
1. Start QMP on a TCP socket, so that telnet can be used
1. Start QMP on a TCP socket, so that telnet can be used


  # qemu [...] -qmp tcp:localhost:4444,server
  # qemu [...] -qmp tcp:localhost:4444,server,wait=off


2. Run telnet
2. Run telnet
Line 119: Line 83:
3. You should see QMP's greeting banner
3. You should see QMP's greeting banner


  {"QMP": {"version": {"qemu": {"micro": 50, "minor": 13, "major": 0}, "package": ""}, "capabilities": []}}
  {"QMP": {"version": {"qemu": {"micro": 0, "minor": 6, "major": 1}, "package": ""}, "capabilities": []}}


4. Issue the ''qmp_capabilities'' command, so that QMP enters command mode
4. Issue the ''qmp_capabilities'' command, so that QMP enters command mode
Line 129: Line 93:
  { "execute": "query-commands" }
  { "execute": "query-commands" }


'''NOTE:''' all "info" commands are available under QMP as "query-", for example "info vnc" is "query-vnc"
There's an optimization to this procedure in case you plan to use it often:
 
There's an optimization to this procedure in case you plan to use it often (eg. QMP development):


1. Install programs ''socat'' and ''rlwrap''. If you're running Fedora, you can do
1. Install programs ''socat'' and ''rlwrap''. If you're running Fedora, you can do
Line 147: Line 109:
   mode = "control"
   mode = "control"
   chardev = "qmp"
   chardev = "qmp"
  pretty = "on"


3. Run QEMU
3. Run QEMU
Line 160: Line 123:
=== qmp-shell script ===
=== qmp-shell script ===


This script is available under the [http://git.savannah.gnu.org/cgit/qemu.git/tree/QMP QMP] directory in QEMU's source-tree. It automates a bit the testing work, as it can construct commands objects for you.
This script is available under the [http://git.qemu.org/?p=qemu.git;a=tree;f=scripts/qmp;hb=HEAD scripts/qmp/] directory in QEMU's source-tree. It automates a bit the testing work, as it can construct commands objects for you.


1. Start QMP on a unix socket
1. Start QMP on a unix socket


  # qemu [...] -qmp unix:./qmp-sock,server
  # qemu [...] -qmp unix:./qmp-sock,server,wait=off


2. Run the script
2. Run the script
Line 178: Line 141:
  (QEMU) device_add driver=e1000 id=net1
  (QEMU) device_add driver=e1000 id=net1


=== Libvirt ===
== Historic information ==
 
Libvirt already got QMP support, but it's currently disabled. This test procedure explains how to enable it, so that you can have libvirt running on top of QMP.
 
1. Install [http://lloyd.github.com/yajl yajl-devel] (If you're running Fedora 12 or above just do 'yum install yajl-devel')
 
2. From a fresh checkout of [http://libvirt.org/git/?p=libvirt.git;a=summary libvirt master branch] run the following:
 
./autogen.sh --system --enable-compile-warnings=error
 
'''NOTE (1):''' The '--system' flag is a shortcut for compiling with the --prefix and other directories matching a system RPM build.
 
'''NOTE (2):''' Make sure the final summary of autogen.sh tells you that it found the yajl library
 
3. To enable QMP support, edit '''src/qemu/qemu_conf.c''' and find:
 
#if 0
    if (version >= 13000)
        flags |= QEMUD_CMD_FLAG_MONITOR_JSON;
#endif
 
Change to '#if 1', and change the version to 12000 so it detects your GIT build of QEMU
 
4. Run 'make' to build. There is no need to 'make install' anything
especially since that would overwrite your RPM based install
 
5. As root simply stop the current daemon & start the one you built
 
/etc/init.d/libvirtd stop
$HOME/your/git/checkout/of/libvirt/daemon/libvirtd
 
6. As root you can use the newly built virsh too
 
cd $HOME/your/git/checkout/of/libvirt/src
./virsh <BLAH>
 
=== Libvirt-TCK ===
 
TODO: describe libvirt's testing tool.
 
=== kvm-autotest ===
 
TODO: describe [http://www.linux-kvm.org/page/KVM-Autotest kvm-autotest] QMP support.


== Other information ==
* Luiz's QMP talk on KVM Forum 2010 can be found [http://www.linux-kvm.org/images/1/17/2010-forum-qmp-status-talk.pp.pdf here]
* Old QMP page can be accessed [http://www.linux-kvm.org/index.php?title=MonitorProtocol&oldid=3100 here]


* Luiz's QMP talk on KVM Forum 2010 can be found [http://www.cpu.eti.br/talks/qmp-talk-kvm-forum-2010.pdf here]
[[Category:User documentation]]
* Old QMP page can be accessed [http://www.linux-kvm.org/wiki/index.php?title=MonitorProtocol&direction=prev&oldid=3232 here]

Latest revision as of 12:35, 22 March 2022

QEMU Machine Protocol

The QEMU Machine Protocol (QMP) is a JSON-based protocol which allows applications to control a QEMU instance.

Features:

  • Lightweight, text-based, easy to parse data format
  • Asynchronous messages support (events)
  • Capabilities negotiation
  • API/ABI stability guarantees

Please, also check the QMP intro file for more information.

Examples

The first example explains some important details about QMP. The others are simpler and run on top of the first one.

In all examples "C" stands for "Client" and "S" stands for "Server".

Capabilities Negotiation

When a new QMP connection is established, QMP sends its greeting message and enters capabilities negotiation mode. In this mode, only the qmp_capabilities command works. To exit capabilities negotiation mode and enter command mode, the qmp_capabilities command must be issued:

 S: {
        "QMP": {
            "version": {
                "qemu": {
                    "micro": 0,
                    "minor": 6,
                    "major": 1
                },
                "package": ""
            },
            "capabilities": [
            ]
        }
    }
C: { "execute": "qmp_capabilities" }
S: { "return": {}}

The { "return": {} } response is QMP's success response. An error response will contain the "error" keyword instead of "return".

Eject a medium

C: { "execute": "eject", "arguments": { "device": "ide1-cd0" } }
S: { "return": {}}

Query VM status

C: { "execute": "query-status" }
S: {
       "return": {
           "status": "running",
           "singlestep": false,
           "running": true
       }
   }

Asynchronous message

S: { "event": "BLOCK_IO_ERROR",
     "data": { "device": "ide0-hd1",
               "operation": "write",
               "action": "stop" },
     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }

Development

QMP being a core part of QEMU, all discussions happen on the qemu-devel mailing list.

Trying it

By hand

1. Start QMP on a TCP socket, so that telnet can be used

# qemu [...] -qmp tcp:localhost:4444,server,wait=off

2. Run telnet

$ telnet localhost 4444

3. You should see QMP's greeting banner

{"QMP": {"version": {"qemu": {"micro": 0, "minor": 6, "major": 1}, "package": ""}, "capabilities": []}}

4. Issue the qmp_capabilities command, so that QMP enters command mode

{ "execute": "qmp_capabilities" }

5. You can now issue commands. For example, to get a list of QMP supported commands, issue query-commands

{ "execute": "query-commands" }

There's an optimization to this procedure in case you plan to use it often:

1. Install programs socat and rlwrap. If you're running Fedora, you can do

# yum install socat rlwrap

2. Add the following sections to your QEMU config file (or create a qemu-qmp.conf one):

[chardev "qmp"]
  backend = "socket"
  path = "path to the QMP unix socket"
  server = "on"
  wait = "off"
[mon "qmp"]
  mode = "control"
  chardev = "qmp"
  pretty = "on"

3. Run QEMU

# qemu [...] -readconfig qemu-qmp.conf

4. Run rlwrap

# rlwrap -C qmp socat STDIO UNIX:path-to-the-QMP-unix-socket

You can now issue commands, rlwrap will give you readline support (including persistent history).

qmp-shell script

This script is available under the scripts/qmp/ directory in QEMU's source-tree. It automates a bit the testing work, as it can construct commands objects for you.

1. Start QMP on a unix socket

# qemu [...] -qmp unix:./qmp-sock,server,wait=off

2. Run the script

# qmp-shell ./qmp-sock

3. You should get the following prompt

(QEMU)

4. You can now issue commands. For example, let's add a new device

(QEMU) device_add driver=e1000 id=net1

Historic information

  • Luiz's QMP talk on KVM Forum 2010 can be found here
  • Old QMP page can be accessed here