qemu-qmp-ref
QEMU QMP Reference Manual
- Provided by: qemu-system-common (Version: 1:4.2-3ubuntu6.30)
- Source: qemu
- Report a bug
QEMU QMP Reference Manual
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:
Example:
-> data issued by the Client
<- Server data response
Please, refer to the QMP specification (docs/interop/qmp-spec.txt) for detailed information on the Server command and response formats.
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:
QapiErrorClass (Enum)
QEMU error classes
Values:
Since: 1.2
IoOperationType (Enum)
An enumeration of the I/O operation types
Values:
Since: 2.1
OnOffAuto (Enum)
An enumeration of three options: on, off, and auto
Values:
Since: 2.2
OnOffSplit (Enum)
An enumeration of three values: on, off, and split
Values:
Since: 2.6
String (Object)
A fat type wrapping 'str', to be embedded in lists.
Members:
Since: 1.2
StrOrNull (Alternate)
This is a string value or the explicit lack of a string (null pointer in C). Intended for cases when 'optional absent' already has a different meaning.
Members:
Since: 2.10
OffAutoPCIBAR (Enum)
An enumeration of options for specifying a PCI BAR
Values:
Since: 2.12
PCIELinkSpeed (Enum)
An enumeration of PCIe link speeds in units of GT/s
Values:
Since: 4.0
PCIELinkWidth (Enum)
An enumeration of PCIe link width
Values:
Since: 4.0
NetworkAddressFamily (Enum)
The network address family
Values:
Since: 2.1
InetSocketAddressBase (Object)
Members:
InetSocketAddress (Object)
Captures a socket address or address range in the Internet namespace.
Members:
Since: 1.3
UnixSocketAddress (Object)
Captures a socket address in the local ("Unix socket") namespace.
Members:
Since: 1.3
VsockSocketAddress (Object)
Captures a socket address in the vsock namespace.
Members:
Note: string types are used to allow for possible future hostname or service resolution support.
Since: 2.8
SocketAddressLegacy (Object)
Captures the address of a socket, which could also be a named file descriptor
Members:
Note: This type is deprecated in favor of SocketAddress. The difference between SocketAddressLegacy and SocketAddress is that the latter is a flat union rather than a simple union. Flat is nicer because it avoids nesting on the wire, i.e. that form has fewer {}.
Since: 1.3
SocketAddressType (Enum)
Available SocketAddress types
Values:
Since: 2.9
SocketAddress (Object)
Captures the address of a socket, which could also be a named file descriptor
Members:
Since: 2.9
RunState (Enum)
An enumeration of VM run states.
Values:
ShutdownCause (Enum)
An enumeration of reasons for a Shutdown.
Values:
StatusInfo (Object)
Information about VCPU run state
Members:
Since: 0.14.0
Notes: "singlestep" is enabled through the GDB stub
query-status (Command) Query the run status of all VCPUs
Returns: "StatusInfo" reflecting all VCPUs
Since: 0.14.0
Example:
-> { "execute": "query-status" }
<- { "return": { "running": true,
"singlestep": false,
"status": "running" } }
SHUTDOWN (Event) Emitted when the virtual machine has shut down, indicating that qemu is about to exit.
Arguments:
Note: If the command-line option "-no-shutdown" has been specified, qemu will not exit, and a STOP event will eventually follow the SHUTDOWN event
Since: 0.12.0
Example:
<- { "event": "SHUTDOWN", "data": { "guest": true },
"timestamp": { "seconds": 1267040730, "microseconds": 682951 } }
POWERDOWN (Event) Emitted when the virtual machine is powered down through the power control system, such as via ACPI.
Since: 0.12.0
Example:
<- { "event": "POWERDOWN",
"timestamp": { "seconds": 1267040730, "microseconds": 682951 } }
RESET (Event) Emitted when the virtual machine is reset
Arguments:
Since: 0.12.0
Example:
<- { "event": "RESET", "data": { "guest": false },
"timestamp": { "seconds": 1267041653, "microseconds": 9518 } }
STOP (Event) Emitted when the virtual machine is stopped
Since: 0.12.0
Example:
<- { "event": "STOP",
"timestamp": { "seconds": 1267041730, "microseconds": 281295 } }
RESUME (Event) Emitted when the virtual machine resumes execution
Since: 0.12.0
Example:
<- { "event": "RESUME",
"timestamp": { "seconds": 1271770767, "microseconds": 582542 } }
SUSPEND (Event) Emitted when guest enters a hardware suspension state, for example, S3 state, which is sometimes called standby state
Since: 1.1
Example:
<- { "event": "SUSPEND",
"timestamp": { "seconds": 1344456160, "microseconds": 309119 } }
SUSPEND_DISK (Event) Emitted when guest enters a hardware suspension state with data saved on disk, for example, S4 state, which is sometimes called hibernate state
Note: QEMU shuts down (similar to event "SHUTDOWN") when entering this state
Since: 1.2
Example:
<- { "event": "SUSPEND_DISK",
"timestamp": { "seconds": 1344456160, "microseconds": 309119 } }
WAKEUP (Event) Emitted when the guest has woken up from suspend state and is running
Since: 1.1
Example:
<- { "event": "WAKEUP",
"timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
WATCHDOG (Event) Emitted when the watchdog device's timer is expired
Arguments:
Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is followed respectively by the RESET, SHUTDOWN, or STOP events
Note: This event is rate-limited.
Since: 0.13.0
Example:
<- { "event": "WATCHDOG",
"data": { "action": "reset" },
"timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
WatchdogAction (Enum)
An enumeration of the actions taken when the watchdog device's timer is expired
Values:
Since: 2.1
watchdog-set-action (Command) Set watchdog action
Arguments:
Since: 2.11
GUEST_PANICKED (Event) Emitted when guest OS panic is detected
Arguments:
Since: 1.5
Example:
<- { "event": "GUEST_PANICKED",
"data": { "action": "pause" } }
GuestPanicAction (Enum)
An enumeration of the actions taken when guest OS panic is detected
Values:
Since: 2.1 (poweroff since 2.8)
GuestPanicInformationType (Enum)
An enumeration of the guest panic information types
Values:
Since: 2.9
GuestPanicInformation (Object)
Information about a guest panic
Members:
Since: 2.9
GuestPanicInformationHyperV (Object)
Hyper-V specific guest panic information (HV crash MSRs)
Members:
Since: 2.9
S390CrashReason (Enum)
Reason why the CPU is in a crashed state.
Values:
Since: 2.12
GuestPanicInformationS390 (Object)
S390 specific guest panic information (PSW)
Members:
Since: 2.12
QCryptoTLSCredsEndpoint (Enum)
The type of network endpoint that will be using the credentials. Most types of credential require different setup / structures depending on whether they will be used in a server versus a client.
Values:
Since: 2.5
QCryptoSecretFormat (Enum)
The data format that the secret is provided in
Values:
Since: 2.6
QCryptoHashAlgorithm (Enum)
The supported algorithms for computing content digests
Values:
Since: 2.6
QCryptoCipherAlgorithm (Enum)
The supported algorithms for content encryption ciphers
Values:
Since: 2.6
QCryptoCipherMode (Enum)
The supported modes for content encryption ciphers
Values:
Since: 2.6
QCryptoIVGenAlgorithm (Enum)
The supported algorithms for generating initialization vectors for full disk encryption. The 'plain' generator should not be used for disks with sector numbers larger than 2^32, except where compatibility with pre-existing Linux dm-crypt volumes is required.
Values:
Since: 2.6
QCryptoBlockFormat (Enum)
The supported full disk encryption formats
Values:
Since: 2.6
QCryptoBlockOptionsBase (Object)
The common options that apply to all full disk encryption formats
Members:
Since: 2.6
QCryptoBlockOptionsQCow (Object)
The options that apply to QCow/QCow2 AES-CBC encryption format
Members:
Since: 2.6
QCryptoBlockOptionsLUKS (Object)
The options that apply to LUKS encryption format
Members:
Since: 2.6
QCryptoBlockCreateOptionsLUKS (Object)
The options that apply to LUKS encryption format initialization
Members:
Since: 2.6
QCryptoBlockOpenOptions (Object)
The options that are available for all encryption formats when opening an existing volume
Members:
Since: 2.6
QCryptoBlockCreateOptions (Object)
The options that are available for all encryption formats when initializing a new volume
Members:
Since: 2.6
QCryptoBlockInfoBase (Object)
The common information that applies to all full disk encryption formats
Members:
Since: 2.7
QCryptoBlockInfoLUKSSlot (Object)
Information about the LUKS block encryption key slot options
Members:
Since: 2.7
QCryptoBlockInfoLUKS (Object)
Information about the LUKS block encryption options
Members:
Since: 2.7
QCryptoBlockInfo (Object)
Information about the block encryption options
Members:
Since: 2.7
Block core (VM unrelated)
Background jobs
JobType (Enum)
Type of a background job.
Values:
Since: 1.7
JobStatus (Enum)
Indicates the present state of a given job in its lifetime.
Values:
Since: 2.12
JobVerb (Enum)
Represents command verbs that can be applied to a job.
Values:
Since: 2.12
JOB_STATUS_CHANGE (Event) Emitted when a job transitions to a different status.
Arguments:
Since: 3.0
job-pause (Command) Pause an active job.
This command returns immediately after marking the active job for pausing. Pausing an already paused job is an error.
The job will pause as soon as possible, which means transitioning into the PAUSED state if it was RUNNING, or into STANDBY if it was READY. The corresponding JOB_STATUS_CHANGE event will be emitted.
Cancelling a paused job automatically resumes it.
Arguments:
Since: 3.0
job-resume (Command) Resume a paused job.
This command returns immediately after resuming a paused job. Resuming an already running job is an error.
"id" : The job identifier.
Arguments:
Since: 3.0
job-cancel (Command) Instruct an active background job to cancel at the next opportunity. This command returns immediately after marking the active job for cancellation.
The job will cancel as soon as possible and then emit a JOB_STATUS_CHANGE event. Usually, the status will change to ABORTING, but it is possible that a job successfully completes (e.g. because it was almost done and there was no opportunity to cancel earlier than completing the job) and transitions to PENDING instead.
Arguments:
Since: 3.0
job-complete (Command) Manually trigger completion of an active job in the READY state.
Arguments:
Since: 3.0
job-dismiss (Command) Deletes a job that is in the CONCLUDED state. This command only needs to be run explicitly for jobs that don't have automatic dismiss enabled.
This command will refuse to operate on any job that has not yet reached its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of JOB_READY event, job-cancel or job-complete will still need to be used as appropriate.
Arguments:
Since: 3.0
job-finalize (Command) Instructs all jobs in a transaction (or a single job if it is not part of any transaction) to finalize any graph changes and do any necessary cleanup. This command requires that all involved jobs are in the PENDING state.
For jobs in a transaction, instructing one job to finalize will force ALL jobs in the transaction to finalize, so it is only necessary to instruct a single member job to finalize.
Arguments:
Since: 3.0
JobInfo (Object)
Information about a job.
Members:
The value is a human-readable error message to describe the reason for the job failure. It should not be parsed by applications.
Since: 3.0
query-jobs (Command) Return information about jobs.
Returns: a list with a "JobInfo" for each active job
Since: 3.0
SnapshotInfo (Object)
Members:
Since: 1.3
ImageInfoSpecificQCow2EncryptionBase (Object)
Members:
Since: 2.10
ImageInfoSpecificQCow2Encryption (Object)
Members:
Since: 2.10
ImageInfoSpecificQCow2 (Object)
Members:
Since: 1.7
ImageInfoSpecificVmdk (Object)
Members:
Since: 1.7
ImageInfoSpecific (Object)
A discriminated record of image format specific information structures.
Members:
Since: 1.7
ImageInfo (Object)
Information about a QEMU image file
Members:
Since: 1.3
ImageCheck (Object)
Information about a QEMU image file check
Members:
Since: 1.4
MapEntry (Object)
Mapping information from a virtual block range to a host file range
Members:
Since: 2.6
BlockdevCacheInfo (Object)
Cache mode information for a block device
Members:
Since: 2.3
BlockDeviceInfo (Object)
Information about the backing device for a block device.
Members:
Since: 0.14.0
BlockDeviceIoStatus (Enum)
An enumeration of block device I/O status.
Values:
Since: 1.0
BlockDeviceMapEntry (Object)
Entry in the metadata map of the device (returned by "qemu-img map")
Members:
Since: 1.7
DirtyBitmapStatus (Enum)
An enumeration of possible states that a dirty bitmap can report to the user.
Values:
Since: 2.4
BlockDirtyInfo (Object)
Block dirty bitmap information.
Members:
Since: 1.3
Qcow2BitmapInfoFlags (Enum)
An enumeration of flags that a bitmap can report to the user.
Values:
Since: 4.0
Qcow2BitmapInfo (Object)
Qcow2 bitmap information.
Members:
Since: 4.0
BlockLatencyHistogramInfo (Object)
Block latency histogram.
Members:
5| * 4| * 3| 2| * 1| +------------------ 10 50 100
Since: 4.0
block-latency-histogram-set (Command) Manage read, write and flush latency histograms for the device.
If only "id" parameter is specified, remove all present latency histograms for the device. Otherwise, add/reset some of (or all) latency histograms.
Arguments:
Returns: error if device is not found or any boundary arrays are invalid.
Since: 4.0
Example:
set new histograms for all io types with intervals
[0, 10), [10, 50), [50, 100), [100, +inf):
-> { "execute": "block-latency-histogram-set",
"arguments": { "id": "drive0",
"boundaries": [10, 50, 100] } }
<- { "return": {} }
Example:
set new histogram only for write, other histograms will remain
not changed (or not created):
-> { "execute": "block-latency-histogram-set",
"arguments": { "id": "drive0",
"boundaries-write": [10, 50, 100] } }
<- { "return": {} }
Example:
set new histograms with the following intervals:
read, flush: [0, 10), [10, 50), [50, 100), [100, +inf)
write: [0, 1000), [1000, 5000), [5000, +inf)
-> { "execute": "block-latency-histogram-set",
"arguments": { "id": "drive0",
"boundaries": [10, 50, 100],
"boundaries-write": [1000, 5000] } }
<- { "return": {} }
Example:
remove all latency histograms:
-> { "execute": "block-latency-histogram-set",
"arguments": { "id": "drive0" } }
<- { "return": {} }
BlockInfo (Object)
Block device information. This structure describes a virtual device and the backing device associated with it.
Members:
Since: 0.14.0
BlockMeasureInfo (Object)
Image file size calculation information. This structure describes the size requirements for creating a new image file.
The size requirements depend on the new image file format. File size always equals virtual disk size for the 'raw' format, even for sparse POSIX files. Compact formats such as 'qcow2' represent unallocated and zero regions efficiently so file size may be smaller than virtual disk size.
The values are upper bounds that are guaranteed to fit the new image file. Subsequent modification, such as internal snapshot or bitmap creation, may require additional space and is not covered here.
Members:
Since: 2.10
query-block (Command) Get a list of BlockInfo for all virtual block devices.
Returns: a list of "BlockInfo" describing each virtual block device. Filter nodes that were created implicitly are skipped over.
Since: 0.14.0
Example:
-> { "execute": "query-block" }
<- {
"return":[
{
"io-status": "ok",
"device":"ide0-hd0",
"locked":false,
"removable":false,
"inserted":{
"ro":false,
"drv":"qcow2",
"encrypted":false,
"file":"disks/test.qcow2",
"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,
"detect_zeroes": "on",
"write_threshold": 0,
"image":{
"filename":"disks/test.qcow2",
"format":"qcow2",
"virtual-size":2048000,
"backing_file":"base.qcow2",
"full-backing-filename":"disks/base.qcow2",
"backing-filename-format":"qcow2",
"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
}
}
},
"qdev": "ide_disk",
"type":"unknown"
},
{
"io-status": "ok",
"device":"ide1-cd0",
"locked":false,
"removable":true,
"qdev": "/machine/unattached/device[23]",
"tray_open": false,
"type":"unknown"
},
{
"device":"floppy0",
"locked":false,
"removable":true,
"qdev": "/machine/unattached/device[20]",
"type":"unknown"
},
{
"device":"sd0",
"locked":false,
"removable":true,
"type":"unknown"
}
]
}
BlockDeviceTimedStats (Object)
Statistics of a block device during a given interval of time.
Members:
Since: 2.5
BlockDeviceStats (Object)
Statistics of a virtual block device or a block backing device.
Members:
Since: 0.14.0
BlockStatsSpecificFile (Object)
File driver statistics
Members:
Since: 4.2
BlockStatsSpecific (Object)
Block driver specific statistics
Members:
Since: 4.2
BlockStats (Object)
Statistics of a virtual block device or a block backing device.
Members:
Since: 0.14.0
query-blockstats (Command) Query the "BlockStats" for all virtual block devices.
Arguments:
Returns: A list of "BlockStats" for each virtual block devices.
Since: 0.14.0
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
"wr_total_times_ns":313253456
"rd_total_times_ns":3465673657
"flush_total_times_ns":49653
"flush_operations":61,
"rd_merged":0,
"wr_merged":0,
"idle_time_ns":2953431879,
"account_invalid":true,
"account_failed":false
}
},
"stats":{
"wr_highest_offset":2821110784,
"wr_bytes":9786368,
"wr_operations":692,
"rd_bytes":122739200,
"rd_operations":36604
"flush_operations":51,
"wr_total_times_ns":313253456
"rd_total_times_ns":3465673657
"flush_total_times_ns":49653,
"rd_merged":0,
"wr_merged":0,
"idle_time_ns":2953431879,
"account_invalid":true,
"account_failed":false
},
"qdev": "/machine/unattached/device[23]"
},
{
"device":"ide1-cd0",
"stats":{
"wr_highest_offset":0,
"wr_bytes":0,
"wr_operations":0,
"rd_bytes":0,
"rd_operations":0
"flush_operations":0,
"wr_total_times_ns":0
"rd_total_times_ns":0
"flush_total_times_ns":0,
"rd_merged":0,
"wr_merged":0,
"account_invalid":false,
"account_failed":false
},
"qdev": "/machine/unattached/device[24]"
},
{
"device":"floppy0",
"stats":{
"wr_highest_offset":0,
"wr_bytes":0,
"wr_operations":0,
"rd_bytes":0,
"rd_operations":0
"flush_operations":0,
"wr_total_times_ns":0
"rd_total_times_ns":0
"flush_total_times_ns":0,
"rd_merged":0,
"wr_merged":0,
"account_invalid":false,
"account_failed":false
},
"qdev": "/machine/unattached/device[16]"
},
{
"device":"sd0",
"stats":{
"wr_highest_offset":0,
"wr_bytes":0,
"wr_operations":0,
"rd_bytes":0,
"rd_operations":0
"flush_operations":0,
"wr_total_times_ns":0
"rd_total_times_ns":0
"flush_total_times_ns":0,
"rd_merged":0,
"wr_merged":0,
"account_invalid":false,
"account_failed":false
}
}
]
}
BlockdevOnError (Enum)
An enumeration of possible behaviors for errors on I/O operations. The exact meaning depends on whether the I/O was initiated by a guest or by a block job
Values:
Since: 1.3
MirrorSyncMode (Enum)
An enumeration of possible behaviors for the initial synchronization phase of storage mirroring.
Values:
Since: 1.3
BitmapSyncMode (Enum)
An enumeration of possible behaviors for the synchronization of a bitmap when used for data copy operations.
Values:
Since: 4.2
MirrorCopyMode (Enum)
An enumeration whose values tell the mirror block job when to trigger writes to the target.
Values:
Since: 3.0
BlockJobInfo (Object)
Information about a long-running block device operation.
Members:
Since: 1.1
query-block-jobs (Command) Return information about long-running block device operations.
Returns: a list of "BlockJobInfo" for each active block job
Since: 1.1
block_passwd (Command) This command sets the password of a block device that has not been open with a password and requires one.
This command is now obsolete and will always return an error since 2.10
Arguments:
block_resize (Command) Resize a block image while a guest is running.
Either "device" or "node-name" must be set but not both.
Arguments:
Returns: nothing on success If "device" is not a valid block device, DeviceNotFound
Since: 0.14.0
Example:
-> { "execute": "block_resize",
"arguments": { "device": "scratch", "size": 1073741824 } }
<- { "return": {} }
NewImageMode (Enum)
An enumeration that tells QEMU how to set the backing file path in a new image file.
Values:
Since: 1.1
BlockdevSnapshotSync (Object)
Either "device" or "node-name" must be set but not both.
Members:
BlockdevSnapshot (Object)
Members:
Since: 2.5
BackupCommon (Object)
Members:
Note: "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.
Since: 4.2
DriveBackup (Object)
Members:
Since: 1.6
BlockdevBackup (Object)
Members:
Since: 2.3
blockdev-snapshot-sync (Command) Takes a synchronous snapshot of a block device.
For the arguments, see the documentation of BlockdevSnapshotSync.
Returns: nothing on success If "device" is not a valid block device, DeviceNotFound
Since: 0.14.0
Example:
-> { "execute": "blockdev-snapshot-sync",
"arguments": { "device": "ide-hd0",
"snapshot-file":
"/some/place/my-image",
"format": "qcow2" } }
<- { "return": {} }
blockdev-snapshot (Command) Takes a snapshot of a block device.
Take 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.
For the arguments, see the documentation of BlockdevSnapshot.
Since: 2.5
Example:
-> { "execute": "blockdev-add",
"arguments": { "driver": "qcow2",
"node-name": "node1534",
"file": { "driver": "file",
"filename": "hd1.qcow2" },
"backing": null } }
<- { "return": {} }
-> { "execute": "blockdev-snapshot",
"arguments": { "node": "ide-hd0",
"overlay": "node1534" } }
<- { "return": {} }
change-backing-file (Command) 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:
Returns: Nothing on success
If "device" does not exist or cannot be determined, DeviceNotFound
Since: 2.1
block-commit (Command) Live commit of data from overlay image nodes into backing nodes - i.e., writes data between 'top' and 'base' into 'base'.
Arguments:
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. (Since 2.1)
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.
Returns: Nothing on success If "device" does not exist, DeviceNotFound Any other error returns a GenericError.
Since: 1.3
Example:
-> { "execute": "block-commit",
"arguments": { "device": "virtio0",
"top": "/tmp/snap1.qcow2" } }
<- { "return": {} }
drive-backup (Command) 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: the members of "DriveBackup"
Returns: nothing on success If "device" is not a valid block device, GenericError
Since: 1.6
Example:
-> { "execute": "drive-backup",
"arguments": { "device": "drive0",
"sync": "full",
"target": "backup.img" } }
<- { "return": {} }
blockdev-backup (Command) Start a point-in-time copy of a block device to a new destination. The status of ongoing blockdev-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: the members of "BlockdevBackup"
Returns: nothing on success If "device" is not a valid block device, DeviceNotFound
Since: 2.3
Example:
-> { "execute": "blockdev-backup",
"arguments": { "device": "src-id",
"sync": "full",
"target": "tgt-id" } }
<- { "return": {} }
query-named-block-nodes (Command) Get the named block driver list
Returns: the list of BlockDeviceInfo
Since: 2.0
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,
"write_threshold": 0,
"image":{
"filename":"disks/test.qcow2",
"format":"qcow2",
"virtual-size":2048000,
"backing_file":"base.qcow2",
"full-backing-filename":"disks/base.qcow2",
"backing-filename-format":"qcow2",
"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
}
} } ] }
XDbgBlockGraphNodeType (Enum)
Values:
Since: 4.0
XDbgBlockGraphNode (Object)
Members:
Since: 4.0
BlockPermission (Enum)
Enum of base block permissions.
Values:
Since: 4.0
XDbgBlockGraphEdge (Object)
Block Graph edge description for x-debug-query-block-graph.
Members:
Since: 4.0
XDbgBlockGraph (Object)
Block Graph - list of nodes and list of edges.
Members:
Since: 4.0
x-debug-query-block-graph (Command) Get the block graph.
Since: 4.0
drive-mirror (Command) 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: the members of "DriveMirror"
Returns: nothing on success If "device" is not a valid block device, GenericError
Since: 1.3
Example:
-> { "execute": "drive-mirror",
"arguments": { "device": "ide-hd0",
"target": "/some/place/my-image",
"sync": "full",
"format": "qcow2" } }
<- { "return": {} }
DriveMirror (Object)
A set of parameters describing drive mirror setup.
Members:
Since: 1.3
BlockDirtyBitmap (Object)
Members:
Since: 2.4
BlockDirtyBitmapAdd (Object)
Members:
Since: 2.4
BlockDirtyBitmapMergeSource (Alternate)
Members:
Since: 4.1
BlockDirtyBitmapMerge (Object)
Members:
Since: 4.0
block-dirty-bitmap-add (Command) Create a dirty bitmap with a name on the node, and start tracking the writes.
Returns: nothing on success If "node" is not a valid block device or node, DeviceNotFound If "name" is already taken, GenericError with an explanation
Since: 2.4
Example:
-> { "execute": "block-dirty-bitmap-add",
"arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
block-dirty-bitmap-remove (Command) Stop write tracking and remove the dirty bitmap that was created with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its storage too.
Returns: nothing on success If "node" is not a valid block device or node, DeviceNotFound If "name" is not found, GenericError with an explanation if "name" is frozen by an operation, GenericError
Since: 2.4
Example:
-> { "execute": "block-dirty-bitmap-remove",
"arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
block-dirty-bitmap-clear (Command) Clear (reset) a dirty bitmap on the device, so that an incremental backup from this point in time forward will only backup clusters modified after this clear operation.
Returns: nothing on success If "node" is not a valid block device, DeviceNotFound If "name" is not found, GenericError with an explanation
Since: 2.4
Example:
-> { "execute": "block-dirty-bitmap-clear",
"arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
block-dirty-bitmap-enable (Command) Enables a dirty bitmap so that it will begin tracking disk changes.
Returns: nothing on success If "node" is not a valid block device, DeviceNotFound If "name" is not found, GenericError with an explanation
Since: 4.0
Example:
-> { "execute": "block-dirty-bitmap-enable",
"arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
block-dirty-bitmap-disable (Command) Disables a dirty bitmap so that it will stop tracking disk changes.
Returns: nothing on success If "node" is not a valid block device, DeviceNotFound If "name" is not found, GenericError with an explanation
Since: 4.0
Example:
-> { "execute": "block-dirty-bitmap-disable",
"arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
block-dirty-bitmap-merge (Command) Merge dirty bitmaps listed in "bitmaps" to the "target" dirty bitmap. Dirty bitmaps in "bitmaps" will be unchanged, except if it also appears as the "target" bitmap. Any bits already set in "target" will still be set after the merge, i.e., this operation does not clear the target. On error, "target" is unchanged.
The resulting bitmap will count as dirty any clusters that were dirty in any of the source bitmaps. This can be used to achieve backup checkpoints, or in simpler usages, to copy bitmaps.
Returns: nothing on success If "node" is not a valid block device, DeviceNotFound If any bitmap in "bitmaps" or "target" is not found, GenericError If any of the bitmaps have different sizes or granularities, GenericError
Since: 4.0
Example:
-> { "execute": "block-dirty-bitmap-merge",
"arguments": { "node": "drive0", "target": "bitmap0",
"bitmaps": ["bitmap1"] } }
<- { "return": {} }
BlockDirtyBitmapSha256 (Object)
SHA256 hash of dirty bitmap data
Members:
Since: 2.10
x-debug-block-dirty-bitmap-sha256 (Command) Get bitmap SHA256.
Returns: BlockDirtyBitmapSha256 on success If "node" is not a valid block device, DeviceNotFound If "name" is not found or if hashing has failed, GenericError with an explanation
Since: 2.10
blockdev-mirror (Command) Start mirroring a block device's writes to a new destination.
Arguments:
Returns: nothing on success.
Since: 2.6
Example:
-> { "execute": "blockdev-mirror",
"arguments": { "device": "ide-hd0",
"target": "target0",
"sync": "full" } }
<- { "return": {} }
block_set_io_throttle (Command) Change I/O throttle limits for a block drive.
Since QEMU 2.4, each device with I/O limits is member of a throttle group.
If two or more devices are members of the same group, the limits will apply to the combined I/O of the whole group in a round-robin fashion. Therefore, setting new I/O limits to a device will affect the whole group.
The name of the group can be specified using the 'group' parameter. If the parameter is unset, it is assumed to be the current group of that device. If it's not in any group yet, the name of the device will be used as the name for its group.
The 'group' parameter can also be used to move a device to a different group. In this case the limits specified in the parameters will be applied to the new group only.
I/O limits can be disabled by setting all of them to 0. In this case the device will be removed from its group and the rest of its members will not be affected. The 'group' parameter is ignored.
Arguments: the members of "BlockIOThrottle"
Returns: Nothing on success If "device" is not a valid block device, DeviceNotFound
Since: 1.1
Example:
-> { "execute": "block_set_io_throttle",
"arguments": { "id": "virtio-blk-pci0/virtio-backend",
"bps": 0,
"bps_rd": 0,
"bps_wr": 0,
"iops": 512,
"iops_rd": 0,
"iops_wr": 0,
"bps_max": 0,
"bps_rd_max": 0,
"bps_wr_max": 0,
"iops_max": 0,
"iops_rd_max": 0,
"iops_wr_max": 0,
"bps_max_length": 0,
"iops_size": 0 } }
<- { "return": {} }
-> { "execute": "block_set_io_throttle",
"arguments": { "id": "ide0-1-0",
"bps": 1000000,
"bps_rd": 0,
"bps_wr": 0,
"iops": 0,
"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,
"bps_max_length": 60,
"iops_size": 0 } }
<- { "return": {} }
BlockIOThrottle (Object)
A set of parameters describing block throttling.
Members:
Since: 1.1
ThrottleLimits (Object)
Limit parameters for throttling. Since some limit combinations are illegal, limits should always be set in one transaction. All fields are optional. When setting limits, if a field is missing the current value is not changed.
Members:
Since: 2.11
block-stream (Command) Copy data from a backing file into a block device.
The block streaming operation is performed in the background until the entire backing file has been copied. This command returns immediately once streaming has started. The status of ongoing block streaming operations can be checked with query-block-jobs. The operation can be stopped before it has completed using the block-job-cancel command.
The node that receives the data is called the top image, can be located in any part of the chain (but always above the base image; see below) and can be specified using its device or node name. Earlier qemu versions only allowed 'device' to name the top level node; presence of the 'base-node' parameter during introspection can be used as a witness of the enhanced semantics of 'device'.
If a base file is specified then sectors are not copied from that base file and its backing chain. When streaming completes the image file will have the base file as its backing file. This can be used to stream a subset of the backing file chain instead of flattening the entire image.
On successful completion the image file is updated to drop the backing file and the BLOCK_JOB_COMPLETED event is emitted.
Arguments:
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. (Since 2.1)
Returns: Nothing on success. If "device" does not exist, DeviceNotFound.
Since: 1.1
Example:
-> { "execute": "block-stream",
"arguments": { "device": "virtio0",
"base": "/tmp/master.qcow2" } }
<- { "return": {} }
block-job-set-speed (Command) Set maximum speed for a background block operation.
This command can only be issued when there is an active block job.
Throttling can be disabled by setting the speed to 0.
Arguments:
Returns: Nothing on success If no background operation is active on this device, DeviceNotActive
Since: 1.1
block-job-cancel (Command) Stop an active background block operation.
This command returns immediately after marking the active background block operation for cancellation. It is an error to call this command if no operation is in progress.
The operation will cancel as soon as possible and then emit the BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when enumerated using query-block-jobs.
Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated (via the event BLOCK_JOB_READY) that the source and destination are synchronized, then the event triggered by this command changes to BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the destination now has a point-in-time copy tied to the time of the cancellation.
For streaming, the image file retains its backing file unless the streaming operation happens to complete just as it is being cancelled. A new streaming operation can be started at a later time to finish copying all data from the backing file.
Arguments:
Returns: Nothing on success If no background operation is active on this device, DeviceNotActive
Since: 1.1
block-job-pause (Command) Pause an active background block operation.
This command returns immediately after marking the active background block operation for pausing. It is an error to call this command if no operation is in progress or if the job is already paused.
The operation will pause as soon as possible. No event is emitted when the operation is actually paused. Cancelling a paused job automatically resumes it.
Arguments:
Returns: Nothing on success If no background operation is active on this device, DeviceNotActive
Since: 1.3
block-job-resume (Command) Resume an active background block operation.
This command returns immediately after resuming a paused background block operation. It is an error to call this command if no operation is in progress or if the job is not paused.
This command also clears the error status of the job.
Arguments:
Returns: Nothing on success If no background operation is active on this device, DeviceNotActive
Since: 1.3
block-job-complete (Command) Manually trigger completion of an active background block operation. This is supported for drive mirroring, where it also switches the device to write to the target path only. The ability to complete is signaled with a BLOCK_JOB_READY event.
This command completes an active background block operation synchronously. The ordering of this command's return with the BLOCK_JOB_COMPLETED event is not defined. Note that if an I/O error occurs during the processing of this command: 1) the command itself will fail; 2) the error will be processed according to the rerror/werror arguments that were specified when starting the operation.
A cancelled or paused job cannot be completed.
Arguments:
Returns: Nothing on success If no background operation is active on this device, DeviceNotActive
Since: 1.3
block-job-dismiss (Command) For jobs that have already concluded, remove them from the block-job-query list. This command only needs to be run for jobs which were started with QEMU 2.12+ job lifetime management semantics.
This command will refuse to operate on any job that has not yet reached its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need to be used as appropriate.
Arguments:
Returns: Nothing on success
Since: 2.12
block-job-finalize (Command) Once a job that has manual=true reaches the pending state, it can be instructed to finalize any graph changes and do any necessary cleanup via this command. For jobs in a transaction, instructing one job to finalize will force ALL jobs in the transaction to finalize, so it is only necessary to instruct a single member job to finalize.
Arguments:
Returns: Nothing on success
Since: 2.12
BlockdevDiscardOptions (Enum)
Determines how to handle discard requests.
Values:
Since: 2.9
BlockdevDetectZeroesOptions (Enum)
Describes the operation mode for the automatic conversion of plain zero writes by the OS to driver specific optimized zero write commands.
Values:
Since: 2.1
BlockdevAioOptions (Enum)
Selects the AIO backend to handle I/O requests
Values:
Since: 2.9
BlockdevCacheOptions (Object)
Includes cache-related options for block devices
Members:
Since: 2.9
BlockdevDriver (Enum)
Drivers that are supported in block device operations.
Values:
Since: 2.9
BlockdevOptionsFile (Object)
Driver specific block device options for the file backend.
Members:
Features:
Since: 2.9
BlockdevOptionsNull (Object)
Driver specific block device options for the null backend.
Members:
Since: 2.9
BlockdevOptionsNVMe (Object)
Driver specific block device options for the NVMe backend.
Members:
Note that the PCI "device" must have been unbound from any host kernel driver before instructing QEMU to add the blockdev.
Since: 2.12
BlockdevOptionsVVFAT (Object)
Driver specific block device options for the vvfat protocol.
Members:
Since: 2.9
BlockdevOptionsGenericFormat (Object)
Driver specific block device options for image format that have no option besides their data source.
Members:
Since: 2.9
BlockdevOptionsLUKS (Object)
Driver specific block device options for LUKS.
Members:
Since: 2.9
BlockdevOptionsGenericCOWFormat (Object)
Driver specific block device options for image format that have no option besides their data source and an optional backing file.
Members:
Since: 2.9
Qcow2OverlapCheckMode (Enum)
General overlap check modes.
Values:
Since: 2.9
Qcow2OverlapCheckFlags (Object)
Structure of flags for each metadata structure. Setting a field to 'true' makes qemu guard that structure against unintended overwriting. The default value is chosen according to the template given.
Members:
Since: 2.9
Qcow2OverlapChecks (Alternate)
Specifies which metadata structures should be guarded against unintended overwriting.
Members:
Since: 2.9
BlockdevQcowEncryptionFormat (Enum)
Values:
Since: 2.10
BlockdevQcowEncryption (Object)
Members:
Since: 2.10
BlockdevOptionsQcow (Object)
Driver specific block device options for qcow.
Members:
Since: 2.10
BlockdevQcow2EncryptionFormat (Enum)
Values:
Since: 2.10
BlockdevQcow2Encryption (Object)
Members:
Since: 2.10
BlockdevOptionsQcow2 (Object)
Driver specific block device options for qcow2.
Members:
Since: 2.9
SshHostKeyCheckMode (Enum)
"none" Don't check the host key at all "hash" Compare the host key with a given hash "known_hosts" Check the host key against the known_hosts file
Values:
Since: 2.12
SshHostKeyCheckHashType (Enum)
"md5" The given hash is an md5 hash "sha1" The given hash is an sha1 hash
Values:
Since: 2.12
SshHostKeyHash (Object)
"type" The hash algorithm used for the hash "hash" The expected hash value
Members:
Since: 2.12
SshHostKeyCheck (Object)
Members:
Since: 2.12
BlockdevOptionsSsh (Object)
Members:
Since: 2.9
BlkdebugEvent (Enum)
Trigger events supported by blkdebug.
Values:
Since: 2.9
BlkdebugIOType (Enum)
Kinds of I/O that blkdebug can inject errors in.
Values:
Since: 4.1
BlkdebugInjectErrorOptions (Object)
Describes a single error injection for blkdebug.
Members:
Since: 2.9
BlkdebugSetStateOptions (Object)
Describes a single state-change event for blkdebug.
Members:
Since: 2.9
BlockdevOptionsBlkdebug (Object)
Driver specific block device options for blkdebug.
Members:
Since: 2.9
BlockdevOptionsBlklogwrites (Object)
Driver specific block device options for blklogwrites.
Members:
Since: 3.0
BlockdevOptionsBlkverify (Object)
Driver specific block device options for blkverify.
Members:
Since: 2.9
BlockdevOptionsBlkreplay (Object)
Driver specific block device options for blkreplay.
Members:
Since: 4.2
QuorumReadPattern (Enum)
An enumeration of quorum read patterns.
Values:
Since: 2.9
BlockdevOptionsQuorum (Object)
Driver specific block device options for Quorum
Members:
Since: 2.9
BlockdevOptionsGluster (Object)
Driver specific block device options for Gluster
Members:
Since: 2.9
IscsiTransport (Enum)
An enumeration of libiscsi transport types
Values:
Since: 2.9
IscsiHeaderDigest (Enum)
An enumeration of header digests supported by libiscsi
Values:
Since: 2.9
BlockdevOptionsIscsi (Object)
Members:
Driver specific block device options for iscsi
Since: 2.9
RbdAuthMode (Enum)
Values:
Since: 3.0
BlockdevOptionsRbd (Object)
Members:
Since: 2.9
BlockdevOptionsSheepdog (Object)
Driver specific block device options for sheepdog
Members:
Only one of "snap-id" and "tag" may be present.
Since: 2.9
ReplicationMode (Enum)
An enumeration of replication modes.
Values:
Since: 2.9
If: "defined(CONFIG_REPLICATION)"
BlockdevOptionsReplication (Object)
Driver specific block device options for replication
Members:
Since: 2.9
If: "defined(CONFIG_REPLICATION)"
NFSTransport (Enum)
An enumeration of NFS transport types
Values:
Since: 2.9
NFSServer (Object)
Captures the address of the socket
Members:
Since: 2.9
BlockdevOptionsNfs (Object)
Driver specific block device option for NFS
Members:
Since: 2.9
BlockdevOptionsCurlBase (Object)
Driver specific block device options shared by all protocols supported by the curl backend.
Members:
Since: 2.9
BlockdevOptionsCurlHttp (Object)
Driver specific block device options for HTTP connections over the curl backend. URLs must start with "http://".
Members:
Since: 2.9
BlockdevOptionsCurlHttps (Object)
Driver specific block device options for HTTPS connections over the curl backend. URLs must start with "https://".
Members:
Since: 2.9
BlockdevOptionsCurlFtp (Object)
Driver specific block device options for FTP connections over the curl backend. URLs must start with "ftp://".
Members:
Since: 2.9
BlockdevOptionsCurlFtps (Object)
Driver specific block device options for FTPS connections over the curl backend. URLs must start with "ftps://".
Members:
Since: 2.9
BlockdevOptionsNbd (Object)
Driver specific block device options for NBD.
Members:
Since: 2.9
BlockdevOptionsRaw (Object)
Driver specific block device options for the raw driver.
Members:
Since: 2.9
BlockdevOptionsVxHS (Object)
Driver specific block device options for VxHS
Members:
Since: 2.10
BlockdevOptionsThrottle (Object)
Driver specific block device options for the throttle driver
Members:
Since: 2.11
BlockdevOptions (Object)
Options for creating a block device. Many options are available for all block devices, independent of the block driver:
Members:
Remaining options are determined by the block driver.
Since: 2.9
BlockdevRef (Alternate)
Reference to a block device.
Members:
Since: 2.9
BlockdevRefOrNull (Alternate)
Reference to a block device.
Members:
Since: 2.9
blockdev-add (Command) Creates a new block device. If the "id" option is given at the top level, a BlockBackend will be created; otherwise, "node-name" is mandatory at the top level and no BlockBackend will be created.
Arguments: the members of "BlockdevOptions"
Since: 2.9
Example:
1.
-> { "execute": "blockdev-add",
"arguments": {
"driver": "qcow2",
"node-name": "test1",
"file": {
"driver": "file",
"filename": "test.qcow2"
}
}
}
<- { "return": {} }
2.
-> { "execute": "blockdev-add",
"arguments": {
"driver": "qcow2",
"node-name": "node0",
"discard": "unmap",
"cache": {
"direct": true
},
"file": {
"driver": "file",
"filename": "/tmp/test.qcow2"
},
"backing": {
"driver": "raw",
"file": {
"driver": "file",
"filename": "/dev/fdset/4"
}
}
}
}
<- { "return": {} }
x-blockdev-reopen (Command) Reopens a block device using the given set of options. Any option not specified will be reset to its default value regardless of its previous status. If an option cannot be changed or a particular driver does not support reopening then the command will return an error.
The top-level "node-name" option (from BlockdevOptions) must be specified and is used to select the block device to be reopened. Other "node-name" options must be either omitted or set to the current name of the appropriate node. This command won't change any node name and any attempt to do it will result in an error.
In the case of options that refer to child nodes, the behavior of this command depends on the value:
1) A set of options (BlockdevOptions): the child is reopened with the specified set of options.
2) A reference to the current child: the child is reopened using its existing set of options.
3) A reference to a different node: the current child is replaced with the specified one.
4) NULL: the current child (if any) is detached.
Options (1) and (2) are supported in all cases, but at the moment only "backing" allows replacing or detaching an existing child.
Unlike with blockdev-add, the "backing" option must always be present unless the node being reopened does not have a backing file and its image does not have a default backing file name as part of its metadata.
Arguments: the members of "BlockdevOptions"
Since: 4.0
blockdev-del (Command) 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.
Arguments:
Since: 2.9
Example:
-> { "execute": "blockdev-add",
"arguments": {
"driver": "qcow2",
"node-name": "node0",
"file": {
"driver": "file",
"filename": "test.qcow2"
}
}
}
<- { "return": {} }
-> { "execute": "blockdev-del",
"arguments": { "node-name": "node0" }
}
<- { "return": {} }
BlockdevCreateOptionsFile (Object)
Driver specific image creation options for file.
"filename" Filename for the new image file "size" Size of the virtual disk in bytes "preallocation" Preallocation mode for the new image (default: off; allowed values: off, falloc (if defined CONFIG_POSIX_FALLOCATE), full (if defined CONFIG_POSIX)) "nocow" Turn off copy-on-write (valid only on btrfs; default: off)
Members:
Since: 2.12
BlockdevCreateOptionsGluster (Object)
Driver specific image creation options for gluster.
"location" Where to store the new image file "size" Size of the virtual disk in bytes "preallocation" Preallocation mode for the new image (default: off; allowed values: off, falloc (if defined CONFIG_GLUSTERFS_FALLOCATE), full (if defined CONFIG_GLUSTERFS_ZEROFILL))
Members:
Since: 2.12
BlockdevCreateOptionsLUKS (Object)
Driver specific image creation options for LUKS.
"file" Node to create the image format on "size" Size of the virtual disk in bytes "preallocation" Preallocation mode for the new image (since: 4.2) (default: off; allowed values: off, metadata, falloc, full)
Members:
Since: 2.12
BlockdevCreateOptionsNfs (Object)
Driver specific image creation options for NFS.
"location" Where to store the new image file "size" Size of the virtual disk in bytes
Members:
Since: 2.12
BlockdevCreateOptionsParallels (Object)
Driver specific image creation options for parallels.
"file" Node to create the image format on "size" Size of the virtual disk in bytes "cluster-size" Cluster size in bytes (default: 1 MB)
Members:
Since: 2.12
BlockdevCreateOptionsQcow (Object)
Driver specific image creation options for qcow.
"file" Node to create the image format on "size" Size of the virtual disk in bytes "backing-file" File name of the backing file if a backing file should be used "encrypt" Encryption options if the image should be encrypted
Members:
Since: 2.12
BlockdevQcow2Version (Enum)
Values:
Since: 2.12
BlockdevCreateOptionsQcow2 (Object)
Driver specific image creation options for qcow2.
"file" Node to create the image format on "data-file" Node to use as an external data file in which all guest data is stored so that only metadata remains in the qcow2 file (since: 4.0) "data-file-raw" True if the external data file must stay valid as a standalone (read-only) raw image without looking at qcow2 metadata (default: false; since: 4.0) "size" Size of the virtual disk in bytes "version" Compatibility level (default: v3) "backing-file" File name of the backing file if a backing file should be used "backing-fmt" Name of the block driver to use for the backing file "encrypt" Encryption options if the image should be encrypted "cluster-size" qcow2 cluster size in bytes (default: 65536) "preallocation" Preallocation mode for the new image (default: off; allowed values: off, falloc, full, metadata) "lazy-refcounts" True if refcounts may be updated lazily (default: off) "refcount-bits" Width of reference counts in bits (default: 16)
Members:
Since: 2.12
BlockdevCreateOptionsQed (Object)
Driver specific image creation options for qed.
"file" Node to create the image format on "size" Size of the virtual disk in bytes "backing-file" File name of the backing file if a backing file should be used "backing-fmt" Name of the block driver to use for the backing file "cluster-size" Cluster size in bytes (default: 65536) "table-size" L1/L2 table size (in clusters)
Members:
Since: 2.12
BlockdevCreateOptionsRbd (Object)
Driver specific image creation options for rbd/Ceph.
"location" Where to store the new image file. This location cannot point to a snapshot. "size" Size of the virtual disk in bytes "cluster-size" RBD object size
Members:
Since: 2.12
BlockdevVmdkSubformat (Enum)
Subformat options for VMDK images
Values:
Since: 4.0
BlockdevVmdkAdapterType (Enum)
Adapter type info for VMDK images
Values:
Since: 4.0
BlockdevCreateOptionsVmdk (Object)
Driver specific image creation options for VMDK.
"file" Where to store the new image file. This refers to the image file for monolithcSparse and streamOptimized format, or the descriptor file for other formats. "size" Size of the virtual disk in bytes "extents" Where to store the data extents. Required for monolithcFlat, twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For monolithicFlat, only one entry is required; for twoGbMaxExtent* formats, the number of entries required is calculated as extent_number = virtual_size / 2GB. Providing more extents than will be used is an error. "subformat" The subformat of the VMDK image. Default: "monolithicSparse". "backing-file" The path of backing file. Default: no backing file is used. "adapter-type" The adapter type used to fill in the descriptor. Default: ide. "hwversion" Hardware version. The meaningful options are "4" or "6". Default: "4". "zeroed-grain" Whether to enable zeroed-grain feature for sparse subformats. Default: false.
Members:
Since: 4.0
SheepdogRedundancyType (Enum)
"full" Create a fully replicated vdi with x copies "erasure-coded" Create an erasure coded vdi with x data strips and y parity strips
Values:
Since: 2.12
SheepdogRedundancyFull (Object)
"copies" Number of copies to use (between 1 and 31)
Members:
Since: 2.12
SheepdogRedundancyErasureCoded (Object)
"data-strips" Number of data strips to use (one of {2,4,8,16}) "parity-strips" Number of parity strips to use (between 1 and 15)
Members:
Since: 2.12
SheepdogRedundancy (Object)
Members:
Since: 2.12
BlockdevCreateOptionsSheepdog (Object)
Driver specific image creation options for Sheepdog.
"location" Where to store the new image file "size" Size of the virtual disk in bytes "backing-file" File name of a base image "preallocation" Preallocation mode for the new image (default: off; allowed values: off, full) "redundancy" Redundancy of the image "object-size" Object size of the image
Members:
Since: 2.12
BlockdevCreateOptionsSsh (Object)
Driver specific image creation options for SSH.
"location" Where to store the new image file "size" Size of the virtual disk in bytes
Members:
Since: 2.12
BlockdevCreateOptionsVdi (Object)
Driver specific image creation options for VDI.
"file" Node to create the image format on "size" Size of the virtual disk in bytes "preallocation" Preallocation mode for the new image (default: off; allowed values: off, metadata)
Members:
Since: 2.12
BlockdevVhdxSubformat (Enum)
Values:
Since: 2.12
BlockdevCreateOptionsVhdx (Object)
Driver specific image creation options for vhdx.
"file" Node to create the image format on "size" Size of the virtual disk in bytes "log-size" Log size in bytes, must be a multiple of 1 MB (default: 1 MB) "block-size" Block size in bytes, must be a multiple of 1 MB and not larger than 256 MB (default: automatically choose a block size depending on the image size) "subformat" vhdx subformat (default: dynamic) "block-state-zero" Force use of payload blocks of type 'ZERO'. Non-standard, but default. Do not set to 'off' when using 'qemu-img convert' with subformat=dynamic.
Members:
Since: 2.12
BlockdevVpcSubformat (Enum)
Values:
Since: 2.12
BlockdevCreateOptionsVpc (Object)
Driver specific image creation options for vpc (VHD).
"file" Node to create the image format on "size" Size of the virtual disk in bytes "subformat" vhdx subformat (default: dynamic) "force-size" Force use of the exact byte size instead of rounding to the next size that can be represented in CHS geometry (default: false)
Members:
Since: 2.12
BlockdevCreateOptions (Object)
Options for creating an image format on a given node.
"driver" block driver to create the image format
Members:
Since: 2.12
blockdev-create (Command) Starts a job to create an image format on a given node. The job is automatically finalized, but a manual job-dismiss is required.
Arguments:
Since: 3.0
blockdev-open-tray (Command) 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:
Arguments:
Since: 2.5
Example:
-> { "execute": "blockdev-open-tray",
"arguments": { "id": "ide0-1-0" } }
<- { "timestamp": { "seconds": 1418751016,
"microseconds": 716996 },
"event": "DEVICE_TRAY_MOVED",
"data": { "device": "ide1-cd0",
"id": "ide0-1-0",
"tray-open": true } }
<- { "return": {} }
blockdev-close-tray (Command) 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:
Since: 2.5
Example:
-> { "execute": "blockdev-close-tray",
"arguments": { "id": "ide0-1-0" } }
<- { "timestamp": { "seconds": 1418751345,
"microseconds": 272147 },
"event": "DEVICE_TRAY_MOVED",
"data": { "device": "ide1-cd0",
"id": "ide0-1-0",
"tray-open": false } }
<- { "return": {} }
blockdev-remove-medium (Command) 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.
Arguments:
Since: 2.12
Example:
-> { "execute": "blockdev-remove-medium",
"arguments": { "id": "ide0-1-0" } }
<- { "error": { "class": "GenericError",
"desc": "Tray of device 'ide0-1-0' is not open" } }
-> { "execute": "blockdev-open-tray",
"arguments": { "id": "ide0-1-0" } }
<- { "timestamp": { "seconds": 1418751627,
"microseconds": 549958 },
"event": "DEVICE_TRAY_MOVED",
"data": { "device": "ide1-cd0",
"id": "ide0-1-0",
"tray-open": true } }
<- { "return": {} }
-> { "execute": "blockdev-remove-medium",
"arguments": { "id": "ide0-1-0" } }
<- { "return": {} }
blockdev-insert-medium (Command) 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.
Arguments:
Since: 2.12
Example:
-> { "execute": "blockdev-add",
"arguments": {
"node-name": "node0",
"driver": "raw",
"file": { "driver": "file",
"filename": "fedora.iso" } } }
<- { "return": {} }
-> { "execute": "blockdev-insert-medium",
"arguments": { "id": "ide0-1-0",
"node-name": "node0" } }
<- { "return": {} }
BlockdevChangeReadOnlyMode (Enum)
Specifies the new read-only mode of a block device subject to the "blockdev-change-medium" command.
Values:
Since: 2.3
blockdev-change-medium (Command) 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 (this command combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium and blockdev-close-tray).
Arguments:
Since: 2.5
Examples:
1. Change a removable medium
-> { "execute": "blockdev-change-medium",
"arguments": { "id": "ide0-1-0",
"filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
"format": "raw" } }
<- { "return": {} }
2. Load a read-only medium into a writable drive
-> { "execute": "blockdev-change-medium",
"arguments": { "id": "floppyA",
"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",
"arguments": { "id": "floppyA",
"filename": "/srv/images/ro.img",
"format": "raw",
"read-only-mode": "read-only" } }
<- { "return": {} }
BlockErrorAction (Enum)
An enumeration of action that has been taken when a DISK I/O occurs
Values:
Since: 2.1
BLOCK_IMAGE_CORRUPTED (Event) Emitted when a disk image is being marked corrupt. The image can be identified by its device or node name. The 'device' field is always present for compatibility reasons, but it can be empty ("") if the image does not have a device name associated.
Arguments:
Note: If action is "stop", a STOP event will eventually follow the BLOCK_IO_ERROR event.
Example:
<- { "event": "BLOCK_IMAGE_CORRUPTED",
"data": { "device": "ide0-hd0", "node-name": "node0",
"msg": "Prevented active L1 table overwrite", "offset": 196608,
"size": 65536 },
"timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
Since: 1.7
BLOCK_IO_ERROR (Event) Emitted when a disk I/O error occurs
Arguments:
Note: If action is "stop", a STOP event will eventually follow the BLOCK_IO_ERROR event
Since: 0.13.0
Example:
<- { "event": "BLOCK_IO_ERROR",
"data": { "device": "ide0-hd1",
"node-name": "#block212",
"operation": "write",
"action": "stop" },
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
BLOCK_JOB_COMPLETED (Event) Emitted when a block job has completed
Arguments:
Since: 1.1
Example:
<- { "event": "BLOCK_JOB_COMPLETED",
"data": { "type": "stream", "device": "virtio-disk0",
"len": 10737418240, "offset": 10737418240,
"speed": 0 },
"timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
BLOCK_JOB_CANCELLED (Event) Emitted when a block job has been cancelled
Arguments:
Since: 1.1
Example:
<- { "event": "BLOCK_JOB_CANCELLED",
"data": { "type": "stream", "device": "virtio-disk0",
"len": 10737418240, "offset": 134217728,
"speed": 0 },
"timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
BLOCK_JOB_ERROR (Event) Emitted when a block job encounters an error
Arguments:
Since: 1.3
Example:
<- { "event": "BLOCK_JOB_ERROR",
"data": { "device": "ide0-hd1",
"operation": "write",
"action": "stop" },
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
BLOCK_JOB_READY (Event) Emitted when a block job is ready to complete
Arguments:
Note: The "ready to complete" status is always reset by a "BLOCK_JOB_ERROR" event
Since: 1.3
Example:
<- { "event": "BLOCK_JOB_READY",
"data": { "device": "drive0", "type": "mirror", "speed": 0,
"len": 2097152, "offset": 2097152 }
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
BLOCK_JOB_PENDING (Event) Emitted when a block job is awaiting explicit authorization to finalize graph changes via "block-job-finalize". If this job is part of a transaction, it will not emit this event until the transaction has converged first.
Arguments:
Since: 2.12
Example:
<- { "event": "BLOCK_JOB_WAITING",
"data": { "device": "drive0", "type": "mirror" },
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
PreallocMode (Enum)
Preallocation mode of QEMU image file
Values:
Since: 2.2
BLOCK_WRITE_THRESHOLD (Event) Emitted when writes on block device reaches or exceeds the configured write threshold. For thin-provisioned devices, this means the device should be extended to avoid pausing for disk exhaustion. The event is one shot. Once triggered, it needs to be re-registered with another block-set-write-threshold command.
Arguments:
Since: 2.3
block-set-write-threshold (Command) Change the write threshold for a block drive. An event will be delivered if a write to this block drive crosses the configured threshold. The threshold is an offset, thus must be non-negative. Default is no write threshold. Setting the threshold to zero disables it.
This is useful to transparently resize thin-provisioned drives without the guest OS noticing.
Arguments:
Since: 2.3
Example:
-> { "execute": "block-set-write-threshold",
"arguments": { "node-name": "mydev",
"write-threshold": 17179869184 } }
<- { "return": {} }
x-blockdev-change (Command) 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:
Note: this command is experimental, and its API is not stable. It does not support all kinds of operations, all kinds of children, nor all block drivers.
FIXME Removing children from a quorum node means introducing gaps in the child indices. This cannot be represented in the 'children' list of BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
Warning: The data in a new quorum child MUST be consistent with that of the rest of the array.
Since: 2.7
Example:
1. Add a new node to a quorum
-> { "execute": "blockdev-add",
"arguments": {
"driver": "raw",
"node-name": "new_node",
"file": { "driver": "file",
"filename": "test.raw" } } }
<- { "return": {} }
-> { "execute": "x-blockdev-change",
"arguments": { "parent": "disk1",
"node": "new_node" } }
<- { "return": {} }
2. Delete a quorum's node
-> { "execute": "x-blockdev-change",
"arguments": { "parent": "disk1",
"child": "children.1" } }
<- { "return": {} }
x-blockdev-set-iothread (Command) Move "node" and its children into the "iothread". If "iothread" is null then move "node" and its children into the main loop.
The node must not be attached to a BlockBackend.
Arguments:
Note: this command is experimental and intended for test cases that need control over IOThreads only.
Since: 2.12
Example:
1. Move a node into an IOThread
-> { "execute": "x-blockdev-set-iothread",
"arguments": { "node-name": "disk1",
"iothread": "iothread0" } }
<- { "return": {} }
2. Move a node into the main loop
-> { "execute": "x-blockdev-set-iothread",
"arguments": { "node-name": "disk1",
"iothread": null } }
<- { "return": {} }
Additional block stuff (VM related)
BiosAtaTranslation (Enum)
Policy that BIOS should use to interpret cylinder/head/sector addresses. Note that Bochs BIOS and SeaBIOS will not actually translate logical CHS to physical; instead, they will use logical block addressing.
Values:
Since: 2.0
FloppyDriveType (Enum)
Type of Floppy drive to be emulated by the Floppy Disk Controller.
Values:
Since: 2.6
BlockdevSnapshotInternal (Object)
Members:
Notes: In transaction, if "name" is empty, or any snapshot matching "name" exists, the operation will fail. Only some image formats support it, for example, qcow2, rbd, and sheepdog.
Since: 1.7
PRManagerInfo (Object)
Information about a persistent reservation manager
Members:
Since: 3.0
query-pr-managers (Command) Returns a list of information about each persistent reservation manager.
Returns: a list of "PRManagerInfo" for each persistent reservation manager
Since: 3.0
blockdev-snapshot-internal-sync (Command) Synchronously take an internal snapshot of a block device, when the format of the image used supports it. If the name is an empty string, or a snapshot with name already exists, the operation will fail.
For the arguments, see the documentation of BlockdevSnapshotInternal.
Returns: nothing on success
If "device" is not a valid block device, GenericError
If any snapshot matching "name" exists, or "name" is empty, GenericError
If the format of the image used does not support it, BlockFormatFeatureNotSupported
Since: 1.7
Example:
-> { "execute": "blockdev-snapshot-internal-sync",
"arguments": { "device": "ide-hd0",
"name": "snapshot0" }
}
<- { "return": {} }
blockdev-snapshot-delete-internal-sync (Command) Synchronously delete an internal snapshot of a block device, when the format of the image used support it. The snapshot is identified by name or id or both. One of the name or id is required. Return SnapshotInfo for the successfully deleted snapshot.
Arguments:
Returns: SnapshotInfo on success If "device" is not a valid block device, GenericError If snapshot not found, GenericError If the format of the image used does not support it, BlockFormatFeatureNotSupported If "id" and "name" are both not specified, GenericError
Since: 1.7
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
}
}
eject (Command) Ejects a device from a removable drive.
Arguments:
Returns: Nothing on success
If "device" is not a valid block device, DeviceNotFound
Notes: Ejecting a device with no media results in success
Since: 0.14.0
Example:
-> { "execute": "eject", "arguments": { "id": "ide1-0-1" } }
<- { "return": {} }
nbd-server-start (Command) Start an NBD server listening on the given host and port. Block devices can then be exported using "nbd-server-add". The NBD server will present them as named exports; for example, another QEMU instance could refer to them as "nbd:HOST:PORT:exportname=NAME".
Arguments:
Returns: error if the server is already running.
Since: 1.3.0
nbd-server-add (Command) Export a block node to QEMU's embedded NBD server.
Arguments:
Returns: error if the server is not running, or export with the same name already exists.
Since: 1.3.0
NbdServerRemoveMode (Enum)
Mode for removing an NBD export.
Values:
Potential additional modes to be added in the future:
hide: Just hide export from new clients, leave existing connections as is. Remove export after all clients are disconnected.
soft: Hide export from new clients, answer with ESHUTDOWN for all further requests from existing clients.
Since: 2.12
nbd-server-remove (Command) Remove NBD export by name.
Arguments:
Returns: error if
Since: 2.12
nbd-server-stop (Command) Stop QEMU's embedded NBD server, and unregister all devices previously added via "nbd-server-add".
Since: 1.3.0
DEVICE_TRAY_MOVED (Event) Emitted whenever the tray of a removable device is moved by the guest or by HMP/QMP commands
Arguments:
Since: 1.1
Example:
<- { "event": "DEVICE_TRAY_MOVED",
"data": { "device": "ide1-cd0",
"id": "/machine/unattached/device[22]",
"tray-open": true
},
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
PR_MANAGER_STATUS_CHANGED (Event) Emitted whenever the connected status of a persistent reservation manager changes.
Arguments:
Since: 3.0
Example:
<- { "event": "PR_MANAGER_STATUS_CHANGED",
"data": { "id": "pr-helper0",
"connected": true
},
"timestamp": { "seconds": 1519840375, "microseconds": 450486 } }
QuorumOpType (Enum)
An enumeration of the quorum operation types
Values:
Since: 2.6
QUORUM_FAILURE (Event) Emitted by the Quorum block driver if it fails to establish a quorum
Arguments:
Note: This event is rate-limited.
Since: 2.0
Example:
<- { "event": "QUORUM_FAILURE",
"data": { "reference": "usr1", "sector-num": 345435, "sectors-count": 5 },
"timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
QUORUM_REPORT_BAD (Event) Emitted to report a corruption of a Quorum file
Arguments:
Note: This event is rate-limited.
Since: 2.0
Example:
1. Read operation
{ "event": "QUORUM_REPORT_BAD",
"data": { "node-name": "node0", "sector-num": 345435, "sectors-count": 5,
"type": "read" },
"timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
2. Flush operation
{ "event": "QUORUM_REPORT_BAD",
"data": { "node-name": "node0", "sector-num": 0, "sectors-count": 2097120,
"type": "flush", "error": "Broken pipe" },
"timestamp": { "seconds": 1456406829, "microseconds": 291763 } }
ChardevInfo (Object)
Information about a character device.
Members:
Notes: "filename" is encoded using the QEMU command line character device encoding. See the QEMU man page for details.
Since: 0.14.0
query-chardev (Command) Returns information about current character devices.
Returns: a list of "ChardevInfo"
Since: 0.14.0
Example:
-> { "execute": "query-chardev" }
<- {
"return": [
{
"label": "charchannel0",
"filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.agent,server",
"frontend-open": false
},
{
"label": "charmonitor",
"filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.monitor,server",
"frontend-open": true
},
{
"label": "charserial0",
"filename": "pty:/dev/pts/2",
"frontend-open": true
}
]
}
ChardevBackendInfo (Object)
Information about a character device backend
Members:
Since: 2.0
query-chardev-backends (Command) Returns information about character device backends.
Returns: a list of "ChardevBackendInfo"
Since: 2.0
Example:
-> { "execute": "query-chardev-backends" }
<- {
"return":[
{
"name":"udp"
},
{
"name":"tcp"
},
{
"name":"unix"
},
{
"name":"spiceport"
}
]
}
DataFormat (Enum)
An enumeration of data format.
Values:
Since: 1.4
ringbuf-write (Command) Write to a ring buffer character device.
Arguments:
Returns: Nothing on success
Since: 1.4
Example:
-> { "execute": "ringbuf-write",
"arguments": { "device": "foo",
"data": "abcdefgh",
"format": "utf8" } }
<- { "return": {} }
ringbuf-read (Command) Read from a ring buffer character device.
Arguments:
Returns: data read from the device
Since: 1.4
Example:
-> { "execute": "ringbuf-read",
"arguments": { "device": "foo",
"size": 1000,
"format": "utf8" } }
<- { "return": "abcdefgh" }
ChardevCommon (Object)
Configuration shared across all chardev backends
Members:
Since: 2.6
ChardevFile (Object)
Configuration info for file chardevs.
Members:
Since: 1.4
ChardevHostdev (Object)
Configuration info for device and pipe chardevs.
Members:
Since: 1.4
ChardevSocket (Object)
Configuration info for (stream) socket chardevs.
Members:
Since: 1.4
ChardevUdp (Object)
Configuration info for datagram socket chardevs.
Members:
Since: 1.5
ChardevMux (Object)
Configuration info for mux chardevs.
Members:
Since: 1.5
ChardevStdio (Object)
Configuration info for stdio chardevs.
Members:
Since: 1.5
ChardevSpiceChannel (Object)
Configuration info for spice vm channel chardevs.
Members:
Since: 1.5
If: "defined(CONFIG_SPICE)"
ChardevSpicePort (Object)
Configuration info for spice port chardevs.
Members:
Since: 1.5
If: "defined(CONFIG_SPICE)"
ChardevVC (Object)
Configuration info for virtual console chardevs.
Members:
Since: 1.5
ChardevRingbuf (Object)
Configuration info for ring buffer chardevs.
Members:
Since: 1.5
ChardevBackend (Object)
Configuration info for the new chardev backend.
Members:
Since: 1.4 (testdev since 2.2, wctablet since 2.9)
ChardevReturn (Object)
Return info about the chardev backend just created.
Members:
Since: 1.4
chardev-add (Command) Add a character device backend
Arguments:
Returns: ChardevReturn.
Since: 1.4
Example:
-> { "execute" : "chardev-add",
"arguments" : { "id" : "foo",
"backend" : { "type" : "null", "data" : {} } } }
<- { "return": {} }
-> { "execute" : "chardev-add",
"arguments" : { "id" : "bar",
"backend" : { "type" : "file",
"data" : { "out" : "/tmp/bar.log" } } } }
<- { "return": {} }
-> { "execute" : "chardev-add",
"arguments" : { "id" : "baz",
"backend" : { "type" : "pty", "data" : {} } } }
<- { "return": { "pty" : "/dev/pty/42" } }
chardev-change (Command) Change a character device backend
Arguments:
Returns: ChardevReturn.
Since: 2.10
Example:
-> { "execute" : "chardev-change",
"arguments" : { "id" : "baz",
"backend" : { "type" : "pty", "data" : {} } } }
<- { "return": { "pty" : "/dev/pty/42" } }
-> {"execute" : "chardev-change",
"arguments" : {
"id" : "charchannel2",
"backend" : {
"type" : "socket",
"data" : {
"addr" : {
"type" : "unix" ,
"data" : {
"path" : "/tmp/charchannel2.socket"
}
},
"server" : true,
"wait" : false }}}}
<- {"return": {}}
chardev-remove (Command) Remove a character device backend
Arguments:
Returns: Nothing on success
Since: 1.4
Example:
-> { "execute": "chardev-remove", "arguments": { "id" : "foo" } }
<- { "return": {} }
chardev-send-break (Command) Send a break to a character device
Arguments:
Returns: Nothing on success
Since: 2.10
Example:
-> { "execute": "chardev-send-break", "arguments": { "id" : "foo" } }
<- { "return": {} }
VSERPORT_CHANGE (Event) Emitted when the guest opens or closes a virtio-serial port.
Arguments:
Since: 2.1
Example:
<- { "event": "VSERPORT_CHANGE",
"data": { "id": "channel0", "open": true },
"timestamp": { "seconds": 1401385907, "microseconds": 422329 } }
DumpGuestMemoryFormat (Enum)
An enumeration of guest-memory-dump's format.
Values:
Since: 2.0
dump-guest-memory (Command) Dump guest's memory to vmcore. It is a synchronous operation that can take very long depending on the amount of guest memory.
Arguments:
IMPORTANT: this option can make QEMU allocate several gigabytes of RAM. This can happen for a large guest, or a malicious guest pretending to be large.
Also, paging=true has the following limitations:
Note: All boolean arguments default to false
Returns: nothing on success
Since: 1.2
Example:
-> { "execute": "dump-guest-memory",
"arguments": { "protocol": "fd:dump" } }
<- { "return": {} }
DumpStatus (Enum)
Describe the status of a long-running background guest memory dump.
Values:
Since: 2.6
DumpQueryResult (Object)
The result format for 'query-dump'.
Members:
Since: 2.6
query-dump (Command) Query latest dump status.
Returns: A "DumpStatus" object showing the dump status.
Since: 2.6
Example:
-> { "execute": "query-dump" }
<- { "return": { "status": "active", "completed": 1024000,
"total": 2048000 } }
DUMP_COMPLETED (Event) Emitted when background dump has completed
Arguments:
Since: 2.6
Example:
{ "event": "DUMP_COMPLETED",
"data": {"result": {"total": 1090650112, "status": "completed",
"completed": 1090650112} } }
DumpGuestMemoryCapability (Object)
A list of the available formats for dump-guest-memory
Members:
Since: 2.0
query-dump-guest-memory-capability (Command) Returns the available formats for dump-guest-memory
Returns: A "DumpGuestMemoryCapability" object listing available formats for dump-guest-memory
Since: 2.0
Example:
-> { "execute": "query-dump-guest-memory-capability" }
<- { "return": { "formats":
["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] }
set_link (Command) Sets the link status of a virtual network adapter.
Arguments:
Returns: Nothing on success If "name" is not a valid network device, DeviceNotFound
Since: 0.14.0
Notes: Not all network adapters support setting link status. This command will succeed even if the network adapter does not support link status notification.
Example:
-> { "execute": "set_link",
"arguments": { "name": "e1000.0", "up": false } }
<- { "return": {} }
netdev_add (Command) Add a network backend.
Arguments:
Additional arguments depend on the type.
TODO: This command effectively bypasses QAPI completely due to its "additional arguments" business. It shouldn't have been added to the schema in this form. It should be qapified properly, or replaced by a properly qapified command.
Since: 0.14.0
Returns: Nothing on success If "type" is not a valid network backend, DeviceNotFound
Example:
-> { "execute": "netdev_add",
"arguments": { "type": "user", "id": "netdev1",
"dnssearch": "example.org" } }
<- { "return": {} }
netdev_del (Command) Remove a network backend.
Arguments:
Returns: Nothing on success If "id" is not a valid network backend, DeviceNotFound
Since: 0.14.0
Example:
-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
<- { "return": {} }
NetLegacyNicOptions (Object)
Create a new Network Interface Card.
Members:
Since: 1.2
NetdevUserOptions (Object)
Use the user mode network stack which requires no administrator privilege to run.
Members:
Since: 1.2
NetdevTapOptions (Object)
Used to configure a host TAP network interface backend.
Members:
Since: 1.2
NetdevSocketOptions (Object)
Socket netdevs are used to establish a network connection to another QEMU virtual machine via a TCP socket.
Members:
Since: 1.2
NetdevL2TPv3Options (Object)
Configure an Ethernet over L2TPv3 tunnel.
Members:
Since: 2.1
NetdevVdeOptions (Object)
Connect to a vde switch running on the host.
Members:
Since: 1.2
NetdevBridgeOptions (Object)
Connect a host TAP network interface to a host bridge device.
Members:
Since: 1.2
NetdevHubPortOptions (Object)
Connect two or more net clients through a software hub.
Members:
Since: 1.2
NetdevNetmapOptions (Object)
Connect a client to a netmap-enabled NIC or to a VALE switch port
Members:
Since: 2.0
NetdevVhostUserOptions (Object)
Vhost-user network backend
Members:
Since: 2.1
NetClientDriver (Enum)
Available netdev drivers.
Values:
Since: 2.7
'dump': dropped in 2.12
Netdev (Object)
Captures the configuration of a network device.
Members:
Since: 1.2
'l2tpv3' - since 2.1
NetLegacy (Object)
Captures the configuration of a network device; legacy.
Members:
Since: 1.2
'vlan': dropped in 3.0
NetLegacyOptionsType (Enum)
Values:
Since: 1.2
NetLegacyOptions (Object)
Like Netdev, but for use only by the legacy command line options
Members:
Since: 1.2
NetFilterDirection (Enum)
Indicates whether a netfilter is attached to a netdev's transmit queue or receive queue or both.
Values:
Since: 2.5
RxState (Enum)
Packets receiving state
Values:
Since: 1.6
RxFilterInfo (Object)
Rx-filter information for a NIC.
Members:
Since: 1.6
query-rx-filter (Command) Return rx-filter information for all NICs (or for the given NIC).
Arguments:
Returns: list of "RxFilterInfo" for all NICs (or for the given NIC). Returns an error if the given "name" doesn't exist, or given NIC doesn't support rx-filter querying, or given net client isn't a NIC.
Since: 1.6
Example:
-> { "execute": "query-rx-filter", "arguments": { "name": "vnet0" } }
<- { "return": [
{
"promiscuous": true,
"name": "vnet0",
"main-mac": "52:54:00:12:34:56",
"unicast": "normal",
"vlan": "normal",
"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
}
]
}
NIC_RX_FILTER_CHANGED (Event) Emitted once until the 'query-rx-filter' command is executed, the first event will always be emitted
Arguments:
Since: 1.6
Example:
<- { "event": "NIC_RX_FILTER_CHANGED",
"data": { "name": "vnet0",
"path": "/machine/peripheral/vnet0/virtio-backend" },
"timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
}
AnnounceParameters (Object)
Parameters for self-announce timers
Members:
Since: 4.0
announce-self (Command) Trigger generation of broadcast RARP frames to update network switches. This can be useful when network bonds fail-over the active slave.
Arguments: the members of "AnnounceParameters"
Example:
-> { "execute": "announce-self",
"arguments": {
"initial": 50, "max": 550, "rounds": 10, "step": 50,
"interfaces": ["vn2", "vn3"], "id": "bob" } }
<- { "return": {} }
Since: 4.0
FAILOVER_NEGOTIATED (Event) Emitted when VIRTIO_NET_F_STANDBY was enabled during feature negotiation. Failover primary devices which were hidden (not hotplugged when requested) before will now be hotplugged by the virtio-net standby device.
device-id: QEMU device id of the unplugged device
Arguments:
Since: 4.2
Example:
<- { "event": "FAILOVER_NEGOTIATED",
"data": "net1" }
RDMA_GID_STATUS_CHANGED (Event) Emitted when guest driver adds/deletes GID to/from device
Arguments:
"interface-id" : Interface ID
Since: 4.0
Example:
<- {"timestamp": {"seconds": 1541579657, "microseconds": 986760},
"event": "RDMA_GID_STATUS_CHANGED",
"data":
{"netdev": "bridge0",
"interface-id": 15880512517475447892,
"gid-status": true,
"subnet-prefix": 33022}}
RockerSwitch (Object)
Rocker switch information.
Members:
Since: 2.4
query-rocker (Command) Return rocker switch information.
Arguments:
Returns: "Rocker" information
Since: 2.4
Example:
-> { "execute": "query-rocker", "arguments": { "name": "sw1" } }
<- { "return": {"name": "sw1", "ports": 2, "id": 1327446905938}}
RockerPortDuplex (Enum)
An eumeration of port duplex states.
Values:
Since: 2.4
RockerPortAutoneg (Enum)
An eumeration of port autoneg states.
Values:
Since: 2.4
RockerPort (Object)
Rocker switch port information.
Members:
Since: 2.4
query-rocker-ports (Command) Return rocker switch port information.
Arguments:
Returns: a list of "RockerPort" information
Since: 2.4
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}
]}
RockerOfDpaFlowKey (Object)
Rocker switch OF-DPA flow key
Members:
Note: optional members may or may not appear in the flow key depending if they're relevant to the flow key.
Since: 2.4
RockerOfDpaFlowMask (Object)
Rocker switch OF-DPA flow mask
Members:
Note: optional members may or may not appear in the flow mask depending if they're relevant to the flow mask.
Since: 2.4
RockerOfDpaFlowAction (Object)
Rocker switch OF-DPA flow action
Members:
Note: optional members may or may not appear in the flow action depending if they're relevant to the flow action.
Since: 2.4
RockerOfDpaFlow (Object)
Rocker switch OF-DPA flow
Members:
Since: 2.4
query-rocker-of-dpa-flows (Command) Return rocker OF-DPA flow information.
Arguments:
Returns: rocker OF-DPA flow information
Since: 2.4
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...},
]}
RockerOfDpaGroup (Object)
Rocker switch OF-DPA group
Members:
Note: optional members may or may not appear in the group depending if they're relevant to the group type.
Since: 2.4
query-rocker-of-dpa-groups (Command) Return rocker OF-DPA group information.
Arguments:
Returns: rocker OF-DPA group information
Since: 2.4
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}
]}
TpmModel (Enum)
An enumeration of TPM models
Values:
Since: 1.5
query-tpm-models (Command) Return a list of supported TPM models
Returns: a list of TpmModel
Since: 1.5
Example:
-> { "execute": "query-tpm-models" }
<- { "return": [ "tpm-tis", "tpm-crb" ] }
TpmType (Enum)
An enumeration of TPM types
Values:
Since: 1.5
query-tpm-types (Command) Return a list of supported TPM types
Returns: a list of TpmType
Since: 1.5
Example:
-> { "execute": "query-tpm-types" }
<- { "return": [ "passthrough", "emulator" ] }
TPMPassthroughOptions (Object)
Information about the TPM passthrough type
Members:
Since: 1.5
TPMEmulatorOptions (Object)
Information about the TPM emulator type
Members:
Since: 2.11
TpmTypeOptions (Object)
A union referencing different TPM backend types' configuration options
Members:
Since: 1.5
TPMInfo (Object)
Information about the TPM
Members:
Since: 1.5
query-tpm (Command) Return information about the TPM device
Returns: "TPMInfo" on success
Since: 1.5
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"
}
]
}
set_password (Command) Sets the password of a remote display session.
Arguments:
Returns: Nothing on success If Spice is not enabled, DeviceNotFound
Since: 0.14.0
Example:
-> { "execute": "set_password", "arguments": { "protocol": "vnc",
"password": "secret" } }
<- { "return": {} }
expire_password (Command) Expire the password of a remote display server.
Arguments:
Returns: Nothing on success If "protocol" is `spice' and Spice is not active, DeviceNotFound
Since: 0.14.0
Notes: Time is relative to the server and currently there is no way to coordinate server time with client time. It is not recommended to use the absolute time version of the "time" parameter unless you're sure you are on the same machine as the QEMU instance.
Example:
-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
"time": "+60" } }
<- { "return": {} }
screendump (Command) Write a PPM of the VGA screen to a file.
Arguments:
Returns: Nothing on success
Since: 0.14.0
Example:
-> { "execute": "screendump",
"arguments": { "filename": "/tmp/image" } }
<- { "return": {} }
Spice
SpiceBasicInfo (Object)
The basic information for SPICE network connection
Members:
Since: 2.1
If: "defined(CONFIG_SPICE)"
SpiceServerInfo (Object)
Information about a SPICE server
Members:
Since: 2.1
If: "defined(CONFIG_SPICE)"
SpiceChannel (Object)
Information about a SPICE client channel.
Members:
Since: 0.14.0
If: "defined(CONFIG_SPICE)"
SpiceQueryMouseMode (Enum)
An enumeration of Spice mouse states.
Values:
Note: spice/enums.h has a SpiceMouseMode already, hence the name.
Since: 1.1
If: "defined(CONFIG_SPICE)"
SpiceInfo (Object)
Information about the SPICE session.
Members:
Since: 0.14.0
If: "defined(CONFIG_SPICE)"
query-spice (Command) Returns information about the current SPICE server
Returns: "SpiceInfo"
Since: 0.14.0
Example:
-> { "execute": "query-spice" }
<- { "return": {
"enabled": true,
"auth": "spice",
"port": 5920,
"tls-port": 5921,
"host": "0.0.0.0",
"channels": [
{
"port": "54924",
"family": "ipv4",
"channel-type": 1,
"connection-id": 1804289383,
"host": "127.0.0.1",
"channel-id": 0,
"tls": true
},
{
"port": "36710",
"family": "ipv4",
"channel-type": 4,
"connection-id": 1804289383,
"host": "127.0.0.1",
"channel-id": 0,
"tls": false
},
[ ... more channels follow ... ]
]
}
}
If: "defined(CONFIG_SPICE)"
SPICE_CONNECTED (Event) Emitted when a SPICE client establishes a connection
Arguments:
Since: 0.14.0
Example:
<- { "timestamp": {"seconds": 1290688046, "microseconds": 388707},
"event": "SPICE_CONNECTED",
"data": {
"server": { "port": "5920", "family": "ipv4", "host": "127.0.0.1"},
"client": {"port": "52873", "family": "ipv4", "host": "127.0.0.1"}
}}
If: "defined(CONFIG_SPICE)"
SPICE_INITIALIZED (Event) Emitted after initial handshake and authentication takes place (if any) and the SPICE channel is up and running
Arguments:
Since: 0.14.0
Example:
<- { "timestamp": {"seconds": 1290688046, "microseconds": 417172},
"event": "SPICE_INITIALIZED",
"data": {"server": {"auth": "spice", "port": "5921",
"family": "ipv4", "host": "127.0.0.1"},
"client": {"port": "49004", "family": "ipv4", "channel-type": 3,
"connection-id": 1804289383, "host": "127.0.0.1",
"channel-id": 0, "tls": true}
}}
If: "defined(CONFIG_SPICE)"
SPICE_DISCONNECTED (Event) Emitted when the SPICE connection is closed
Arguments:
Since: 0.14.0
Example:
<- { "timestamp": {"seconds": 1290688046, "microseconds": 388707},
"event": "SPICE_DISCONNECTED",
"data": {
"server": { "port": "5920", "family": "ipv4", "host": "127.0.0.1"},
"client": {"port": "52873", "family": "ipv4", "host": "127.0.0.1"}
}}
If: "defined(CONFIG_SPICE)"
SPICE_MIGRATE_COMPLETED (Event) Emitted when SPICE migration has completed
Since: 1.3
Example:
<- { "timestamp": {"seconds": 1290688046, "microseconds": 417172},
"event": "SPICE_MIGRATE_COMPLETED" }
If: "defined(CONFIG_SPICE)"
VNC
VncBasicInfo (Object)
The basic information for vnc network connection
Members:
Since: 2.1
If: "defined(CONFIG_VNC)"
VncServerInfo (Object)
The network connection information for server
Members:
Since: 2.1
If: "defined(CONFIG_VNC)"
VncClientInfo (Object)
Information about a connected VNC client.
Members:
Since: 0.14.0
If: "defined(CONFIG_VNC)"
VncInfo (Object)
Information about the VNC session.
Members:
Since: 0.14.0
If: "defined(CONFIG_VNC)"
VncPrimaryAuth (Enum)
vnc primary authentication method.
Values:
Since: 2.3
If: "defined(CONFIG_VNC)"
VncVencryptSubAuth (Enum)
vnc sub authentication method with vencrypt.
Values:
Since: 2.3
If: "defined(CONFIG_VNC)"
VncServerInfo2 (Object)
The network connection information for server
Members:
Since: 2.9
If: "defined(CONFIG_VNC)"
VncInfo2 (Object)
Information about a vnc server
Members:
Since: 2.3
If: "defined(CONFIG_VNC)"
query-vnc (Command) Returns information about the current VNC server
Returns: "VncInfo"
Since: 0.14.0
Example:
-> { "execute": "query-vnc" }
<- { "return": {
"enabled":true,
"host":"0.0.0.0",
"service":"50402",
"auth":"vnc",
"family":"ipv4",
"clients":[
{
"host":"127.0.0.1",
"service":"50401",
"family":"ipv4"
}
]
}
}
If: "defined(CONFIG_VNC)"
query-vnc-servers (Command) Returns a list of vnc servers. The list can be empty.
Returns: a list of "VncInfo2"
Since: 2.3
If: "defined(CONFIG_VNC)"
change-vnc-password (Command) Change the VNC server password.
Arguments:
Since: 1.1
Notes: An empty password in this command will set the password to the empty string. Existing clients are unaffected by executing this command.
If: "defined(CONFIG_VNC)"
VNC_CONNECTED (Event) Emitted when a VNC client establishes a connection
Arguments:
Note: This event is emitted before any authentication takes place, thus the authentication ID is not provided
Since: 0.13.0
Example:
<- { "event": "VNC_CONNECTED",
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0" },
"client": { "family": "ipv4", "service": "58425",
"host": "127.0.0.1" } },
"timestamp": { "seconds": 1262976601, "microseconds": 975795 } }
If: "defined(CONFIG_VNC)"
VNC_INITIALIZED (Event) Emitted after authentication takes place (if any) and the VNC session is made active
Arguments:
Since: 0.13.0
Example:
<- { "event": "VNC_INITIALIZED",
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0"},
"client": { "family": "ipv4", "service": "46089",
"host": "127.0.0.1", "sasl_username": "luiz" } },
"timestamp": { "seconds": 1263475302, "microseconds": 150772 } }
If: "defined(CONFIG_VNC)"
VNC_DISCONNECTED (Event) Emitted when the connection is closed
Arguments:
Since: 0.13.0
Example:
<- { "event": "VNC_DISCONNECTED",
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0" },
"client": { "family": "ipv4", "service": "58425",
"host": "127.0.0.1", "sasl_username": "luiz" } },
"timestamp": { "seconds": 1262976601, "microseconds": 975795 } }
If: "defined(CONFIG_VNC)"
MouseInfo (Object)
Information about a mouse device.
Members:
Since: 0.14.0
query-mice (Command) Returns information about each active mouse device
Returns: a list of "MouseInfo" for each device
Since: 0.14.0
Example:
-> { "execute": "query-mice" }
<- { "return": [
{
"name":"QEMU Microsoft Mouse",
"index":0,
"current":false,
"absolute":false
},
{
"name":"QEMU PS/2 Mouse",
"index":1,
"current":true,
"absolute":true
}
]
}
QKeyCode (Enum)
An enumeration of key name.
This is used by the "send-key" command.
Values:
'sysrq' was mistakenly added to hack around the fact that the ps2 driver was not generating correct scancodes sequences when 'alt+print' was pressed. This flaw is now fixed and the 'sysrq' key serves no further purpose. Any further use of 'sysrq' will be transparently changed to 'print', so they are effectively synonyms.
Since: 1.3.0
KeyValue (Object)
Represents a keyboard key.
Members:
Since: 1.3.0
send-key (Command) Send keys to guest.
Arguments:
Returns: Nothing on success If key is unknown or redundant, InvalidParameter
Since: 1.3.0
Example:
-> { "execute": "send-key",
"arguments": { "keys": [ { "type": "qcode", "data": "ctrl" },
{ "type": "qcode", "data": "alt" },
{ "type": "qcode", "data": "delete" } ] } }
<- { "return": {} }
InputButton (Enum)
Button of a pointer input device (mouse, tablet).
Values:
Since: 2.0
InputAxis (Enum)
Position axis of a pointer input device (mouse, tablet).
Values:
Since: 2.0
InputKeyEvent (Object)
Keyboard input event.
Members:
Since: 2.0
InputBtnEvent (Object)
Pointer button input event.
Members:
Since: 2.0
InputMoveEvent (Object)
Pointer motion input event.
Members:
Since: 2.0
InputEvent (Object)
Input event union.
Members:
Since: 2.0
input-send-event (Command) Send input event(s) to guest.
Arguments:
Returns: Nothing on success.
The "device" and "head" parameters can be used to send the input event to specific input devices in case (a) multiple input devices of the same kind are added to the virtual machine and (b) you have configured input routing (see docs/multiseat.txt) for those input devices. The parameters work exactly like the device and head properties of input devices. If "device" is missing, only devices that have no input routing config are admissible. If "device" is specified, both input devices with and without input routing config are admissible, but devices with input routing config take precedence.
Since: 2.6
Note: 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.
-> { "execute": "input-send-event",
"arguments": { "device": "video0",
"events": [ { "type": "btn",
"data" : { "down": true, "button": "left" } } ] } }
<- { "return": {} }
-> { "execute": "input-send-event",
"arguments": { "device": "video0",
"events": [ { "type": "btn",
"data" : { "down": false, "button": "left" } } ] } }
<- { "return": {} }
2. Press ctrl-alt-del.
-> { "execute": "input-send-event",
"arguments": { "events": [
{ "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": {} }
3. Move mouse pointer to absolute coordinates (20000, 400).
-> { "execute": "input-send-event" ,
"arguments": { "events": [
{ "type": "abs", "data" : { "axis": "x", "value" : 20000 } },
{ "type": "abs", "data" : { "axis": "y", "value" : 400 } } ] } }
<- { "return": {} }
GrabToggleKeys (Enum)
Keys to toggle input-linux between host and guest.
Values:
Since: 4.0
DisplayGTK (Object)
GTK display options.
Members:
Since: 2.12
DisplayEGLHeadless (Object)
EGL headless display options.
Members:
Since: 3.1
DisplayGLMode (Enum)
Display OpenGL mode.
Values:
Since: 3.0
DisplayCurses (Object)
Curses display options.
Members:
Since: 4.0
DisplayType (Enum)
Display (user interface) type.
Values:
Since: 2.12
DisplayOptions (Object)
Display (user interface) options.
Members:
Since: 2.12
query-display-options (Command) Returns information about display configuration
Returns: "DisplayOptions"
Since: 3.1
QAuthZListPolicy (Enum)
The authorization policy result
Values:
Since: 4.0
QAuthZListFormat (Enum)
The authorization policy match format
Values:
Since: 4.0
QAuthZListRule (Object)
A single authorization rule.
Members:
Since: 4.0
QAuthZListRuleListHack (Object)
Not exposed via QMP; hack to generate QAuthZListRuleList for use internally by the code.
Members:
Since: 4.0
MigrationStats (Object)
Detailed migration status.
Members:
Since: 0.14.0
XBZRLECacheStats (Object)
Detailed XBZRLE migration cache statistics
Members:
Since: 1.2
CompressionStats (Object)
Detailed migration compression statistics
Members:
Since: 3.1
MigrationStatus (Enum)
An enumeration of migration status.
Values:
Since: 2.3
MigrationInfo (Object)
Information about current migration process.
Members:
Since: 0.14.0
query-migrate (Command) Returns information about current migration process. If migration is active there will be another json-object with RAM migration status and if block migration is active another one with block migration status.
Returns: "MigrationInfo"
Since: 0.14.0
Example:
1. Before the first migration
-> { "execute": "query-migrate" }
<- { "return": {} }
2. Migration is done and has succeeded
-> { "execute": "query-migrate" }
<- { "return": {
"status": "completed",
"total-time":12345,
"setup-time":12345,
"downtime":12345,
"ram":{
"transferred":123,
"remaining":123,
"total":246,
"duplicate":123,
"normal":123,
"normal-bytes":123456,
"dirty-sync-count":15
}
}
}
3. Migration is done and has failed
-> { "execute": "query-migrate" }
<- { "return": { "status": "failed" } }
4. Migration is being performed and is not a block migration:
-> { "execute": "query-migrate" }
<- {
"return":{
"status":"active",
"total-time":12345,
"setup-time":12345,
"expected-downtime":12345,
"ram":{
"transferred":123,
"remaining":123,
"total":246,
"duplicate":123,
"normal":123,
"normal-bytes":123456,
"dirty-sync-count":15
}
}
}
5. Migration is being performed and is a block migration:
-> { "execute": "query-migrate" }
<- {
"return":{
"status":"active",
"total-time":12345,
"setup-time":12345,
"expected-downtime":12345,
"ram":{
"total":1057024,
"remaining":1053304,
"transferred":3720,
"duplicate":123,
"normal":123,
"normal-bytes":123456,
"dirty-sync-count":15
},
"disk":{
"total":20971520,
"remaining":20880384,
"transferred":91136
}
}
}
6. Migration is being performed and XBZRLE is active:
-> { "execute": "query-migrate" }
<- {
"return":{
"status":"active",
"total-time":12345,
"setup-time":12345,
"expected-downtime":12345,
"ram":{
"total":1057024,
"remaining":1053304,
"transferred":3720,
"duplicate":10,
"normal":3333,
"normal-bytes":3412992,
"dirty-sync-count":15
},
"xbzrle-cache":{
"cache-size":67108864,
"bytes":20971520,
"pages":2444343,
"cache-miss":2244,
"cache-miss-rate":0.123,
"overflow":34434
}
}
}
MigrationCapability (Enum)
Migration capabilities enumeration
Values:
Since: 1.2
MigrationCapabilityStatus (Object)
Migration capability information
Members:
Since: 1.2
migrate-set-capabilities (Command) Enable/Disable the following migration capabilities (like xbzrle)
Arguments:
Since: 1.2
Example:
-> { "execute": "migrate-set-capabilities" , "arguments":
{ "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
query-migrate-capabilities (Command) Returns information about the current migration capabilities status
Returns: "MigrationCapabilitiesStatus"
Since: 1.2
Example:
-> { "execute": "query-migrate-capabilities" }
<- { "return": [
{"state": false, "capability": "xbzrle"},
{"state": false, "capability": "rdma-pin-all"},
{"state": false, "capability": "auto-converge"},
{"state": false, "capability": "zero-blocks"},
{"state": false, "capability": "compress"},
{"state": true, "capability": "events"},
{"state": false, "capability": "postcopy-ram"},
{"state": false, "capability": "x-colo"}
]}
MigrationParameter (Enum)
Migration parameters enumeration
Values:
Since: 2.4
MigrateSetParameters (Object)
Members:
Since: 2.4
migrate-set-parameters (Command) Set various migration parameters.
Arguments: the members of "MigrateSetParameters"
Since: 2.4
Example:
-> { "execute": "migrate-set-parameters" ,
"arguments": { "compress-level": 1 } }
MigrationParameters (Object)
The optional members aren't actually optional.
Members:
Since: 2.4
query-migrate-parameters (Command) Returns information about the current migration parameters
Returns: "MigrationParameters"
Since: 2.4
Example:
-> { "execute": "query-migrate-parameters" }
<- { "return": {
"decompress-threads": 2,
"cpu-throttle-increment": 10,
"compress-threads": 8,
"compress-level": 1,
"cpu-throttle-initial": 20,
"max-bandwidth": 33554432,
"downtime-limit": 300
}
}
client_migrate_info (Command) Set migration information for remote display. This makes the server ask the client to automatically reconnect using the new parameters once migration finished successfully. Only implemented for SPICE.
Arguments:
Since: 0.14.0
Example:
-> { "execute": "client_migrate_info",
"arguments": { "protocol": "spice",
"hostname": "virt42.lab.kraxel.org",
"port": 1234 } }
<- { "return": {} }
migrate-start-postcopy (Command) Followup to a migration command to switch the migration to postcopy mode. The postcopy-ram capability must be set on both source and destination before the original migration command.
Since: 2.5
Example:
-> { "execute": "migrate-start-postcopy" }
<- { "return": {} }
MIGRATION (Event) Emitted when a migration event happens
Arguments:
Since: 2.4
Example:
<- {"timestamp": {"seconds": 1432121972, "microseconds": 744001},
"event": "MIGRATION",
"data": {"status": "completed"} }
MIGRATION_PASS (Event) Emitted from the source side of a migration at the start of each pass (when it syncs the dirty bitmap)
Arguments:
Since: 2.6
Example:
{ "timestamp": {"seconds": 1449669631, "microseconds": 239225},
"event": "MIGRATION_PASS", "data": {"pass": 2} }
COLOMessage (Enum)
The message transmission between Primary side and Secondary side.
Values:
Since: 2.8
COLOMode (Enum)
The COLO current mode.
Values:
Since: 2.8
FailoverStatus (Enum)
An enumeration of COLO failover status
Values:
Since: 2.8
COLO_EXIT (Event) Emitted when VM finishes COLO mode due to some errors happening or at the request of users.
Arguments:
Since: 3.1
Example:
<- { "timestamp": {"seconds": 2032141960, "microseconds": 417172},
"event": "COLO_EXIT", "data": {"mode": "primary", "reason": "request" } }
COLOExitReason (Enum)
The reason for a COLO exit.
Values:
Since: 3.1
x-colo-lost-heartbeat (Command) Tell qemu that heartbeat is lost, request it to do takeover procedures. If this command is sent to the PVM, the Primary side will exit COLO mode. If sent to the Secondary, the Secondary side will run failover work, then takes over server operation to become the service VM.
Since: 2.8
Example:
-> { "execute": "x-colo-lost-heartbeat" }
<- { "return": {} }
migrate_cancel (Command) Cancel the current executing migration process.
Returns: nothing on success
Notes: This command succeeds even if there is no migration process running.
Since: 0.14.0
Example:
-> { "execute": "migrate_cancel" }
<- { "return": {} }
migrate-continue (Command) Continue migration when it's in a paused state.
Arguments:
Returns: nothing on success
Since: 2.11
Example:
-> { "execute": "migrate-continue" , "arguments":
{ "state": "pre-switchover" } }
<- { "return": {} }
migrate_set_downtime (Command) Set maximum tolerated downtime for migration.
Arguments:
Returns: nothing on success
Notes: This command is deprecated in favor of 'migrate-set-parameters'
Since: 0.14.0
Example:
-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
<- { "return": {} }
migrate_set_speed (Command) Set maximum speed for migration.
Arguments:
Returns: nothing on success
Notes: This command is deprecated in favor of 'migrate-set-parameters'
Since: 0.14.0
Example:
-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
<- { "return": {} }
migrate-set-cache-size (Command) Set cache size to be used by XBZRLE migration
Arguments:
The size will be rounded down to the nearest power of 2. The cache size can be modified before and during ongoing migration
Returns: nothing on success
Notes: This command is deprecated in favor of 'migrate-set-parameters'
Since: 1.2
Example:
-> { "execute": "migrate-set-cache-size",
"arguments": { "value": 536870912 } }
<- { "return": {} }
query-migrate-cache-size (Command) Query migration XBZRLE cache size
Returns: XBZRLE cache size in bytes
Notes: This command is deprecated in favor of 'query-migrate-parameters'
Since: 1.2
Example:
-> { "execute": "query-migrate-cache-size" }
<- { "return": 67108864 }
migrate (Command) Migrates the current running guest to another Virtual Machine.
Arguments:
Returns: nothing on success
Since: 0.14.0
Notes:
Example:
-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
<- { "return": {} }
migrate-incoming (Command) Start an incoming migration, the qemu must have been started with -incoming defer
Arguments:
Returns: nothing on success
Since: 2.3
Notes:
Example:
-> { "execute": "migrate-incoming",
"arguments": { "uri": "tcp::4446" } }
<- { "return": {} }
xen-save-devices-state (Command) Save the state of all devices to file. The RAM and the block devices of the VM are not saved by this command.
Arguments:
Returns: Nothing on success
Since: 1.1
Example:
-> { "execute": "xen-save-devices-state",
"arguments": { "filename": "/tmp/save" } }
<- { "return": {} }
xen-set-replication (Command) Enable or disable replication.
Arguments:
Returns: nothing.
Example:
-> { "execute": "xen-set-replication",
"arguments": {"enable": true, "primary": false} }
<- { "return": {} }
Since: 2.9
If: "defined(CONFIG_REPLICATION)"
ReplicationStatus (Object)
The result format for 'query-xen-replication-status'.
Members:
Since: 2.9
If: "defined(CONFIG_REPLICATION)"
query-xen-replication-status (Command) Query replication status while the vm is running.
Returns: A "ReplicationResult" object showing the status.
Example:
-> { "execute": "query-xen-replication-status" }
<- { "return": { "error": false } }
Since: 2.9
If: "defined(CONFIG_REPLICATION)"
xen-colo-do-checkpoint (Command) Xen uses this command to notify replication to trigger a checkpoint.
Returns: nothing.
Example:
-> { "execute": "xen-colo-do-checkpoint" }
<- { "return": {} }
Since: 2.9
If: "defined(CONFIG_REPLICATION)"
COLOStatus (Object)
The result format for 'query-colo-status'.
Members:
Since: 3.1
query-colo-status (Command) Query COLO status while the vm is running.
Returns: A "COLOStatus" object showing the status.
Example:
-> { "execute": "query-colo-status" }
<- { "return": { "mode": "primary", "reason": "request" } }
Since: 3.1
migrate-recover (Command) Provide a recovery migration stream URI.
Arguments:
Returns: nothing.
Example:
-> { "execute": "migrate-recover",
"arguments": { "uri": "tcp:192.168.1.200:12345" } }
<- { "return": {} }
Since: 3.0
migrate-pause (Command) Pause a migration. Currently it only supports postcopy.
Returns: nothing.
Example:
-> { "execute": "migrate-pause" }
<- { "return": {} }
Since: 3.0
UNPLUG_PRIMARY (Event) Emitted from source side of a migration when migration state is WAIT_UNPLUG. Device was unplugged by guest operating system. Device resources in QEMU are kept on standby to be able to re-plug it in case of migration failure.
Arguments:
Since: 4.2
Example:
{"event": "UNPLUG_PRIMARY", "data": {"device-id": "hostdev0"} }
Abort (Object)
This action can be used to test transaction failure.
Since: 1.6
ActionCompletionMode (Enum)
An enumeration of Transactional completion modes.
Values:
Since: 2.5
TransactionAction (Object)
A discriminated record of operations that can be performed with "transaction". Action "type" can be:
Members:
Since: 1.1
TransactionProperties (Object)
Optional arguments to modify the behavior of a Transaction.
Members:
Since: 2.5
transaction (Command) Executes a number of transactionable QMP commands atomically. If any operation fails, then the entire set of actions will be abandoned and the appropriate error returned.
For external snapshots, the dictionary contains the device, the file to use for the new snapshot, and the format. The default format, if not specified, is qcow2.
Each new snapshot defaults to being created by QEMU (wiping any contents if the file already exists), but it is also possible to reuse an externally-created file. In the latter case, you should ensure that the new image file has the same contents as the current one; QEMU cannot perform any meaningful check. Typically this is achieved by using the current image file as the backing file for the new image.
On failure, the original disks pre-snapshot attempt will be used.
For internal snapshots, the dictionary contains the device and the snapshot's name. If an internal snapshot matching name already exists, the request will be rejected. Only some image formats support it, for example, qcow2, rbd, and sheepdog.
On failure, qemu will try delete the newly created internal snapshot in the transaction. When an I/O error occurs during deletion, the user needs to fix it later with qemu-img or other command.
Arguments:
Returns: nothing on success
Errors depend on the operations of the transaction
Note: The transaction aborts on the first failure. Therefore, there will be information on only one failed operation returned in an error condition, and subsequent actions will not have been attempted.
Since: 1.1
Example:
-> { "execute": "transaction",
"arguments": { "actions": [
{ "type": "blockdev-snapshot-sync", "data" : { "device": "ide-hd0",
"snapshot-file": "/some/place/my-image",
"format": "qcow2" } },
{ "type": "blockdev-snapshot-sync", "data" : { "node-name": "myfile",
"snapshot-file": "/some/place/my-image2",
"snapshot-node-name": "node3432",
"mode": "existing",
"format": "qcow2" } },
{ "type": "blockdev-snapshot-sync", "data" : { "device": "ide-hd1",
"snapshot-file": "/some/place/my-image2",
"mode": "existing",
"format": "qcow2" } },
{ "type": "blockdev-snapshot-internal-sync", "data" : {
"device": "ide-hd2",
"name": "snapshot0" } } ] } }
<- { "return": {} }
TraceEventState (Enum)
State of a tracing event.
Values:
Since: 2.2
TraceEventInfo (Object)
Information of a tracing event.
Members:
An event is per-vCPU if it has the "vcpu" property in the "trace-events" files.
Since: 2.2
trace-event-get-state (Command) Query the state of events.
Arguments:
Returns: a list of "TraceEventInfo" for the matching events
An event is returned if:
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.
Since: 2.2
Example:
-> { "execute": "trace-event-get-state",
"arguments": { "name": "qemu_memalign" } }
<- { "return": [ { "name": "qemu_memalign", "state": "disabled" } ] }
trace-event-set-state (Command) Set the dynamic tracing state of events.
Arguments:
An event's state is modified if:
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.
Since: 2.2
Example:
-> { "execute": "trace-event-set-state",
"arguments": { "name": "qemu_memalign", "enable": "true" } }
<- { "return": {} }
query-qmp-schema (Command) Command query-qmp-schema exposes the QMP wire ABI as an array of SchemaInfo. This lets QMP clients figure out what commands and events are available in this QEMU, and their parameters and results.
However, the SchemaInfo can't reflect all the rules and restrictions that apply to QMP. It's interface introspection (figuring out what's there), not interface specification. The specification is in the QAPI schema.
Furthermore, while we strive to keep the QMP wire format backwards-compatible across qemu versions, the introspection output is not guaranteed to have the same stability. For example, one version of qemu may list an object member as an optional non-variant, while another lists the same member only through the object's variants; or the type of a member may change from a generic string into a specific enum or from one specific type into an alternate that includes the original type alongside something else.
Returns: array of "SchemaInfo", where each element describes an entity in the ABI: command, event, type, ...
The order of the various SchemaInfo is unspecified; however, all names are guaranteed to be unique (no name will be duplicated with different meta-types).
Note: the QAPI schema is also used to help define internal interfaces, by defining QAPI types. These are not part of the QMP wire ABI, and therefore not returned by this command.
Since: 2.5
SchemaMetaType (Enum)
This is a "SchemaInfo"'s meta type, i.e. the kind of entity it describes.
Values:
Since: 2.5
SchemaInfo (Object)
Members:
Additional members depend on the value of "meta-type".
Since: 2.5
SchemaInfoBuiltin (Object)
Additional SchemaInfo members for meta-type 'builtin'.
Members:
Since: 2.5
JSONType (Enum)
The four primitive and two structured types according to RFC 8259 section 1, plus 'int' (split off 'number'), plus the obvious top type 'value'.
Values:
Since: 2.5
SchemaInfoEnum (Object)
Additional SchemaInfo members for meta-type 'enum'.
Members:
Values of this type are JSON string on the wire.
Since: 2.5
SchemaInfoArray (Object)
Additional SchemaInfo members for meta-type 'array'.
Members:
Values of this type are JSON array on the wire.
Since: 2.5
SchemaInfoObject (Object)
Additional SchemaInfo members for meta-type 'object'.
Members:
Values of this type are JSON object on the wire.
Since: 2.5
SchemaInfoObjectMember (Object)
An object member.
Members:
Since: 2.5
SchemaInfoObjectVariant (Object)
The variant members for a value of the type tag.
Members:
Since: 2.5
SchemaInfoAlternate (Object)
Additional SchemaInfo members for meta-type 'alternate'.
Members:
On the wire, this can be any of the members.
Since: 2.5
SchemaInfoAlternateMember (Object)
An alternate member.
Members:
Since: 2.5
SchemaInfoCommand (Object)
Additional SchemaInfo members for meta-type 'command'.
Members:
TODO: "success-response" (currently irrelevant, because it's QGA, not QMP)
Since: 2.5
SchemaInfoEvent (Object)
Additional SchemaInfo members for meta-type 'event'.
Members:
Since: 2.5
ObjectPropertyInfo (Object)
Members:
1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'. These types are mapped to the appropriate JSON type.
2) A child type in the form 'child<subtype>' where subtype is a qdev device type name. Child properties create the composition tree.
3) A link type in the form 'link<subtype>' where subtype is a qdev device type name. Link properties form the device model graph.
Since: 1.2
qom-list (Command) This command will list any properties of a object given a path in the object model.
Arguments:
Returns: a list of "ObjectPropertyInfo" that describe the properties of the object.
Since: 1.2
Example:
-> { "execute": "qom-list",
"arguments": { "path": "/chardevs" } }
<- { "return": [ { "name": "type", "type": "string" },
{ "name": "parallel0", "type": "child<chardev-vc>" },
{ "name": "serial0", "type": "child<chardev-vc>" },
{ "name": "mon0", "type": "child<chardev-stdio>" } ] }
qom-get (Command) This command will get a property from a object model path and return the value.
Arguments:
Absolute paths are derived from the root object and can follow child<> or link<> properties. Since they can follow link<> properties, they can be arbitrarily long. Absolute paths look like absolute filenames and are prefixed with a leading slash.
Partial paths look like relative filenames. They do not begin with a prefix. The matching rules for partial paths are subtle but designed to make specifying objects easy. At each level of the composition tree, the partial path is matched as an absolute path. The first match is not returned. At least two matches are searched for. A successful result is only returned if only one match is found. If more than one match is found, a flag is return to indicate that the match was ambiguous.
Returns: The property value. The type depends on the property type. child<> and link<> properties are returned as #str pathnames. All integer property types (u8, u16, etc) are returned as #int.
Since: 1.2
Example:
1. Use absolute path
-> { "execute": "qom-get",
"arguments": { "path": "/machine/unattached/device[0]",
"property": "hotplugged" } }
<- { "return": false }
2. Use partial path
-> { "execute": "qom-get",
"arguments": { "path": "unattached/sysbus",
"property": "type" } }
<- { "return": "System" }
qom-set (Command) This command will set a property from a object model path.
Arguments:
Since: 1.2
Example:
-> { "execute": "qom-set",
"arguments": { "path": "/machine",
"property": "graphics",
"value": false } }
<- { "return": {} }
ObjectTypeInfo (Object)
This structure describes a search result from "qom-list-types"
Members:
Since: 1.1
qom-list-types (Command) This command will return a list of types given search parameters
Arguments:
Returns: a list of "ObjectTypeInfo" or an empty list if no results are found
Since: 1.1
qom-list-properties (Command) List properties associated with a QOM object.
Arguments:
Note: objects can create properties at runtime, for example to describe links between different devices and/or objects. These properties are not included in the output of this command.
Returns: a list of ObjectPropertyInfo describing object properties
Since: 2.12
object-add (Command) Create a QOM object.
Arguments:
Returns: Nothing on success Error if "qom-type" is not a valid class name
Since: 2.0
Example:
-> { "execute": "object-add",
"arguments": { "qom-type": "rng-random", "id": "rng1",
"props": { "filename": "/dev/hwrng" } } }
<- { "return": {} }
object-del (Command) Remove a QOM object.
Arguments:
Returns: Nothing on success Error if "id" is not a valid id for a QOM object
Since: 2.0
Example:
-> { "execute": "object-del", "arguments": { "id": "rng1" } }
<- { "return": {} }
device-list-properties (Command) List properties associated with a device.
Arguments:
Returns: a list of ObjectPropertyInfo describing a devices properties
Note: objects can create properties at runtime, for example to describe links between different devices and/or objects. These properties are not included in the output of this command.
Since: 1.2
device_add (Command)
Arguments:
Additional arguments depend on the type.
Add a device.
Notes:
Example:
-> { "execute": "device_add",
"arguments": { "driver": "e1000", "id": "net1",
"bus": "pci.0",
"mac": "52:54:00:12:34:56" } }
<- { "return": {} }
TODO: This command effectively bypasses QAPI completely due to its "additional arguments" business. It shouldn't have been added to the schema in this form. It should be qapified properly, or replaced by a properly qapified command.
Since: 0.13
device_del (Command) Remove a device from a guest
Arguments:
Returns: Nothing on success If "id" is not a valid device, DeviceNotFound
Notes: When this command completes, the device may not be removed from the guest. Hot removal is an operation that requires guest cooperation. This command merely requests that the guest begin the hot removal process. Completion of the device removal process is signaled with a DEVICE_DELETED event. Guest reset will automatically complete removal for all devices.
Since: 0.14.0
Example:
-> { "execute": "device_del",
"arguments": { "id": "net1" } }
<- { "return": {} }
-> { "execute": "device_del",
"arguments": { "id": "/machine/peripheral-anon/device[0]" } }
<- { "return": {} }
DEVICE_DELETED (Event) Emitted whenever the device removal completion is acknowledged by the guest. At this point, it's safe to reuse the specified device ID. Device removal can be initiated by the guest or by HMP/QMP commands.
Arguments:
Since: 1.5
Example:
<- { "event": "DEVICE_DELETED",
"data": { "device": "virtio-net-pci-0",
"path": "/machine/peripheral/virtio-net-pci-0" },
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
SysEmuTarget (Enum)
The comprehensive enumeration of QEMU system emulation ("softmmu") targets. Run "./configure --help" in the project root directory, and look for the *-softmmu targets near the "--target-list" option. The individual target constants are not documented here, for the time being.
Values:
Notes: The resulting QMP strings can be appended to the "qemu-system-" prefix to produce the corresponding QEMU executable name. This is true even for "qemu-system-x86_64".
ppcemb: dropped in 3.1
Since: 3.0
CpuInfoArch (Enum)
An enumeration of cpu types that enable additional information during "query-cpus" and "query-cpus-fast".
Values:
Since: 2.6
CpuInfo (Object)
Information about a virtual CPU
Members:
Since: 0.14.0
Notes: "halted" is a transient state that changes frequently. By the time the data is sent to the client, the guest may no longer be halted.
CpuInfoX86 (Object)
Additional information about a virtual i386 or x86_64 CPU
Members:
Since: 2.6
CpuInfoSPARC (Object)
Additional information about a virtual SPARC CPU
Members:
Since: 2.6
CpuInfoPPC (Object)
Additional information about a virtual PPC CPU
Members:
Since: 2.6
CpuInfoMIPS (Object)
Additional information about a virtual MIPS CPU
Members:
Since: 2.6
CpuInfoTricore (Object)
Additional information about a virtual Tricore CPU
Members:
Since: 2.6
CpuInfoRISCV (Object)
Additional information about a virtual RISCV CPU
Members:
Since 2.12
CpuS390State (Enum)
An enumeration of cpu states that can be assumed by a virtual S390 CPU
Values:
Since: 2.12
CpuInfoS390 (Object)
Additional information about a virtual S390 CPU
Members:
Since: 2.12
query-cpus (Command) Returns a list of information about each virtual CPU.
This command causes vCPU threads to exit to userspace, which causes a small interruption to guest CPU execution. This will have a negative impact on realtime guests and other latency sensitive guest workloads. It is recommended to use "query-cpus-fast" instead of this command to avoid the vCPU interruption.
Returns: a list of "CpuInfo" for each virtual CPU
Since: 0.14.0
Example:
-> { "execute": "query-cpus" }
<- { "return": [
{
"CPU":0,
"current":true,
"halted":false,
"qom_path":"/machine/unattached/device[0]",
"arch":"x86",
"pc":3227107138,
"thread_id":3134
},
{
"CPU":1,
"current":false,
"halted":true,
"qom_path":"/machine/unattached/device[2]",
"arch":"x86",
"pc":7108165,
"thread_id":3135
}
]
}
Notes: This interface is deprecated (since 2.12.0), and it is strongly recommended that you avoid using it. Use "query-cpus-fast" to obtain information about virtual CPUs.
CpuInfoFast (Object)
Information about a virtual CPU
Members:
Since: 2.12
query-cpus-fast (Command) Returns information about all virtual CPUs. This command does not incur a performance penalty and should be used in production instead of query-cpus.
Returns: list of "CpuInfoFast"
Since: 2.12
Example:
-> { "execute": "query-cpus-fast" }
<- { "return": [
{
"thread-id": 25627,
"props": {
"core-id": 0,
"thread-id": 0,
"socket-id": 0
},
"qom-path": "/machine/unattached/device[0]",
"arch":"x86",
"target":"x86_64",
"cpu-index": 0
},
{
"thread-id": 25628,
"props": {
"core-id": 0,
"thread-id": 0,
"socket-id": 1
},
"qom-path": "/machine/unattached/device[2]",
"arch":"x86",
"target":"x86_64",
"cpu-index": 1
}
]
}
cpu-add (Command) Adds CPU with specified ID.
Arguments:
Returns: Nothing on success
Since: 1.5
Note: This command is deprecated. The `device_add` command should be used instead. See the `query-hotpluggable-cpus` command for details.
Example:
-> { "execute": "cpu-add", "arguments": { "id": 2 } }
<- { "return": {} }
MachineInfo (Object)
Information describing a machine.
Members:
Since: 1.2.0
query-machines (Command) Return a list of supported machines
Returns: a list of MachineInfo
Since: 1.2.0
CurrentMachineParams (Object)
Information describing the running machine parameters.
Members:
Since: 4.0
query-current-machine (Command) Return information on the current virtual machine.
Returns: CurrentMachineParams
Since: 4.0
TargetInfo (Object)
Information describing the QEMU target.
Members:
Since: 1.2.0
query-target (Command) Return information about the target for this QEMU
Returns: TargetInfo
Since: 1.2.0
NumaOptionsType (Enum)
Values:
Since: 2.1
NumaOptions (Object)
A discriminated record of NUMA options. (for OptsVisitor)
Members:
Since: 2.1
NumaNodeOptions (Object)
Create a guest NUMA node. (for OptsVisitor)
Members:
Since: 2.1
NumaDistOptions (Object)
Set the distance between 2 NUMA nodes.
Members:
Since: 2.10
X86CPURegister32 (Enum)
A X86 32-bit register
Values:
Since: 1.5
X86CPUFeatureWordInfo (Object)
Information about a X86 CPU feature word
Members:
Since: 1.5
DummyForceArrays (Object)
Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
Members:
Since: 2.5
NumaCpuOptions (Object)
Option "-numa cpu" overrides default cpu to node mapping. It accepts the same set of cpu properties as returned by query-hotpluggable-cpus[].props, where node-id could be used to override default node mapping.
Members:
Since: 2.10
HostMemPolicy (Enum)
Host memory policy types
Values:
Since: 2.1
Memdev (Object)
Information about memory backend
Members:
Since: 2.1
query-memdev (Command) Returns information for all memory backends.
Returns: a list of "Memdev".
Since: 2.1
Example:
-> { "execute": "query-memdev" }
<- { "return": [
{
"id": "mem1",
"size": 536870912,
"merge": false,
"dump": true,
"prealloc": false,
"host-nodes": [0, 1],
"policy": "bind"
},
{
"size": 536870912,
"merge": false,
"dump": true,
"prealloc": true,
"host-nodes": [2, 3],
"policy": "preferred"
}
]
}
CpuInstanceProperties (Object)
List of properties to be used for hotplugging a CPU instance, it should be passed by management with device_add command when a CPU is being hotplugged.
Members:
Note: currently there are 5 properties that could be present but management should be prepared to pass through other properties with device_add command to allow for future interface extension. This also requires the filed names to be kept in sync with the properties passed to -device/device_add.
Since: 2.7
HotpluggableCPU (Object)
Members:
Since: 2.7
query-hotpluggable-cpus (Command)
TODO: Better documentation; currently there is none.
Returns: a list of HotpluggableCPU objects.
Since: 2.7
Example:
For pseries machine type started with -smp 2,cores=2,maxcpus=4 -cpu POWER8:
-> { "execute": "query-hotpluggable-cpus" }
<- {"return": [
{ "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
"vcpus-count": 1 },
{ "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
"vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
]}'
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}
}
]}
For s390x-virtio-ccw machine type started with -smp 1,maxcpus=2 -cpu qemu
(Since: 2.11):
-> { "execute": "query-hotpluggable-cpus" }
<- {"return": [
{
"type": "qemu-s390x-cpu", "vcpus-count": 1,
"props": { "core-id": 1 }
},
{
"qom-path": "/machine/unattached/device[0]",
"type": "qemu-s390x-cpu", "vcpus-count": 1,
"props": { "core-id": 0 }
}
]}
set-numa-node (Command) Runtime equivalent of '-numa' CLI option, available at preconfigure stage to configure numa mapping before initializing machine.
Since 3.0
Arguments: the members of "NumaOptions"
CpuModelInfo (Object)
Virtual CPU model.
A CPU model consists of the name of a CPU definition, to which delta changes are applied (e.g. features added/removed). Most magic values that an architecture might require should be hidden behind the name. However, if required, architectures can expose relevant properties.
Members:
Since: 2.8.0
CpuModelExpansionType (Enum)
An enumeration of CPU model expansion types.
Values:
Note: When a non-migration-safe CPU model is expanded in static mode, some features enabled by the CPU model may be omitted, because they can't be implemented by a static CPU model definition (e.g. cache info passthrough and PMU passthrough in x86). If you need an accurate representation of the features enabled by a non-migration-safe CPU model, use "full". If you need a static representation that will keep ABI compatibility even when changing QEMU version or machine-type, use "static" (but keep in mind that some features may be omitted).
Since: 2.8.0
CpuModelCompareResult (Enum)
An enumeration of CPU model comparison results. The result is usually calculated using e.g. CPU features or CPU generations.
Values:
Since: 2.8.0
CpuModelBaselineInfo (Object)
The result of a CPU model baseline.
Members:
Since: 2.8.0
If: "defined(TARGET_S390X)"
CpuModelCompareInfo (Object)
The result of a CPU model comparison.
Members:
"responsible-properties" is a list of QOM property names that led to both CPUs not being detected as identical. For identical models, this list is empty. If a QOM property is read-only, that means there's no known way to make the CPU models identical. If the special property name "type" is included, the models are by definition not identical and cannot be made identical.
Since: 2.8.0
If: "defined(TARGET_S390X)"
query-cpu-model-comparison (Command) Compares two CPU models, returning how they compare in a specific configuration. The results indicates how both models compare regarding runnability. This result can be used by tooling to make decisions if a certain CPU model will run in a certain configuration or if a compatible CPU model has to be created by baselining.
Usually, a CPU model is compared against the maximum possible CPU model of a certain configuration (e.g. the "host" model for KVM). If that CPU model is identical or a subset, it will run in that configuration.
The result returned by this command may be affected by:
Some architectures may not support comparing CPU models. s390x supports comparing CPU models.
Arguments:
Returns: a CpuModelBaselineInfo. Returns an error if comparing CPU models is not supported, if a model cannot be used, if a model contains an unknown cpu definition name, unknown properties or properties with wrong types.
Note: this command isn't specific to s390x, but is only implemented on this architecture currently.
Since: 2.8.0
If: "defined(TARGET_S390X)"
query-cpu-model-baseline (Command) Baseline two CPU models, creating a compatible third model. The created model will always be a static, migration-safe CPU model (see "static" CPU model expansion for details).
This interface can be used by tooling to create a compatible CPU model out two CPU models. The created CPU model will be identical to or a subset of both CPU models when comparing them. Therefore, the created CPU model is guaranteed to run where the given CPU models run.
The result returned by this command may be affected by:
Some architectures may not support baselining CPU models. s390x supports baselining CPU models.
Arguments:
Returns: a CpuModelBaselineInfo. Returns an error if baselining CPU models is not supported, if a model cannot be used, if a model contains an unknown cpu definition name, unknown properties or properties with wrong types.
Note: this command isn't specific to s390x, but is only implemented on this architecture currently.
Since: 2.8.0
If: "defined(TARGET_S390X)"
CpuModelExpansionInfo (Object)
The result of a cpu model expansion.
Members:
Since: 2.8.0
If: "defined(TARGET_S390X) || defined(TARGET_I386) || defined(TARGET_ARM)"
query-cpu-model-expansion (Command) Expands a given CPU model (or a combination of CPU model + additional options) to different granularities, allowing tooling to get an understanding what a specific CPU model looks like in QEMU under a certain configuration.
This interface can be used to query the "host" CPU model.
The data returned by this command may be affected by:
Some architectures may not support all expansion types. s390x supports "full" and "static". Arm only supports "full".
Arguments:
Returns: a CpuModelExpansionInfo. Returns an error if expanding CPU models is not supported, if the model cannot be expanded, if the model contains an unknown CPU definition name, unknown properties or properties with a wrong type. Also returns an error if an expansion type is not supported.
Since: 2.8.0
If: "defined(TARGET_S390X) || defined(TARGET_I386) || defined(TARGET_ARM)"
CpuDefinitionInfo (Object)
Virtual CPU definition.
Members:
"unavailable-features" is a list of QOM property names that represent CPU model attributes that prevent the CPU from running. If the QOM property is read-only, that means there's no known way to make the CPU model run in the current host. Implementations that choose not to provide specific information return the property name "type". If the property is read-write, it means that it MAY be possible to run the CPU model in the current host if that property is changed. Management software can use it as hints to suggest or choose an alternative for the user, or just to generate meaningful error messages explaining why the CPU model can't be used. If "unavailable-features" is an empty list, the CPU model is runnable using the current host and machine-type. If "unavailable-features" is not present, runnability information for the CPU is not available.
Since: 1.2.0
If: "defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_I386) || defined(TARGET_S390X) || defined(TARGET_MIPS)"
query-cpu-definitions (Command) Return a list of supported virtual CPU definitions
Returns: a list of CpuDefInfo
Since: 1.2.0
If: "defined(TARGET_PPC) || defined(TARGET_ARM) || defined(TARGET_I386) || defined(TARGET_S390X) || defined(TARGET_MIPS)"
qmp_capabilities (Command) Enable QMP capabilities.
Arguments:
Arguments:
Example:
-> { "execute": "qmp_capabilities",
"arguments": { "enable": [ "oob" ] } }
<- { "return": {} }
Notes: This command is valid exactly when first connecting: it must be issued before any other command will be accepted, and will fail once the monitor is accepting other commands. (see qemu docs/interop/qmp-spec.txt)
The QMP client needs to explicitly enable QMP capabilities, otherwise all the QMP capabilities will be turned off by default.
Since: 0.13
QMPCapability (Enum)
Enumeration of capabilities to be advertised during initial client connection, used for agreeing on particular QMP extension behaviors.
Values:
Since: 2.12
VersionTriple (Object)
A three-part version number.
Members:
Since: 2.4
VersionInfo (Object)
A description of QEMU's version.
Members:
Since: 0.14.0
query-version (Command) Returns the current version of QEMU.
Returns: A "VersionInfo" object describing the current version of QEMU.
Since: 0.14.0
Example:
-> { "execute": "query-version" }
<- {
"return":{
"qemu":{
"major":0,
"minor":11,
"micro":5
},
"package":""
}
}
CommandInfo (Object)
Information about a QMP command
Members:
Since: 0.14.0
query-commands (Command) Return a list of supported QMP commands by this server
Returns: A list of "CommandInfo" for all supported commands
Since: 0.14.0
Example:
-> { "execute": "query-commands" }
<- {
"return":[
{
"name":"query-balloon"
},
{
"name":"system_powerdown"
}
]
}
Note: This example has been shortened as the real response is too long.
LostTickPolicy (Enum)
Policy for handling lost ticks in timer devices.
Values:
Since: 2.0
add_client (Command) Allow client connections for VNC, Spice and socket based character devices to be passed in to QEMU via SCM_RIGHTS.
Arguments:
Returns: nothing on success.
Since: 0.14.0
Example:
-> { "execute": "add_client", "arguments": { "protocol": "vnc",
"fdname": "myclient" } }
<- { "return": {} }
NameInfo (Object)
Guest name information.
Members:
Since: 0.14.0
query-name (Command) Return the name information of a guest.
Returns: "NameInfo" of the guest
Since: 0.14.0
Example:
-> { "execute": "query-name" }
<- { "return": { "name": "qemu-name" } }
KvmInfo (Object)
Information about support for KVM acceleration
Members:
Since: 0.14.0
query-kvm (Command) Returns information about KVM acceleration
Returns: "KvmInfo"
Since: 0.14.0
Example:
-> { "execute": "query-kvm" }
<- { "return": { "enabled": true, "present": true } }
UuidInfo (Object)
Guest UUID information (Universally Unique Identifier).
Members:
Since: 0.14.0
Notes: If no UUID was specified for the guest, a null UUID is returned.
query-uuid (Command) Query the guest UUID information.
Returns: The "UuidInfo" for the guest
Since: 0.14.0
Example:
-> { "execute": "query-uuid" }
<- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
EventInfo (Object)
Information about a QMP event
Members:
Since: 1.2.0
query-events (Command) Return information on QMP events.
Returns: A list of "EventInfo".
Since: 1.2.0
Note: This command is deprecated, because its output doesn't reflect compile-time configuration. Use query-qmp-schema instead.
Example:
-> { "execute": "query-events" }
<- {
"return": [
{
"name":"SHUTDOWN"
},
{
"name":"RESET"
}
]
}
Note: This example has been shortened as the real response is too long.
IOThreadInfo (Object)
Information about an iothread
Members:
Since: 2.0
query-iothreads (Command) Returns a list of information about each iothread.
Note: this list excludes the QEMU main loop thread, which is not declared using the -object iothread command-line option. It is always the main thread of the process.
Returns: a list of "IOThreadInfo" for each iothread
Since: 2.0
Example:
-> { "execute": "query-iothreads" }
<- { "return": [
{
"id":"iothread0",
"thread-id":3134
},
{
"id":"iothread1",
"thread-id":3135
}
]
}
BalloonInfo (Object)
Information about the guest balloon device.
Members:
Since: 0.14.0
query-balloon (Command) Return information about the balloon device.
Returns: "BalloonInfo" on success
If the balloon driver is enabled but not functional because the KVM kernel module cannot support it, KvmMissingCap
If no balloon device is present, DeviceNotActive
Since: 0.14.0
Example:
-> { "execute": "query-balloon" }
<- { "return": {
"actual": 1073741824,
}
}
BALLOON_CHANGE (Event) Emitted when the guest changes the actual BALLOON level. This value is equivalent to the "actual" field return by the 'query-balloon' command
Arguments:
Note: this event is rate-limited.
Since: 1.2
Example:
<- { "event": "BALLOON_CHANGE",
"data": { "actual": 944766976 },
"timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
PciMemoryRange (Object)
A PCI device memory region
Members:
Since: 0.14.0
PciMemoryRegion (Object)
Information about a PCI device I/O region.
Members:
Since: 0.14.0
PciBusInfo (Object)
Information about a bus of a PCI Bridge device
Members:
Since: 2.4
PciBridgeInfo (Object)
Information about a PCI Bridge device
Members:
Since: 0.14.0
PciDeviceClass (Object)
Information about the Class of a PCI device
Members:
Since: 2.4
PciDeviceId (Object)
Information about the Id of a PCI device
Members:
Since: 2.4
PciDeviceInfo (Object)
Information about a PCI device
Members:
Notes: the contents of "class_info".desc are not stable and should only be treated as informational.
Since: 0.14.0
PciInfo (Object)
Information about a PCI bus
Members:
Since: 0.14.0
query-pci (Command) Return information about the PCI bus topology of the guest.
Returns: a list of "PciInfo" for each PCI bus. Each bus is represented by a json-object, which has a key with a json-array of all PCI devices attached to it. Each device is represented by a json-object.
Since: 0.14.0
Example:
-> { "execute": "query-pci" }
<- { "return": [
{
"bus": 0,
"devices": [
{
"bus": 0,
"qdev_id": "",
"slot": 0,
"class_info": {
"class": 1536,
"desc": "Host bridge"
},
"id": {
"device": 32902,
"vendor": 4663
},
"function": 0,
"regions": [
]
},
{
"bus": 0,
"qdev_id": "",
"slot": 1,
"class_info": {
"class": 1537,
"desc": "ISA bridge"
},
"id": {
"device": 32902,
"vendor": 28672
},
"function": 0,
"regions": [
]
},
{
"bus": 0,
"qdev_id": "",
"slot": 1,
"class_info": {
"class": 257,
"desc": "IDE controller"
},
"id": {
"device": 32902,
"vendor": 28688
},
"function": 1,
"regions": [
{
"bar": 4,
"size": 16,
"address": 49152,
"type": "io"
}
]
},
{
"bus": 0,
"qdev_id": "",
"slot": 2,
"class_info": {
"class": 768,
"desc": "VGA controller"
},
"id": {
"device": 4115,
"vendor": 184
},
"function": 0,
"regions": [
{
"prefetch": true,
"mem_type_64": false,
"bar": 0,
"size": 33554432,
"address": 4026531840,
"type": "memory"
},
{
"prefetch": false,
"mem_type_64": false,
"bar": 1,
"size": 4096,
"address": 4060086272,
"type": "memory"
},
{
"prefetch": false,
"mem_type_64": false,
"bar": 6,
"size": 65536,
"address": -1,
"type": "memory"
}
]
},
{
"bus": 0,
"qdev_id": "",
"irq": 11,
"slot": 4,
"class_info": {
"class": 1280,
"desc": "RAM controller"
},
"id": {
"device": 6900,
"vendor": 4098
},
"function": 0,
"regions": [
{
"bar": 0,
"size": 32,
"address": 49280,
"type": "io"
}
]
}
]
}
]
}
Note: This example has been shortened as the real response is too long.
quit (Command) This command will cause the QEMU process to exit gracefully. While every attempt is made to send the QMP response before terminating, this is not guaranteed. When using this interface, a premature EOF would not be unexpected.
Since: 0.14.0
Example:
-> { "execute": "quit" }
<- { "return": {} }
stop (Command) Stop all guest VCPU execution.
Since: 0.14.0
Notes: This function will succeed even if the guest is already in the stopped state. In "inmigrate" state, it will ensure that the guest remains paused once migration finishes, as if the -S option was passed on the command line.
Example:
-> { "execute": "stop" }
<- { "return": {} }
system_reset (Command) Performs a hard reset of a guest.
Since: 0.14.0
Example:
-> { "execute": "system_reset" }
<- { "return": {} }
system_powerdown (Command) Requests that a guest perform a powerdown operation.
Since: 0.14.0
Notes: A guest may or may not respond to this command. This command returning does not indicate that a guest has accepted the request or that it has shut down. Many guests will respond to this command by prompting the user in some way.
Example:
-> { "execute": "system_powerdown" }
<- { "return": {} }
memsave (Command) Save a portion of guest memory to a file.
Arguments:
Returns: Nothing on success
Since: 0.14.0
Notes: Errors were not reliably returned until 1.1
Example:
-> { "execute": "memsave",
"arguments": { "val": 10,
"size": 100,
"filename": "/tmp/virtual-mem-dump" } }
<- { "return": {} }
pmemsave (Command) Save a portion of guest physical memory to a file.
Arguments:
Returns: Nothing on success
Since: 0.14.0
Notes: Errors were not reliably returned until 1.1
Example:
-> { "execute": "pmemsave",
"arguments": { "val": 10,
"size": 100,
"filename": "/tmp/physical-mem-dump" } }
<- { "return": {} }
cont (Command) Resume guest VCPU execution.
Since: 0.14.0
Returns: If successful, nothing
Notes: This command will succeed if the guest is currently running. It will also succeed if the guest is in the "inmigrate" state; in this case, the effect of the command is to make sure the guest starts once migration finishes, removing the effect of the -S command line option if it was passed.
Example:
-> { "execute": "cont" }
<- { "return": {} }
x-exit-preconfig (Command) Exit from "preconfig" state
This command makes QEMU exit the preconfig state and proceed with VM initialization using configuration data provided on the command line and via the QMP monitor during the preconfig state. The command is only available during the preconfig state (i.e. when the --preconfig command line option was in use).
Since 3.0
Returns: nothing
Example:
-> { "execute": "x-exit-preconfig" }
<- { "return": {} }
system_wakeup (Command) Wake up guest from suspend. If the guest has wake-up from suspend support enabled (wakeup-suspend-support flag from query-current-machine), wake-up guest from suspend if the guest is in SUSPENDED state. Return an error otherwise.
Since: 1.1
Returns: nothing.
Note: prior to 4.0, this command does nothing in case the guest isn't suspended.
Example:
-> { "execute": "system_wakeup" }
<- { "return": {} }
inject-nmi (Command) Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64). The command fails when the guest doesn't support injecting.
Returns: If successful, nothing
Since: 0.14.0
Note: prior to 2.1, this command was only supported for x86 and s390 VMs
Example:
-> { "execute": "inject-nmi" }
<- { "return": {} }
balloon (Command) Request the balloon driver to change its balloon size.
Arguments:
Returns: Nothing on success If the balloon driver is enabled but not functional because the KVM kernel module cannot support it, KvmMissingCap If no balloon device is present, DeviceNotActive
Notes: This command just issues a request to the guest. When it returns, the balloon size may not have changed. A guest can change the balloon size independent of this command.
Since: 0.14.0
Example:
-> { "execute": "balloon", "arguments": { "value": 536870912 } }
<- { "return": {} }
human-monitor-command (Command) Execute a command on the human monitor and return the output.
Arguments:
Features:
Returns: the output of the command as a string
Since: 0.14.0
Notes: This command only exists as a stop-gap. Its use is highly discouraged. The semantics of this command are not guaranteed: this means that command names, arguments and responses can change or be removed at ANY time. Applications that rely on long term stability guarantees should NOT use this command.
Known limitations:
Example:
-> { "execute": "human-monitor-command",
"arguments": { "command-line": "info kvm" } }
<- { "return": "kvm support: enabled\r\n" }
change (Command) This command is multiple commands multiplexed together.
Arguments:
Returns: Nothing on success. If "device" is not a valid block device, DeviceNotFound
Notes: This interface is deprecated, and it is strongly recommended that you avoid using it. For changing block devices, use blockdev-change-medium; for changing VNC parameters, use change-vnc-password.
Since: 0.14.0
Example:
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": {} }
xen-set-global-dirty-log (Command) Enable or disable the global dirty log mode.
Arguments:
Returns: nothing
Since: 1.3
Example:
-> { "execute": "xen-set-global-dirty-log",
"arguments": { "enable": true } }
<- { "return": {} }
getfd (Command) Receive a file descriptor via SCM rights and assign it a name
Arguments:
Returns: Nothing on success
Since: 0.14.0
Notes: If "fdname" already exists, the file descriptor assigned to it will be closed and replaced by the received file descriptor.
The 'closefd' command can be used to explicitly close the file descriptor when it is no longer needed.
Example:
-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
<- { "return": {} }
closefd (Command) Close a file descriptor previously passed via SCM rights
Arguments:
Returns: Nothing on success
Since: 0.14.0
Example:
-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
<- { "return": {} }
MemoryInfo (Object)
Actual memory information in bytes.
Members:
Since: 2.11.0
query-memory-size-summary (Command) Return the amount of initially allocated and present hotpluggable (if enabled) memory in bytes.
Example:
-> { "execute": "query-memory-size-summary" }
<- { "return": { "base-memory": 4294967296, "plugged-memory": 0 } }
Since: 2.11.0
AddfdInfo (Object)
Information about a file descriptor that was added to an fd set.
Members:
Since: 1.2.0
add-fd (Command) Add a file descriptor, that was passed via SCM rights, to an fd set.
Arguments:
Returns: "AddfdInfo" on success
If file descriptor was not received, FdNotSupplied
If "fdset-id" is a negative value, InvalidParameterValue
Notes: The list of fd sets is shared by all monitor connections.
If "fdset-id" is not specified, a new fd set will be created.
Since: 1.2.0
Example:
-> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
<- { "return": { "fdset-id": 1, "fd": 3 } }
remove-fd (Command) Remove a file descriptor from an fd set.
Arguments:
Returns: Nothing on success If "fdset-id" or "fd" is not found, FdNotFound
Since: 1.2.0
Notes: The list of fd sets is shared by all monitor connections.
If "fd" is not specified, all file descriptors in "fdset-id" will be removed.
Example:
-> { "execute": "remove-fd", "arguments": { "fdset-id": 1, "fd": 3 } }
<- { "return": {} }
FdsetFdInfo (Object)
Information about a file descriptor that belongs to an fd set.
Members:
Since: 1.2.0
FdsetInfo (Object)
Information about an fd set.
Members:
Since: 1.2.0
query-fdsets (Command) Return information describing all fd sets.
Returns: A list of "FdsetInfo"
Since: 1.2.0
Note: The list of fd sets is shared by all monitor connections.
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
}
]
}
AcpiTableOptions (Object)
Specify an ACPI table on the command line to load.
At most one of "file" and "data" can be specified. The list of files specified by any one of them is loaded and concatenated in order. If both are omitted, "data" is implied.
Other fields / optargs can be used to override fields of the generic ACPI table header; refer to the ACPI specification 5.0, section 5.2.6 System Description Table Header. If a header field is not overridden, then the corresponding value from the concatenated blob is used (in case of "file"), or it is filled in with a hard-coded value (in case of "data").
String fields are copied into the matching ACPI member from lowest address upwards, and silently truncated / NUL-padded to length.
Members:
Since: 1.5
CommandLineParameterType (Enum)
Possible types for an option parameter.
Values:
Since: 1.5
CommandLineParameterInfo (Object)
Details about a single parameter of a command line option.
Members:
Since: 1.5
CommandLineOptionInfo (Object)
Details about a command line option, including its list of parameter details
Members:
Since: 1.5
query-command-line-options (Command) Query command line option schema.
Arguments:
Returns: list of "CommandLineOptionInfo" for all options (or for the given "option"). Returns an error if the given "option" doesn't exist.
Since: 1.5
Example:
-> { "execute": "query-command-line-options",
"arguments": { "option": "option-rom" } }
<- { "return": [
{
"parameters": [
{
"name": "romfile",
"type": "string"
},
{
"name": "bootindex",
"type": "number"
}
],
"option": "option-rom"
}
]
}
PCDIMMDeviceInfo (Object)
PCDIMMDevice state information
Members:
Since: 2.1
VirtioPMEMDeviceInfo (Object)
VirtioPMEM state information
Members:
Since: 4.1
MemoryDeviceInfo (Object)
Union containing information about a memory device
nvdimm is included since 2.12. virtio-pmem is included since 4.1.
Members:
Since: 2.1
query-memory-devices (Command) Lists available memory devices and their state
Since: 2.1
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"
} ] }
MEM_UNPLUG_ERROR (Event) Emitted when memory hot unplug error occurs.
Arguments:
Since: 2.4
Example:
<- { "event": "MEM_UNPLUG_ERROR"
"data": { "device": "dimm1",
"msg": "acpi: device unplug for unsupported device"
},
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
ACPISlotType (Enum)
Values:
ACPIOSTInfo (Object)
OSPM Status Indication for a device For description of possible values of "source" and "status" fields see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
Members:
Since: 2.1
query-acpi-ospm-status (Command) Return a list of ACPIOSTInfo for devices that support status reporting via ACPI _OST method.
Since: 2.1
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}
]}
ACPI_DEVICE_OST (Event) Emitted when guest executes ACPI _OST method.
Arguments:
Since: 2.1
Example:
<- { "event": "ACPI_DEVICE_OST",
"data": { "device": "d1", "slot": "0",
"slot-type": "DIMM", "source": 1, "status": 0 } }
ReplayMode (Enum)
Mode of the replay subsystem.
Values:
Since: 2.5
xen-load-devices-state (Command) Load the state of all devices from file. The RAM and the block devices of the VM are not loaded by this command.
Arguments:
Since: 2.7
Example:
-> { "execute": "xen-load-devices-state",
"arguments": { "filename": "/tmp/resume" } }
<- { "return": {} }
GuidInfo (Object)
GUID information.
Members:
Since: 2.9
query-vm-generation-id (Command) Show Virtual Machine Generation ID
Since: 2.9
RTC_CHANGE (Event) Emitted when the guest changes the RTC time.
Arguments:
Note: This event is rate-limited.
Since: 0.13.0
Example:
<- { "event": "RTC_CHANGE",
"data": { "offset": 78 },
"timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
If: "defined(TARGET_ALPHA) || defined(TARGET_ARM) || defined(TARGET_HPPA) || defined(TARGET_I386) || defined(TARGET_MIPS) || defined(TARGET_MIPS64) || defined(TARGET_MOXIE) || defined(TARGET_PPC) || defined(TARGET_PPC64) || defined(TARGET_S390X) || defined(TARGET_SH4) || defined(TARGET_SPARC)"
rtc-reset-reinjection (Command) This command will reset the RTC interrupt reinjection backlog. Can be used if another mechanism to synchronize guest time is in effect, for example QEMU guest agent's guest-set-time command.
Since: 2.1
Example:
-> { "execute": "rtc-reset-reinjection" }
<- { "return": {} }
If: "defined(TARGET_I386)"
SevState (Enum)
An enumeration of SEV state information used during "query-sev".
Values:
Since: 2.12
If: "defined(TARGET_I386)"
SevInfo (Object)
Information about Secure Encrypted Virtualization (SEV) support
Members:
Since: 2.12
If: "defined(TARGET_I386)"
query-sev (Command) Returns information about SEV
Returns: "SevInfo"
Since: 2.12
Example:
-> { "execute": "query-sev" }
<- { "return": { "enabled": true, "api-major" : 0, "api-minor" : 0,
"build-id" : 0, "policy" : 0, "state" : "running",
"handle" : 1 } }
If: "defined(TARGET_I386)"
SevLaunchMeasureInfo (Object)
SEV Guest Launch measurement information
Members:
Since: 2.12
If: "defined(TARGET_I386)"
query-sev-launch-measure (Command) Query the SEV guest launch information.
Returns: The "SevLaunchMeasureInfo" for the guest
Since: 2.12
Example:
-> { "execute": "query-sev-launch-measure" }
<- { "return": { "data": "4l8LXeNlSPUDlXPJG5966/8%YZ" } }
If: "defined(TARGET_I386)"
SevCapability (Object)
The struct describes capability for a Secure Encrypted Virtualization feature.
Members:
Since: 2.12
If: "defined(TARGET_I386)"
query-sev-capabilities (Command) This command is used to get the SEV capabilities, and is supported on AMD X86 platforms only.
Returns: SevCapability objects.
Since: 2.12
Example:
-> { "execute": "query-sev-capabilities" }
<- { "return": { "pdh": "8CCDD8DDD", "cert-chain": "888CCCDDDEE",
"cbitpos": 47, "reduced-phys-bits": 5}}
If: "defined(TARGET_I386)"
dump-skeys (Command) Dump guest's storage keys
Arguments:
This command is only supported on s390 architecture.
Since: 2.5
Example:
-> { "execute": "dump-skeys",
"arguments": { "filename": "/tmp/skeys" } }
<- { "return": {} }
If: "defined(TARGET_S390X)"
GICCapability (Object)
The struct describes capability for a specific GIC (Generic Interrupt Controller) version. These bits are not only decided by QEMU/KVM software version, but also decided by the hardware that the program is running upon.
Members:
Since: 2.6
If: "defined(TARGET_ARM)"
query-gic-capabilities (Command) This command is ARM-only. It will return a list of GICCapability objects that describe its capability bits.
Returns: a list of GICCapability objects.
Since: 2.6
Example:
-> { "execute": "query-gic-capabilities" }
<- { "return": [{ "version": 2, "emulated": true, "kernel": false },
{ "version": 3, "emulated": false, "kernel": true } ] }
If: "defined(TARGET_ARM)"
AudiodevPerDirectionOptions (Object)
General audio backend options that are used for both playback and recording.
Members:
Since: 4.0
AudiodevGenericOptions (Object)
Generic driver-specific options.
Members:
Since: 4.0
AudiodevAlsaPerDirectionOptions (Object)
Options of the ALSA backend that are used for both playback and recording.
Members:
Since: 4.0
AudiodevAlsaOptions (Object)
Options of the ALSA audio backend.
Members:
Since: 4.0
AudiodevCoreaudioPerDirectionOptions (Object)
Options of the Core Audio backend that are used for both playback and recording.
Members:
Since: 4.0
AudiodevCoreaudioOptions (Object)
Options of the coreaudio audio backend.
Members:
Since: 4.0
AudiodevDsoundOptions (Object)
Options of the DirectSound audio backend.
Members:
Since: 4.0
AudiodevOssPerDirectionOptions (Object)
Options of the OSS backend that are used for both playback and recording.
Members:
Since: 4.0
AudiodevOssOptions (Object)
Options of the OSS audio backend.
Members:
Since: 4.0
AudiodevPaPerDirectionOptions (Object)
Options of the Pulseaudio backend that are used for both playback and recording.
Members:
Since: 4.0
AudiodevPaOptions (Object)
Options of the PulseAudio audio backend.
Members:
Since: 4.0
AudiodevWavOptions (Object)
Options of the wav audio backend.
Members:
Since: 4.0
AudioFormat (Enum)
An enumeration of possible audio formats.
Values:
Since: 4.0
AudiodevDriver (Enum)
An enumeration of possible audio backend drivers.
Values:
Since: 4.0
Audiodev (Object)
Options of an audio backend.
Members:
Since: 4.0