2010-09-13 19:26:00 +04:00
|
|
|
QMP Supported Commands
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
This document describes all commands currently supported by QMP.
|
|
|
|
|
|
|
|
Most of the time their usage is exactly the same as in the user Monitor, this
|
|
|
|
means that any other document which also describe commands (the manpage,
|
|
|
|
QEMU's manual, etc) can and should be consulted.
|
|
|
|
|
|
|
|
QMP has two types of commands: regular and query commands. Regular commands
|
|
|
|
usually change the Virtual Machine's state someway, while query commands just
|
|
|
|
return information. The sections below are divided accordingly.
|
|
|
|
|
|
|
|
It's important to observe that all communication examples are formatted in
|
|
|
|
a reader-friendly way, so that they're easier to understand. However, in real
|
|
|
|
protocol usage, they're emitted as a single line.
|
|
|
|
|
|
|
|
Also, the following notation is used to denote data flow:
|
|
|
|
|
|
|
|
-> data issued by the Client
|
|
|
|
<- Server data response
|
|
|
|
|
2016-10-06 18:10:00 +03:00
|
|
|
Please, refer to the QMP specification (docs/qmp-spec.txt) for detailed
|
2010-09-13 19:26:00 +04:00
|
|
|
information on the Server command and response formats.
|
|
|
|
|
|
|
|
NOTE: This document is temporary and will be replaced soon.
|
|
|
|
|
|
|
|
1. Stability Considerations
|
|
|
|
===========================
|
|
|
|
|
|
|
|
The current QMP command set (described in this file) may be useful for a
|
|
|
|
number of use cases, however it's limited and several commands have bad
|
|
|
|
defined semantics, specially with regard to command completion.
|
|
|
|
|
|
|
|
These problems are going to be solved incrementally in the next QEMU releases
|
|
|
|
and we're going to establish a deprecation policy for badly defined commands.
|
|
|
|
|
|
|
|
If you're planning to adopt QMP, please observe the following:
|
|
|
|
|
2011-07-27 10:32:56 +04:00
|
|
|
1. The deprecation policy will take effect and be documented soon, please
|
2010-09-13 19:26:00 +04:00
|
|
|
check the documentation of each used command as soon as a new release of
|
|
|
|
QEMU is available
|
|
|
|
|
|
|
|
2. DO NOT rely on anything which is not explicit documented
|
|
|
|
|
|
|
|
3. Errors, in special, are not documented. Applications should NOT check
|
|
|
|
for specific errors classes or data (it's strongly recommended to only
|
|
|
|
check for the "error" key)
|
|
|
|
|
|
|
|
2. Regular Commands
|
|
|
|
===================
|
|
|
|
|
|
|
|
Server's responses in the examples below are always a success response, please
|
|
|
|
refer to the QMP specification for more details on error responses.
|
|
|
|
|
|
|
|
eject
|
|
|
|
-----
|
|
|
|
|
|
|
|
Eject a removable medium.
|
|
|
|
|
2016-09-12 12:19:12 +03:00
|
|
|
Arguments:
|
2010-09-13 19:26:00 +04:00
|
|
|
|
2016-09-20 14:38:46 +03:00
|
|
|
- "force": force ejection (json-bool, optional)
|
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2010-09-13 19:26:00 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-09-20 14:38:46 +03:00
|
|
|
-> { "execute": "eject", "arguments": { "id": "ide0-1-0" } }
|
2010-09-13 19:26:00 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Note: The "force" argument defaults to false.
|
|
|
|
|
|
|
|
change
|
|
|
|
------
|
|
|
|
|
|
|
|
Change a removable medium or VNC configuration.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "device": device name (json-string)
|
|
|
|
- "target": filename or item (json-string)
|
|
|
|
- "arg": additional argument (json-string, optional)
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
1. Change a removable medium
|
|
|
|
|
|
|
|
-> { "execute": "change",
|
|
|
|
"arguments": { "device": "ide1-cd0",
|
|
|
|
"target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
2. Change VNC password
|
|
|
|
|
|
|
|
-> { "execute": "change",
|
|
|
|
"arguments": { "device": "vnc", "target": "password",
|
|
|
|
"arg": "foobar1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
screendump
|
|
|
|
----------
|
|
|
|
|
|
|
|
Save screen into PPM image.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "filename": file path (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
device_add
|
|
|
|
----------
|
|
|
|
|
|
|
|
Add a device.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "driver": the name of the new device's driver (json-string)
|
|
|
|
- "bus": the device's parent bus (device tree path, json-string, optional)
|
|
|
|
- "id": the device's ID, must be unique (json-string)
|
|
|
|
- device properties
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) For detailed information about this command, please refer to the
|
|
|
|
'docs/qdev-device-use.txt' file.
|
|
|
|
|
|
|
|
(2) It's possible to list device properties by running QEMU with the
|
|
|
|
"-device DEVICE,\?" command-line argument, where DEVICE is the device's name
|
|
|
|
|
|
|
|
device_del
|
|
|
|
----------
|
|
|
|
|
|
|
|
Remove a device.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2015-09-11 15:33:56 +03:00
|
|
|
- "id": the device's ID or QOM path (json-string)
|
2010-09-13 19:26:00 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "device_del", "arguments": { "id": "net1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-09-11 15:33:56 +03:00
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "device_del", "arguments": { "id": "/machine/peripheral-anon/device[0]" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-08-31 06:56:26 +04:00
|
|
|
send-key
|
|
|
|
----------
|
|
|
|
|
|
|
|
Send keys to VM.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
keys array:
|
2013-07-16 15:52:14 +04:00
|
|
|
- "key": key sequence (a json-array of key union values,
|
|
|
|
union can be number or qcode enum)
|
2012-08-31 06:56:26 +04:00
|
|
|
|
|
|
|
- hold-time: time to delay key up events, milliseconds. Defaults to 100
|
|
|
|
(json-int, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "send-key",
|
2013-07-16 15:52:14 +04:00
|
|
|
"arguments": { "keys": [ { "type": "qcode", "data": "ctrl" },
|
|
|
|
{ "type": "qcode", "data": "alt" },
|
|
|
|
{ "type": "qcode", "data": "delete" } ] } }
|
2012-08-31 06:56:26 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
cpu
|
|
|
|
---
|
|
|
|
|
|
|
|
Set the default CPU.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "index": the CPU's index (json-int)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "cpu", "arguments": { "index": 0 } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Note: CPUs' indexes are obtained with the 'query-cpus' command.
|
|
|
|
|
2012-01-25 16:24:51 +04:00
|
|
|
xen-save-devices-state
|
|
|
|
-------
|
|
|
|
|
|
|
|
Save the state of all devices to file. The RAM and the block devices
|
|
|
|
of the VM are not saved by this command.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "filename": the file to save the state of the devices to as binary
|
|
|
|
data. See xen-save-devices-state.txt for a description of the binary
|
|
|
|
format.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "xen-save-devices-state",
|
|
|
|
"arguments": { "filename": "/tmp/save" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2016-06-03 12:58:34 +03:00
|
|
|
xen-load-devices-state
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Load the state of all devices from file. The RAM and the block devices
|
|
|
|
of the VM are not loaded by this command.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "filename": the file to load the state of the devices from as binary
|
|
|
|
data. See xen-save-devices-state.txt for a description of the binary
|
|
|
|
format.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "xen-load-devices-state",
|
|
|
|
"arguments": { "filename": "/tmp/resume" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-10-03 17:48:19 +04:00
|
|
|
xen-set-global-dirty-log
|
|
|
|
-------
|
|
|
|
|
|
|
|
Enable or disable the global dirty log mode.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "enable": Enable it or disable it.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "xen-set-global-dirty-log",
|
|
|
|
"arguments": { "enable": true } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
migrate
|
|
|
|
-------
|
|
|
|
|
|
|
|
Migrate to URI.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "blk": block migration, full disk copy (json-bool, optional)
|
|
|
|
- "inc": incremental disk copy (json-bool, optional)
|
|
|
|
- "uri": Destination URI (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) The 'query-migrate' command should be used to check migration's progress
|
|
|
|
and final result (this information is provided by the 'status' member)
|
|
|
|
(2) All boolean arguments default to false
|
|
|
|
(3) The user Monitor's "detach" argument is invalid in QMP and should not
|
|
|
|
be used
|
|
|
|
|
|
|
|
migrate_cancel
|
|
|
|
--------------
|
|
|
|
|
|
|
|
Cancel the current migration.
|
|
|
|
|
|
|
|
Arguments: None.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "migrate_cancel" }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-02-19 14:40:28 +03:00
|
|
|
migrate-incoming
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Continue an incoming migration
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "uri": Source/listening URI (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "migrate-incoming", "arguments": { "uri": "tcp::4446" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) QEMU must be started with -incoming defer to allow migrate-incoming to
|
|
|
|
be used
|
2015-06-03 21:43:56 +03:00
|
|
|
(2) The uri format is the same as for -incoming
|
2015-02-19 14:40:28 +03:00
|
|
|
|
2012-08-06 22:42:54 +04:00
|
|
|
migrate-set-cache-size
|
2013-02-11 18:11:10 +04:00
|
|
|
----------------------
|
2012-08-06 22:42:54 +04:00
|
|
|
|
|
|
|
Set cache size to be used by XBZRLE migration, the cache size will be rounded
|
|
|
|
down to the nearest power of 2
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "value": cache size in bytes (json-int)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "migrate-set-cache-size", "arguments": { "value": 536870912 } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
query-migrate-cache-size
|
2013-02-11 18:11:10 +04:00
|
|
|
------------------------
|
2012-08-06 22:42:54 +04:00
|
|
|
|
|
|
|
Show cache size to be used by XBZRLE migration
|
|
|
|
|
|
|
|
returns a json-object with the following information:
|
|
|
|
- "size" : json-int
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-migrate-cache-size" }
|
|
|
|
<- { "return": 67108864 }
|
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
migrate_set_speed
|
|
|
|
-----------------
|
2010-04-23 15:28:21 +04:00
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
Set maximum speed for migrations.
|
2010-04-23 15:28:21 +04:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
- "value": maximum speed, in bytes per second (json-int)
|
2010-04-23 15:28:21 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
|
2010-04-23 15:28:21 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
migrate_set_downtime
|
|
|
|
--------------------
|
2010-09-13 19:26:00 +04:00
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
Set maximum tolerated downtime (in seconds) for migrations.
|
2010-09-13 19:26:00 +04:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
- "value": maximum downtime (json-number)
|
2010-09-13 19:26:00 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2011-03-09 16:31:06 +03:00
|
|
|
-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
|
2010-09-13 19:26:00 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
COLO: Add 'x-colo-lost-heartbeat' command to trigger failover
We leave users to choose whatever heartbeat solution they want,
if the heartbeat is lost, or other errors they detect, they can use
experimental command 'x_colo_lost_heartbeat' to tell COLO to do failover,
COLO will do operations accordingly.
For example, if the command is sent to the Primary side,
the Primary side will exit COLO mode, does cleanup work,
and then, PVM will take over the service work. If sent to the Secondary side,
the Secondary side will run failover work, then takes over PVM's service work.
Cc: Luiz Capitulino <lcapitulino@redhat.com>
Cc: Eric Blake <eblake@redhat.com>
Cc: Markus Armbruster <armbru@redhat.com>
Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Amit Shah <amit@amitshah.net>
2016-10-27 09:43:03 +03:00
|
|
|
x-colo-lost-heartbeat
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
Tell COLO that heartbeat is lost, a failover or takeover is needed.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "x-colo-lost-heartbeat" }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-05-07 08:10:47 +04:00
|
|
|
dump
|
|
|
|
|
|
|
|
|
|
|
|
Dump guest memory to file. The file can be processed with crash or gdb.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "paging": do paging to get guest's memory mapping (json-bool)
|
|
|
|
- "protocol": destination file(started with "file:") or destination file
|
|
|
|
descriptor (started with "fd:") (json-string)
|
2016-02-18 08:16:47 +03:00
|
|
|
- "detach": if specified, command will return immediately, without waiting
|
2016-02-18 08:16:54 +03:00
|
|
|
for the dump to finish. The user can track progress using
|
|
|
|
"query-dump". (json-bool)
|
2012-05-07 08:10:47 +04:00
|
|
|
- "begin": the starting physical address. It's optional, and should be specified
|
|
|
|
with length together (json-int)
|
|
|
|
- "length": the memory size, in bytes. It's optional, and should be specified
|
|
|
|
with begin together (json-int)
|
2014-02-18 10:11:36 +04:00
|
|
|
- "format": the format of guest memory dump. It's optional, and can be
|
|
|
|
elf|kdump-zlib|kdump-lzo|kdump-snappy, but non-elf formats will
|
|
|
|
conflict with paging and filter, ie. begin and length (json-string)
|
2012-05-07 08:10:47 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "dump-guest-memory", "arguments": { "protocol": "fd:dump" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) All boolean arguments default to false
|
|
|
|
|
2014-02-18 10:11:38 +04:00
|
|
|
query-dump-guest-memory-capability
|
|
|
|
----------
|
|
|
|
|
|
|
|
Show available formats for 'dump-guest-memory'
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-dump-guest-memory-capability" }
|
|
|
|
<- { "return": { "formats":
|
|
|
|
["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] }
|
|
|
|
|
2016-02-18 08:16:54 +03:00
|
|
|
query-dump
|
|
|
|
----------
|
|
|
|
|
|
|
|
Query background dump status.
|
|
|
|
|
|
|
|
Arguments: None.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-dump" }
|
|
|
|
<- { "return": { "status": "active", "completed": 1024000,
|
|
|
|
"total": 2048000 } }
|
|
|
|
|
2015-06-26 21:03:16 +03:00
|
|
|
dump-skeys
|
|
|
|
----------
|
|
|
|
|
|
|
|
Save guest storage keys to file.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "filename": file path (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "dump-skeys", "arguments": { "filename": "/tmp/skeys" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
netdev_add
|
|
|
|
----------
|
|
|
|
|
|
|
|
Add host network device.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "type": the device type, "tap", "user", ... (json-string)
|
|
|
|
- "id": the device's ID, must be unique (json-string)
|
|
|
|
- device options
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2015-09-16 14:06:26 +03:00
|
|
|
-> { "execute": "netdev_add",
|
|
|
|
"arguments": { "type": "user", "id": "netdev1",
|
|
|
|
"dnssearch": "example.org" } }
|
2010-09-13 19:26:00 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
2013-02-22 21:31:51 +04:00
|
|
|
Note: The supported device options are the same ones supported by the '-netdev'
|
2010-09-13 19:26:00 +04:00
|
|
|
command-line argument, which are listed in the '-help' output or QEMU's
|
|
|
|
manual
|
|
|
|
|
|
|
|
netdev_del
|
|
|
|
----------
|
|
|
|
|
|
|
|
Remove host network device.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "id": the device's ID, must be unique (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2011-01-24 15:32:33 +03:00
|
|
|
|
2013-12-21 02:21:10 +04:00
|
|
|
object-add
|
|
|
|
----------
|
|
|
|
|
|
|
|
Create QOM object.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "qom-type": the object's QOM type, i.e. the class name (json-string)
|
|
|
|
- "id": the object's ID, must be unique (json-string)
|
|
|
|
- "props": a dictionary of object property values (optional, json-dict)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "object-add", "arguments": { "qom-type": "rng-random", "id": "rng1",
|
|
|
|
"props": { "filename": "/dev/hwrng" } } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2013-12-21 02:21:09 +04:00
|
|
|
object-del
|
|
|
|
----------
|
|
|
|
|
|
|
|
Remove QOM object.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "id": the object's ID (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "object-del", "arguments": { "id": "rng1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
|
2011-01-24 15:32:33 +03:00
|
|
|
block_resize
|
|
|
|
------------
|
|
|
|
|
|
|
|
Resize a block image while a guest is running.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "device": the device's ID, must be unique (json-string)
|
2014-01-24 00:31:37 +04:00
|
|
|
- "node-name": the node name in the block driver state graph (json-string)
|
2011-01-24 15:32:33 +03:00
|
|
|
- "size": new size
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-04-15 13:43:42 +03:00
|
|
|
block-stream
|
|
|
|
------------
|
|
|
|
|
|
|
|
Copy data from a backing file into a block device.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-07-05 17:28:59 +03:00
|
|
|
- "job-id": Identifier for the newly-created block job. If omitted,
|
|
|
|
the device name will be used. (json-string, optional)
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": The device name or node-name of a root node (json-string)
|
2016-10-28 10:08:19 +03:00
|
|
|
- "base": The file name of the backing image above which copying starts.
|
|
|
|
It cannot be set if 'base-node' is also set (json-string, optional)
|
|
|
|
- "base-node": the node name of the backing image above which copying starts.
|
|
|
|
It cannot be set if 'base' is also set.
|
|
|
|
(json-string, optional) (Since 2.8)
|
2015-04-15 13:43:42 +03:00
|
|
|
- "backing-file": The backing file string to write into the active layer. This
|
|
|
|
filename is not validated.
|
|
|
|
|
|
|
|
If a pathname string is such that it cannot be resolved by
|
|
|
|
QEMU, that means that subsequent QMP or HMP commands must use
|
|
|
|
node-names for the image in question, as filename lookup
|
|
|
|
methods will fail.
|
|
|
|
|
|
|
|
If not specified, QEMU will automatically determine the
|
|
|
|
backing file string to use, or error out if there is no
|
|
|
|
obvious choice. Care should be taken when specifying the
|
|
|
|
string, to specify a valid filename or protocol.
|
|
|
|
(json-string, optional) (Since 2.1)
|
|
|
|
- "speed": the maximum speed, in bytes per second (json-int, optional)
|
|
|
|
- "on-error": the action to take on an error (default 'report'). 'stop' and
|
|
|
|
'enospc' can only be used if the block device supports io-status.
|
|
|
|
(json-string, optional) (Since 2.1)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block-stream", "arguments": { "device": "virtio0",
|
|
|
|
"base": "/tmp/master.qcow2" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2014-01-24 18:02:37 +04:00
|
|
|
block-commit
|
|
|
|
------------
|
|
|
|
|
|
|
|
Live commit of data from overlay image nodes into backing nodes - i.e., writes
|
|
|
|
data between 'top' and 'base' into 'base'.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-07-05 17:29:00 +03:00
|
|
|
- "job-id": Identifier for the newly-created block job. If omitted,
|
|
|
|
the device name will be used. (json-string, optional)
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": The device name or node-name of a root node (json-string)
|
2014-01-24 18:02:37 +04:00
|
|
|
- "base": The file name of the backing image to write data into.
|
|
|
|
If not specified, this is the deepest backing image
|
|
|
|
(json-string, optional)
|
|
|
|
- "top": The file name of the backing image within the image chain,
|
2014-06-30 17:14:15 +04:00
|
|
|
which contains the topmost data to be committed down. If
|
|
|
|
not specified, this is the active layer. (json-string, optional)
|
2014-01-24 18:02:37 +04:00
|
|
|
|
block: extend block-commit to accept a string for the backing file
On some image chains, QEMU may not always be able to resolve the
filenames properly, when updating the backing file of an image
after a block commit.
For instance, certain relative pathnames may fail, or drives may
have been specified originally by file descriptor (e.g. /dev/fd/???),
or a relative protocol pathname may have been used.
In these instances, QEMU may lack the information to be able to make
the correct choice, but the user or management layer most likely does
have that knowledge.
With this extension to the block-commit api, the user is able to change
the backing file of the overlay image as part of the block-commit
operation.
This allows the change to be 'safe', in the sense that if the attempt
to write the overlay image metadata fails, then the block-commit
operation returns failure, without disrupting the guest.
If the commit top is the active layer, then specifying the backing
file string will be treated as an error (there is no overlay image
to modify in that case).
If a backing file string is not specified in the command, the backing
file string to use is determined in the same manner as it was
previously.
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2014-06-25 23:40:10 +04:00
|
|
|
- backing-file: The backing file string to write into the overlay
|
|
|
|
image of 'top'. If 'top' is the active layer,
|
|
|
|
specifying a backing file string is an error. This
|
|
|
|
filename is not validated.
|
|
|
|
|
|
|
|
If a pathname string is such that it cannot be
|
|
|
|
resolved by QEMU, that means that subsequent QMP or
|
|
|
|
HMP commands must use node-names for the image in
|
|
|
|
question, as filename lookup methods will fail.
|
|
|
|
|
|
|
|
If not specified, QEMU will automatically determine
|
|
|
|
the backing file string to use, or error out if
|
|
|
|
there is no obvious choice. Care should be taken
|
|
|
|
when specifying the string, to specify a valid
|
|
|
|
filename or protocol.
|
|
|
|
(json-string, optional) (Since 2.1)
|
|
|
|
|
2014-01-24 18:02:37 +04:00
|
|
|
If top == base, that is an error.
|
|
|
|
If top == active, the job will not be completed by itself,
|
|
|
|
user needs to complete the job with the block-job-complete
|
|
|
|
command after getting the ready event. (Since 2.0)
|
|
|
|
|
|
|
|
If the base image is smaller than top, then the base image
|
|
|
|
will be resized to be the same size as top. If top is
|
|
|
|
smaller than the base image, the base will not be
|
|
|
|
truncated. If you want the base image size to match the
|
|
|
|
size of the smaller top, you can safely truncate it
|
|
|
|
yourself once the commit operation successfully completes.
|
|
|
|
(json-string)
|
|
|
|
- "speed": the maximum speed, in bytes per second (json-int, optional)
|
|
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block-commit", "arguments": { "device": "virtio0",
|
|
|
|
"top": "/tmp/snap1.qcow2" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
block: add drive-backup QMP command
@drive-backup
Start a point-in-time copy of a block device to a new destination. The
status of ongoing drive-backup operations can be checked with
query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
The operation can be stopped before it has completed using the
block-job-cancel command.
@device: the name of the device which should be copied.
@target: the target of the new image. If the file exists, or if it
is a device, the existing file/device will be used as the new
destination. If it does not exist, a new file will be created.
@format: #optional the format of the new destination, default is to
probe if @mode is 'existing', else the format of the source
@mode: #optional whether and how QEMU should create a new image, default is
'absolute-paths'.
@speed: #optional the maximum speed, in bytes per second
@on-source-error: #optional the action to take on an error on the source,
default 'report'. 'stop' and 'enospc' can only be used
if the block device supports io-status (see BlockInfo).
@on-target-error: #optional the action to take on an error on the target,
default 'report' (no limitations, since this applies to
a different block device than @device).
Note that @on-source-error and @on-target-error only affect background I/O.
If an error occurs during a guest write request, the device's rerror/werror
actions will be used.
Returns: nothing on success
If @device is not a valid block device, DeviceNotFound
Since 1.6
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-06-24 19:13:14 +04:00
|
|
|
drive-backup
|
|
|
|
------------
|
|
|
|
|
|
|
|
Start a point-in-time copy of a block device to a new destination. The
|
|
|
|
status of ongoing drive-backup operations can be checked with
|
|
|
|
query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
|
|
|
|
The operation can be stopped before it has completed using the
|
|
|
|
block-job-cancel command.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-07-05 17:28:58 +03:00
|
|
|
- "job-id": Identifier for the newly-created block job. If omitted,
|
|
|
|
the device name will be used. (json-string, optional)
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": the device name or node-name of a root node which should be copied.
|
block: add drive-backup QMP command
@drive-backup
Start a point-in-time copy of a block device to a new destination. The
status of ongoing drive-backup operations can be checked with
query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
The operation can be stopped before it has completed using the
block-job-cancel command.
@device: the name of the device which should be copied.
@target: the target of the new image. If the file exists, or if it
is a device, the existing file/device will be used as the new
destination. If it does not exist, a new file will be created.
@format: #optional the format of the new destination, default is to
probe if @mode is 'existing', else the format of the source
@mode: #optional whether and how QEMU should create a new image, default is
'absolute-paths'.
@speed: #optional the maximum speed, in bytes per second
@on-source-error: #optional the action to take on an error on the source,
default 'report'. 'stop' and 'enospc' can only be used
if the block device supports io-status (see BlockInfo).
@on-target-error: #optional the action to take on an error on the target,
default 'report' (no limitations, since this applies to
a different block device than @device).
Note that @on-source-error and @on-target-error only affect background I/O.
If an error occurs during a guest write request, the device's rerror/werror
actions will be used.
Returns: nothing on success
If @device is not a valid block device, DeviceNotFound
Since 1.6
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-06-24 19:13:14 +04:00
|
|
|
(json-string)
|
|
|
|
- "target": the target of the new image. If the file exists, or if it is a
|
|
|
|
device, the existing file/device will be used as the new
|
|
|
|
destination. If it does not exist, a new file will be created.
|
|
|
|
(json-string)
|
|
|
|
- "format": the format of the new destination, default is to probe if 'mode' is
|
|
|
|
'existing', else the format of the source
|
|
|
|
(json-string, optional)
|
2013-06-26 16:11:57 +04:00
|
|
|
- "sync": what parts of the disk image should be copied to the destination;
|
|
|
|
possibilities include "full" for all the disk, "top" for only the sectors
|
2015-06-05 03:20:34 +03:00
|
|
|
allocated in the topmost image, "incremental" for only the dirty sectors in
|
2015-04-18 02:49:58 +03:00
|
|
|
the bitmap, or "none" to only replicate new I/O (MirrorSyncMode).
|
2015-06-05 03:20:34 +03:00
|
|
|
- "bitmap": dirty bitmap name for sync==incremental. Must be present if sync
|
|
|
|
is "incremental", must NOT be present otherwise.
|
block: add drive-backup QMP command
@drive-backup
Start a point-in-time copy of a block device to a new destination. The
status of ongoing drive-backup operations can be checked with
query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
The operation can be stopped before it has completed using the
block-job-cancel command.
@device: the name of the device which should be copied.
@target: the target of the new image. If the file exists, or if it
is a device, the existing file/device will be used as the new
destination. If it does not exist, a new file will be created.
@format: #optional the format of the new destination, default is to
probe if @mode is 'existing', else the format of the source
@mode: #optional whether and how QEMU should create a new image, default is
'absolute-paths'.
@speed: #optional the maximum speed, in bytes per second
@on-source-error: #optional the action to take on an error on the source,
default 'report'. 'stop' and 'enospc' can only be used
if the block device supports io-status (see BlockInfo).
@on-target-error: #optional the action to take on an error on the target,
default 'report' (no limitations, since this applies to
a different block device than @device).
Note that @on-source-error and @on-target-error only affect background I/O.
If an error occurs during a guest write request, the device's rerror/werror
actions will be used.
Returns: nothing on success
If @device is not a valid block device, DeviceNotFound
Since 1.6
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-06-24 19:13:14 +04:00
|
|
|
- "mode": whether and how QEMU should create a new image
|
|
|
|
(NewImageMode, optional, default 'absolute-paths')
|
|
|
|
- "speed": the maximum speed, in bytes per second (json-int, optional)
|
2016-07-22 11:17:52 +03:00
|
|
|
- "compress": true to compress data, if the target format supports it.
|
|
|
|
(json-bool, optional, default false)
|
block: add drive-backup QMP command
@drive-backup
Start a point-in-time copy of a block device to a new destination. The
status of ongoing drive-backup operations can be checked with
query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
The operation can be stopped before it has completed using the
block-job-cancel command.
@device: the name of the device which should be copied.
@target: the target of the new image. If the file exists, or if it
is a device, the existing file/device will be used as the new
destination. If it does not exist, a new file will be created.
@format: #optional the format of the new destination, default is to
probe if @mode is 'existing', else the format of the source
@mode: #optional whether and how QEMU should create a new image, default is
'absolute-paths'.
@speed: #optional the maximum speed, in bytes per second
@on-source-error: #optional the action to take on an error on the source,
default 'report'. 'stop' and 'enospc' can only be used
if the block device supports io-status (see BlockInfo).
@on-target-error: #optional the action to take on an error on the target,
default 'report' (no limitations, since this applies to
a different block device than @device).
Note that @on-source-error and @on-target-error only affect background I/O.
If an error occurs during a guest write request, the device's rerror/werror
actions will be used.
Returns: nothing on success
If @device is not a valid block device, DeviceNotFound
Since 1.6
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-06-24 19:13:14 +04:00
|
|
|
- "on-source-error": the action to take on an error on the source, default
|
|
|
|
'report'. 'stop' and 'enospc' can only be used
|
|
|
|
if the block device supports io-status.
|
|
|
|
(BlockdevOnError, optional)
|
|
|
|
- "on-target-error": the action to take on an error on the target, default
|
|
|
|
'report' (no limitations, since this applies to
|
|
|
|
a different block device than device).
|
|
|
|
(BlockdevOnError, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
-> { "execute": "drive-backup", "arguments": { "device": "drive0",
|
2013-07-26 22:39:04 +04:00
|
|
|
"sync": "full",
|
block: add drive-backup QMP command
@drive-backup
Start a point-in-time copy of a block device to a new destination. The
status of ongoing drive-backup operations can be checked with
query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
The operation can be stopped before it has completed using the
block-job-cancel command.
@device: the name of the device which should be copied.
@target: the target of the new image. If the file exists, or if it
is a device, the existing file/device will be used as the new
destination. If it does not exist, a new file will be created.
@format: #optional the format of the new destination, default is to
probe if @mode is 'existing', else the format of the source
@mode: #optional whether and how QEMU should create a new image, default is
'absolute-paths'.
@speed: #optional the maximum speed, in bytes per second
@on-source-error: #optional the action to take on an error on the source,
default 'report'. 'stop' and 'enospc' can only be used
if the block device supports io-status (see BlockInfo).
@on-target-error: #optional the action to take on an error on the target,
default 'report' (no limitations, since this applies to
a different block device than @device).
Note that @on-source-error and @on-target-error only affect background I/O.
If an error occurs during a guest write request, the device's rerror/werror
actions will be used.
Returns: nothing on success
If @device is not a valid block device, DeviceNotFound
Since 1.6
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2013-06-24 19:13:14 +04:00
|
|
|
"target": "backup.img" } }
|
|
|
|
<- { "return": {} }
|
2014-12-18 13:37:05 +03:00
|
|
|
|
|
|
|
blockdev-backup
|
|
|
|
---------------
|
|
|
|
|
|
|
|
The device version of drive-backup: this command takes an existing named device
|
|
|
|
as backup target.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-07-05 17:28:58 +03:00
|
|
|
- "job-id": Identifier for the newly-created block job. If omitted,
|
|
|
|
the device name will be used. (json-string, optional)
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": the device name or node-name of a root node which should be copied.
|
2014-12-18 13:37:05 +03:00
|
|
|
(json-string)
|
|
|
|
- "target": the name of the backup target device. (json-string)
|
|
|
|
- "sync": what parts of the disk image should be copied to the destination;
|
|
|
|
possibilities include "full" for all the disk, "top" for only the
|
|
|
|
sectors allocated in the topmost image, or "none" to only replicate
|
|
|
|
new I/O (MirrorSyncMode).
|
|
|
|
- "speed": the maximum speed, in bytes per second (json-int, optional)
|
2016-07-22 11:17:53 +03:00
|
|
|
- "compress": true to compress data, if the target format supports it.
|
|
|
|
(json-bool, optional, default false)
|
2014-12-18 13:37:05 +03:00
|
|
|
- "on-source-error": the action to take on an error on the source, default
|
|
|
|
'report'. 'stop' and 'enospc' can only be used
|
|
|
|
if the block device supports io-status.
|
|
|
|
(BlockdevOnError, optional)
|
|
|
|
- "on-target-error": the action to take on an error on the target, default
|
|
|
|
'report' (no limitations, since this applies to
|
|
|
|
a different block device than device).
|
|
|
|
(BlockdevOnError, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
-> { "execute": "blockdev-backup", "arguments": { "device": "src-id",
|
|
|
|
"sync": "full",
|
|
|
|
"target": "tgt-id" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-04-18 02:49:52 +03:00
|
|
|
block-dirty-bitmap-add
|
|
|
|
----------------------
|
|
|
|
Since 2.4
|
|
|
|
|
|
|
|
Create a dirty bitmap with a name on the device, and start tracking the writes.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "node": device/node on which to create dirty bitmap (json-string)
|
|
|
|
- "name": name of the new dirty bitmap (json-string)
|
|
|
|
- "granularity": granularity to track writes with (int, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block-dirty-bitmap-add", "arguments": { "node": "drive0",
|
|
|
|
"name": "bitmap0" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
block-dirty-bitmap-remove
|
|
|
|
-------------------------
|
|
|
|
Since 2.4
|
|
|
|
|
|
|
|
Stop write tracking and remove the dirty bitmap that was created with
|
|
|
|
block-dirty-bitmap-add.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "node": device/node on which to remove dirty bitmap (json-string)
|
|
|
|
- "name": name of the dirty bitmap to remove (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block-dirty-bitmap-remove", "arguments": { "node": "drive0",
|
|
|
|
"name": "bitmap0" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-04-18 02:49:59 +03:00
|
|
|
block-dirty-bitmap-clear
|
|
|
|
------------------------
|
|
|
|
Since 2.4
|
|
|
|
|
|
|
|
Reset the dirty bitmap associated with a node so that an incremental backup
|
|
|
|
from this point in time forward will only backup clusters modified after this
|
|
|
|
clear operation.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "node": device/node on which to remove dirty bitmap (json-string)
|
|
|
|
- "name": name of the dirty bitmap to remove (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block-dirty-bitmap-clear", "arguments": { "node": "drive0",
|
|
|
|
"name": "bitmap0" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2011-07-11 22:01:09 +04:00
|
|
|
blockdev-snapshot-sync
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Synchronous snapshot of a block device. snapshot-file specifies the
|
|
|
|
target of the new image. If the file exists, or if it is a device, the
|
|
|
|
snapshot will be created in the existing file/device. If does not
|
|
|
|
exist, a new file will be created. format specifies the format of the
|
|
|
|
snapshot image, default is qcow2.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "device": device name to snapshot (json-string)
|
2014-01-24 00:31:38 +04:00
|
|
|
- "node-name": graph node name to snapshot (json-string)
|
2011-07-11 22:01:09 +04:00
|
|
|
- "snapshot-file": name of new image file (json-string)
|
2014-01-24 00:31:38 +04:00
|
|
|
- "snapshot-node-name": graph node name of the new snapshot (json-string)
|
2012-03-06 21:55:59 +04:00
|
|
|
- "mode": whether and how QEMU should create the snapshot file
|
|
|
|
(NewImageMode, optional, default "absolute-paths")
|
2011-07-11 22:01:09 +04:00
|
|
|
- "format": format of new image (json-string, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2011-10-11 00:30:08 +04:00
|
|
|
-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
|
|
|
|
"snapshot-file":
|
|
|
|
"/some/place/my-image",
|
|
|
|
"format": "qcow2" } }
|
2011-07-11 22:01:09 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-10-26 15:27:16 +03:00
|
|
|
blockdev-snapshot
|
|
|
|
-----------------
|
|
|
|
Since 2.5
|
|
|
|
|
|
|
|
Create a snapshot, by installing 'node' as the backing image of
|
|
|
|
'overlay'. Additionally, if 'node' is associated with a block
|
|
|
|
device, the block device changes to using 'overlay' as its new active
|
|
|
|
image.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "node": device that will have a snapshot created (json-string)
|
|
|
|
- "overlay": device that will have 'node' as its backing image (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-add",
|
2016-10-07 18:05:04 +03:00
|
|
|
"arguments": { "driver": "qcow2",
|
|
|
|
"node-name": "node1534",
|
|
|
|
"file": { "driver": "file",
|
|
|
|
"filename": "hd1.qcow2" },
|
|
|
|
"backing": "" } }
|
2015-10-26 15:27:16 +03:00
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-snapshot", "arguments": { "node": "ide-hd0",
|
|
|
|
"overlay": "node1534" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2013-09-11 10:04:35 +04:00
|
|
|
blockdev-snapshot-internal-sync
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
Synchronously take an internal snapshot of a block device when the format of
|
|
|
|
image used supports it. If the name is an empty string, or a snapshot with
|
|
|
|
name already exists, the operation will fail.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": the device name or node-name of a root node to snapshot
|
|
|
|
(json-string)
|
2013-09-11 10:04:35 +04:00
|
|
|
- "name": name of the new snapshot (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-snapshot-internal-sync",
|
|
|
|
"arguments": { "device": "ide-hd0",
|
|
|
|
"name": "snapshot0" }
|
|
|
|
}
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2013-09-11 10:04:36 +04:00
|
|
|
blockdev-snapshot-delete-internal-sync
|
|
|
|
--------------------------------------
|
|
|
|
|
|
|
|
Synchronously delete an internal snapshot of a block device when the format of
|
|
|
|
image used supports it. The snapshot is identified by name or id or both. One
|
|
|
|
of name or id is required. If the snapshot is not found, the operation will
|
|
|
|
fail.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": the device name or node-name of a root node (json-string)
|
2013-09-11 10:04:36 +04:00
|
|
|
- "id": ID of the snapshot (json-string, optional)
|
|
|
|
- "name": name of the snapshot (json-string, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-snapshot-delete-internal-sync",
|
|
|
|
"arguments": { "device": "ide-hd0",
|
|
|
|
"name": "snapshot0" }
|
|
|
|
}
|
|
|
|
<- { "return": {
|
|
|
|
"id": "1",
|
|
|
|
"name": "snapshot0",
|
|
|
|
"vm-state-size": 0,
|
|
|
|
"date-sec": 1000012,
|
|
|
|
"date-nsec": 10,
|
|
|
|
"vm-clock-sec": 100,
|
|
|
|
"vm-clock-nsec": 20
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-18 18:49:24 +04:00
|
|
|
drive-mirror
|
|
|
|
------------
|
|
|
|
|
|
|
|
Start mirroring a block device's writes to a new destination. target
|
|
|
|
specifies the target of the new image. If the file exists, or if it is
|
|
|
|
a device, it will be used as the new destination for writes. If it does not
|
|
|
|
exist, a new file will be created. format specifies the format of the
|
|
|
|
mirror image, default is to probe if mode='existing', else the format
|
|
|
|
of the source.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-07-05 17:28:57 +03:00
|
|
|
- "job-id": Identifier for the newly-created block job. If omitted,
|
|
|
|
the device name will be used. (json-string, optional)
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": the device name or node-name of a root node whose writes should be
|
|
|
|
mirrored. (json-string)
|
2012-10-18 18:49:24 +04:00
|
|
|
- "target": name of new image file (json-string)
|
|
|
|
- "format": format of new image (json-string, optional)
|
2014-06-16 14:00:55 +04:00
|
|
|
- "node-name": the name of the new block driver state in the node graph
|
|
|
|
(json-string, optional)
|
2014-06-27 20:25:25 +04:00
|
|
|
- "replaces": the block driver node name to replace when finished
|
|
|
|
(json-string, optional)
|
2012-10-18 18:49:24 +04:00
|
|
|
- "mode": how an image file should be created into the target
|
|
|
|
file/device (NewImageMode, optional, default 'absolute-paths')
|
|
|
|
- "speed": maximum speed of the streaming job, in bytes per second
|
|
|
|
(json-int)
|
2013-01-21 20:09:46 +04:00
|
|
|
- "granularity": granularity of the dirty bitmap, in bytes (json-int, optional)
|
2015-12-24 07:45:05 +03:00
|
|
|
- "buf-size": maximum amount of data in flight from source to target, in bytes
|
2013-01-22 12:03:13 +04:00
|
|
|
(json-int, default 10M)
|
2012-10-18 18:49:24 +04:00
|
|
|
- "sync": what parts of the disk image should be copied to the destination;
|
|
|
|
possibilities include "full" for all the disk, "top" for only the sectors
|
|
|
|
allocated in the topmost image, or "none" to only replicate new I/O
|
|
|
|
(MirrorSyncMode).
|
2012-10-18 18:49:28 +04:00
|
|
|
- "on-source-error": the action to take on an error on the source
|
|
|
|
(BlockdevOnError, default 'report')
|
|
|
|
- "on-target-error": the action to take on an error on the target
|
|
|
|
(BlockdevOnError, default 'report')
|
2015-06-08 08:56:08 +03:00
|
|
|
- "unmap": whether the target sectors should be discarded where source has only
|
|
|
|
zeroes. (json-bool, optional, default true)
|
2012-10-18 18:49:28 +04:00
|
|
|
|
2013-01-21 20:09:46 +04:00
|
|
|
The default value of the granularity is the image cluster size clamped
|
|
|
|
between 4096 and 65536, if the image format defines one. If the format
|
|
|
|
does not define a cluster size, the default value of the granularity
|
|
|
|
is 65536.
|
2012-10-18 18:49:24 +04:00
|
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "drive-mirror", "arguments": { "device": "ide-hd0",
|
|
|
|
"target": "/some/place/my-image",
|
|
|
|
"sync": "full",
|
|
|
|
"format": "qcow2" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-12-24 07:45:05 +03:00
|
|
|
blockdev-mirror
|
|
|
|
------------
|
|
|
|
|
|
|
|
Start mirroring a block device's writes to another block device. target
|
|
|
|
specifies the target of mirror operation.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-07-05 17:28:57 +03:00
|
|
|
- "job-id": Identifier for the newly-created block job. If omitted,
|
|
|
|
the device name will be used. (json-string, optional)
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": The device name or node-name of a root node whose writes should be
|
|
|
|
mirrored (json-string)
|
2015-12-24 07:45:05 +03:00
|
|
|
- "target": device name to mirror to (json-string)
|
|
|
|
- "replaces": the block driver node name to replace when finished
|
|
|
|
(json-string, optional)
|
|
|
|
- "speed": maximum speed of the streaming job, in bytes per second
|
|
|
|
(json-int)
|
|
|
|
- "granularity": granularity of the dirty bitmap, in bytes (json-int, optional)
|
|
|
|
- "buf_size": maximum amount of data in flight from source to target, in bytes
|
|
|
|
(json-int, default 10M)
|
|
|
|
- "sync": what parts of the disk image should be copied to the destination;
|
|
|
|
possibilities include "full" for all the disk, "top" for only the sectors
|
|
|
|
allocated in the topmost image, or "none" to only replicate new I/O
|
|
|
|
(MirrorSyncMode).
|
|
|
|
- "on-source-error": the action to take on an error on the source
|
|
|
|
(BlockdevOnError, default 'report')
|
|
|
|
- "on-target-error": the action to take on an error on the target
|
|
|
|
(BlockdevOnError, default 'report')
|
|
|
|
|
|
|
|
The default value of the granularity is the image cluster size clamped
|
|
|
|
between 4096 and 65536, if the image format defines one. If the format
|
|
|
|
does not define a cluster size, the default value of the granularity
|
|
|
|
is 65536.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-mirror", "arguments": { "device": "ide-hd0",
|
|
|
|
"target": "target0",
|
|
|
|
"sync": "full" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2014-07-01 11:52:16 +04:00
|
|
|
change-backing-file
|
|
|
|
-------------------
|
|
|
|
Since: 2.1
|
|
|
|
|
|
|
|
Change the backing file in the image file metadata. This does not cause
|
|
|
|
QEMU to reopen the image file to reparse the backing filename (it may,
|
|
|
|
however, perform a reopen to change permissions from r/o -> r/w -> r/o,
|
|
|
|
if needed). The new backing file string is written into the image file
|
|
|
|
metadata, and the QEMU internal strings are updated.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "image-node-name": The name of the block driver state node of the
|
|
|
|
image to modify. The "device" is argument is used to
|
|
|
|
verify "image-node-name" is in the chain described by
|
|
|
|
"device".
|
|
|
|
(json-string, optional)
|
|
|
|
|
2016-06-23 15:20:24 +03:00
|
|
|
- "device": The device name or node-name of the root node that owns
|
|
|
|
image-node-name.
|
2014-07-01 11:52:16 +04:00
|
|
|
(json-string)
|
|
|
|
|
|
|
|
- "backing-file": The string to write as the backing file. This string is
|
|
|
|
not validated, so care should be taken when specifying
|
|
|
|
the string or the image chain may not be able to be
|
|
|
|
reopened again.
|
|
|
|
(json-string)
|
|
|
|
|
|
|
|
Returns: Nothing on success
|
|
|
|
If "device" does not exist or cannot be determined, DeviceNotFound
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
getfd
|
|
|
|
-----
|
|
|
|
|
|
|
|
Receive a file descriptor via SCM rights and assign it a name.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "fdname": file descriptor name (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-06-22 22:36:09 +04:00
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) If the name specified by the "fdname" argument already exists,
|
|
|
|
the file descriptor assigned to it will be closed and replaced
|
|
|
|
by the received file descriptor.
|
|
|
|
(2) The 'closefd' command can be used to explicitly close the file
|
|
|
|
descriptor when it is no longer needed.
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
closefd
|
|
|
|
-------
|
|
|
|
|
|
|
|
Close a file descriptor previously passed via SCM rights.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "fdname": file descriptor name (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-08-15 00:43:43 +04:00
|
|
|
add-fd
|
|
|
|
-------
|
|
|
|
|
|
|
|
Add a file descriptor, that was passed via SCM rights, to an fd set.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "fdset-id": The ID of the fd set to add the file descriptor to.
|
|
|
|
(json-int, optional)
|
|
|
|
- "opaque": A free-form string that can be used to describe the fd.
|
|
|
|
(json-string, optional)
|
|
|
|
|
|
|
|
Return a json-object with the following information:
|
|
|
|
|
|
|
|
- "fdset-id": The ID of the fd set that the fd was added to. (json-int)
|
|
|
|
- "fd": The file descriptor that was received via SCM rights and added to the
|
|
|
|
fd set. (json-int)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
|
|
|
|
<- { "return": { "fdset-id": 1, "fd": 3 } }
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) The list of fd sets is shared by all monitor connections.
|
|
|
|
(2) If "fdset-id" is not specified, a new fd set will be created.
|
|
|
|
|
|
|
|
remove-fd
|
|
|
|
---------
|
|
|
|
|
|
|
|
Remove a file descriptor from an fd set.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "fdset-id": The ID of the fd set that the file descriptor belongs to.
|
|
|
|
(json-int)
|
|
|
|
- "fd": The file descriptor that is to be removed. (json-int, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "remove-fd", "arguments": { "fdset-id": 1, "fd": 3 } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1) The list of fd sets is shared by all monitor connections.
|
|
|
|
(2) If "fd" is not specified, all file descriptors in "fdset-id" will be
|
|
|
|
removed.
|
|
|
|
|
|
|
|
query-fdsets
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Return information describing all fd sets.
|
|
|
|
|
|
|
|
Arguments: None
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-fdsets" }
|
|
|
|
<- { "return": [
|
|
|
|
{
|
|
|
|
"fds": [
|
|
|
|
{
|
|
|
|
"fd": 30,
|
|
|
|
"opaque": "rdonly:/path/to/file"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fd": 24,
|
|
|
|
"opaque": "rdwr:/path/to/file"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"fdset-id": 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fds": [
|
|
|
|
{
|
|
|
|
"fd": 28
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fd": 29
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"fdset-id": 0
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
Note: The list of fd sets is shared by all monitor connections.
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
block_passwd
|
|
|
|
------------
|
|
|
|
|
|
|
|
Set the password of encrypted block devices.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "device": device name (json-string)
|
2014-01-24 00:31:35 +04:00
|
|
|
- "node-name": name in the block driver state graph (json-string)
|
2010-09-13 19:26:00 +04:00
|
|
|
- "password": password (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
|
|
|
|
"password": "12345" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2011-11-08 09:00:31 +04:00
|
|
|
block_set_io_throttle
|
|
|
|
------------
|
|
|
|
|
|
|
|
Change I/O throttle limits for a block drive.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-09-20 14:38:48 +03:00
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2013-08-31 00:44:11 +04:00
|
|
|
- "bps": total throughput limit in bytes per second (json-int)
|
|
|
|
- "bps_rd": read throughput limit in bytes per second (json-int)
|
|
|
|
- "bps_wr": write throughput limit in bytes per second (json-int)
|
|
|
|
- "iops": total I/O operations per second (json-int)
|
|
|
|
- "iops_rd": read I/O operations per second (json-int)
|
|
|
|
- "iops_wr": write I/O operations per second (json-int)
|
2016-02-18 13:27:03 +03:00
|
|
|
- "bps_max": total throughput limit during bursts, in bytes (json-int, optional)
|
|
|
|
- "bps_rd_max": read throughput limit during bursts, in bytes (json-int, optional)
|
|
|
|
- "bps_wr_max": write throughput limit during bursts, in bytes (json-int, optional)
|
|
|
|
- "iops_max": total I/O operations per second during bursts (json-int, optional)
|
|
|
|
- "iops_rd_max": read I/O operations per second during bursts (json-int, optional)
|
|
|
|
- "iops_wr_max": write I/O operations per second during bursts (json-int, optional)
|
|
|
|
- "bps_max_length": maximum length of the @bps_max burst period, in seconds (json-int, optional)
|
|
|
|
- "bps_rd_max_length": maximum length of the @bps_rd_max burst period, in seconds (json-int, optional)
|
|
|
|
- "bps_wr_max_length": maximum length of the @bps_wr_max burst period, in seconds (json-int, optional)
|
|
|
|
- "iops_max_length": maximum length of the @iops_max burst period, in seconds (json-int, optional)
|
|
|
|
- "iops_rd_max_length": maximum length of the @iops_rd_max burst period, in seconds (json-int, optional)
|
|
|
|
- "iops_wr_max_length": maximum length of the @iops_wr_max burst period, in seconds (json-int, optional)
|
|
|
|
- "iops_size": I/O size in bytes when limiting (json-int, optional)
|
|
|
|
- "group": throttle group name (json-string, optional)
|
2011-11-08 09:00:31 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-09-20 14:38:48 +03:00
|
|
|
-> { "execute": "block_set_io_throttle", "arguments": { "id": "ide0-1-0",
|
2013-08-31 00:44:11 +04:00
|
|
|
"bps": 1000000,
|
|
|
|
"bps_rd": 0,
|
|
|
|
"bps_wr": 0,
|
|
|
|
"iops": 0,
|
|
|
|
"iops_rd": 0,
|
2013-09-02 16:14:40 +04:00
|
|
|
"iops_wr": 0,
|
|
|
|
"bps_max": 8000000,
|
|
|
|
"bps_rd_max": 0,
|
|
|
|
"bps_wr_max": 0,
|
|
|
|
"iops_max": 0,
|
|
|
|
"iops_rd_max": 0,
|
2013-09-02 16:14:41 +04:00
|
|
|
"iops_wr_max": 0,
|
2016-02-18 13:27:03 +03:00
|
|
|
"bps_max_length": 60,
|
2013-09-02 16:14:41 +04:00
|
|
|
"iops_size": 0 } }
|
2011-11-08 09:00:31 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
2010-10-07 14:22:54 +04:00
|
|
|
set_password
|
|
|
|
------------
|
|
|
|
|
|
|
|
Set the password for vnc/spice protocols.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "protocol": protocol name (json-string)
|
|
|
|
- "password": password (json-string)
|
2015-02-26 17:35:07 +03:00
|
|
|
- "connected": [ keep | disconnect | fail ] (json-string, optional)
|
2010-10-07 14:22:54 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "set_password", "arguments": { "protocol": "vnc",
|
|
|
|
"password": "secret" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
expire_password
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Set the password expire time for vnc/spice protocols.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "protocol": protocol name (json-string)
|
|
|
|
- "time": [ now | never | +secs | secs ] (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
|
|
|
|
"time": "+60" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
qmp_capabilities
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Enable QMP capabilities.
|
|
|
|
|
|
|
|
Arguments: None.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "qmp_capabilities" }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Note: This command must be issued before issuing any other command.
|
|
|
|
|
|
|
|
3. Query Commands
|
|
|
|
=================
|
|
|
|
|
|
|
|
|
|
|
|
query-version
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Show QEMU version.
|
|
|
|
|
|
|
|
Return a json-object with the following information:
|
|
|
|
|
|
|
|
- "qemu": A json-object containing three integer values:
|
|
|
|
- "major": QEMU's major version (json-int)
|
|
|
|
- "minor": QEMU's minor version (json-int)
|
|
|
|
- "micro": QEMU's micro version (json-int)
|
|
|
|
- "package": package's version (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-version" }
|
|
|
|
<- {
|
|
|
|
"return":{
|
|
|
|
"qemu":{
|
|
|
|
"major":0,
|
|
|
|
"minor":11,
|
|
|
|
"micro":5
|
|
|
|
},
|
|
|
|
"package":""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query-commands
|
|
|
|
--------------
|
|
|
|
|
|
|
|
List QMP available commands.
|
|
|
|
|
|
|
|
Each command is represented by a json-object, the returned value is a json-array
|
|
|
|
of all commands.
|
|
|
|
|
|
|
|
Each json-object contain:
|
|
|
|
|
|
|
|
- "name": command's name (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-commands" }
|
|
|
|
<- {
|
|
|
|
"return":[
|
|
|
|
{
|
|
|
|
"name":"query-balloon"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name":"system_powerdown"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
Note: This example has been shortened as the real response is too long.
|
|
|
|
|
qapi: New QMP command query-qmp-schema for QMP introspection
qapi/introspect.json defines the introspection schema. It's designed
for QMP introspection, but should do for similar uses, such as QGA.
The introspection schema does not reflect all the rules and
restrictions that apply to QAPI schemata. A valid QAPI schema has an
introspection value conforming to the introspection schema, but the
converse is not true.
Introspection lowers away a number of schema details, and makes
implicit things explicit:
* The built-in types are declared with their JSON type.
All integer types are mapped to 'int', because how many bits we use
internally is an implementation detail. It could be pressed into
external interface service as very approximate range information,
but that's a bad idea. If we need range information, we better do
it properly.
* Implicit type definitions are made explicit, and given
auto-generated names:
- Array types, named by appending "List" to the name of their
element type, like in generated C.
- The enumeration types implicitly defined by simple union types,
named by appending "Kind" to the name of their simple union type,
like in generated C.
- Types that don't occur in generated C. Their names start with ':'
so they don't clash with the user's names.
* All type references are by name.
* The struct and union types are generalized into an object type.
* Base types are flattened.
* Commands take a single argument and return a single result.
Dictionary argument or list result is an implicit type definition.
The empty object type is used when a command takes no arguments or
produces no results.
The argument is always of object type, but the introspection schema
doesn't reflect that.
The 'gen': false directive is omitted as implementation detail.
The 'success-response' directive is omitted as well for now, even
though it's not an implementation detail, because it's not used by
QMP.
* Events carry a single data value.
Implicit type definition and empty object type use, just like for
commands.
The value is of object type, but the introspection schema doesn't
reflect that.
* Types not used by commands or events are omitted.
Indirect use counts as use.
* Optional members have a default, which can only be null right now
Instead of a mandatory "optional" flag, we have an optional default.
No default means mandatory, default null means optional without
default value. Non-null is available for optional with default
(possible future extension).
* Clients should *not* look up types by name, because type names are
not ABI. Look up the command or event you're interested in, then
follow the references.
TODO Should we hide the type names to eliminate the temptation?
New generator scripts/qapi-introspect.py computes an introspection
value for its input, and generates a C variable holding it.
It can generate awfully long lines. Marked TODO.
A new test-qmp-input-visitor test case feeds its result for both
tests/qapi-schema/qapi-schema-test.json and qapi-schema.json to a
QmpInputVisitor to verify it actually conforms to the schema.
New QMP command query-qmp-schema takes its return value from that
variable. Its reply is some 85KiBytes for me right now.
If this turns out to be too much, we have a couple of options:
* We can use shorter names in the JSON. Not the QMP style.
* Optionally return the sub-schema for commands and events given as
arguments.
Right now qmp_query_schema() sends the string literal computed by
qmp-introspect.py. To compute sub-schema at run time, we'd have to
duplicate parts of qapi-introspect.py in C. Unattractive.
* Let clients cache the output of query-qmp-schema.
It changes only on QEMU upgrades, i.e. rarely. Provide a command
query-qmp-schema-hash. Clients can have a cache indexed by hash,
and re-query the schema only when they don't have it cached. Even
simpler: put the hash in the QMP greeting.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
2015-09-16 14:06:28 +03:00
|
|
|
query-qmp-schema
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Return the QMP wire schema. The returned value is a json-array of
|
|
|
|
named schema entities. Entities are commands, events and various
|
|
|
|
types. See docs/qapi-code-gen.txt for information on their structure
|
|
|
|
and intended use.
|
|
|
|
|
2010-09-13 19:26:00 +04:00
|
|
|
query-block
|
|
|
|
-----------
|
|
|
|
|
|
|
|
Show the block devices.
|
|
|
|
|
|
|
|
Each block device information is stored in a json-object and the returned value
|
|
|
|
is a json-array of all devices.
|
|
|
|
|
|
|
|
Each json-object contain the following:
|
|
|
|
|
|
|
|
- "device": device name (json-string)
|
|
|
|
- "type": device type (json-string)
|
2011-05-16 17:04:55 +04:00
|
|
|
- deprecated, retained for backward compatibility
|
|
|
|
- Possible values: "unknown"
|
2010-09-13 19:26:00 +04:00
|
|
|
- "removable": true if the device is removable, false otherwise (json-bool)
|
|
|
|
- "locked": true if the device is locked, false otherwise (json-bool)
|
2013-01-29 20:58:41 +04:00
|
|
|
- "tray_open": only present if removable, true if the device has a tray,
|
2011-09-06 20:58:53 +04:00
|
|
|
and it is open (json-bool)
|
2010-09-13 19:26:00 +04:00
|
|
|
- "inserted": only present if the device is inserted, it is a json-object
|
|
|
|
containing the following:
|
|
|
|
- "file": device file name (json-string)
|
|
|
|
- "ro": true if read-only, false otherwise (json-bool)
|
|
|
|
- "drv": driver format name (json-string)
|
2014-09-16 18:24:24 +04:00
|
|
|
- Possible values: "blkdebug", "bochs", "cloop", "dmg",
|
2010-09-13 19:26:00 +04:00
|
|
|
"file", "file", "ftp", "ftps", "host_cdrom",
|
2015-03-17 19:02:20 +03:00
|
|
|
"host_device", "http", "https",
|
2010-09-13 19:26:00 +04:00
|
|
|
"nbd", "parallels", "qcow", "qcow2", "raw",
|
block/curl: Drop TFTP "support"
Because TFTP does not support byte ranges, it was never usable with our
curl block driver. Since apparently nobody has ever complained loudly
enough for someone to take care of the issue until now, it seems
reasonable to assume that nobody has ever actually used it.
Therefore, it should be safe to just drop it from curl's protocol list.
[Jeff Cody: Below is additional summary pulled, with some rewording,
from followup emails between Max and Markus, to explain what
worked and what didn't]
TFTP would sometimes work, to a limited extent, for images <= the curl
"readahead" size, so long as reads started at offset zero. By default,
that readahead size is 256KB.
Reads starting at a non-zero offset would also have returned data from a
zero offset. It can become more complicated still, with mixed reads at
zero offset and non-zero offsets, due to data buffering.
In short, TFTP could only have worked before in very specific scenarios
with unrealistic expectations and constraints.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Message-id: 20161102175539.4375-4-mreitz@redhat.com
Signed-off-by: Jeff Cody <jcody@redhat.com>
2016-11-02 20:55:37 +03:00
|
|
|
"vdi", "vmdk", "vpc", "vvfat"
|
2010-09-13 19:26:00 +04:00
|
|
|
- "backing_file": backing file name (json-string, optional)
|
2012-08-02 12:22:48 +04:00
|
|
|
- "backing_file_depth": number of files in the backing file chain (json-int)
|
2010-09-13 19:26:00 +04:00
|
|
|
- "encrypted": true if encrypted, false otherwise (json-bool)
|
2011-11-08 09:00:31 +04:00
|
|
|
- "bps": limit total bytes per second (json-int)
|
|
|
|
- "bps_rd": limit read bytes per second (json-int)
|
|
|
|
- "bps_wr": limit write bytes per second (json-int)
|
|
|
|
- "iops": limit total I/O operations per second (json-int)
|
|
|
|
- "iops_rd": limit read operations per second (json-int)
|
|
|
|
- "iops_wr": limit write operations per second (json-int)
|
2013-09-02 16:14:40 +04:00
|
|
|
- "bps_max": total max in bytes (json-int)
|
|
|
|
- "bps_rd_max": read max in bytes (json-int)
|
|
|
|
- "bps_wr_max": write max in bytes (json-int)
|
|
|
|
- "iops_max": total I/O operations max (json-int)
|
|
|
|
- "iops_rd_max": read I/O operations max (json-int)
|
|
|
|
- "iops_wr_max": write I/O operations max (json-int)
|
2013-09-02 16:14:41 +04:00
|
|
|
- "iops_size": I/O size when limiting by iops (json-int)
|
2014-05-18 02:58:19 +04:00
|
|
|
- "detect_zeroes": detect and optimize zero writing (json-string)
|
|
|
|
- Possible values: "off", "on", "unmap"
|
block: add event when disk usage exceeds threshold
Managing applications, like oVirt (http://www.ovirt.org), make extensive
use of thin-provisioned disk images.
To let the guest run smoothly and be not unnecessarily paused, oVirt sets
a disk usage threshold (so called 'high water mark') based on the occupation
of the device, and automatically extends the image once the threshold
is reached or exceeded.
In order to detect the crossing of the threshold, oVirt has no choice but
aggressively polling the QEMU monitor using the query-blockstats command.
This lead to unnecessary system load, and is made even worse under scale:
deployments with hundreds of VMs are no longer rare.
To fix this, this patch adds:
* A new monitor command `block-set-write-threshold', to set a mark for
a given block device.
* A new event `BLOCK_WRITE_THRESHOLD', to report if a block device
usage exceeds the threshold.
* A new `write_threshold' field into the `BlockDeviceInfo' structure,
to report the configured threshold.
This will allow the managing application to use smarter and more
efficient monitoring, greatly reducing the need of polling.
[Updated qemu-iotests 067 output to add the new 'write_threshold'
property. --Stefan]
[Changed g_assert_false() to !g_assert() to fix the build on older glib
versions. --Kevin]
Signed-off-by: Francesco Romani <fromani@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1421068273-692-1-git-send-email-fromani@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2015-01-12 16:11:13 +03:00
|
|
|
- "write_threshold": write offset threshold in bytes, a event will be
|
|
|
|
emitted if crossed. Zero if disabled (json-int)
|
2013-06-06 08:27:59 +04:00
|
|
|
- "image": the detail of the image, it is a json-object containing
|
|
|
|
the following:
|
|
|
|
- "filename": image file name (json-string)
|
|
|
|
- "format": image format (json-string)
|
|
|
|
- "virtual-size": image capacity in bytes (json-int)
|
|
|
|
- "dirty-flag": true if image is not cleanly closed, not present
|
|
|
|
means clean (json-bool, optional)
|
|
|
|
- "actual-size": actual size on disk in bytes of the image, not
|
|
|
|
present when image does not support thin
|
|
|
|
provision (json-int, optional)
|
|
|
|
- "cluster-size": size of a cluster in bytes, not present if image
|
|
|
|
format does not support it (json-int, optional)
|
|
|
|
- "encrypted": true if the image is encrypted, not present means
|
|
|
|
false or the image format does not support
|
|
|
|
encryption (json-bool, optional)
|
|
|
|
- "backing_file": backing file name, not present means no backing
|
|
|
|
file is used or the image format does not
|
|
|
|
support backing file chain
|
|
|
|
(json-string, optional)
|
|
|
|
- "full-backing-filename": full path of the backing file, not
|
|
|
|
present if it equals backing_file or no
|
|
|
|
backing file is used
|
|
|
|
(json-string, optional)
|
|
|
|
- "backing-filename-format": the format of the backing file, not
|
|
|
|
present means unknown or no backing
|
|
|
|
file (json-string, optional)
|
|
|
|
- "snapshots": the internal snapshot info, it is an optional list
|
|
|
|
of json-object containing the following:
|
|
|
|
- "id": unique snapshot id (json-string)
|
|
|
|
- "name": snapshot name (json-string)
|
|
|
|
- "vm-state-size": size of the VM state in bytes (json-int)
|
|
|
|
- "date-sec": UTC date of the snapshot in seconds (json-int)
|
|
|
|
- "date-nsec": fractional part in nanoseconds to be used with
|
2013-08-31 00:44:11 +04:00
|
|
|
date-sec (json-int)
|
2013-06-06 08:27:59 +04:00
|
|
|
- "vm-clock-sec": VM clock relative to boot in seconds
|
|
|
|
(json-int)
|
|
|
|
- "vm-clock-nsec": fractional part in nanoseconds to be used
|
|
|
|
with vm-clock-sec (json-int)
|
|
|
|
- "backing-image": the detail of the backing image, it is an
|
|
|
|
optional json-object only present when a
|
|
|
|
backing image present for this image
|
2011-11-08 09:00:31 +04:00
|
|
|
|
2011-09-27 00:43:54 +04:00
|
|
|
- "io-status": I/O operation status, only present if the device supports it
|
|
|
|
and the VM is configured to stop on errors. It's always reset
|
|
|
|
to "ok" when the "cont" command is issued (json_string, optional)
|
|
|
|
- Possible values: "ok", "failed", "nospace"
|
2010-09-13 19:26:00 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-block" }
|
|
|
|
<- {
|
|
|
|
"return":[
|
|
|
|
{
|
2011-09-27 00:43:54 +04:00
|
|
|
"io-status": "ok",
|
2010-09-13 19:26:00 +04:00
|
|
|
"device":"ide0-hd0",
|
|
|
|
"locked":false,
|
|
|
|
"removable":false,
|
|
|
|
"inserted":{
|
|
|
|
"ro":false,
|
|
|
|
"drv":"qcow2",
|
|
|
|
"encrypted":false,
|
2013-06-06 08:27:59 +04:00
|
|
|
"file":"disks/test.qcow2",
|
|
|
|
"backing_file_depth":1,
|
2011-11-08 09:00:31 +04:00
|
|
|
"bps":1000000,
|
|
|
|
"bps_rd":0,
|
|
|
|
"bps_wr":0,
|
|
|
|
"iops":1000000,
|
|
|
|
"iops_rd":0,
|
|
|
|
"iops_wr":0,
|
2013-09-02 16:14:40 +04:00
|
|
|
"bps_max": 8000000,
|
|
|
|
"bps_rd_max": 0,
|
|
|
|
"bps_wr_max": 0,
|
|
|
|
"iops_max": 0,
|
|
|
|
"iops_rd_max": 0,
|
|
|
|
"iops_wr_max": 0,
|
2013-09-02 16:14:41 +04:00
|
|
|
"iops_size": 0,
|
2014-05-18 02:58:19 +04:00
|
|
|
"detect_zeroes": "on",
|
block: add event when disk usage exceeds threshold
Managing applications, like oVirt (http://www.ovirt.org), make extensive
use of thin-provisioned disk images.
To let the guest run smoothly and be not unnecessarily paused, oVirt sets
a disk usage threshold (so called 'high water mark') based on the occupation
of the device, and automatically extends the image once the threshold
is reached or exceeded.
In order to detect the crossing of the threshold, oVirt has no choice but
aggressively polling the QEMU monitor using the query-blockstats command.
This lead to unnecessary system load, and is made even worse under scale:
deployments with hundreds of VMs are no longer rare.
To fix this, this patch adds:
* A new monitor command `block-set-write-threshold', to set a mark for
a given block device.
* A new event `BLOCK_WRITE_THRESHOLD', to report if a block device
usage exceeds the threshold.
* A new `write_threshold' field into the `BlockDeviceInfo' structure,
to report the configured threshold.
This will allow the managing application to use smarter and more
efficient monitoring, greatly reducing the need of polling.
[Updated qemu-iotests 067 output to add the new 'write_threshold'
property. --Stefan]
[Changed g_assert_false() to !g_assert() to fix the build on older glib
versions. --Kevin]
Signed-off-by: Francesco Romani <fromani@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1421068273-692-1-git-send-email-fromani@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2015-01-12 16:11:13 +03:00
|
|
|
"write_threshold": 0,
|
2013-06-06 08:27:59 +04:00
|
|
|
"image":{
|
|
|
|
"filename":"disks/test.qcow2",
|
|
|
|
"format":"qcow2",
|
|
|
|
"virtual-size":2048000,
|
|
|
|
"backing_file":"base.qcow2",
|
|
|
|
"full-backing-filename":"disks/base.qcow2",
|
2015-04-28 22:20:41 +03:00
|
|
|
"backing-filename-format":"qcow2",
|
2013-06-06 08:27:59 +04:00
|
|
|
"snapshots":[
|
|
|
|
{
|
|
|
|
"id": "1",
|
|
|
|
"name": "snapshot1",
|
|
|
|
"vm-state-size": 0,
|
|
|
|
"date-sec": 10000200,
|
|
|
|
"date-nsec": 12,
|
|
|
|
"vm-clock-sec": 206,
|
|
|
|
"vm-clock-nsec": 30
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"backing-image":{
|
|
|
|
"filename":"disks/base.qcow2",
|
|
|
|
"format":"qcow2",
|
|
|
|
"virtual-size":2048000
|
|
|
|
}
|
|
|
|
}
|
2010-09-13 19:26:00 +04:00
|
|
|
},
|
2011-05-16 17:04:55 +04:00
|
|
|
"type":"unknown"
|
2010-09-13 19:26:00 +04:00
|
|
|
},
|
|
|
|
{
|
2011-09-27 00:43:54 +04:00
|
|
|
"io-status": "ok",
|
2010-09-13 19:26:00 +04:00
|
|
|
"device":"ide1-cd0",
|
|
|
|
"locked":false,
|
|
|
|
"removable":true,
|
2011-05-16 17:04:55 +04:00
|
|
|
"type":"unknown"
|
2010-09-13 19:26:00 +04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"device":"floppy0",
|
|
|
|
"locked":false,
|
|
|
|
"removable":true,
|
2011-05-16 17:04:55 +04:00
|
|
|
"type":"unknown"
|
2010-09-13 19:26:00 +04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"device":"sd0",
|
|
|
|
"locked":false,
|
|
|
|
"removable":true,
|
2011-05-16 17:04:55 +04:00
|
|
|
"type":"unknown"
|
2010-09-13 19:26:00 +04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
query-blockstats
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Show block device statistics.
|
|
|
|
|
|
|
|
Each device statistic information is stored in a json-object and the returned
|
|
|
|
value is a json-array of all devices.
|
|
|
|
|
|
|
|
Each json-object contain the following:
|
|
|
|
|
|
|
|
- "device": device name (json-string)
|
|
|
|
- "stats": A json-object with the statistics information, it contains:
|
|
|
|
- "rd_bytes": bytes read (json-int)
|
|
|
|
- "wr_bytes": bytes written (json-int)
|
|
|
|
- "rd_operations": read operations (json-int)
|
|
|
|
- "wr_operations": write operations (json-int)
|
2011-08-22 02:25:58 +04:00
|
|
|
- "flush_operations": cache flush operations (json-int)
|
2011-08-25 10:26:10 +04:00
|
|
|
- "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
|
|
|
|
- "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
|
|
|
|
- "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
|
2015-10-19 18:53:20 +03:00
|
|
|
- "wr_highest_offset": The offset after the greatest byte written to the
|
|
|
|
BlockDriverState since it has been opened (json-int)
|
2015-02-02 16:52:18 +03:00
|
|
|
- "rd_merged": number of read requests that have been merged into
|
|
|
|
another request (json-int)
|
|
|
|
- "wr_merged": number of write requests that have been merged into
|
|
|
|
another request (json-int)
|
2015-10-28 18:33:02 +03:00
|
|
|
- "idle_time_ns": time since the last I/O operation, in
|
|
|
|
nanoseconds. If the field is absent it means
|
|
|
|
that there haven't been any operations yet
|
|
|
|
(json-int, optional)
|
2015-10-28 18:33:03 +03:00
|
|
|
- "failed_rd_operations": number of failed read operations
|
|
|
|
(json-int)
|
|
|
|
- "failed_wr_operations": number of failed write operations
|
|
|
|
(json-int)
|
|
|
|
- "failed_flush_operations": number of failed flush operations
|
|
|
|
(json-int)
|
|
|
|
- "invalid_rd_operations": number of invalid read operations
|
|
|
|
(json-int)
|
|
|
|
- "invalid_wr_operations": number of invalid write operations
|
|
|
|
(json-int)
|
|
|
|
- "invalid_flush_operations": number of invalid flush operations
|
|
|
|
(json-int)
|
2015-10-28 18:33:04 +03:00
|
|
|
- "account_invalid": whether invalid operations are included in
|
|
|
|
the last access statistics (json-bool)
|
|
|
|
- "account_failed": whether failed operations are included in the
|
|
|
|
latency and last access statistics
|
|
|
|
(json-bool)
|
2015-10-28 18:33:05 +03:00
|
|
|
- "timed_stats": A json-array containing statistics collected in
|
|
|
|
specific intervals, with the following members:
|
|
|
|
- "interval_length": interval used for calculating the
|
|
|
|
statistics, in seconds (json-int)
|
|
|
|
- "min_rd_latency_ns": minimum latency of read operations in
|
|
|
|
the defined interval, in nanoseconds
|
|
|
|
(json-int)
|
|
|
|
- "min_wr_latency_ns": minimum latency of write operations in
|
|
|
|
the defined interval, in nanoseconds
|
|
|
|
(json-int)
|
|
|
|
- "min_flush_latency_ns": minimum latency of flush operations
|
|
|
|
in the defined interval, in
|
|
|
|
nanoseconds (json-int)
|
|
|
|
- "max_rd_latency_ns": maximum latency of read operations in
|
|
|
|
the defined interval, in nanoseconds
|
|
|
|
(json-int)
|
|
|
|
- "max_wr_latency_ns": maximum latency of write operations in
|
|
|
|
the defined interval, in nanoseconds
|
|
|
|
(json-int)
|
|
|
|
- "max_flush_latency_ns": maximum latency of flush operations
|
|
|
|
in the defined interval, in
|
|
|
|
nanoseconds (json-int)
|
|
|
|
- "avg_rd_latency_ns": average latency of read operations in
|
|
|
|
the defined interval, in nanoseconds
|
|
|
|
(json-int)
|
|
|
|
- "avg_wr_latency_ns": average latency of write operations in
|
|
|
|
the defined interval, in nanoseconds
|
|
|
|
(json-int)
|
|
|
|
- "avg_flush_latency_ns": average latency of flush operations
|
|
|
|
in the defined interval, in
|
|
|
|
nanoseconds (json-int)
|
2015-10-28 18:33:06 +03:00
|
|
|
- "avg_rd_queue_depth": average number of pending read
|
|
|
|
operations in the defined interval
|
|
|
|
(json-number)
|
|
|
|
- "avg_wr_queue_depth": average number of pending write
|
|
|
|
operations in the defined interval
|
|
|
|
(json-number).
|
2010-09-13 19:26:00 +04:00
|
|
|
- "parent": Contains recursively the statistics of the underlying
|
|
|
|
protocol (e.g. the host file for a qcow2 image). If there is
|
|
|
|
no underlying protocol, this field is omitted
|
|
|
|
(json-object, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-blockstats" }
|
|
|
|
<- {
|
|
|
|
"return":[
|
|
|
|
{
|
|
|
|
"device":"ide0-hd0",
|
|
|
|
"parent":{
|
|
|
|
"stats":{
|
|
|
|
"wr_highest_offset":3686448128,
|
|
|
|
"wr_bytes":9786368,
|
|
|
|
"wr_operations":751,
|
|
|
|
"rd_bytes":122567168,
|
|
|
|
"rd_operations":36772
|
2011-08-25 10:26:10 +04:00
|
|
|
"wr_total_times_ns":313253456
|
|
|
|
"rd_total_times_ns":3465673657
|
|
|
|
"flush_total_times_ns":49653
|
2011-08-22 02:25:58 +04:00
|
|
|
"flush_operations":61,
|
2015-02-02 16:52:18 +03:00
|
|
|
"rd_merged":0,
|
2015-10-28 18:33:02 +03:00
|
|
|
"wr_merged":0,
|
2015-10-28 18:33:04 +03:00
|
|
|
"idle_time_ns":2953431879,
|
|
|
|
"account_invalid":true,
|
|
|
|
"account_failed":false
|
2010-09-13 19:26:00 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"stats":{
|
|
|
|
"wr_highest_offset":2821110784,
|
|
|
|
"wr_bytes":9786368,
|
|
|
|
"wr_operations":692,
|
|
|
|
"rd_bytes":122739200,
|
|
|
|
"rd_operations":36604
|
2011-08-22 02:25:58 +04:00
|
|
|
"flush_operations":51,
|
2011-08-25 10:26:10 +04:00
|
|
|
"wr_total_times_ns":313253456
|
|
|
|
"rd_total_times_ns":3465673657
|
2015-02-02 16:52:18 +03:00
|
|
|
"flush_total_times_ns":49653,
|
|
|
|
"rd_merged":0,
|
2015-10-28 18:33:02 +03:00
|
|
|
"wr_merged":0,
|
2015-10-28 18:33:04 +03:00
|
|
|
"idle_time_ns":2953431879,
|
|
|
|
"account_invalid":true,
|
|
|
|
"account_failed":false
|
2010-09-13 19:26:00 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"device":"ide1-cd0",
|
|
|
|
"stats":{
|
|
|
|
"wr_highest_offset":0,
|
|
|
|
"wr_bytes":0,
|
|
|
|
"wr_operations":0,
|
|
|
|
"rd_bytes":0,
|
|
|
|
"rd_operations":0
|
2011-08-22 02:25:58 +04:00
|
|
|
"flush_operations":0,
|
2011-08-25 10:26:10 +04:00
|
|
|
"wr_total_times_ns":0
|
|
|
|
"rd_total_times_ns":0
|
2015-02-02 16:52:18 +03:00
|
|
|
"flush_total_times_ns":0,
|
|
|
|
"rd_merged":0,
|
2015-10-28 18:33:04 +03:00
|
|
|
"wr_merged":0,
|
|
|
|
"account_invalid":false,
|
|
|
|
"account_failed":false
|
2010-09-13 19:26:00 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"device":"floppy0",
|
|
|
|
"stats":{
|
|
|
|
"wr_highest_offset":0,
|
|
|
|
"wr_bytes":0,
|
|
|
|
"wr_operations":0,
|
|
|
|
"rd_bytes":0,
|
|
|
|
"rd_operations":0
|
2011-08-22 02:25:58 +04:00
|
|
|
"flush_operations":0,
|
2011-08-25 10:26:10 +04:00
|
|
|
"wr_total_times_ns":0
|
|
|
|
"rd_total_times_ns":0
|
2015-02-02 16:52:18 +03:00
|
|
|
"flush_total_times_ns":0,
|
|
|
|
"rd_merged":0,
|
2015-10-28 18:33:04 +03:00
|
|
|
"wr_merged":0,
|
|
|
|
"account_invalid":false,
|
|
|
|
"account_failed":false
|
2010-09-13 19:26:00 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"device":"sd0",
|
|
|
|
"stats":{
|
|
|
|
"wr_highest_offset":0,
|
|
|
|
"wr_bytes":0,
|
|
|
|
"wr_operations":0,
|
|
|
|
"rd_bytes":0,
|
|
|
|
"rd_operations":0
|
2011-08-22 02:25:58 +04:00
|
|
|
"flush_operations":0,
|
2011-08-25 10:26:10 +04:00
|
|
|
"wr_total_times_ns":0
|
|
|
|
"rd_total_times_ns":0
|
2015-02-02 16:52:18 +03:00
|
|
|
"flush_total_times_ns":0,
|
|
|
|
"rd_merged":0,
|
2015-10-28 18:33:04 +03:00
|
|
|
"wr_merged":0,
|
|
|
|
"account_invalid":false,
|
|
|
|
"account_failed":false
|
2010-09-13 19:26:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-04-25 13:50:35 +04:00
|
|
|
query-command-line-options
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
Show command line option schema.
|
|
|
|
|
|
|
|
Return a json-array of command line option schema for all options (or for
|
|
|
|
the given option), returning an error if the given option doesn't exist.
|
|
|
|
|
|
|
|
Each array entry contains the following:
|
|
|
|
|
|
|
|
- "option": option name (json-string)
|
|
|
|
- "parameters": a json-array describes all parameters of the option:
|
|
|
|
- "name": parameter name (json-string)
|
|
|
|
- "type": parameter type (one of 'string', 'boolean', 'number',
|
|
|
|
or 'size')
|
|
|
|
- "help": human readable description of the parameter
|
|
|
|
(json-string, optional)
|
2014-06-05 13:20:43 +04:00
|
|
|
- "default": default value string for the parameter
|
|
|
|
(json-string, optional)
|
2013-04-25 13:50:35 +04:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-command-line-options", "arguments": { "option": "option-rom" } }
|
|
|
|
<- { "return": [
|
|
|
|
{
|
|
|
|
"parameters": [
|
|
|
|
{
|
|
|
|
"name": "romfile",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "bootindex",
|
|
|
|
"type": "number"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"option": "option-rom"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-03-20 20:34:49 +04:00
|
|
|
query-tpm
|
|
|
|
---------
|
|
|
|
|
|
|
|
Return information about the TPM device.
|
|
|
|
|
|
|
|
Arguments: None
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-tpm" }
|
|
|
|
<- { "return":
|
|
|
|
[
|
|
|
|
{ "model": "tpm-tis",
|
|
|
|
"options":
|
|
|
|
{ "type": "passthrough",
|
|
|
|
"data":
|
|
|
|
{ "cancel-path": "/sys/class/misc/tpm0/device/cancel",
|
|
|
|
"path": "/dev/tpm0"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"id": "tpm0"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
query-tpm-models
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Return a list of supported TPM models.
|
|
|
|
|
|
|
|
Arguments: None
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-tpm-models" }
|
|
|
|
<- { "return": [ "tpm-tis" ] }
|
|
|
|
|
|
|
|
query-tpm-types
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Return a list of supported TPM types.
|
|
|
|
|
|
|
|
Arguments: None
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-tpm-types" }
|
|
|
|
<- { "return": [ "passthrough" ] }
|
|
|
|
|
2012-12-19 13:33:56 +04:00
|
|
|
chardev-add
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Add a chardev.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "id": the chardev's ID, must be unique (json-string)
|
|
|
|
- "backend": chardev backend type + parameters
|
|
|
|
|
2012-12-19 16:13:57 +04:00
|
|
|
Examples:
|
2012-12-19 13:33:56 +04:00
|
|
|
|
|
|
|
-> { "execute" : "chardev-add",
|
|
|
|
"arguments" : { "id" : "foo",
|
|
|
|
"backend" : { "type" : "null", "data" : {} } } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-12-19 16:13:57 +04:00
|
|
|
-> { "execute" : "chardev-add",
|
|
|
|
"arguments" : { "id" : "bar",
|
|
|
|
"backend" : { "type" : "file",
|
|
|
|
"data" : { "out" : "/tmp/bar.log" } } } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2012-12-20 17:39:13 +04:00
|
|
|
-> { "execute" : "chardev-add",
|
|
|
|
"arguments" : { "id" : "baz",
|
|
|
|
"backend" : { "type" : "pty", "data" : {} } } }
|
|
|
|
<- { "return": { "pty" : "/dev/pty/42" } }
|
|
|
|
|
2012-12-19 13:33:56 +04:00
|
|
|
chardev-remove
|
|
|
|
--------------
|
|
|
|
|
|
|
|
Remove a chardev.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "id": the chardev's ID, must exist and not be in use (json-string)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "chardev-remove", "arguments": { "id" : "foo" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
net: add support of mac-programming over macvtap in QEMU side
Currently macvtap based macvlan device is working in promiscuous
mode, we want to implement mac-programming over macvtap through
Libvirt for better performance.
Design:
QEMU notifies Libvirt when rx-filter config is changed in guest,
then Libvirt query the rx-filter information by a monitor command,
and sync the change to macvtap device. Related rx-filter config
of the nic contains main mac, rx-mode items and vlan table.
This patch adds a QMP event to notify management of rx-filter change,
and adds a monitor command for management to query rx-filter
information.
Test:
If we repeatedly add/remove vlan, and change macaddr of vlan
interfaces in guest by a loop script.
Result:
The events will flood the QMP client(management), management takes
too much resource to process the events.
Event_throttle API (set rate to 1 ms) can avoid the events to flood
QMP client, but it could cause an unexpected delay (~1ms), guests
guests normally expect rx-filter updates immediately.
So we use a flag for each nic to avoid events flooding, the event
is emitted once until the query command is executed. The flag
implementation could not introduce unexpected delay.
There maybe exist an uncontrollable delay if we let Libvirt do the
real change, guests normally expect rx-filter updates immediately.
But it's another separate issue, we can investigate it when the
work in Libvirt side is done.
Michael S. Tsirkin: tweaked to enable events on start
Michael S. Tsirkin: fixed not to crash when no id
Michael S. Tsirkin: fold in patch:
"additional fixes for mac-programming feature"
Amos Kong: always notify QMP client if mactable is changed
Amos Kong: return NULL list if no net client supports rx-filter query
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Amos Kong <akong@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2013-06-14 11:45:52 +04:00
|
|
|
query-rx-filter
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Show rx-filter information.
|
|
|
|
|
|
|
|
Returns a json-array of rx-filter information for all NICs (or for the
|
|
|
|
given NIC), returning an error if the given NIC doesn't exist, or
|
|
|
|
given NIC doesn't support rx-filter querying, or given net client
|
|
|
|
isn't a NIC.
|
|
|
|
|
|
|
|
The query will clear the event notification flag of each NIC, then qemu
|
|
|
|
will start to emit event to QMP monitor.
|
|
|
|
|
|
|
|
Each array entry contains the following:
|
|
|
|
|
|
|
|
- "name": net client name (json-string)
|
|
|
|
- "promiscuous": promiscuous mode is enabled (json-bool)
|
|
|
|
- "multicast": multicast receive state (one of 'normal', 'none', 'all')
|
|
|
|
- "unicast": unicast receive state (one of 'normal', 'none', 'all')
|
2014-03-26 04:19:43 +04:00
|
|
|
- "vlan": vlan receive state (one of 'normal', 'none', 'all') (Since 2.0)
|
net: add support of mac-programming over macvtap in QEMU side
Currently macvtap based macvlan device is working in promiscuous
mode, we want to implement mac-programming over macvtap through
Libvirt for better performance.
Design:
QEMU notifies Libvirt when rx-filter config is changed in guest,
then Libvirt query the rx-filter information by a monitor command,
and sync the change to macvtap device. Related rx-filter config
of the nic contains main mac, rx-mode items and vlan table.
This patch adds a QMP event to notify management of rx-filter change,
and adds a monitor command for management to query rx-filter
information.
Test:
If we repeatedly add/remove vlan, and change macaddr of vlan
interfaces in guest by a loop script.
Result:
The events will flood the QMP client(management), management takes
too much resource to process the events.
Event_throttle API (set rate to 1 ms) can avoid the events to flood
QMP client, but it could cause an unexpected delay (~1ms), guests
guests normally expect rx-filter updates immediately.
So we use a flag for each nic to avoid events flooding, the event
is emitted once until the query command is executed. The flag
implementation could not introduce unexpected delay.
There maybe exist an uncontrollable delay if we let Libvirt do the
real change, guests normally expect rx-filter updates immediately.
But it's another separate issue, we can investigate it when the
work in Libvirt side is done.
Michael S. Tsirkin: tweaked to enable events on start
Michael S. Tsirkin: fixed not to crash when no id
Michael S. Tsirkin: fold in patch:
"additional fixes for mac-programming feature"
Amos Kong: always notify QMP client if mactable is changed
Amos Kong: return NULL list if no net client supports rx-filter query
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Amos Kong <akong@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2013-06-14 11:45:52 +04:00
|
|
|
- "broadcast-allowed": allow to receive broadcast (json-bool)
|
|
|
|
- "multicast-overflow": multicast table is overflowed (json-bool)
|
|
|
|
- "unicast-overflow": unicast table is overflowed (json-bool)
|
|
|
|
- "main-mac": main macaddr string (json-string)
|
|
|
|
- "vlan-table": a json-array of active vlan id
|
|
|
|
- "unicast-table": a json-array of unicast macaddr string
|
|
|
|
- "multicast-table": a json-array of multicast macaddr string
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-rx-filter", "arguments": { "name": "vnet0" } }
|
|
|
|
<- { "return": [
|
|
|
|
{
|
|
|
|
"promiscuous": true,
|
|
|
|
"name": "vnet0",
|
|
|
|
"main-mac": "52:54:00:12:34:56",
|
|
|
|
"unicast": "normal",
|
2014-03-26 04:19:43 +04:00
|
|
|
"vlan": "normal",
|
net: add support of mac-programming over macvtap in QEMU side
Currently macvtap based macvlan device is working in promiscuous
mode, we want to implement mac-programming over macvtap through
Libvirt for better performance.
Design:
QEMU notifies Libvirt when rx-filter config is changed in guest,
then Libvirt query the rx-filter information by a monitor command,
and sync the change to macvtap device. Related rx-filter config
of the nic contains main mac, rx-mode items and vlan table.
This patch adds a QMP event to notify management of rx-filter change,
and adds a monitor command for management to query rx-filter
information.
Test:
If we repeatedly add/remove vlan, and change macaddr of vlan
interfaces in guest by a loop script.
Result:
The events will flood the QMP client(management), management takes
too much resource to process the events.
Event_throttle API (set rate to 1 ms) can avoid the events to flood
QMP client, but it could cause an unexpected delay (~1ms), guests
guests normally expect rx-filter updates immediately.
So we use a flag for each nic to avoid events flooding, the event
is emitted once until the query command is executed. The flag
implementation could not introduce unexpected delay.
There maybe exist an uncontrollable delay if we let Libvirt do the
real change, guests normally expect rx-filter updates immediately.
But it's another separate issue, we can investigate it when the
work in Libvirt side is done.
Michael S. Tsirkin: tweaked to enable events on start
Michael S. Tsirkin: fixed not to crash when no id
Michael S. Tsirkin: fold in patch:
"additional fixes for mac-programming feature"
Amos Kong: always notify QMP client if mactable is changed
Amos Kong: return NULL list if no net client supports rx-filter query
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Amos Kong <akong@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2013-06-14 11:45:52 +04:00
|
|
|
"vlan-table": [
|
|
|
|
4,
|
|
|
|
0
|
|
|
|
],
|
|
|
|
"unicast-table": [
|
|
|
|
],
|
|
|
|
"multicast": "normal",
|
|
|
|
"multicast-overflow": false,
|
|
|
|
"unicast-overflow": false,
|
|
|
|
"multicast-table": [
|
|
|
|
"01:00:5e:00:00:01",
|
|
|
|
"33:33:00:00:00:01",
|
|
|
|
"33:33:ff:12:34:56"
|
|
|
|
],
|
|
|
|
"broadcast-allowed": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-09-23 17:26:03 +04:00
|
|
|
blockdev-add
|
|
|
|
------------
|
|
|
|
|
|
|
|
Add a block device.
|
|
|
|
|
2015-03-20 16:32:17 +03:00
|
|
|
This command is still a work in progress. It doesn't support all
|
2015-11-02 17:51:55 +03:00
|
|
|
block drivers among other things. Stay away from it unless you want
|
|
|
|
to help with its development.
|
2015-03-20 16:32:17 +03:00
|
|
|
|
2016-10-07 18:05:04 +03:00
|
|
|
For the arguments, see the QAPI schema documentation of BlockdevOptions.
|
2013-09-23 17:26:03 +04:00
|
|
|
|
|
|
|
Example (1):
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-add",
|
2016-10-07 18:05:04 +03:00
|
|
|
"arguments": { "driver": "qcow2",
|
|
|
|
"file": { "driver": "file",
|
|
|
|
"filename": "test.qcow2" } } }
|
2013-09-23 17:26:03 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Example (2):
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-add",
|
|
|
|
"arguments": {
|
2016-10-07 18:05:04 +03:00
|
|
|
"driver": "qcow2",
|
|
|
|
"node-name": "my_disk",
|
|
|
|
"discard": "unmap",
|
|
|
|
"cache": {
|
|
|
|
"direct": true,
|
|
|
|
"writeback": true
|
|
|
|
},
|
|
|
|
"file": {
|
|
|
|
"driver": "file",
|
|
|
|
"filename": "/tmp/test.qcow2"
|
|
|
|
},
|
|
|
|
"backing": {
|
|
|
|
"driver": "raw",
|
|
|
|
"file": {
|
|
|
|
"driver": "file",
|
|
|
|
"filename": "/dev/fdset/4"
|
|
|
|
}
|
2013-09-23 17:26:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-11-02 17:51:55 +03:00
|
|
|
x-blockdev-del
|
|
|
|
------------
|
|
|
|
Since 2.5
|
|
|
|
|
2016-09-21 15:56:11 +03:00
|
|
|
Deletes a block device that has been added using blockdev-add.
|
|
|
|
The command will fail if the node is attached to a device or is
|
|
|
|
otherwise being used.
|
2015-11-02 17:51:55 +03:00
|
|
|
|
|
|
|
This command is still a work in progress and is considered
|
|
|
|
experimental. Stay away from it unless you want to help with its
|
|
|
|
development.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-09-21 15:56:11 +03:00
|
|
|
- "node-name": Name of the graph node to delete (json-string)
|
2015-11-02 17:51:55 +03:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-add",
|
|
|
|
"arguments": {
|
2016-10-07 18:05:04 +03:00
|
|
|
"driver": "qcow2",
|
|
|
|
"node-name": "node0",
|
|
|
|
"file": {
|
|
|
|
"driver": "file",
|
|
|
|
"filename": "test.qcow2"
|
2015-11-02 17:51:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
-> { "execute": "x-blockdev-del",
|
2016-09-21 15:56:11 +03:00
|
|
|
"arguments": { "node-name": "node0" }
|
2015-11-02 17:51:55 +03:00
|
|
|
}
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-10-26 23:39:08 +03:00
|
|
|
blockdev-open-tray
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Opens a block device's tray. If there is a block driver state tree inserted as a
|
|
|
|
medium, it will become inaccessible to the guest (but it will remain associated
|
|
|
|
to the block device, so closing the tray will make it accessible again).
|
|
|
|
|
|
|
|
If the tray was already open before, this will be a no-op.
|
|
|
|
|
|
|
|
Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
|
|
|
|
which no such event will be generated, these include:
|
|
|
|
- if the guest has locked the tray, @force is false and the guest does not
|
|
|
|
respond to the eject request
|
|
|
|
- if the BlockBackend denoted by @device does not have a guest device attached
|
|
|
|
to it
|
|
|
|
- if the guest device does not have an actual tray and is empty, for instance
|
|
|
|
for floppy disk drives
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-09-20 14:38:43 +03:00
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2015-10-26 23:39:08 +03:00
|
|
|
- "force": if false (the default), an eject request will be sent to the guest if
|
|
|
|
it has locked the tray (and the tray will not be opened immediately);
|
|
|
|
if true, the tray will be opened regardless of whether it is locked
|
|
|
|
(json-bool, optional)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-open-tray",
|
2016-09-20 14:38:43 +03:00
|
|
|
"arguments": { "id": "ide0-1-0" } }
|
2015-10-26 23:39:08 +03:00
|
|
|
|
|
|
|
<- { "timestamp": { "seconds": 1418751016,
|
|
|
|
"microseconds": 716996 },
|
|
|
|
"event": "DEVICE_TRAY_MOVED",
|
|
|
|
"data": { "device": "ide1-cd0",
|
2016-09-29 19:30:53 +03:00
|
|
|
"id": "ide0-1-0",
|
2015-10-26 23:39:08 +03:00
|
|
|
"tray-open": true } }
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-10-26 23:39:09 +03:00
|
|
|
blockdev-close-tray
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Closes a block device's tray. If there is a block driver state tree associated
|
|
|
|
with the block device (which is currently ejected), that tree will be loaded as
|
|
|
|
the medium.
|
|
|
|
|
|
|
|
If the tray was already closed before, this will be a no-op.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-09-20 14:38:43 +03:00
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2015-10-26 23:39:09 +03:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-close-tray",
|
2016-09-20 14:38:43 +03:00
|
|
|
"arguments": { "id": "ide0-1-0" } }
|
2015-10-26 23:39:09 +03:00
|
|
|
|
|
|
|
<- { "timestamp": { "seconds": 1418751345,
|
|
|
|
"microseconds": 272147 },
|
|
|
|
"event": "DEVICE_TRAY_MOVED",
|
|
|
|
"data": { "device": "ide1-cd0",
|
2016-09-29 19:30:53 +03:00
|
|
|
"id": "ide0-1-0",
|
2015-10-26 23:39:09 +03:00
|
|
|
"tray-open": false } }
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
x-blockdev-remove-medium
|
|
|
|
------------------------
|
2015-10-26 23:39:10 +03:00
|
|
|
|
|
|
|
Removes a medium (a block driver state tree) from a block device. That block
|
|
|
|
device's tray must currently be open (unless there is no attached guest device).
|
|
|
|
|
|
|
|
If the tray is open and there is no medium inserted, this will be a no-op.
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
This command is still a work in progress and is considered experimental.
|
|
|
|
Stay away from it unless you want to help with its development.
|
|
|
|
|
2015-10-26 23:39:10 +03:00
|
|
|
Arguments:
|
|
|
|
|
2016-09-20 14:38:45 +03:00
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2015-10-26 23:39:10 +03:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
-> { "execute": "x-blockdev-remove-medium",
|
2016-09-20 14:38:45 +03:00
|
|
|
"arguments": { "id": "ide0-1-0" } }
|
2015-10-26 23:39:10 +03:00
|
|
|
|
|
|
|
<- { "error": { "class": "GenericError",
|
2016-09-20 14:38:45 +03:00
|
|
|
"desc": "Tray of device 'ide0-1-0' is not open" } }
|
2015-10-26 23:39:10 +03:00
|
|
|
|
|
|
|
-> { "execute": "blockdev-open-tray",
|
2016-09-20 14:38:45 +03:00
|
|
|
"arguments": { "id": "ide0-1-0" } }
|
2015-10-26 23:39:10 +03:00
|
|
|
|
|
|
|
<- { "timestamp": { "seconds": 1418751627,
|
|
|
|
"microseconds": 549958 },
|
|
|
|
"event": "DEVICE_TRAY_MOVED",
|
|
|
|
"data": { "device": "ide1-cd0",
|
2016-09-29 19:30:53 +03:00
|
|
|
"id": "ide0-1-0",
|
2015-10-26 23:39:10 +03:00
|
|
|
"tray-open": true } }
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
-> { "execute": "x-blockdev-remove-medium",
|
2016-09-20 14:38:45 +03:00
|
|
|
"arguments": { "device": "ide0-1-0" } }
|
2015-10-26 23:39:10 +03:00
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
x-blockdev-insert-medium
|
|
|
|
------------------------
|
2015-10-26 23:39:11 +03:00
|
|
|
|
|
|
|
Inserts a medium (a block driver state tree) into a block device. That block
|
|
|
|
device's tray must currently be open (unless there is no attached guest device)
|
|
|
|
and there must be no medium inserted already.
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
This command is still a work in progress and is considered experimental.
|
|
|
|
Stay away from it unless you want to help with its development.
|
|
|
|
|
2015-10-26 23:39:11 +03:00
|
|
|
Arguments:
|
|
|
|
|
2016-09-20 14:38:44 +03:00
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2015-10-26 23:39:11 +03:00
|
|
|
- "node-name": root node of the BDS tree to insert into the block device
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-add",
|
2016-10-07 18:05:04 +03:00
|
|
|
"arguments": { { "node-name": "node0",
|
|
|
|
"driver": "raw",
|
|
|
|
"file": { "driver": "file",
|
|
|
|
"filename": "fedora.iso" } } }
|
2015-10-26 23:39:11 +03:00
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-12-11 18:23:05 +03:00
|
|
|
-> { "execute": "x-blockdev-insert-medium",
|
2016-09-20 14:38:44 +03:00
|
|
|
"arguments": { "id": "ide0-1-0",
|
2015-10-26 23:39:11 +03:00
|
|
|
"node-name": "node0" } }
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2016-05-10 10:36:39 +03:00
|
|
|
x-blockdev-change
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Dynamically reconfigure the block driver state graph. It can be used
|
|
|
|
to add, remove, insert or replace a graph node. Currently only the
|
|
|
|
Quorum driver implements this feature to add or remove its child. This
|
|
|
|
is useful to fix a broken quorum child.
|
|
|
|
|
|
|
|
If @node is specified, it will be inserted under @parent. @child
|
|
|
|
may not be specified in this case. If both @parent and @child are
|
|
|
|
specified but @node is not, @child will be detached from @parent.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
- "parent": the id or name of the parent node (json-string)
|
|
|
|
- "child": the name of a child under the given parent node (json-string, optional)
|
|
|
|
- "node": the name of the node that will be added (json-string, optional)
|
|
|
|
|
|
|
|
Note: this command is experimental, and not a stable API. It doesn't
|
|
|
|
support all kinds of operations, all kinds of children, nor all block
|
|
|
|
drivers.
|
|
|
|
|
|
|
|
Warning: The data in a new quorum child MUST be consistent with that of
|
|
|
|
the rest of the array.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
Add a new node to a quorum
|
|
|
|
-> { "execute": "blockdev-add",
|
2016-10-07 18:05:04 +03:00
|
|
|
"arguments": { "driver": "raw",
|
|
|
|
"node-name": "new_node",
|
|
|
|
"file": { "driver": "file",
|
|
|
|
"filename": "test.raw" } } }
|
2016-05-10 10:36:39 +03:00
|
|
|
<- { "return": {} }
|
|
|
|
-> { "execute": "x-blockdev-change",
|
|
|
|
"arguments": { "parent": "disk1",
|
|
|
|
"node": "new_node" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Delete a quorum's node
|
|
|
|
-> { "execute": "x-blockdev-change",
|
|
|
|
"arguments": { "parent": "disk1",
|
|
|
|
"child": "children.1" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2016-09-12 12:19:12 +03:00
|
|
|
query-named-block-nodes
|
|
|
|
-----------------------
|
2014-01-24 00:31:34 +04:00
|
|
|
|
|
|
|
Return a list of BlockDeviceInfo for all the named block driver nodes
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-named-block-nodes" }
|
|
|
|
<- { "return": [ { "ro":false,
|
|
|
|
"drv":"qcow2",
|
|
|
|
"encrypted":false,
|
|
|
|
"file":"disks/test.qcow2",
|
|
|
|
"node-name": "my-node",
|
|
|
|
"backing_file_depth":1,
|
|
|
|
"bps":1000000,
|
|
|
|
"bps_rd":0,
|
|
|
|
"bps_wr":0,
|
|
|
|
"iops":1000000,
|
|
|
|
"iops_rd":0,
|
|
|
|
"iops_wr":0,
|
|
|
|
"bps_max": 8000000,
|
|
|
|
"bps_rd_max": 0,
|
|
|
|
"bps_wr_max": 0,
|
|
|
|
"iops_max": 0,
|
|
|
|
"iops_rd_max": 0,
|
|
|
|
"iops_wr_max": 0,
|
|
|
|
"iops_size": 0,
|
block: add event when disk usage exceeds threshold
Managing applications, like oVirt (http://www.ovirt.org), make extensive
use of thin-provisioned disk images.
To let the guest run smoothly and be not unnecessarily paused, oVirt sets
a disk usage threshold (so called 'high water mark') based on the occupation
of the device, and automatically extends the image once the threshold
is reached or exceeded.
In order to detect the crossing of the threshold, oVirt has no choice but
aggressively polling the QEMU monitor using the query-blockstats command.
This lead to unnecessary system load, and is made even worse under scale:
deployments with hundreds of VMs are no longer rare.
To fix this, this patch adds:
* A new monitor command `block-set-write-threshold', to set a mark for
a given block device.
* A new event `BLOCK_WRITE_THRESHOLD', to report if a block device
usage exceeds the threshold.
* A new `write_threshold' field into the `BlockDeviceInfo' structure,
to report the configured threshold.
This will allow the managing application to use smarter and more
efficient monitoring, greatly reducing the need of polling.
[Updated qemu-iotests 067 output to add the new 'write_threshold'
property. --Stefan]
[Changed g_assert_false() to !g_assert() to fix the build on older glib
versions. --Kevin]
Signed-off-by: Francesco Romani <fromani@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1421068273-692-1-git-send-email-fromani@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2015-01-12 16:11:13 +03:00
|
|
|
"write_threshold": 0,
|
2014-01-24 00:31:34 +04:00
|
|
|
"image":{
|
|
|
|
"filename":"disks/test.qcow2",
|
|
|
|
"format":"qcow2",
|
|
|
|
"virtual-size":2048000,
|
|
|
|
"backing_file":"base.qcow2",
|
|
|
|
"full-backing-filename":"disks/base.qcow2",
|
2015-04-28 22:20:41 +03:00
|
|
|
"backing-filename-format":"qcow2",
|
2014-01-24 00:31:34 +04:00
|
|
|
"snapshots":[
|
|
|
|
{
|
|
|
|
"id": "1",
|
|
|
|
"name": "snapshot1",
|
|
|
|
"vm-state-size": 0,
|
|
|
|
"date-sec": 10000200,
|
|
|
|
"date-nsec": 12,
|
|
|
|
"vm-clock-sec": 206,
|
|
|
|
"vm-clock-nsec": 30
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"backing-image":{
|
|
|
|
"filename":"disks/base.qcow2",
|
|
|
|
"format":"qcow2",
|
|
|
|
"virtual-size":2048000
|
|
|
|
}
|
2014-06-16 16:20:18 +04:00
|
|
|
} } ] }
|
2014-01-24 00:31:34 +04:00
|
|
|
|
2015-11-06 18:27:06 +03:00
|
|
|
blockdev-change-medium
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Changes the medium inserted into a block device by ejecting the current medium
|
|
|
|
and loading a new image file which is inserted as the new medium.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-09-20 14:38:47 +03:00
|
|
|
- "device": block device name (deprecated, use @id instead)
|
|
|
|
(json-string, optional)
|
|
|
|
- "id": the name or QOM path of the guest device (json-string, optional)
|
2015-11-06 18:27:06 +03:00
|
|
|
- "filename": filename of the new image (json-string)
|
|
|
|
- "format": format of the new image (json-string, optional)
|
2015-11-11 06:49:44 +03:00
|
|
|
- "read-only-mode": new read-only mode (json-string, optional)
|
|
|
|
- Possible values: "retain" (default), "read-only", "read-write"
|
2015-11-06 18:27:06 +03:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
1. Change a removable medium
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-change-medium",
|
2016-09-20 14:38:47 +03:00
|
|
|
"arguments": { "id": "ide0-1-0",
|
2015-11-06 18:27:06 +03:00
|
|
|
"filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
|
|
|
|
"format": "raw" } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-11-11 06:49:44 +03:00
|
|
|
2. Load a read-only medium into a writable drive
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-change-medium",
|
2016-09-20 14:38:47 +03:00
|
|
|
"arguments": { "id": "floppyA",
|
2015-11-11 06:49:44 +03:00
|
|
|
"filename": "/srv/images/ro.img",
|
|
|
|
"format": "raw",
|
|
|
|
"read-only-mode": "retain" } }
|
|
|
|
|
|
|
|
<- { "error":
|
|
|
|
{ "class": "GenericError",
|
|
|
|
"desc": "Could not open '/srv/images/ro.img': Permission denied" } }
|
|
|
|
|
|
|
|
-> { "execute": "blockdev-change-medium",
|
2016-09-20 14:38:47 +03:00
|
|
|
"arguments": { "id": "floppyA",
|
2015-11-11 06:49:44 +03:00
|
|
|
"filename": "/srv/images/ro.img",
|
|
|
|
"format": "raw",
|
|
|
|
"read-only-mode": "read-only" } }
|
|
|
|
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2014-06-16 14:05:41 +04:00
|
|
|
query-memdev
|
|
|
|
------------
|
|
|
|
|
|
|
|
Show memory devices information.
|
|
|
|
|
|
|
|
|
|
|
|
Example (1):
|
|
|
|
|
|
|
|
-> { "execute": "query-memdev" }
|
|
|
|
<- { "return": [
|
|
|
|
{
|
|
|
|
"size": 536870912,
|
|
|
|
"merge": false,
|
|
|
|
"dump": true,
|
|
|
|
"prealloc": false,
|
|
|
|
"host-nodes": [0, 1],
|
|
|
|
"policy": "bind"
|
|
|
|
},
|
|
|
|
{
|
2017-01-10 15:53:15 +03:00
|
|
|
"id": "mem1",
|
2014-06-16 14:05:41 +04:00
|
|
|
"size": 536870912,
|
|
|
|
"merge": false,
|
|
|
|
"dump": true,
|
|
|
|
"prealloc": true,
|
|
|
|
"host-nodes": [2, 3],
|
|
|
|
"policy": "preferred"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-09-12 12:19:12 +03:00
|
|
|
query-memory-devices
|
2014-06-16 21:12:25 +04:00
|
|
|
--------------------
|
|
|
|
|
|
|
|
Return a list of memory devices.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
-> { "execute": "query-memory-devices" }
|
|
|
|
<- { "return": [ { "data":
|
|
|
|
{ "addr": 5368709120,
|
|
|
|
"hotpluggable": true,
|
|
|
|
"hotplugged": true,
|
|
|
|
"id": "d1",
|
|
|
|
"memdev": "/objects/memX",
|
|
|
|
"node": 0,
|
|
|
|
"size": 1073741824,
|
|
|
|
"slot": 0},
|
|
|
|
"type": "dimm"
|
|
|
|
} ] }
|
2016-09-12 12:19:12 +03:00
|
|
|
|
|
|
|
query-acpi-ospm-status
|
|
|
|
----------------------
|
2014-06-16 21:12:28 +04:00
|
|
|
|
|
|
|
Return list of ACPIOSTInfo for devices that support status reporting
|
|
|
|
via ACPI _OST method.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
-> { "execute": "query-acpi-ospm-status" }
|
|
|
|
<- { "return": [ { "device": "d1", "slot": "0", "slot-type": "DIMM", "source": 1, "status": 0},
|
|
|
|
{ "slot": "1", "slot-type": "DIMM", "source": 0, "status": 0},
|
|
|
|
{ "slot": "2", "slot-type": "DIMM", "source": 0, "status": 0},
|
|
|
|
{ "slot": "3", "slot-type": "DIMM", "source": 0, "status": 0}
|
|
|
|
]}
|
2016-09-12 12:19:12 +03:00
|
|
|
|
2014-06-25 01:55:11 +04:00
|
|
|
rtc-reset-reinjection
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Reset the RTC interrupt reinjection backlog.
|
|
|
|
|
|
|
|
Arguments: None.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "rtc-reset-reinjection" }
|
|
|
|
<- { "return": {} }
|
2016-09-12 12:19:12 +03:00
|
|
|
|
2014-08-25 15:19:57 +04:00
|
|
|
trace-event-get-state
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Query the state of events.
|
|
|
|
|
2016-07-11 13:53:57 +03:00
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "name": Event name pattern (json-string).
|
|
|
|
- "vcpu": The vCPU to query, any vCPU by default (json-int, optional).
|
|
|
|
|
|
|
|
An event is returned if:
|
|
|
|
- its name matches the "name" pattern, and
|
|
|
|
- if "vcpu" is given, the event has the "vcpu" property.
|
|
|
|
|
|
|
|
Therefore, if "vcpu" is given, the operation will only match per-vCPU events,
|
|
|
|
returning their state on the specified vCPU. Special case: if "name" is an exact
|
|
|
|
match, "vcpu" is given and the event does not have the "vcpu" property, an error
|
|
|
|
is returned.
|
|
|
|
|
2014-08-25 15:19:57 +04:00
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "trace-event-get-state", "arguments": { "name": "qemu_memalign" } }
|
|
|
|
<- { "return": [ { "name": "qemu_memalign", "state": "disabled" } ] }
|
2016-09-12 12:19:12 +03:00
|
|
|
|
2014-08-25 15:19:57 +04:00
|
|
|
trace-event-set-state
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Set the state of events.
|
|
|
|
|
2016-07-11 13:53:57 +03:00
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "name": Event name pattern (json-string).
|
|
|
|
- "enable": Whether to enable or disable the event (json-bool).
|
|
|
|
- "ignore-unavailable": Whether to ignore errors for events that cannot be
|
|
|
|
changed (json-bool, optional).
|
|
|
|
- "vcpu": The vCPU to act upon, all vCPUs by default (json-int, optional).
|
|
|
|
|
|
|
|
An event's state is modified if:
|
|
|
|
- its name matches the "name" pattern, and
|
|
|
|
- if "vcpu" is given, the event has the "vcpu" property.
|
|
|
|
|
|
|
|
Therefore, if "vcpu" is given, the operation will only match per-vCPU events,
|
|
|
|
setting their state on the specified vCPU. Special case: if "name" is an exact
|
|
|
|
match, "vcpu" is given and the event does not have the "vcpu" property, an error
|
|
|
|
is returned.
|
|
|
|
|
2014-08-25 15:19:57 +04:00
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "trace-event-set-state", "arguments": { "name": "qemu_memalign", "enable": "true" } }
|
|
|
|
<- { "return": {} }
|
2016-09-12 12:19:12 +03:00
|
|
|
|
|
|
|
input-send-event
|
|
|
|
----------------
|
2014-10-01 01:10:17 +04:00
|
|
|
|
|
|
|
Send input event to guest.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2016-01-12 14:11:14 +03:00
|
|
|
- "device": display device (json-string, optional)
|
|
|
|
- "head": display head (json-int, optional)
|
|
|
|
- "events": list of input events
|
2014-10-01 01:10:17 +04:00
|
|
|
|
|
|
|
The consoles are visible in the qom tree, under
|
|
|
|
/backend/console[$index]. They have a device link and head property, so
|
|
|
|
it is possible to map which console belongs to which device and display.
|
|
|
|
|
|
|
|
Example (1):
|
|
|
|
|
|
|
|
Press left mouse button.
|
|
|
|
|
2016-01-12 14:39:33 +03:00
|
|
|
-> { "execute": "input-send-event",
|
2016-01-12 14:11:14 +03:00
|
|
|
"arguments": { "device": "video0",
|
2014-10-01 01:10:17 +04:00
|
|
|
"events": [ { "type": "btn",
|
2016-01-12 14:14:12 +03:00
|
|
|
"data" : { "down": true, "button": "left" } } ] } }
|
2014-10-01 01:10:17 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
2016-01-12 14:39:33 +03:00
|
|
|
-> { "execute": "input-send-event",
|
2016-01-12 14:11:14 +03:00
|
|
|
"arguments": { "device": "video0",
|
2014-10-01 01:10:17 +04:00
|
|
|
"events": [ { "type": "btn",
|
2016-01-12 14:14:12 +03:00
|
|
|
"data" : { "down": false, "button": "left" } } ] } }
|
2014-10-01 01:10:17 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Example (2):
|
|
|
|
|
|
|
|
Press ctrl-alt-del.
|
|
|
|
|
2016-01-12 14:39:33 +03:00
|
|
|
-> { "execute": "input-send-event",
|
2016-01-12 14:11:14 +03:00
|
|
|
"arguments": { "events": [
|
2014-10-01 01:10:17 +04:00
|
|
|
{ "type": "key", "data" : { "down": true,
|
|
|
|
"key": {"type": "qcode", "data": "ctrl" } } },
|
|
|
|
{ "type": "key", "data" : { "down": true,
|
|
|
|
"key": {"type": "qcode", "data": "alt" } } },
|
|
|
|
{ "type": "key", "data" : { "down": true,
|
|
|
|
"key": {"type": "qcode", "data": "delete" } } } ] } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
|
|
|
Example (3):
|
|
|
|
|
|
|
|
Move mouse pointer to absolute coordinates (20000, 400).
|
|
|
|
|
2016-01-12 14:39:33 +03:00
|
|
|
-> { "execute": "input-send-event" ,
|
2016-01-12 14:11:14 +03:00
|
|
|
"arguments": { "events": [
|
2016-01-12 14:34:20 +03:00
|
|
|
{ "type": "abs", "data" : { "axis": "x", "value" : 20000 } },
|
|
|
|
{ "type": "abs", "data" : { "axis": "y", "value" : 400 } } ] } }
|
2014-10-01 01:10:17 +04:00
|
|
|
<- { "return": {} }
|
|
|
|
|
block: add event when disk usage exceeds threshold
Managing applications, like oVirt (http://www.ovirt.org), make extensive
use of thin-provisioned disk images.
To let the guest run smoothly and be not unnecessarily paused, oVirt sets
a disk usage threshold (so called 'high water mark') based on the occupation
of the device, and automatically extends the image once the threshold
is reached or exceeded.
In order to detect the crossing of the threshold, oVirt has no choice but
aggressively polling the QEMU monitor using the query-blockstats command.
This lead to unnecessary system load, and is made even worse under scale:
deployments with hundreds of VMs are no longer rare.
To fix this, this patch adds:
* A new monitor command `block-set-write-threshold', to set a mark for
a given block device.
* A new event `BLOCK_WRITE_THRESHOLD', to report if a block device
usage exceeds the threshold.
* A new `write_threshold' field into the `BlockDeviceInfo' structure,
to report the configured threshold.
This will allow the managing application to use smarter and more
efficient monitoring, greatly reducing the need of polling.
[Updated qemu-iotests 067 output to add the new 'write_threshold'
property. --Stefan]
[Changed g_assert_false() to !g_assert() to fix the build on older glib
versions. --Kevin]
Signed-off-by: Francesco Romani <fromani@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1421068273-692-1-git-send-email-fromani@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2015-01-12 16:11:13 +03:00
|
|
|
block-set-write-threshold
|
|
|
|
------------
|
|
|
|
|
|
|
|
Change the write threshold for a block drive. The threshold is an offset,
|
|
|
|
thus must be non-negative. Default is no write threshold.
|
|
|
|
Setting the threshold to zero disables it.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "node-name": the node name in the block driver state graph (json-string)
|
|
|
|
- "write-threshold": the write threshold in bytes (json-int)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "block-set-write-threshold",
|
|
|
|
"arguments": { "node-name": "mydev",
|
|
|
|
"write-threshold": 17179869184 } }
|
|
|
|
<- { "return": {} }
|
|
|
|
|
2015-06-11 04:21:21 +03:00
|
|
|
Show rocker switch
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "name": switch name
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-rocker", "arguments": { "name": "sw1" } }
|
|
|
|
<- { "return": {"name": "sw1", "ports": 2, "id": 1327446905938}}
|
|
|
|
|
|
|
|
Show rocker switch ports
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "name": switch name
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-rocker-ports", "arguments": { "name": "sw1" } }
|
|
|
|
<- { "return": [ {"duplex": "full", "enabled": true, "name": "sw1.1",
|
|
|
|
"autoneg": "off", "link-up": true, "speed": 10000},
|
|
|
|
{"duplex": "full", "enabled": true, "name": "sw1.2",
|
|
|
|
"autoneg": "off", "link-up": true, "speed": 10000}
|
|
|
|
]}
|
|
|
|
|
|
|
|
Show rocker switch OF-DPA flow tables
|
|
|
|
-------------------------------------
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "name": switch name
|
|
|
|
- "tbl-id": (optional) flow table ID
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-rocker-of-dpa-flows", "arguments": { "name": "sw1" } }
|
|
|
|
<- { "return": [ {"key": {"in-pport": 0, "priority": 1, "tbl-id": 0},
|
|
|
|
"hits": 138,
|
|
|
|
"cookie": 0,
|
|
|
|
"action": {"goto-tbl": 10},
|
|
|
|
"mask": {"in-pport": 4294901760}
|
|
|
|
},
|
|
|
|
{...more...},
|
|
|
|
]}
|
|
|
|
|
|
|
|
Show rocker OF-DPA group tables
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
|
|
|
- "name": switch name
|
|
|
|
- "type": (optional) group type
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-rocker-of-dpa-groups", "arguments": { "name": "sw1" } }
|
|
|
|
<- { "return": [ {"type": 0, "out-pport": 2, "pport": 2, "vlan-id": 3841,
|
|
|
|
"pop-vlan": 1, "id": 251723778},
|
|
|
|
{"type": 0, "out-pport": 0, "pport": 0, "vlan-id": 3841,
|
|
|
|
"pop-vlan": 1, "id": 251723776},
|
|
|
|
{"type": 0, "out-pport": 1, "pport": 1, "vlan-id": 3840,
|
|
|
|
"pop-vlan": 1, "id": 251658241},
|
|
|
|
{"type": 0, "out-pport": 0, "pport": 0, "vlan-id": 3840,
|
|
|
|
"pop-vlan": 1, "id": 251658240}
|
|
|
|
]}
|
arm: qmp: add query-gic-capabilities interface
This patch add "query-gic-capabilities" but does not implement it. The
command is ARM-only. The command will return a list of GICCapability
structs that describes all GIC versions that current QEMU and system
support.
Libvirt is possibly the first consumer of this new command.
Before this patch, a libvirt user can successfully configure all kinds
of GIC devices for ARM guests, no matter whether current QEMU/kernel
supports them. If the specified GIC version/type is not supported, the
user will get an ambiguous "QEMU boot failure" error when trying to start
the VM. This is not user-friendly.
With this patch, libvirt should be able to query which type (and which
version) of GIC device is supported. Using this information, libvirt
can warn the user during configuration of guests when specified GIC
device type is not supported. Or better, we can just list those versions
that we support, and filter out the unsupported ones.
For example, if we got the query result:
{"return": [{"emulated": false, "version": 3, "kernel": true},
{"emulated": true, "version": 2, "kernel": false}]}
then it means that we support emulated GIC version 2 using:
qemu-system-aarch64 -M virt,accel=tcg,gic-version=2 ...
or KVM-accelerated GIC version 3 using:
qemu-system-aarch64 -M virt,accel=kvm,gic-version=3 ...
If we specify other explicit GIC versions rather than the above, QEMU
will not be able to boot.
The community is working on a more generic way to query these kinds of
information about valid values of machine properties. However, due to
the importance of supporting this specific use case, weecided to first
implement this ad-hoc one; then when the generic method is ready, we
can move on to that one smoothly.
Signed-off-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1458788142-17509-2-git-send-email-peterx@redhat.com
[PMM: tweaked commit message a bit; monitor.o is CONFIG_SOFTMMU only]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2016-03-30 19:27:24 +03:00
|
|
|
|
|
|
|
query-gic-capabilities
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Return a list of GICCapability objects, describing supported GIC
|
|
|
|
(Generic Interrupt Controller) versions.
|
|
|
|
|
|
|
|
Arguments: None
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> { "execute": "query-gic-capabilities" }
|
|
|
|
<- { "return": [{ "version": 2, "emulated": true, "kernel": false },
|
|
|
|
{ "version": 3, "emulated": false, "kernel": true } ] }
|
|
|
|
|
2016-06-10 03:59:06 +03:00
|
|
|
Show existing/possible CPUs
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Arguments: None.
|
|
|
|
|
|
|
|
Example for pseries machine type started with
|
|
|
|
-smp 2,cores=2,maxcpus=4 -cpu POWER8:
|
|
|
|
|
|
|
|
-> { "execute": "query-hotpluggable-cpus" }
|
|
|
|
<- {"return": [
|
2016-06-30 11:17:54 +03:00
|
|
|
{ "props": { "core-id": 8 }, "type": "POWER8-spapr-cpu-core",
|
2016-06-10 03:59:06 +03:00
|
|
|
"vcpus-count": 1 },
|
2016-06-30 11:17:54 +03:00
|
|
|
{ "props": { "core-id": 0 }, "type": "POWER8-spapr-cpu-core",
|
2016-06-10 03:59:06 +03:00
|
|
|
"vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
|
|
|
|
]}'
|
pc: Implement query-hotpluggable-cpus callback
it returns a list of present/possible to hotplug CPU
objects with a list of properties to use with
device_add.
in PC case returned list would looks like:
-> { "execute": "query-hotpluggable-cpus" }
<- {"return": [
{
"type": "qemu64-x86_64-cpu", "vcpus-count": 1,
"props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
},
{
"qom-path": "/machine/unattached/device[0]",
"type": "qemu64-x86_64-cpu", "vcpus-count": 1,
"props": {"core-id": 0, "socket-id": 0, "thread-id": 0}
}
]}
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2016-06-22 12:11:42 +03:00
|
|
|
|
|
|
|
Example for pc machine type started with
|
|
|
|
-smp 1,maxcpus=2:
|
|
|
|
-> { "execute": "query-hotpluggable-cpus" }
|
|
|
|
<- {"return": [
|
|
|
|
{
|
|
|
|
"type": "qemu64-x86_64-cpu", "vcpus-count": 1,
|
|
|
|
"props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"qom-path": "/machine/unattached/device[0]",
|
|
|
|
"type": "qemu64-x86_64-cpu", "vcpus-count": 1,
|
|
|
|
"props": {"core-id": 0, "socket-id": 0, "thread-id": 0}
|
|
|
|
}
|
|
|
|
]}
|