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:
QEMU error classes
Values:
GenericErrorthis is used for errors that don’t require a specific error class. This should be the default case for most errors
CommandNotFoundthe requested command has not been found
DeviceNotActivea device has failed to be become active
DeviceNotFoundthe requested device has not been found
KVMMissingCapthe requested operation can’t be fulfilled because a required KVM capability is missing
Since: 1.2
An enumeration of the I/O operation types
Values:
readread operation
writewrite operation
Since: 2.1
An enumeration of three options: on, off, and auto
Values:
autoQEMU selects the value between on and off
onEnabled
offDisabled
Since: 2.2
An enumeration of three values: on, off, and split
Values:
onEnabled
offDisabled
splitMixed
Since: 2.6
A fat type wrapping ’str’, to be embedded in lists.
Members:
str: stringNot documented
Since: 1.2
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:
s: stringthe string value
n: nullno string value
Since: 2.10
An enumeration of options for specifying a PCI BAR
Values:
offThe specified feature is disabled
autoThe PCI BAR for the feature is automatically selected
bar0PCI BAR0 is used for the feature
bar1PCI BAR1 is used for the feature
bar2PCI BAR2 is used for the feature
bar3PCI BAR3 is used for the feature
bar4PCI BAR4 is used for the feature
bar5PCI BAR5 is used for the feature
Since: 2.12
The network address family
Values:
ipv4IPV4 family
ipv6IPV6 family
unixunix socket
vsockvsock family (since 2.8)
unknownotherwise
Since: 2.1
Members:
host: stringhost part of the address
port: stringport part of the address
Captures a socket address or address range in the Internet namespace.
Members:
numeric: boolean (optional)true if the host/port are guaranteed to be numeric, false if name resolution should be attempted. Defaults to false. (Since 2.9)
to: int (optional)If present, this is range of possible addresses, with port
between port and to.
ipv4: boolean (optional)whether to accept IPv4 addresses, default try both IPv4 and IPv6
ipv6: boolean (optional)whether to accept IPv6 addresses, default try both IPv4 and IPv6
InetSocketAddressBaseSince: 1.3
Captures a socket address in the local ("Unix socket") namespace.
Members:
path: stringfilesystem path to use
Since: 1.3
Captures a socket address in the vsock namespace.
Members:
cid: stringunique host identifier
port: stringport
Note: string types are used to allow for possible future hostname or service resolution support.
Since: 2.8
Captures the address of a socket, which could also be a named file descriptor
Members:
typeOne of "inet", "unix", "vsock", "fd"
data: InetSocketAddress when type is "inet"data: UnixSocketAddress when type is "unix"data: VsockSocketAddress when type is "vsock"data: String when type is "fd"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
Available SocketAddress types
Values:
inetInternet address
unixUnix domain socket
vsockVMCI address
fddecimal is for file descriptor number, otherwise a file descriptor name. Named file descriptors are permitted in monitor commands, in combination with the ’getfd’ command. Decimal file descriptors are permitted at startup or other contexts where no monitor context is active.
Since: 2.9
Captures the address of a socket, which could also be a named file descriptor
Members:
type: SocketAddressTypeTransport type
InetSocketAddress when type is "inet"UnixSocketAddress when type is "unix"VsockSocketAddress when type is "vsock"String when type is "fd"Since: 2.9
An enumeration of VM run states.
Values:
debugQEMU is running on a debugger
finish-migrateguest is paused to finish the migration process
inmigrateguest is paused waiting for an incoming migration. Note that this state does not tell whether the machine will start at the end of the migration. This depends on the command-line -S option and any invocation of ’stop’ or ’cont’ that has happened since QEMU was started.
internal-errorAn internal error that prevents further guest execution has occurred
io-errorthe last IOP has failed and the device is configured to pause on I/O errors
pausedguest has been paused via the ’stop’ command
postmigrateguest is paused following a successful ’migrate’
prelaunchQEMU was started with -S and guest has not started
restore-vmguest is paused to restore VM state
runningguest is actively running
save-vmguest is paused to save the VM state
shutdownguest is shut down (and -no-shutdown is in use)
suspendedguest is suspended (ACPI S3)
watchdogthe watchdog action is configured to pause and has been triggered
guest-panickedguest has been panicked as a result of guest OS panic
cologuest is paused to save/restore VM state under colo checkpoint, VM can not get into this state unless colo capability is enabled for migration. (since 2.8)
Information about VCPU run state
Members:
running: booleantrue if all VCPUs are runnable, false if not runnable
singlestep: booleantrue if VCPUs are in single-step mode
status: RunStatethe virtual machine RunState
Since: 0.14.0
Notes:
singlestep is enabled through the GDB stub
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" } }
Emitted when the virtual machine has shut down, indicating that qemu is about to exit.
Arguments:
guest: booleanIf true, the shutdown was triggered by a guest request (such as a guest-initiated ACPI shutdown request or other hardware-specific action) rather than a host request (such as sending qemu a SIGINT). (since 2.10)
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 } }
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 } }
Emitted when the virtual machine is reset
Arguments:
guest: booleanIf true, the reset was triggered by a guest request (such as a guest-initiated ACPI reboot request or other hardware-specific action) rather than a host request (such as the QMP command system_reset). (since 2.10)
Since: 0.12.0
Example:
<- { "event": "RESET", "data": { "guest": false },
"timestamp": { "seconds": 1267041653, "microseconds": 9518 } }
Emitted when the virtual machine is stopped
Since: 0.12.0
Example:
<- { "event": "STOP",
"timestamp": { "seconds": 1267041730, "microseconds": 281295 } }
Emitted when the virtual machine resumes execution
Since: 0.12.0
Example:
<- { "event": "RESUME",
"timestamp": { "seconds": 1271770767, "microseconds": 582542 } }
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 } }
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 } }
Emitted when the guest has woken up from suspend state and is running
Since: 1.1
Example:
<- { "event": "WAKEUP",
"timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
Emitted when the watchdog device’s timer is expired
Arguments:
action: WatchdogActionaction that has been taken
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 } }
An enumeration of the actions taken when the watchdog device’s timer is expired
Values:
resetsystem resets
shutdownsystem shutdown, note that it is similar to powerdown, which
tries to set to system status and notify guest
poweroffsystem poweroff, the emulator program exits
pausesystem pauses, similar to stop
debugsystem enters debug state
nonenothing is done
inject-nmia non-maskable interrupt is injected into the first VCPU (all VCPUS on x86) (since 2.4)
Since: 2.1
Set watchdog action
Arguments:
action: WatchdogActionNot documented
Since: 2.11
Emitted when guest OS panic is detected
Arguments:
action: GuestPanicActionaction that has been taken, currently always "pause"
info: GuestPanicInformation (optional)information about a panic (since 2.9)
Since: 1.5
Example:
<- { "event": "GUEST_PANICKED",
"data": { "action": "pause" } }
An enumeration of the actions taken when guest OS panic is detected
Values:
pausesystem pauses
poweroffNot documented
Since: 2.1 (poweroff since 2.8)
An enumeration of the guest panic information types
Values:
hyper-vhyper-v guest panic information type
s390s390 guest panic information type (Since: 2.12)
Since: 2.9
Information about a guest panic
Members:
type: GuestPanicInformationTypeCrash type that defines the hypervisor specific information
GuestPanicInformationHyperV when type is "hyper-v"GuestPanicInformationS390 when type is "s390"Since: 2.9
Hyper-V specific guest panic information (HV crash MSRs)
Members:
arg1: intNot documented
arg2: intNot documented
arg3: intNot documented
arg4: intNot documented
arg5: intNot documented
Since: 2.9
Reason why the CPU is in a crashed state.
Values:
unknownno crash reason was set
disabled-waitthe CPU has entered a disabled wait state
extint-loopclock comparator or cpu timer interrupt with new PSW enabled for external interrupts
pgmint-loopprogram interrupt with BAD new PSW
opint-loopoperation exception interrupt with invalid code at the program interrupt new PSW
Since: 2.12
S390 specific guest panic information (PSW)
Members:
core: intcore id of the CPU that crashed
psw-mask: intcontrol fields of guest PSW
psw-addr: intguest instruction address
reason: S390CrashReasonguest crash reason
Since: 2.12
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:
clientthe network endpoint is acting as the client
serverthe network endpoint is acting as the server
Since: 2.5
The data format that the secret is provided in
Values:
rawraw bytes. When encoded in JSON only valid UTF-8 sequences can be used
base64arbitrary base64 encoded binary data
Since: 2.6
The supported algorithms for computing content digests
Values:
md5MD5. Should not be used in any new code, legacy compat only
sha1SHA-1. Should not be used in any new code, legacy compat only
sha224SHA-224. (since 2.7)
sha256SHA-256. Current recommended strong hash.
sha384SHA-384. (since 2.7)
sha512SHA-512. (since 2.7)
ripemd160RIPEMD-160. (since 2.7)
Since: 2.6
The supported algorithms for content encryption ciphers
Values:
aes-128AES with 128 bit / 16 byte keys
aes-192AES with 192 bit / 24 byte keys
aes-256AES with 256 bit / 32 byte keys
des-rfbRFB specific variant of single DES. Do not use except in VNC.
3des3DES(EDE) with 192 bit / 24 byte keys (since 2.9)
cast5-128Cast5 with 128 bit / 16 byte keys
serpent-128Serpent with 128 bit / 16 byte keys
serpent-192Serpent with 192 bit / 24 byte keys
serpent-256Serpent with 256 bit / 32 byte keys
twofish-128Twofish with 128 bit / 16 byte keys
twofish-192Twofish with 192 bit / 24 byte keys
twofish-256Twofish with 256 bit / 32 byte keys
Since: 2.6
The supported modes for content encryption ciphers
Values:
ecbElectronic Code Book
cbcCipher Block Chaining
xtsXEX with tweaked code book and ciphertext stealing
ctrCounter (Since 2.8)
Since: 2.6
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:
plain64-bit sector number truncated to 32-bits
plain6464-bit sector number
essiv64-bit sector number encrypted with a hash of the encryption key
Since: 2.6
The supported full disk encryption formats
Values:
qcowQCow/QCow2 built-in AES-CBC encryption. Use only for liberating data from old images.
luksLUKS encryption format. Recommended for new images
Since: 2.6
The common options that apply to all full disk encryption formats
Members:
format: QCryptoBlockFormatthe encryption format
Since: 2.6
The options that apply to QCow/QCow2 AES-CBC encryption format
Members:
key-secret: string (optional)the ID of a QCryptoSecret object providing the decryption key. Mandatory except when probing image for metadata only.
Since: 2.6
The options that apply to LUKS encryption format
Members:
key-secret: string (optional)the ID of a QCryptoSecret object providing the decryption key. Mandatory except when probing image for metadata only.
Since: 2.6
The options that apply to LUKS encryption format initialization
Members:
cipher-alg: QCryptoCipherAlgorithm (optional)the cipher algorithm for data encryption Currently defaults to ’aes’.
cipher-mode: QCryptoCipherMode (optional)the cipher mode for data encryption Currently defaults to ’cbc’
ivgen-alg: QCryptoIVGenAlgorithm (optional)the initialization vector generator Currently defaults to ’essiv’
ivgen-hash-alg: QCryptoHashAlgorithm (optional)the initialization vector generator hash Currently defaults to ’sha256’
hash-alg: QCryptoHashAlgorithm (optional)the master key hash algorithm Currently defaults to ’sha256’
iter-time: int (optional)number of milliseconds to spend in PBKDF passphrase processing. Currently defaults to 2000. (since 2.8)
QCryptoBlockOptionsLUKSSince: 2.6
The options that are available for all encryption formats when opening an existing volume
Members:
QCryptoBlockOptionsBaseQCryptoBlockOptionsQCow when format is "qcow"QCryptoBlockOptionsLUKS when format is "luks"Since: 2.6
The options that are available for all encryption formats when initializing a new volume
Members:
QCryptoBlockOptionsBaseQCryptoBlockOptionsQCow when format is "qcow"QCryptoBlockCreateOptionsLUKS when format is "luks"Since: 2.6
The common information that applies to all full disk encryption formats
Members:
format: QCryptoBlockFormatthe encryption format
Since: 2.7
Information about the LUKS block encryption key slot options
Members:
active: booleanwhether the key slot is currently in use
key-offset: intoffset to the key material in bytes
iters: int (optional)number of PBKDF2 iterations for key material
stripes: int (optional)number of stripes for splitting key material
Since: 2.7
Information about the LUKS block encryption options
Members:
cipher-alg: QCryptoCipherAlgorithmthe cipher algorithm for data encryption
cipher-mode: QCryptoCipherModethe cipher mode for data encryption
ivgen-alg: QCryptoIVGenAlgorithmthe initialization vector generator
ivgen-hash-alg: QCryptoHashAlgorithm (optional)the initialization vector generator hash
hash-alg: QCryptoHashAlgorithmthe master key hash algorithm
payload-offset: intoffset to the payload data in bytes
master-key-iters: intnumber of PBKDF2 iterations for key material
uuid: stringunique identifier for the volume
slots: array of QCryptoBlockInfoLUKSSlotinformation about each key slot
Since: 2.7
Information about the QCow block encryption options
Since: 2.7
Information about the block encryption options
Members:
QCryptoBlockInfoBaseQCryptoBlockInfoQCow when format is "qcow"QCryptoBlockInfoLUKS when format is "luks"Since: 2.7
Information about a character device.
Members:
label: stringthe label of the character device
filename: stringthe filename of the character device
frontend-open: booleanshows whether the frontend device attached to this backend (eg. with the chardev=... option) is in open or closed state (since 2.1)
Notes:
filename is encoded using the QEMU command line character device
encoding. See the QEMU man page for details.
Since: 0.14.0
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
}
]
}
Information about a character device backend
Members:
name: stringThe backend name
Since: 2.0
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"
}
]
}
An enumeration of data format.
Values:
utf8Data is a UTF-8 string (RFC 3629)
base64Data is Base64 encoded binary (RFC 3548)
Since: 1.4
Write to a ring buffer character device.
Arguments:
device: stringthe ring buffer character device name
data: stringdata to write
format: DataFormat (optional)data encoding (default ’utf8’).
Returns: Nothing on success
Since: 1.4
Example:
-> { "execute": "ringbuf-write",
"arguments": { "device": "foo",
"data": "abcdefgh",
"format": "utf8" } }
<- { "return": {} }
Read from a ring buffer character device.
Arguments:
device: stringthe ring buffer character device name
size: inthow many bytes to read at most
format: DataFormat (optional)data encoding (default ’utf8’).
Returns: data read from the device
Since: 1.4
Example:
-> { "execute": "ringbuf-read",
"arguments": { "device": "foo",
"size": 1000,
"format": "utf8" } }
<- { "return": "abcdefgh" }
Configuration shared across all chardev backends
Members:
logfile: string (optional)The name of a logfile to save output
logappend: boolean (optional)true to append instead of truncate (default to false to truncate)
Since: 2.6
Configuration info for file chardevs.
Members:
in: string (optional)The name of the input file
out: stringThe name of the output file
append: boolean (optional)Open the file in append mode (default false to truncate) (Since 2.6)
ChardevCommonSince: 1.4
Configuration info for device and pipe chardevs.
Members:
device: stringThe name of the special file for the device, i.e. /dev/ttyS0 on Unix or COM1: on Windows
ChardevCommonSince: 1.4
Configuration info for (stream) socket chardevs.
Members:
addr: SocketAddressLegacysocket address to listen on (server=true) or connect to (server=false)
tls-creds: string (optional)the ID of the TLS credentials object (since 2.6)
server: boolean (optional)create server socket (default: true)
wait: boolean (optional)wait for incoming connection on server sockets (default: false).
nodelay: boolean (optional)set TCP_NODELAY socket option (default: false)
telnet: boolean (optional)enable telnet protocol on server sockets (default: false)
tn3270: boolean (optional)enable tn3270 protocol on server sockets (default: false) (Since: 2.10)
reconnect: int (optional)For a client socket, if a socket is disconnected, then attempt a reconnect after the given number of seconds. Setting this to zero disables this function. (default: 0) (Since: 2.2)
ChardevCommonSince: 1.4
Configuration info for datagram socket chardevs.
Members:
remote: SocketAddressLegacyremote address
local: SocketAddressLegacy (optional)local address
ChardevCommonSince: 1.5
Configuration info for mux chardevs.
Members:
chardev: stringname of the base chardev.
ChardevCommonSince: 1.5
Configuration info for stdio chardevs.
Members:
signal: boolean (optional)Allow signals (such as SIGINT triggered by ^C) be delivered to qemu. Default: true in -nographic mode, false otherwise.
ChardevCommonSince: 1.5
Configuration info for spice vm channel chardevs.
Members:
type: stringkind of channel (for example vdagent).
ChardevCommonSince: 1.5
Configuration info for spice port chardevs.
Members:
fqdn: stringname of the channel (see docs/spice-port-fqdn.txt)
ChardevCommonSince: 1.5
Configuration info for virtual console chardevs.
Members:
width: int (optional)console width, in pixels
height: int (optional)console height, in pixels
cols: int (optional)console width, in chars
rows: int (optional)console height, in chars
ChardevCommonSince: 1.5
Configuration info for ring buffer chardevs.
Members:
size: int (optional)ring buffer size, must be power of two, default is 65536
ChardevCommonSince: 1.5
Configuration info for the new chardev backend.
Members:
typeOne of "file", "serial", "parallel", "pipe", "socket", "udp", "pty", "null", "mux", "msmouse", "wctablet", "braille", "testdev", "stdio", "console", "spicevmc", "spiceport", "vc", "ringbuf", "memory"
data: ChardevFile when type is "file"data: ChardevHostdev when type is "serial"data: ChardevHostdev when type is "parallel"data: ChardevHostdev when type is "pipe"data: ChardevSocket when type is "socket"data: ChardevUdp when type is "udp"data: ChardevCommon when type is "pty"data: ChardevCommon when type is "null"data: ChardevMux when type is "mux"data: ChardevCommon when type is "msmouse"data: ChardevCommon when type is "wctablet"data: ChardevCommon when type is "braille"data: ChardevCommon when type is "testdev"data: ChardevStdio when type is "stdio"data: ChardevCommon when type is "console"data: ChardevSpiceChannel when type is "spicevmc"data: ChardevSpicePort when type is "spiceport"data: ChardevVC when type is "vc"data: ChardevRingbuf when type is "ringbuf"data: ChardevRingbuf when type is "memory"Since: 1.4 (testdev since 2.2, wctablet since 2.9)
Return info about the chardev backend just created.
Members:
pty: string (optional)name of the slave pseudoterminal device, present if and only if a chardev of type ’pty’ was created
Since: 1.4
Add a character device backend
Arguments:
id: stringthe chardev’s ID, must be unique
backend: ChardevBackendbackend type and parameters
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" } }
Change a character device backend
Arguments:
id: stringthe chardev’s ID, must exist
backend: ChardevBackendnew backend type and parameters
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": {}}
Remove a character device backend
Arguments:
id: stringthe chardev’s ID, must exist and not be in use
Returns: Nothing on success
Since: 1.4
Example:
-> { "execute": "chardev-remove", "arguments": { "id" : "foo" } }
<- { "return": {} }
Send a break to a character device
Arguments:
id: stringthe chardev’s ID, must exist
Returns: Nothing on success
Since: 2.10
Example:
-> { "execute": "chardev-send-break", "arguments": { "id" : "foo" } }
<- { "return": {} }
Emitted when the guest opens or closes a virtio-serial port.
Arguments:
id: stringdevice identifier of the virtio-serial port
open: booleantrue if the guest has opened the virtio-serial port
Since: 2.1
Example:
<- { "event": "VSERPORT_CHANGE",
"data": { "id": "channel0", "open": true },
"timestamp": { "seconds": 1401385907, "microseconds": 422329 } }
Sets the link status of a virtual network adapter.
Arguments:
name: stringthe device name of the virtual network adapter
up: booleantrue to set the link status to be up
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": {} }
Add a network backend.
Arguments:
type: stringthe type of network backend. Possible values are listed in NetClientDriver (excluding ’none’ and ’nic’)
id: stringthe name of the new network backend
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": {} }
Remove a network backend.
Arguments:
id: stringthe name of the network backend to remove
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": {} }
Use it alone to have zero network devices.
Since: 1.2
Create a new Network Interface Card.
Members:
netdev: string (optional)id of -netdev to connect to
macaddr: string (optional)MAC address
model: string (optional)device model (e1000, rtl8139, virtio etc.)
addr: string (optional)PCI device address
vectors: int (optional)number of MSI-x vectors, 0 to disable MSI-X
Since: 1.2
Use the user mode network stack which requires no administrator privilege to run.
Members:
hostname: string (optional)client hostname reported by the builtin DHCP server
restrict: boolean (optional)isolate the guest from the host
ipv4: boolean (optional)whether to support IPv4, default true for enabled (since 2.6)
ipv6: boolean (optional)whether to support IPv6, default true for enabled (since 2.6)
ip: string (optional)legacy parameter, use net= instead
net: string (optional)IP network address that the guest will see, in the form addr[/netmask] The netmask is optional, and can be either in the form a.b.c.d or as a number of valid top-most bits. Default is 10.0.2.0/24.
host: string (optional)guest-visible address of the host
tftp: string (optional)root directory of the built-in TFTP server
bootfile: string (optional)BOOTP filename, for use with tftp=
dhcpstart: string (optional)the first of the 16 IPs the built-in DHCP server can assign
dns: string (optional)guest-visible address of the virtual nameserver
dnssearch: array of String (optional)list of DNS suffixes to search, passed as DHCP option to the guest
ipv6-prefix: string (optional)IPv6 network prefix (default is fec0::) (since 2.6). The network prefix is given in the usual hexadecimal IPv6 address notation.
ipv6-prefixlen: int (optional)IPv6 network prefix length (default is 64) (since 2.6)
ipv6-host: string (optional)guest-visible IPv6 address of the host (since 2.6)
ipv6-dns: string (optional)guest-visible IPv6 address of the virtual nameserver (since 2.6)
smb: string (optional)root directory of the built-in SMB server
smbserver: string (optional)IP address of the built-in SMB server
hostfwd: array of String (optional)redirect incoming TCP or UDP host connections to guest endpoints
guestfwd: array of String (optional)forward guest TCP connections
Since: 1.2
Connect the host TAP network interface name to the VLAN.
Members:
ifname: string (optional)interface name
fd: string (optional)file descriptor of an already opened tap
fds: string (optional)multiple file descriptors of already opened multiqueue capable tap
script: string (optional)script to initialize the interface
downscript: string (optional)script to shut down the interface
br: string (optional)bridge name (since 2.8)
helper: string (optional)command to execute to configure bridge
sndbuf: int (optional)send buffer limit. Understands [TGMKkb] suffixes.
vnet_hdr: boolean (optional)enable the IFF_VNET_HDR flag on the tap interface
vhost: boolean (optional)enable vhost-net network accelerator
vhostfd: string (optional)file descriptor of an already opened vhost net device
vhostfds: string (optional)file descriptors of multiple already opened vhost net devices
vhostforce: boolean (optional)vhost on for non-MSIX virtio guests
queues: int (optional)number of queues to be created for multiqueue capable tap
poll-us: int (optional)maximum number of microseconds that could be spent on busy polling for tap (since 2.7)
Since: 1.2
Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP socket connection.
Members:
fd: string (optional)file descriptor of an already opened socket
listen: string (optional)port number, and optional hostname, to listen on
connect: string (optional)port number, and optional hostname, to connect to
mcast: string (optional)UDP multicast address and port number
localaddr: string (optional)source address and port for multicast and udp packets
udp: string (optional)UDP unicast address and port number
Since: 1.2
Connect the VLAN to Ethernet over L2TPv3 Static tunnel
Members:
src: stringsource address
dst: stringdestination address
srcport: string (optional)source port - mandatory for udp, optional for ip
dstport: string (optional)destination port - mandatory for udp, optional for ip
ipv6: boolean (optional)force the use of ipv6
udp: boolean (optional)use the udp version of l2tpv3 encapsulation
cookie64: boolean (optional)use 64 bit coookies
counter: boolean (optional)have sequence counter
pincounter: boolean (optional)pin sequence counter to zero - workaround for buggy implementations or networks with packet reorder
txcookie: int (optional)32 or 64 bit transmit cookie
rxcookie: int (optional)32 or 64 bit receive cookie
txsession: int32 bit transmit session
rxsession: int (optional)32 bit receive session - if not specified set to the same value as transmit
offset: int (optional)additional offset - allows the insertion of additional application-specific data before the packet payload
Since: 2.1
Connect the VLAN to a vde switch running on the host.
Members:
sock: string (optional)socket path
port: int (optional)port number
group: string (optional)group owner of socket
mode: int (optional)permissions for socket
Since: 1.2
Connect a host TAP network interface to a host bridge device.
Members:
br: string (optional)bridge name
helper: string (optional)command to execute to configure bridge
Since: 1.2
Connect two or more net clients through a software hub.
Members:
hubid: inthub identifier number
netdev: string (optional)used to connect hub to a netdev instead of a device (since 2.12)
Since: 1.2
Connect a client to a netmap-enabled NIC or to a VALE switch port
Members:
ifname: stringEither the name of an existing network interface supported by netmap, or the name of a VALE port (created on the fly). A VALE port name is in the form ’valeXXX:YYY’, where XXX and YYY are non-negative integers. XXX identifies a switch and YYY identifies a port of the switch. VALE ports having the same XXX are therefore connected to the same switch.
devname: string (optional)path of the netmap device (default: ’/dev/netmap’).
Since: 2.0
Vhost-user network backend
Members:
chardev: stringname of a unix socket chardev
vhostforce: boolean (optional)vhost on for non-MSIX virtio guests (default: false).
queues: int (optional)number of queues to be created for multiqueue vhost-user (default: 1) (Since 2.5)
Since: 2.1
Available netdev drivers.
Values:
noneNot documented
nicNot documented
userNot documented
tapNot documented
l2tpv3Not documented
socketNot documented
vdeNot documented
bridgeNot documented
hubportNot documented
netmapNot documented
vhost-userNot documented
Since: 2.7
’dump’ - removed with 2.12
Captures the configuration of a network device.
Members:
id: stringidentifier for monitor commands.
type: NetClientDriverSpecify the driver used for interpreting remaining arguments.
NetdevNoneOptions when type is "none"NetLegacyNicOptions when type is "nic"NetdevUserOptions when type is "user"NetdevTapOptions when type is "tap"NetdevL2TPv3Options when type is "l2tpv3"NetdevSocketOptions when type is "socket"NetdevVdeOptions when type is "vde"NetdevBridgeOptions when type is "bridge"NetdevHubPortOptions when type is "hubport"NetdevNetmapOptions when type is "netmap"NetdevVhostUserOptions when type is "vhost-user"Since: 1.2
’l2tpv3’ - since 2.1
Captures the configuration of a network device; legacy.
Members:
vlan: int (optional)vlan number
id: string (optional)identifier for monitor commands
name: string (optional)identifier for monitor commands, ignored if id is present
opts: NetLegacyOptionsdevice type specific properties (legacy)
Since: 1.2
Values:
noneNot documented
nicNot documented
userNot documented
tapNot documented
l2tpv3Not documented
socketNot documented
vdeNot documented
bridgeNot documented
netmapNot documented
vhost-userNot documented
Since: 1.2
Like Netdev, but for use only by the legacy command line options
Members:
type: NetLegacyOptionsTypeNot documented
NetdevNoneOptions when type is "none"NetLegacyNicOptions when type is "nic"NetdevUserOptions when type is "user"NetdevTapOptions when type is "tap"NetdevL2TPv3Options when type is "l2tpv3"NetdevSocketOptions when type is "socket"NetdevVdeOptions when type is "vde"NetdevBridgeOptions when type is "bridge"NetdevNetmapOptions when type is "netmap"NetdevVhostUserOptions when type is "vhost-user"Since: 1.2
Indicates whether a netfilter is attached to a netdev’s transmit queue or receive queue or both.
Values:
allthe filter is attached both to the receive and the transmit queue of the netdev (default).
rxthe filter is attached to the receive queue of the netdev, where it will receive packets sent to the netdev.
txthe filter is attached to the transmit queue of the netdev, where it will receive packets sent by the netdev.
Since: 2.5
Packets receiving state
Values:
normalfilter assigned packets according to the mac-table
nonedon’t receive any assigned packet
allreceive all assigned packets
Since: 1.6
Rx-filter information for a NIC.
Members:
name: stringnet client name
promiscuous: booleanwhether promiscuous mode is enabled
multicast: RxStatemulticast receive state
unicast: RxStateunicast receive state
vlan: RxStatevlan receive state (Since 2.0)
broadcast-allowed: booleanwhether to receive broadcast
multicast-overflow: booleanmulticast table is overflowed or not
unicast-overflow: booleanunicast table is overflowed or not
main-mac: stringthe main macaddr string
vlan-table: array of inta list of active vlan id
unicast-table: array of stringa list of unicast macaddr string
multicast-table: array of stringa list of multicast macaddr string
Since: 1.6
Return rx-filter information for all NICs (or for the given NIC).
Arguments:
name: string (optional)net client name
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
}
]
}
Emitted once until the ’query-rx-filter’ command is executed, the first event will always be emitted
Arguments:
name: string (optional)net client name
path: stringdevice path
Since: 1.6
Example:
<- { "event": "NIC_RX_FILTER_CHANGED",
"data": { "name": "vnet0",
"path": "/machine/peripheral/vnet0/virtio-backend" },
"timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
}
Rocker switch information.
Members:
name: stringswitch name
id: intswitch ID
ports: intnumber of front-panel ports
Since: 2.4
Return rocker switch information.
Arguments:
name: stringNot documented
Returns:
Rocker information
Since: 2.4
Example:
-> { "execute": "query-rocker", "arguments": { "name": "sw1" } }
<- { "return": {"name": "sw1", "ports": 2, "id": 1327446905938}}
An eumeration of port duplex states.
Values:
halfhalf duplex
fullfull duplex
Since: 2.4
An eumeration of port autoneg states.
Values:
offautoneg is off
onautoneg is on
Since: 2.4
Rocker switch port information.
Members:
name: stringport name
enabled: booleanport is enabled for I/O
link-up: booleanphysical link is UP on port
speed: intport link speed in Mbps
duplex: RockerPortDuplexport link duplex
autoneg: RockerPortAutonegport link autoneg
Since: 2.4
Return rocker switch port information.
Arguments:
name: stringNot documented
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}
]}
Rocker switch OF-DPA flow key
Members:
priority: intkey priority, 0 being lowest priority
tbl-id: intflow table ID
in-pport: int (optional)physical input port
tunnel-id: int (optional)tunnel ID
vlan-id: int (optional)VLAN ID
eth-type: int (optional)Ethernet header type
eth-src: string (optional)Ethernet header source MAC address
eth-dst: string (optional)Ethernet header destination MAC address
ip-proto: int (optional)IP Header protocol field
ip-tos: int (optional)IP header TOS field
ip-dst: string (optional)IP header destination address
Note: optional members may or may not appear in the flow key depending if they’re relevant to the flow key.
Since: 2.4
Rocker switch OF-DPA flow mask
Members:
in-pport: int (optional)physical input port
tunnel-id: int (optional)tunnel ID
vlan-id: int (optional)VLAN ID
eth-src: string (optional)Ethernet header source MAC address
eth-dst: string (optional)Ethernet header destination MAC address
ip-proto: int (optional)IP Header protocol field
ip-tos: int (optional)IP header TOS field
Note: optional members may or may not appear in the flow mask depending if they’re relevant to the flow mask.
Since: 2.4
Rocker switch OF-DPA flow action
Members:
goto-tbl: int (optional)next table ID
group-id: int (optional)group ID
tunnel-lport: int (optional)tunnel logical port ID
vlan-id: int (optional)VLAN ID
new-vlan-id: int (optional)new VLAN ID
out-pport: int (optional)physical output port
Note: optional members may or may not appear in the flow action depending if they’re relevant to the flow action.
Since: 2.4
Rocker switch OF-DPA flow
Members:
cookie: intflow unique cookie ID
hits: intcount of matches (hits) on flow
key: RockerOfDpaFlowKeyflow key
mask: RockerOfDpaFlowMaskflow mask
action: RockerOfDpaFlowActionflow action
Since: 2.4
Return rocker OF-DPA flow information.
Arguments:
name: stringswitch name
tbl-id: int (optional)flow table ID. If tbl-id is not specified, returns flow information for all tables.
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...},
]}
Rocker switch OF-DPA group
Members:
id: intgroup unique ID
type: intgroup type
vlan-id: int (optional)VLAN ID
pport: int (optional)physical port number
index: int (optional)group index, unique with group type
out-pport: int (optional)output physical port number
group-id: int (optional)next group ID
set-vlan-id: int (optional)VLAN ID to set
pop-vlan: int (optional)pop VLAN headr from packet
group-ids: array of int (optional)list of next group IDs
set-eth-src: string (optional)set source MAC address in Ethernet header
set-eth-dst: string (optional)set destination MAC address in Ethernet header
ttl-check: int (optional)perform TTL check
Note: optional members may or may not appear in the group depending if they’re relevant to the group type.
Since: 2.4
Return rocker OF-DPA group information.
Arguments:
name: stringswitch name
type: int (optional)group type. If type is not specified, returns group information for all group types.
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}
]}
An enumeration of TPM models
Values:
tpm-tisTPM TIS model
tpm-crbTPM CRB model (since 2.12)
Since: 1.5
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" ] }
An enumeration of TPM types
Values:
passthroughTPM passthrough type
emulatorSoftware Emulator TPM type Since: 2.11
Since: 1.5
Return a list of supported TPM types
Returns: a list of TpmType
Since: 1.5
Example:
-> { "execute": "query-tpm-types" }
<- { "return": [ "passthrough", "emulator" ] }
Information about the TPM passthrough type
Members:
path: string (optional)string describing the path used for accessing the TPM device
cancel-path: string (optional)string showing the TPM’s sysfs cancel file for cancellation of TPM commands while they are executing
Since: 1.5
Information about the TPM emulator type
Members:
chardev: stringName of a unix socket chardev
Since: 2.11
A union referencing different TPM backend types’ configuration options
Members:
type’passthrough’ The configuration options for the TPM passthrough type ’emulator’ The configuration options for TPM emulator backend type
data: TPMPassthroughOptions when type is "passthrough"data: TPMEmulatorOptions when type is "emulator"Since: 1.5
Information about the TPM
Members:
id: stringThe Id of the TPM
model: TpmModelThe TPM frontend model
options: TpmTypeOptionsThe TPM (backend) type configuration options
Since: 1.5
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"
}
]
}
Sets the password of a remote display session.
Arguments:
protocol: string‘vnc’ to modify the VNC server password ‘spice’ to modify the Spice server password
password: stringthe new password
connected: string (optional)how to handle existing clients when changing the password. If nothing is specified, defaults to ‘keep’ ‘fail’ to fail the command if clients are connected ‘disconnect’ to disconnect existing clients ‘keep’ to maintain existing clients
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 the password of a remote display server.
Arguments:
protocol: stringthe name of the remote display protocol ‘vnc’ or ‘spice’
time: stringwhen to expire the password. ‘now’ to expire the password immediately ‘never’ to cancel password expiration ‘+INT’ where INT is the number of seconds from now (integer) ‘INT’ where INT is the absolute time in seconds
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": {} }
Write a PPM of the VGA screen to a file.
Arguments:
filename: stringthe path of a new PPM file to store the image
device: string (optional)ID of the display device that should be dumped. If this parameter is missing, the primary display will be used. (Since 2.12)
head: int (optional)head to use in case the device supports multiple heads. If this parameter is missing, head #0 will be used. Also note that the head can only be specified in conjunction with the device ID. (Since 2.12)
Returns: Nothing on success
Since: 0.14.0
Example:
-> { "execute": "screendump",
"arguments": { "filename": "/tmp/image" } }
<- { "return": {} }
The basic information for SPICE network connection
Members:
host: stringIP address
port: stringport number
family: NetworkAddressFamilyaddress family
Since: 2.1
Information about a SPICE server
Members:
auth: string (optional)authentication method
SpiceBasicInfoSince: 2.1
Information about a SPICE client channel.
Members:
connection-id: intSPICE connection id number. All channels with the same id belong to the same SPICE session.
channel-type: intSPICE channel type number. "1" is the main control channel, filter for this one if you want to track spice sessions only
channel-id: intSPICE channel ID number. Usually "0", might be different when multiple channels of the same type exist, such as multiple display channels in a multihead setup
tls: booleantrue if the channel is encrypted, false otherwise.
SpiceBasicInfoSince: 0.14.0
An enumeration of Spice mouse states.
Values:
clientMouse cursor position is determined by the client.
serverMouse cursor position is determined by the server.
unknownNo information is available about mouse mode used by the spice server.
Note: spice/enums.h has a SpiceMouseMode already, hence the name.
Since: 1.1
Information about the SPICE session.
Members:
enabled: booleantrue if the SPICE server is enabled, false otherwise
migrated: booleantrue if the last guest migration completed and spice migration had completed as well. false otherwise. (since 1.4)
host: string (optional)The hostname the SPICE server is bound to. This depends on the name resolution on the host and may be an IP address.
port: int (optional)The SPICE server’s port number.
compiled-version: string (optional)SPICE server version.
tls-port: int (optional)The SPICE server’s TLS port number.
auth: string (optional)the current authentication type used by the server ’none’ if no authentication is being used ’spice’ uses SASL or direct TLS authentication, depending on command line options
mouse-mode: SpiceQueryMouseModeThe mode in which the mouse cursor is displayed currently. Can be determined by the client or the server, or unknown if spice server doesn’t provide this information. (since: 1.1)
channels: array of SpiceChannel (optional)a list of SpiceChannel for each active spice channel
Since: 0.14.0
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 ... ]
]
}
}
Emitted when a SPICE client establishes a connection
Arguments:
server: SpiceBasicInfoserver information
client: SpiceBasicInfoclient information
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"}
}}
Emitted after initial handshake and authentication takes place (if any) and the SPICE channel is up and running
Arguments:
server: SpiceServerInfoserver information
client: SpiceChannelclient information
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}
}}
Emitted when the SPICE connection is closed
Arguments:
server: SpiceBasicInfoserver information
client: SpiceBasicInfoclient information
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"}
}}
Emitted when SPICE migration has completed
Since: 1.3
Example:
<- { "timestamp": {"seconds": 1290688046, "microseconds": 417172},
"event": "SPICE_MIGRATE_COMPLETED" }
The basic information for vnc network connection
Members:
host: stringIP address
service: stringThe service name of the vnc port. This may depend on the host system’s service database so symbolic names should not be relied on.
family: NetworkAddressFamilyaddress family
websocket: booleantrue in case the socket is a websocket (since 2.3).
Since: 2.1
The network connection information for server
Members:
auth: string (optional)authentication method used for the plain (non-websocket) VNC server
VncBasicInfoSince: 2.1
Information about a connected VNC client.
Members:
x509_dname: string (optional)If x509 authentication is in use, the Distinguished Name of the client.
sasl_username: string (optional)If SASL authentication is in use, the SASL username used for authentication.
VncBasicInfoSince: 0.14.0
Information about the VNC session.
Members:
enabled: booleantrue if the VNC server is enabled, false otherwise
host: string (optional)The hostname the VNC server is bound to. This depends on the name resolution on the host and may be an IP address.
family: NetworkAddressFamily (optional)’ipv6’ if the host is listening for IPv6 connections ’ipv4’ if the host is listening for IPv4 connections ’unix’ if the host is listening on a unix domain socket ’unknown’ otherwise
service: string (optional)The service name of the server’s port. This may depends on the host system’s service database so symbolic names should not be relied on.
auth: string (optional)the current authentication type used by the server ’none’ if no authentication is being used ’vnc’ if VNC authentication is being used ’vencrypt+plain’ if VEncrypt is used with plain text authentication ’vencrypt+tls+none’ if VEncrypt is used with TLS and no authentication ’vencrypt+tls+vnc’ if VEncrypt is used with TLS and VNC authentication ’vencrypt+tls+plain’ if VEncrypt is used with TLS and plain text auth ’vencrypt+x509+none’ if VEncrypt is used with x509 and no auth ’vencrypt+x509+vnc’ if VEncrypt is used with x509 and VNC auth ’vencrypt+x509+plain’ if VEncrypt is used with x509 and plain text auth ’vencrypt+tls+sasl’ if VEncrypt is used with TLS and SASL auth ’vencrypt+x509+sasl’ if VEncrypt is used with x509 and SASL auth
clients: array of VncClientInfo (optional)a list of VncClientInfo of all currently connected clients
Since: 0.14.0
vnc primary authentication method.
Values:
noneNot documented
vncNot documented
ra2Not documented
ra2neNot documented
tightNot documented
ultraNot documented
tlsNot documented
vencryptNot documented
saslNot documented
Since: 2.3
vnc sub authentication method with vencrypt.
Values:
plainNot documented
tls-noneNot documented
x509-noneNot documented
tls-vncNot documented
x509-vncNot documented
tls-plainNot documented
x509-plainNot documented
tls-saslNot documented
x509-saslNot documented
Since: 2.3
The network connection information for server
Members:
auth: VncPrimaryAuthThe current authentication type used by the servers
vencrypt: VncVencryptSubAuth (optional)The vencrypt sub authentication type used by the servers, only specified in case auth == vencrypt.
VncBasicInfoSince: 2.9
Information about a vnc server
Members:
id: stringvnc server name.
server: array of VncServerInfo2A list of VncBasincInfo describing all listening sockets.
The list can be empty (in case the vnc server is disabled).
It also may have multiple entries: normal + websocket,
possibly also ipv4 + ipv6 in the future.
clients: array of VncClientInfoA list of VncClientInfo of all currently connected clients.
The list can be empty, for obvious reasons.
auth: VncPrimaryAuthThe current authentication type used by the non-websockets servers
vencrypt: VncVencryptSubAuth (optional)The vencrypt authentication type used by the servers, only specified in case auth == vencrypt.
display: string (optional)The display device the vnc server is linked to.
Since: 2.3
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"
}
]
}
}
Returns a list of vnc servers. The list can be empty.
Returns:
a list of VncInfo2
Since: 2.3
Change the VNC server password.
Arguments:
password: stringthe new password to use with VNC authentication
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.
Emitted when a VNC client establishes a connection
Arguments:
server: VncServerInfoserver information
client: VncBasicInfoclient information
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 } }
Emitted after authentication takes place (if any) and the VNC session is made active
Arguments:
server: VncServerInfoserver information
client: VncClientInfoclient information
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 } }
Emitted when the connection is closed
Arguments:
server: VncServerInfoserver information
client: VncClientInfoclient information
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 } }
Information about a mouse device.
Members:
name: stringthe name of the mouse device
index: intthe index of the mouse device
current: booleantrue if this device is currently receiving mouse events
absolute: booleantrue if this device supports absolute coordinates as input
Since: 0.14.0
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
}
]
}
An enumeration of key name.
This is used by the send-key command.
Values:
unmappedsince 2.0
pausesince 2.0
rosince 2.4
kp_commasince 2.4
kp_equalssince 2.6
powersince 2.6
hiraganasince 2.9
henkansince 2.9
yensince 2.9
sleepsince 2.10
wakesince 2.10
audionextsince 2.10
audioprevsince 2.10
audiostopsince 2.10
audioplaysince 2.10
audiomutesince 2.10
volumeupsince 2.10
volumedownsince 2.10
mediaselectsince 2.10
mailsince 2.10
calculatorsince 2.10
computersince 2.10
ac_homesince 2.10
ac_backsince 2.10
ac_forwardsince 2.10
ac_refreshsince 2.10
ac_bookmarkssince 2.10 altgr, altgr_r: dropped in 2.10
muhenkansince 2.12
katakanahiraganasince 2.12
shiftNot documented
shift_rNot documented
altNot documented
alt_rNot documented
ctrlNot documented
ctrl_rNot documented
menuNot documented
escNot documented
1Not documented
2Not documented
3Not documented
4Not documented
5Not documented
6Not documented
7Not documented
8Not documented
9Not documented
0Not documented
minusNot documented
equalNot documented
backspaceNot documented
tabNot documented
qNot documented
wNot documented
eNot documented
rNot documented
tNot documented
yNot documented
uNot documented
iNot documented
oNot documented
pNot documented
bracket_leftNot documented
bracket_rightNot documented
retNot documented
aNot documented
sNot documented
dNot documented
fNot documented
gNot documented
hNot documented
jNot documented
kNot documented
lNot documented
semicolonNot documented
apostropheNot documented
grave_accentNot documented
backslashNot documented
zNot documented
xNot documented
cNot documented
vNot documented
bNot documented
nNot documented
mNot documented
commaNot documented
dotNot documented
slashNot documented
asteriskNot documented
spcNot documented
caps_lockNot documented
f1Not documented
f2Not documented
f3Not documented
f4Not documented
f5Not documented
f6Not documented
f7Not documented
f8Not documented
f9Not documented
f10Not documented
num_lockNot documented
scroll_lockNot documented
kp_divideNot documented
kp_multiplyNot documented
kp_subtractNot documented
kp_addNot documented
kp_enterNot documented
kp_decimalNot documented
sysrqNot documented
kp_0Not documented
kp_1Not documented
kp_2Not documented
kp_3Not documented
kp_4Not documented
kp_5Not documented
kp_6Not documented
kp_7Not documented
kp_8Not documented
kp_9Not documented
lessNot documented
f11Not documented
f12Not documented
printNot documented
homeNot documented
pgupNot documented
pgdnNot documented
endNot documented
leftNot documented
upNot documented
downNot documented
rightNot documented
insertNot documented
deleteNot documented
stopNot documented
againNot documented
propsNot documented
undoNot documented
frontNot documented
copyNot documented
openNot documented
pasteNot documented
findNot documented
cutNot documented
lfNot documented
helpNot documented
meta_lNot documented
meta_rNot documented
composeNot documented
’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
Represents a keyboard key.
Members:
typeOne of "number", "qcode"
data: int when type is "number"data: QKeyCode when type is "qcode"Since: 1.3.0
Send keys to guest.
Arguments:
keys: array of KeyValueAn array of KeyValue elements. All KeyValues in this array are
simultaneously sent to the guest. A KeyValue.number value is sent
directly to the guest, while KeyValue.qcode must be a valid
QKeyCode value
hold-time: int (optional)time to delay key up events, milliseconds. Defaults to 100
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": {} }
Button of a pointer input device (mouse, tablet).
Values:
sidefront side button of a 5-button mouse (since 2.9)
extrarear side button of a 5-button mouse (since 2.9)
leftNot documented
middleNot documented
rightNot documented
wheel-upNot documented
wheel-downNot documented
Since: 2.0
Position axis of a pointer input device (mouse, tablet).
Values:
xNot documented
yNot documented
Since: 2.0
Keyboard input event.
Members:
key: KeyValueWhich key this event is for.
down: booleanTrue for key-down and false for key-up events.
Since: 2.0
Pointer button input event.
Members:
button: InputButtonWhich button this event is for.
down: booleanTrue for key-down and false for key-up events.
Since: 2.0
Pointer motion input event.
Members:
axis: InputAxisWhich axis is referenced by value.
value: intPointer position. For absolute coordinates the valid range is 0 -> 0x7ffff
Since: 2.0
Input event union.
Members:
typethe input type, one of:
data: InputKeyEvent when type is "key"data: InputBtnEvent when type is "btn"data: InputMoveEvent when type is "rel"data: InputMoveEvent when type is "abs"Since: 2.0
Send input event(s) to guest.
Arguments:
device: string (optional)display device to send event(s) to.
head: int (optional)head to send event(s) to, in case the display device supports multiple scanouts.
events: array of InputEventList of InputEvent union.
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": {} }
Empty struct for displays without config options.
Since: 2.12
GTK display options.
Members:
grab-on-hover: boolean (optional)Grab keyboard input on mouse hover.
Since: 2.12
Display (user interface) type.
Values:
defaultNot documented
noneNot documented
gtkNot documented
sdlNot documented
egl-headlessNot documented
cursesNot documented
cocoaNot documented
Since: 2.12
Display (user interface) options.
Members:
type: DisplayTypeWhich DisplayType qemu should use.
full-screen: boolean (optional)Start user interface in fullscreen mode (default: off).
window-close: boolean (optional)Allow to quit qemu with window close button (default: on).
gl: boolean (optional)Enable OpenGL support (default: off).
DisplayNoOpts when type is "default"DisplayNoOpts when type is "none"DisplayGTK when type is "gtk"DisplayNoOpts when type is "sdl"DisplayNoOpts when type is "egl-headless"DisplayNoOpts when type is "curses"DisplayNoOpts when type is "cocoa"Since: 2.12
Detailed migration status.
Members:
transferred: intamount of bytes already transferred to the target VM
remaining: intamount of bytes remaining to be transferred to the target VM
total: inttotal amount of bytes involved in the migration process
duplicate: intnumber of duplicate (zero) pages (since 1.2)
skipped: intnumber of skipped zero pages (since 1.5)
normal: intnumber of normal pages (since 1.2)
normal-bytes: intnumber of normal bytes sent (since 1.2)
dirty-pages-rate: intnumber of pages dirtied by second by the guest (since 1.3)
mbps: numberthroughput in megabits/sec. (since 1.6)
dirty-sync-count: intnumber of times that dirty ram was synchronized (since 2.1)
postcopy-requests: intThe number of page requests received from the destination (since 2.7)
page-size: intThe number of bytes per page for the various page-based statistics (since 2.10)
Since: 0.14.0
Detailed XBZRLE migration cache statistics
Members:
cache-size: intXBZRLE cache size
bytes: intamount of bytes already transferred to the target VM
pages: intamount of pages transferred to the target VM
cache-miss: intnumber of cache miss
cache-miss-rate: numberrate of cache miss (since 2.1)
overflow: intnumber of overflows
Since: 1.2
An enumeration of migration status.
Values:
noneno migration has ever happened.
setupmigration process has been initiated.
cancellingin the process of cancelling migration.
cancelledcancelling migration is finished.
activein the process of doing migration.
postcopy-activelike active, but now in postcopy mode. (since 2.5)
completedmigration is finished.
failedsome error occurred during migration process.
coloVM is in the process of fault tolerance, VM can not get into this state unless colo capability is enabled for migration. (since 2.8)
pre-switchoverPaused before device serialisation. (since 2.11)
deviceDuring device serialisation when pause-before-switchover is enabled (since 2.11)
Since: 2.3
Information about current migration process.
Members:
status: MigrationStatus (optional)MigrationStatus describing the current migration status.
If this field is not returned, no migration process
has been initiated
ram: MigrationStats (optional)MigrationStats containing detailed migration
status, only returned if status is ’active’ or
’completed’(since 1.2)
disk: MigrationStats (optional)MigrationStats containing detailed disk migration
status, only returned if status is ’active’ and it is a block
migration
xbzrle-cache: XBZRLECacheStats (optional)XBZRLECacheStats containing detailed XBZRLE
migration statistics, only returned if XBZRLE feature is on and
status is ’active’ or ’completed’ (since 1.2)
total-time: int (optional)total amount of milliseconds since migration started. If migration has ended, it returns the total migration time. (since 1.2)
downtime: int (optional)only present when migration finishes correctly total downtime in milliseconds for the guest. (since 1.3)
expected-downtime: int (optional)only present while migration is active expected downtime in milliseconds for the guest in last walk of the dirty bitmap. (since 1.3)
setup-time: int (optional)amount of setup time in milliseconds before the iterations begin but after the QMP command is issued. This is designed to provide an accounting of any activities (such as RDMA pinning) which may be expensive, but do not actually occur during the iterative migration rounds themselves. (since 1.6)
cpu-throttle-percentage: int (optional)percentage of time guest cpus are being throttled during auto-converge. This is only present when auto-converge has started throttling guest cpus. (Since 2.7)
error-desc: string (optional)the human readable error description string, when
status is ’failed’. Clients should not attempt to parse the
error strings. (Since 2.7)
Since: 0.14.0
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",
"ram":{
"transferred":123,
"remaining":123,
"total":246,
"total-time":12345,
"setup-time":12345,
"downtime":12345,
"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",
"ram":{
"transferred":123,
"remaining":123,
"total":246,
"total-time":12345,
"setup-time":12345,
"expected-downtime":12345,
"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",
"ram":{
"total":1057024,
"remaining":1053304,
"transferred":3720,
"total-time":12345,
"setup-time":12345,
"expected-downtime":12345,
"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",
"capabilities" : [ { "capability": "xbzrle", "state" : true } ],
"ram":{
"total":1057024,
"remaining":1053304,
"transferred":3720,
"total-time":12345,
"setup-time":12345,
"expected-downtime":12345,
"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
}
}
}
Migration capabilities enumeration
Values:
xbzrleMigration supports xbzrle (Xor Based Zero Run Length Encoding). This feature allows us to minimize migration traffic for certain work loads, by sending compressed difference of the pages
rdma-pin-allControls whether or not the entire VM memory footprint is mlock()’d on demand or all at once. Refer to docs/rdma.txt for usage. Disabled by default. (since 2.0)
zero-blocksDuring storage migration encode blocks of zeroes efficiently. This essentially saves 1MB of zeroes per block on the wire. Enabling requires source and target VM to support this feature. To enable it is sufficient to enable the capability on the source VM. The feature is disabled by default. (since 1.6)
compressUse multiple compression threads to accelerate live migration. This feature can help to reduce the migration traffic, by sending compressed pages. Please note that if compress and xbzrle are both on, compress only takes effect in the ram bulk stage, after that, it will be disabled and only xbzrle takes effect, this can help to minimize migration traffic. The feature is disabled by default. (since 2.4 )
eventsgenerate events for each migration state change (since 2.4 )
auto-convergeIf enabled, QEMU will automatically throttle down the guest to speed up convergence of RAM migration. (since 1.6)
postcopy-ramStart executing on the migration target before all of RAM has been migrated, pulling the remaining pages along as needed. The capacity must have the same setting on both source and target or migration will not even start. NOTE: If the migration fails during postcopy the VM will fail. (since 2.6)
x-coloIf enabled, migration will never end, and the state of the VM on the primary side will be migrated continuously to the VM on secondary side, this process is called COarse-Grain LOck Stepping (COLO) for Non-stop Service. (since 2.8)
release-ramif enabled, qemu will free the migrated ram pages on the source during postcopy-ram migration. (since 2.9)
blockIf enabled, QEMU will also migrate the contents of all block devices. Default is disabled. A possible alternative uses mirror jobs to a builtin NBD server on the destination, which offers more flexibility. (Since 2.10)
return-pathIf enabled, migration will use the return path even for precopy. (since 2.10)
pause-before-switchoverPause outgoing migration before serialising device state and before disabling block IO (since 2.11)
x-multifdUse more than one fd for migration (since 2.11)
dirty-bitmapsIf enabled, QEMU will migrate named dirty bitmaps. (since 2.12)
Since: 1.2
Migration capability information
Members:
capability: MigrationCapabilitycapability enum
state: booleancapability state bool
Since: 1.2
Enable/Disable the following migration capabilities (like xbzrle)
Arguments:
capabilities: array of MigrationCapabilityStatusjson array of capability modifications to make
Since: 1.2
Example:
-> { "execute": "migrate-set-capabilities" , "arguments":
{ "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
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"}
]}
Migration parameters enumeration
Values:
compress-levelSet the compression level to be used in live migration, the compression level is an integer between 0 and 9, where 0 means no compression, 1 means the best compression speed, and 9 means best compression ratio which will consume more CPU.
compress-threadsSet compression thread count to be used in live migration, the compression thread count is an integer between 1 and 255.
decompress-threadsSet decompression thread count to be used in live migration, the decompression thread count is an integer between 1 and 255. Usually, decompression is at least 4 times as fast as compression, so set the decompress-threads to the number about 1/4 of compress-threads is adequate.
cpu-throttle-initialInitial percentage of time guest cpus are throttled when migration auto-converge is activated. The default value is 20. (Since 2.7)
cpu-throttle-incrementthrottle percentage increase each time auto-converge detects that migration is not making progress. The default value is 10. (Since 2.7)
tls-credsID of the ’tls-creds’ object that provides credentials for establishing a TLS connection over the migration data channel. On the outgoing side of the migration, the credentials must be for a ’client’ endpoint, while for the incoming side the credentials must be for a ’server’ endpoint. Setting this will enable TLS for all migrations. The default is unset, resulting in unsecured migration at the QEMU level. (Since 2.7)
tls-hostnamehostname of the target host for the migration. This is required when using x509 based TLS credentials and the migration URI does not already include a hostname. For example if using fd: or exec: based migration, the hostname must be provided so that the server’s x509 certificate identity can be validated. (Since 2.7)
max-bandwidthto set maximum speed for migration. maximum speed in bytes per second. (Since 2.8)
downtime-limitset maximum tolerated downtime for migration. maximum downtime in milliseconds (Since 2.8)
x-checkpoint-delayThe delay time (in ms) between two COLO checkpoints in periodic mode. (Since 2.8)
block-incrementalAffects how much storage is migrated when the block migration capability is enabled. When false, the entire storage backing chain is migrated into a flattened image at the destination; when true, only the active qcow2 layer is migrated and the destination must already have access to the same backing chain as was used on the source. (since 2.10)
x-multifd-channelsNumber of channels used to migrate data in parallel. This is the same number that the number of sockets used for migration. The default value is 2 (since 2.11)
x-multifd-page-countNumber of pages sent together to a thread. The default value is 16 (since 2.11)
xbzrle-cache-sizecache size to be used by XBZRLE migration. It needs to be a multiple of the target page size and a power of 2 (Since 2.11)
Since: 2.4
Members:
compress-level: int (optional)compression level
compress-threads: int (optional)compression thread count
decompress-threads: int (optional)decompression thread count
cpu-throttle-initial: int (optional)Initial percentage of time guest cpus are throttled when migration auto-converge is activated. The default value is 20. (Since 2.7)
cpu-throttle-increment: int (optional)throttle percentage increase each time auto-converge detects that migration is not making progress. The default value is 10. (Since 2.7)
tls-creds: StrOrNull (optional)ID of the ’tls-creds’ object that provides credentials for establishing a TLS connection over the migration data channel. On the outgoing side of the migration, the credentials must be for a ’client’ endpoint, while for the incoming side the credentials must be for a ’server’ endpoint. Setting this to a non-empty string enables TLS for all migrations. An empty string means that QEMU will use plain text mode for migration, rather than TLS (Since 2.9) Previously (since 2.7), this was reported by omitting tls-creds instead.
tls-hostname: StrOrNull (optional)hostname of the target host for the migration. This is required when using x509 based TLS credentials and the migration URI does not already include a hostname. For example if using fd: or exec: based migration, the hostname must be provided so that the server’s x509 certificate identity can be validated. (Since 2.7) An empty string means that QEMU will use the hostname associated with the migration URI, if any. (Since 2.9) Previously (since 2.7), this was reported by omitting tls-hostname instead.
max-bandwidth: int (optional)to set maximum speed for migration. maximum speed in bytes per second. (Since 2.8)
downtime-limit: int (optional)set maximum tolerated downtime for migration. maximum downtime in milliseconds (Since 2.8)
x-checkpoint-delay: int (optional)the delay time between two COLO checkpoints. (Since 2.8)
block-incremental: boolean (optional)Affects how much storage is migrated when the block migration capability is enabled. When false, the entire storage backing chain is migrated into a flattened image at the destination; when true, only the active qcow2 layer is migrated and the destination must already have access to the same backing chain as was used on the source. (since 2.10)
x-multifd-channels: int (optional)Number of channels used to migrate data in parallel. This is the same number that the number of sockets used for migration. The default value is 2 (since 2.11)
x-multifd-page-count: int (optional)Number of pages sent together to a thread. The default value is 16 (since 2.11)
xbzrle-cache-size: int (optional)cache size to be used by XBZRLE migration. It needs to be a multiple of the target page size and a power of 2 (Since 2.11)
Since: 2.4
Set various migration parameters.
Arguments: the members of MigrateSetParameters
Since: 2.4
Example:
-> { "execute": "migrate-set-parameters" ,
"arguments": { "compress-level": 1 } }
The optional members aren’t actually optional.
Members:
compress-level: int (optional)compression level
compress-threads: int (optional)compression thread count
decompress-threads: int (optional)decompression thread count
cpu-throttle-initial: int (optional)Initial percentage of time guest cpus are throttled when migration auto-converge is activated. (Since 2.7)
cpu-throttle-increment: int (optional)throttle percentage increase each time auto-converge detects that migration is not making progress. (Since 2.7)
tls-creds: string (optional)ID of the ’tls-creds’ object that provides credentials for establishing a TLS connection over the migration data channel. On the outgoing side of the migration, the credentials must be for a ’client’ endpoint, while for the incoming side the credentials must be for a ’server’ endpoint. An empty string means that QEMU will use plain text mode for migration, rather than TLS (Since 2.7) Note: 2.8 reports this by omitting tls-creds instead.
tls-hostname: string (optional)hostname of the target host for the migration. This is required when using x509 based TLS credentials and the migration URI does not already include a hostname. For example if using fd: or exec: based migration, the hostname must be provided so that the server’s x509 certificate identity can be validated. (Since 2.7) An empty string means that QEMU will use the hostname associated with the migration URI, if any. (Since 2.9) Note: 2.8 reports this by omitting tls-hostname instead.
max-bandwidth: int (optional)to set maximum speed for migration. maximum speed in bytes per second. (Since 2.8)
downtime-limit: int (optional)set maximum tolerated downtime for migration. maximum downtime in milliseconds (Since 2.8)
x-checkpoint-delay: int (optional)the delay time between two COLO checkpoints. (Since 2.8)
block-incremental: boolean (optional)Affects how much storage is migrated when the block migration capability is enabled. When false, the entire storage backing chain is migrated into a flattened image at the destination; when true, only the active qcow2 layer is migrated and the destination must already have access to the same backing chain as was used on the source. (since 2.10)
x-multifd-channels: int (optional)Number of channels used to migrate data in parallel. This is the same number that the number of sockets used for migration. The default value is 2 (since 2.11)
x-multifd-page-count: int (optional)Number of pages sent together to a thread. The default value is 16 (since 2.11)
xbzrle-cache-size: int (optional)cache size to be used by XBZRLE migration. It needs to be a multiple of the target page size and a power of 2 (Since 2.11)
Since: 2.4
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
}
}
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:
protocol: stringmust be "spice"
hostname: stringmigration target hostname
port: int (optional)spice tcp port for plaintext channels
tls-port: int (optional)spice tcp port for tls-secured channels
cert-subject: string (optional)server certificate subject
Since: 0.14.0
Example:
-> { "execute": "client_migrate_info",
"arguments": { "protocol": "spice",
"hostname": "virt42.lab.kraxel.org",
"port": 1234 } }
<- { "return": {} }
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": {} }
Emitted when a migration event happens
Arguments:
status: MigrationStatusMigrationStatus describing the current migration status.
Since: 2.4
Example:
<- {"timestamp": {"seconds": 1432121972, "microseconds": 744001},
"event": "MIGRATION",
"data": {"status": "completed"} }
Emitted from the source side of a migration at the start of each pass (when it syncs the dirty bitmap)
Arguments:
pass: intAn incrementing count (starting at 1 on the first pass)
Since: 2.6
Example:
{ "timestamp": {"seconds": 1449669631, "microseconds": 239225},
"event": "MIGRATION_PASS", "data": {"pass": 2} }
The message transmission between Primary side and Secondary side.
Values:
checkpoint-readySecondary VM (SVM) is ready for checkpointing
checkpoint-requestPrimary VM (PVM) tells SVM to prepare for checkpointing
checkpoint-replySVM gets PVM’s checkpoint request
vmstate-sendVM’s state will be sent by PVM.
vmstate-sizeThe total size of VMstate.
vmstate-receivedVM’s state has been received by SVM.
vmstate-loadedVM’s state has been loaded by SVM.
Since: 2.8
The colo mode
Values:
unknownunknown mode
primarymaster side
secondaryslave side
Since: 2.8
An enumeration of COLO failover status
Values:
noneno failover has ever happened
requiregot failover requirement but not handled
activein the process of doing failover
completedfinish the process of failover
relaunchrestart the failover process, from ’none’ -> ’completed’ (Since 2.9)
Since: 2.8
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": {} }
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": {} }
Continue migration when it’s in a paused state.
Arguments:
state: MigrationStatusThe state the migration is currently expected to be in
Returns: nothing on success
Since: 2.11
Example:
-> { "execute": "migrate-continue" , "arguments":
{ "state": "pre-switchover" } }
<- { "return": {} }
Set maximum tolerated downtime for migration.
Arguments:
value: numbermaximum downtime in seconds
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": {} }
Set maximum speed for migration.
Arguments:
value: intmaximum speed in bytes per second.
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": {} }
Set cache size to be used by XBZRLE migration
Arguments:
value: intcache size in bytes
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 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 }
Migrates the current running guest to another Virtual Machine.
Arguments:
uri: stringthe Uniform Resource Identifier of the destination VM
blk: boolean (optional)do block migration (full disk copy)
inc: boolean (optional)incremental disk copy migration
detach: boolean (optional)this argument exists only for compatibility reasons and is ignored by QEMU
Returns: nothing on success
Since: 0.14.0
Notes:
Example:
-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
<- { "return": {} }
Start an incoming migration, the qemu must have been started with -incoming defer
Arguments:
uri: stringThe Uniform Resource Identifier identifying the source or address to listen on
Returns: nothing on success
Since: 2.3
Notes:
Example:
-> { "execute": "migrate-incoming",
"arguments": { "uri": "tcp::4446" } }
<- { "return": {} }
Save the state of all devices to file. The RAM and the block devices of the VM are not saved by this command.
Arguments:
filename: stringthe file to save the state of the devices to as binary data. See xen-save-devices-state.txt for a description of the binary format.
live: boolean (optional)Optional argument to ask QEMU to treat this command as part of a live migration. Default to true. (since 2.11)
Returns: Nothing on success
Since: 1.1
Example:
-> { "execute": "xen-save-devices-state",
"arguments": { "filename": "/tmp/save" } }
<- { "return": {} }
Enable or disable replication.
Arguments:
enable: booleantrue to enable, false to disable.
primary: booleantrue for primary or false for secondary.
failover: boolean (optional)true to do failover, false to stop. but cannot be specified if ’enable’ is true. default value is false.
Returns: nothing.
Example:
-> { "execute": "xen-set-replication",
"arguments": {"enable": true, "primary": false} }
<- { "return": {} }
Since: 2.9
The result format for ’query-xen-replication-status’.
Members:
error: booleantrue if an error happened, false if replication is normal.
desc: string (optional)the human readable error description string, when
error is ’true’.
Since: 2.9
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
Xen uses this command to notify replication to trigger a checkpoint.
Returns: nothing.
Example:
-> { "execute": "xen-colo-do-checkpoint" }
<- { "return": {} }
Since: 2.9
This action can be used to test transaction failure.
Since: 1.6
An enumeration of Transactional completion modes.
Values:
individualDo not attempt to cancel any other Actions if any Actions fail after the Transaction request succeeds. All Actions that can complete successfully will do so without waiting on others. This is the default.
groupedIf any Action fails after the Transaction succeeds, cancel all Actions. Actions do not complete until all Actions are ready to complete. May be rejected by Actions that do not support this completion mode.
Since: 2.5
A discriminated record of operations that can be performed with
transaction. Action type can be:
abort: since 1.6
block-dirty-bitmap-add: since 2.5
block-dirty-bitmap-clear: since 2.5
blockdev-backup: since 2.3
blockdev-snapshot: since 2.5
blockdev-snapshot-internal-sync: since 1.7
blockdev-snapshot-sync: since 1.1
drive-backup: since 1.6
Members:
typeOne of "abort", "block-dirty-bitmap-add", "block-dirty-bitmap-clear", "blockdev-backup", "blockdev-snapshot", "blockdev-snapshot-internal-sync", "blockdev-snapshot-sync", "drive-backup"
data: Abort when type is "abort"data: BlockDirtyBitmapAdd when type is "block-dirty-bitmap-add"data: BlockDirtyBitmap when type is "block-dirty-bitmap-clear"data: BlockdevBackup when type is "blockdev-backup"data: BlockdevSnapshot when type is "blockdev-snapshot"data: BlockdevSnapshotInternal when type is "blockdev-snapshot-internal-sync"data: BlockdevSnapshotSync when type is "blockdev-snapshot-sync"data: DriveBackup when type is "drive-backup"Since: 1.1
Optional arguments to modify the behavior of a Transaction.
Members:
completion-mode: ActionCompletionMode (optional)Controls how jobs launched asynchronously by
Actions will complete or fail as a group.
See ActionCompletionMode for details.
Since: 2.5
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:
actions: array of TransactionActionList of TransactionAction;
information needed for the respective operations.
properties: TransactionProperties (optional)structure of additional options to control the
execution of the transaction. See TransactionProperties
for additional detail.
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": {} }
State of a tracing event.
Values:
unavailableThe event is statically disabled.
disabledThe event is dynamically disabled.
enabledThe event is dynamically enabled.
Since: 2.2
Information of a tracing event.
Members:
name: stringEvent name.
state: TraceEventStateTracing state.
vcpu: booleanWhether this is a per-vCPU event (since 2.7).
An event is per-vCPU if it has the "vcpu" property in the "trace-events" files.
Since: 2.2
Query the state of events.
Arguments:
name: stringEvent name pattern (case-sensitive glob).
vcpu: int (optional)The vCPU to query (any by default; since 2.7).
Returns:
a list of TraceEventInfo for the matching events
An event is returned if:
name pattern, and
vcpu is given, the event has the "vcpu" property.
Therefore, if vcpu is given, the operation will only match per-vCPU events,
returning their state on the specified vCPU. Special case: if name is an
exact match, vcpu is given and the event does not have the "vcpu" property,
an error is returned.
Since: 2.2
Example:
-> { "execute": "trace-event-get-state",
"arguments": { "name": "qemu_memalign" } }
<- { "return": [ { "name": "qemu_memalign", "state": "disabled" } ] }
Set the dynamic tracing state of events.
Arguments:
name: stringEvent name pattern (case-sensitive glob).
enable: booleanWhether to enable tracing.
ignore-unavailable: boolean (optional)Do not match unavailable events with name.
vcpu: int (optional)The vCPU to act upon (all by default; since 2.7).
An event’s state is modified if:
name pattern, and
vcpu is given, the event has the "vcpu" property.
Therefore, if vcpu is given, the operation will only match per-vCPU events,
setting their state on the specified vCPU. Special case: if name is an exact
match, vcpu is given and the event does not have the "vcpu" property, an
error is returned.
Since: 2.2
Example:
-> { "execute": "trace-event-set-state",
"arguments": { "name": "qemu_memalign", "enable": "true" } }
<- { "return": {} }
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
This is a SchemaInfo’s meta type, i.e. the kind of entity it
describes.
Values:
builtina predefined type such as ’int’ or ’bool’.
enuman enumeration type
arrayan array type
objectan object type (struct or union)
alternatean alternate type
commanda QMP command
eventa QMP event
Since: 2.5
Members:
name: stringthe entity’s name, inherited from base.
The SchemaInfo is always referenced by this name.
Commands and events have the name defined in the QAPI schema.
Unlike command and event names, type names are not part of
the wire ABI. Consequently, type names are meaningless
strings here, although they are still guaranteed unique
regardless of meta-type.
meta-type: SchemaMetaTypethe entity’s meta type, inherited from base.
SchemaInfoBuiltin when meta-type is "builtin"SchemaInfoEnum when meta-type is "enum"SchemaInfoArray when meta-type is "array"SchemaInfoObject when meta-type is "object"SchemaInfoAlternate when meta-type is "alternate"SchemaInfoCommand when meta-type is "command"SchemaInfoEvent when meta-type is "event"Additional members depend on the value of meta-type.
Since: 2.5
Additional SchemaInfo members for meta-type ’builtin’.
Members:
json-type: JSONTypethe JSON type used for this type on the wire.
Since: 2.5
The four primitive and two structured types according to RFC 7159 section 1, plus ’int’ (split off ’number’), plus the obvious top type ’value’.
Values:
stringNot documented
numberNot documented
intNot documented
booleanNot documented
nullNot documented
objectNot documented
arrayNot documented
valueNot documented
Since: 2.5
Additional SchemaInfo members for meta-type ’enum’.
Members:
values: array of stringthe enumeration type’s values, in no particular order.
Values of this type are JSON string on the wire.
Since: 2.5
Additional SchemaInfo members for meta-type ’array’.
Members:
element-type: stringthe array type’s element type.
Values of this type are JSON array on the wire.
Since: 2.5
Additional SchemaInfo members for meta-type ’object’.
Members:
members: array of SchemaInfoObjectMemberthe object type’s (non-variant) members, in no particular order.
tag: string (optional)the name of the member serving as type tag.
An element of members with this name must exist.
variants: array of SchemaInfoObjectVariant (optional)variant members, i.e. additional members that
depend on the type tag’s value. Present exactly when
tag is present. The variants are in no particular order,
and may even differ from the order of the values of the
enum type of the tag.
Values of this type are JSON object on the wire.
Since: 2.5
An object member.
Members:
name: stringthe member’s name, as defined in the QAPI schema.
type: stringthe name of the member’s type.
default: value (optional)default when used as command parameter. If absent, the parameter is mandatory. If present, the value must be null. The parameter is optional, and behavior when it’s missing is not specified here. Future extension: if present and non-null, the parameter is optional, and defaults to this value.
Since: 2.5
The variant members for a value of the type tag.
Members:
case: stringa value of the type tag.
type: stringthe name of the object type that provides the variant members
when the type tag has value case.
Since: 2.5
Additional SchemaInfo members for meta-type ’alternate’.
Members:
members: array of SchemaInfoAlternateMemberthe alternate type’s members, in no particular order. The members’ wire encoding is distinct, see docs/devel/qapi-code-gen.txt section Alternate types.
On the wire, this can be any of the members.
Since: 2.5
An alternate member.
Members:
type: stringthe name of the member’s type.
Since: 2.5
Additional SchemaInfo members for meta-type ’command’.
Members:
arg-type: stringthe name of the object type that provides the command’s parameters.
ret-type: stringthe name of the command’s result type.
allow-oob: booleanwhether the command allows out-of-band execution. (Since: 2.12)
TODO:
success-response (currently irrelevant, because it’s QGA, not QMP)
Since: 2.5
Additional SchemaInfo members for meta-type ’event’.
Members:
arg-type: stringthe name of the object type that provides the event’s parameters.
Since: 2.5
Enable QMP capabilities.
Arguments:
Arguments:
enable: array of QMPCapability (optional)An optional list of QMPCapability values to enable. The client must not enable any capability that is not mentioned in the QMP greeting message. If the field is not provided, it means no QMP capabilities will be enabled. (since 2.12)
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
Enumeration of capabilities to be advertised during initial client connection, used for agreeing on particular QMP extension behaviors.
Values:
oobQMP ability to support Out-Of-Band requests. (Please refer to qmp-spec.txt for more information on OOB)
Since: 2.12
A three-part version number.
Members:
major: intThe major version number.
minor: intThe minor version number.
micro: intThe micro version number.
Since: 2.4
A description of QEMU’s version.
Members:
qemu: VersionTripleThe version of QEMU. By current convention, a micro version of 50 signifies a development branch. A micro version greater than or equal to 90 signifies a release candidate for the next minor version. A micro version of less than 50 signifies a stable release.
package: stringQEMU will always set this field to an empty string. Downstream versions of QEMU should set this to a non-empty string. The exact format depends on the downstream however it highly recommended that a unique name is used.
Since: 0.14.0
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":""
}
}
Information about a QMP command
Members:
name: stringThe command name
Since: 0.14.0
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.
Policy for handling lost ticks in timer devices.
Values:
discardthrow away the missed tick(s) and continue with future injection normally. Guest time may be delayed, unless the OS has explicit handling of lost ticks
delaycontinue to deliver ticks at the normal rate. Guest time will be delayed due to the late tick
mergemerge the missed tick(s) into one tick and inject. Guest time may be delayed, depending on how the OS reacts to the merging of ticks
slewdeliver ticks at a higher rate to catch up with the missed tick. The guest time should not be delayed once catchup is complete.
Since: 2.0
Allow client connections for VNC, Spice and socket based character devices to be passed in to QEMU via SCM_RIGHTS.
Arguments:
protocol: stringprotocol name. Valid names are "vnc", "spice" or the name of a character device (eg. from -chardev id=XXXX)
fdname: stringfile descriptor name previously passed via ’getfd’ command
skipauth: boolean (optional)whether to skip authentication. Only applies to "vnc" and "spice" protocols
tls: boolean (optional)whether to perform TLS. Only applies to the "spice" protocol
Returns: nothing on success.
Since: 0.14.0
Example:
-> { "execute": "add_client", "arguments": { "protocol": "vnc",
"fdname": "myclient" } }
<- { "return": {} }
Guest name information.
Members:
name: string (optional)The name of the guest
Since: 0.14.0
Return the name information of a guest.
Returns:
NameInfo of the guest
Since: 0.14.0
Example:
-> { "execute": "query-name" }
<- { "return": { "name": "qemu-name" } }
Information about support for KVM acceleration
Members:
enabled: booleantrue if KVM acceleration is active
present: booleantrue if KVM acceleration is built into this executable
Since: 0.14.0
Returns information about KVM acceleration
Returns:
KvmInfo
Since: 0.14.0
Example:
-> { "execute": "query-kvm" }
<- { "return": { "enabled": true, "present": true } }
Guest UUID information (Universally Unique Identifier).
Members:
UUID: stringthe UUID of the guest
Since: 0.14.0
Notes: If no UUID was specified for the guest, a null UUID is returned.
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" } }
Information about a QMP event
Members:
name: stringThe event name
Since: 1.2.0
Return a list of supported QMP events by this server
Returns:
A list of EventInfo for all supported events
Since: 1.2.0
Example:
-> { "execute": "query-events" }
<- {
"return": [
{
"name":"SHUTDOWN"
},
{
"name":"RESET"
}
]
}
Note: This example has been shortened as the real response is too long.
An enumeration of cpu types that enable additional information during
query-cpus and query-cpus-fast.
Values:
s390since 2.12
riscvsince 2.12
x86Not documented
sparcNot documented
ppcNot documented
mipsNot documented
tricoreNot documented
otherNot documented
Since: 2.6
Information about a virtual CPU
Members:
CPU: intthe index of the virtual CPU
current: booleanthis only exists for backwards compatibility and should be ignored
halted: booleantrue if the virtual CPU is in the halt state. Halt usually refers to a processor specific low power mode.
qom_path: stringpath to the CPU object in the QOM tree (since 2.4)
thread_id: intID of the underlying host thread
props: CpuInstanceProperties (optional)properties describing to which node/socket/core/thread virtual CPU belongs to, provided if supported by board (since 2.10)
arch: CpuInfoArcharchitecture of the cpu, which determines which additional fields will be listed (since 2.6)
CpuInfoX86 when arch is "x86"CpuInfoSPARC when arch is "sparc"CpuInfoPPC when arch is "ppc"CpuInfoMIPS when arch is "mips"CpuInfoTricore when arch is "tricore"CpuInfoS390 when arch is "s390"CpuInfoRISCV when arch is "riscv"CpuInfoOther when arch is "other"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.
Additional information about a virtual i386 or x86_64 CPU
Members:
pc: intthe 64-bit instruction pointer
Since: 2.6
Additional information about a virtual SPARC CPU
Members:
pc: intthe PC component of the instruction pointer
npc: intthe NPC component of the instruction pointer
Since: 2.6
Additional information about a virtual PPC CPU
Members:
nip: intthe instruction pointer
Since: 2.6
Additional information about a virtual MIPS CPU
Members:
PC: intthe instruction pointer
Since: 2.6
Additional information about a virtual Tricore CPU
Members:
PC: intthe instruction pointer
Since: 2.6
Additional information about a virtual RISCV CPU
Members:
pc: intthe instruction pointer
Since 2.12
No additional information is available about the virtual CPU
Since: 2.6
An enumeration of cpu states that can be assumed by a virtual S390 CPU
Values:
uninitializedNot documented
stoppedNot documented
check-stopNot documented
operatingNot documented
loadNot documented
Since: 2.12
Additional information about a virtual S390 CPU
Members:
cpu-state: CpuS390Statethe virtual CPU’s state
Since: 2.12
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.
Information about a virtual CPU
Members:
cpu-index: intindex of the virtual CPU
qom-path: stringpath to the CPU object in the QOM tree
thread-id: intID of the underlying host thread
props: CpuInstanceProperties (optional)properties describing to which node/socket/core/thread virtual CPU belongs to, provided if supported by board
arch: CpuInfoArcharchitecture of the cpu, which determines which additional fields will be listed
CpuInfoOther when arch is "x86"CpuInfoOther when arch is "sparc"CpuInfoOther when arch is "ppc"CpuInfoOther when arch is "mips"CpuInfoOther when arch is "tricore"CpuInfoS390 when arch is "s390"CpuInfoOther when arch is "riscv"CpuInfoOther when arch is "other"Since: 2.12
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",
"cpu-index": 0
},
{
"thread-id": 25628,
"props": {
"core-id": 0,
"thread-id": 0,
"socket-id": 1
},
"qom-path": "/machine/unattached/device[2]",
"arch":"x86",
"cpu-index": 1
}
]
}
Information about an iothread
Members:
id: stringthe identifier of the iothread
thread-id: intID of the underlying host thread
poll-max-ns: intmaximum polling time in ns, 0 means polling is disabled (since 2.9)
poll-grow: inthow many ns will be added to polling time, 0 means that it’s not configured (since 2.9)
poll-shrink: inthow many ns will be removed from polling time, 0 means that it’s not configured (since 2.9)
Since: 2.0
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
}
]
}
Information about the guest balloon device.
Members:
actual: intthe number of bytes the balloon currently contains
Since: 0.14.0
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,
}
}
Emitted when the guest changes the actual BALLOON level. This value is
equivalent to the actual field return by the ’query-balloon’ command
Arguments:
actual: intactual level of the guest memory balloon in bytes
Note: this event is rate-limited.
Since: 1.2
Example:
<- { "event": "BALLOON_CHANGE",
"data": { "actual": 944766976 },
"timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
A PCI device memory region
Members:
base: intthe starting address (guest physical)
limit: intthe ending address (guest physical)
Since: 0.14.0
Information about a PCI device I/O region.
Members:
bar: intthe index of the Base Address Register for this region
type: string’io’ if the region is a PIO region ’memory’ if the region is a MMIO region
size: intmemory size
prefetch: boolean (optional)if type is ’memory’, true if the memory is prefetchable
mem_type_64: boolean (optional)if type is ’memory’, true if the BAR is 64-bit
address: intNot documented
Since: 0.14.0
Information about a bus of a PCI Bridge device
Members:
number: intprimary bus interface number. This should be the number of the bus the device resides on.
secondary: intsecondary bus interface number. This is the number of the main bus for the bridge
subordinate: intThis is the highest number bus that resides below the bridge.
io_range: PciMemoryRangeThe PIO range for all devices on this bridge
memory_range: PciMemoryRangeThe MMIO range for all devices on this bridge
prefetchable_range: PciMemoryRangeThe range of prefetchable MMIO for all devices on this bridge
Since: 2.4
Information about a PCI Bridge device
Members:
bus: PciBusInfoinformation about the bus the device resides on
devices: array of PciDeviceInfo (optional)a list of PciDeviceInfo for each device on this bridge
Since: 0.14.0
Information about the Class of a PCI device
Members:
desc: string (optional)a string description of the device’s class
class: intthe class code of the device
Since: 2.4
Information about the Id of a PCI device
Members:
device: intthe PCI device id
vendor: intthe PCI vendor id
Since: 2.4
Information about a PCI device
Members:
bus: intthe bus number of the device
slot: intthe slot the device is located in
function: intthe function of the slot used by the device
class_info: PciDeviceClassthe class of the device
id: PciDeviceIdthe PCI device id
irq: int (optional)if an IRQ is assigned to the device, the IRQ number
qdev_id: stringthe device name of the PCI device
pci_bridge: PciBridgeInfo (optional)if the device is a PCI bridge, the bridge information
regions: array of PciMemoryRegiona list of the PCI I/O regions associated with the device
Notes:
the contents of class_info.desc are not stable and should only be
treated as informational.
Since: 0.14.0
Information about a PCI bus
Members:
bus: intthe bus index
devices: array of PciDeviceInfoa list of devices on this bus
Since: 0.14.0
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.
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 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": {} }
Performs a hard reset of a guest.
Since: 0.14.0
Example:
-> { "execute": "system_reset" }
<- { "return": {} }
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": {} }
Adds CPU with specified ID
Arguments:
id: intID of CPU to be created, valid values [0..max_cpus)
Returns: Nothing on success
Since: 1.5
Example:
-> { "execute": "cpu-add", "arguments": { "id": 2 } }
<- { "return": {} }
Save a portion of guest memory to a file.
Arguments:
val: intthe virtual address of the guest to start from
size: intthe size of memory region to save
filename: stringthe file to save the memory to as binary data
cpu-index: int (optional)the index of the virtual CPU to use for translating the virtual address (defaults to CPU 0)
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": {} }
Save a portion of guest physical memory to a file.
Arguments:
val: intthe physical address of the guest to start from
size: intthe size of memory region to save
filename: stringthe file to save the memory to as binary data
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": {} }
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": {} }
Wakeup guest from suspend. Does nothing in case the guest isn’t suspended.
Since: 1.1
Returns: nothing.
Example:
-> { "execute": "system_wakeup" }
<- { "return": {} }
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": {} }
Request the balloon driver to change its balloon size.
Arguments:
value: intthe target size of the balloon in bytes
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": {} }
Execute a command on the human monitor and return the output.
Arguments:
command-line: stringthe command to execute in the human monitor
cpu-index: int (optional)The CPU to use for commands that require an implicit CPU
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" }
Members:
name: stringthe name of the property
type: stringthe type of the property. This will typically come in one of four forms:
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.
description: string (optional)if specified, the description of the property.
Since: 1.2
This command will list any properties of a object given a path in the object model.
Arguments:
path: stringthe path within the object model. See qom-get for a description of
this parameter.
Returns:
a list of ObjectPropertyInfo that describe the properties of the
object.
Since: 1.2
This command will get a property from a object model path and return the value.
Arguments:
path: stringThe path within the object model. There are two forms of supported paths–absolute and partial paths.
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.
property: stringThe property name to read
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
This command will set a property from a object model path.
Arguments:
path: stringsee qom-get for a description of this parameter
property: stringthe property name to set
value: valuea value who’s type is appropriate for the property type. See qom-get
for a description of type mapping.
Since: 1.2
This command is multiple commands multiplexed together.
Arguments:
device: stringThis is normally the name of a block device but it may also be ’vnc’.
when it’s ’vnc’, then sub command depends on target
target: stringIf device is a block device, then this is the new filename.
If device is ’vnc’, then if the value ’password’ selects the vnc
change password command. Otherwise, this specifies a new server URI
address to listen to for VNC connections.
arg: string (optional)If device is a block device, then this is an optional format to open
the device with.
If device is ’vnc’ and target is ’password’, this is the new VNC
password to set. See change-vnc-password for additional notes.
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": {} }
This structure describes a search result from qom-list-types
Members:
name: stringthe type name found in the search
abstract: boolean (optional)the type is abstract and can’t be directly instantiated. Omitted if false. (since 2.10)
parent: string (optional)Name of parent type, if any (since 2.10)
Since: 1.1
This command will return a list of types given search parameters
Arguments:
implements: string (optional)if specified, only return types that implement this type name
abstract: boolean (optional)if true, include abstract types in the results
Returns:
a list of ObjectTypeInfo or an empty list if no results are found
Since: 1.1
List properties associated with a device.
Arguments:
typename: stringthe type name of a device
Returns: a list of ObjectPropertyInfo describing a devices properties
Since: 1.2
List properties associated with a QOM object.
Arguments:
typename: stringthe type name of an object
Returns: a list of ObjectPropertyInfo describing object properties
Since: 2.12
Enable or disable the global dirty log mode.
Arguments:
enable: booleantrue to enable, false to disable.
Returns: nothing
Since: 1.3
Example:
-> { "execute": "xen-set-global-dirty-log",
"arguments": { "enable": true } }
<- { "return": {} }
Arguments:
driver: stringthe name of the new device’s driver
bus: string (optional)the device’s parent bus (device tree path)
id: string (optional)the device’s ID, must be unique
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
Remove a device from a guest
Arguments:
id: stringthe device’s ID or QOM path
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": {} }
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:
device: string (optional)device name
path: stringdevice path
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 } }
An enumeration of guest-memory-dump’s format.
Values:
elfelf format
kdump-zlibkdump-compressed format with zlib-compressed
kdump-lzokdump-compressed format with lzo-compressed
kdump-snappykdump-compressed format with snappy-compressed
Since: 2.0
Dump guest’s memory to vmcore. It is a synchronous operation that can take very long depending on the amount of guest memory.
Arguments:
paging: booleanif true, do paging to get guest’s memory mapping. This allows using gdb to process the core file.
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:
protocol: stringthe filename or file descriptor of the vmcore. The supported protocols are:
detach: boolean (optional)if true, QMP will return immediately rather than waiting for the dump to finish. The user can track progress using "query-dump". (since 2.6).
begin: int (optional)if specified, the starting physical address.
length: int (optional)if specified, the memory size, in bytes. If you don’t
want to dump all guest’s memory, please specify the start begin
and length
format: DumpGuestMemoryFormat (optional)if specified, the format of guest memory dump. But non-elf
format is conflict with paging and filter, ie. paging, begin and
length is not allowed to be specified with non-elf format at the
same time (since 2.0)
Note: All boolean arguments default to false
Returns: nothing on success
Since: 1.2
Example:
-> { "execute": "dump-guest-memory",
"arguments": { "protocol": "fd:dump" } }
<- { "return": {} }
Describe the status of a long-running background guest memory dump.
Values:
noneno dump-guest-memory has started yet.
activethere is one dump running in background.
completedthe last dump has finished successfully.
failedthe last dump has failed.
Since: 2.6
The result format for ’query-dump’.
Members:
status: DumpStatusenum of DumpStatus, which shows current dump status
completed: intbytes written in latest dump (uncompressed)
total: inttotal bytes to be written in latest dump (uncompressed)
Since: 2.6
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 } }
Emitted when background dump has completed
Arguments:
result: DumpQueryResultfinal dump status
error: string (optional)human-readable error string that provides hint on why dump failed. Only presents on failure. The user should not try to interpret the error string.
Since: 2.6
Example:
{ "event": "DUMP_COMPLETED",
"data": {"result": {"total": 1090650112, "status": "completed",
"completed": 1090650112} } }
A list of the available formats for dump-guest-memory
Members:
formats: array of DumpGuestMemoryFormatNot documented
Since: 2.0
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"] }
Dump guest’s storage keys
Arguments:
filename: stringthe path to the file to dump to
This command is only supported on s390 architecture.
Since: 2.5
Example:
-> { "execute": "dump-skeys",
"arguments": { "filename": "/tmp/skeys" } }
<- { "return": {} }
Create a QOM object.
Arguments:
qom-type: stringthe class name for the object to be created
id: stringthe name of the new object
props: value (optional)a dictionary of properties to be passed to the backend
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": {} }
Remove a QOM object.
Arguments:
id: stringthe name of the QOM object to remove
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": {} }
Receive a file descriptor via SCM rights and assign it a name
Arguments:
fdname: stringfile descriptor name
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": {} }
Close a file descriptor previously passed via SCM rights
Arguments:
fdname: stringfile descriptor name
Returns: Nothing on success
Since: 0.14.0
Example:
-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
<- { "return": {} }
Information describing a machine.
Members:
name: stringthe name of the machine
alias: string (optional)an alias for the machine name
is-default: boolean (optional)whether the machine is default
cpu-max: intmaximum number of CPUs supported by the machine type (since 1.5.0)
hotpluggable-cpus: booleancpu hotplug via -device is supported (since 2.7.0)
Since: 1.2.0
Return a list of supported machines
Returns: a list of MachineInfo
Since: 1.2.0
Virtual CPU definition.
Members:
name: stringthe name of the CPU definition
migration-safe: boolean (optional)whether a CPU definition can be safely used for migration in combination with a QEMU compatibility machine when migrating between different QMU versions and between hosts with different sets of (hardware or software) capabilities. If not provided, information is not available and callers should not assume the CPU definition to be migration-safe. (since 2.8)
static: booleanwhether a CPU definition is static and will not change depending on QEMU version, machine type, machine options and accelerator options. A static model is always migration-safe. (since 2.8)
unavailable-features: array of string (optional)List of properties that prevent the CPU model from running in the current host. (since 2.8)
typename: stringType name that can be used as argument to device-list-properties,
to introspect properties configurable using -cpu or -global.
(since 2.9)
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
Actual memory information in bytes.
Members:
base-memory: intsize of "base" memory specified with command line option -m.
plugged-memory: int (optional)size of memory that can be hot-unplugged. This field is omitted if target doesn’t support memory hotplug (i.e. CONFIG_MEM_HOTPLUG not defined on build time).
Since: 2.11.0
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
Return a list of supported virtual CPU definitions
Returns: a list of CpuDefInfo
Since: 1.2.0
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:
name: stringthe name of the CPU definition the model is based on
props: value (optional)a dictionary of QOM properties to be applied
Since: 2.8.0
An enumeration of CPU model expansion types.
Values:
staticExpand to a static CPU model, a combination of a static base model name and property delta changes. As the static base model will never change, the expanded CPU model will be the same, independent of independent of QEMU version, machine type, machine options, and accelerator options. Therefore, the resulting model can be used by tooling without having to specify a compatibility machine - e.g. when displaying the "host" model. static CPU models are migration-safe.
fullExpand all properties. The produced model is not guaranteed to be migration-safe, but allows tooling to get an insight and work with model details.
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
The result of a cpu model expansion.
Members:
model: CpuModelInfothe expanded CpuModelInfo.
Since: 2.8.0
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".
Arguments:
type: CpuModelExpansionTypeNot documented
model: CpuModelInfoNot documented
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
An enumeration of CPU model comparison results. The result is usually calculated using e.g. CPU features or CPU generations.
Values:
incompatibleIf model A is incompatible to model B, model A is not guaranteed to run where model B runs and the other way around.
identicalIf model A is identical to model B, model A is guaranteed to run where model B runs and the other way around.
supersetIf model A is a superset of model B, model B is guaranteed to run where model A runs. There are no guarantees about the other way.
subsetIf model A is a subset of model B, model A is guaranteed to run where model B runs. There are no guarantees about the other way.
Since: 2.8.0
The result of a CPU model comparison.
Members:
result: CpuModelCompareResultThe result of the compare operation.
responsible-properties: array of stringList of properties that led to the comparison result not being identical.
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
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:
modela: CpuModelInfoNot documented
modelb: CpuModelInfoNot documented
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.
Since: 2.8.0
The result of a CPU model baseline.
Members:
model: CpuModelInfothe baselined CpuModelInfo.
Since: 2.8.0
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:
modela: CpuModelInfoNot documented
modelb: CpuModelInfoNot documented
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.
Since: 2.8.0
Information about a file descriptor that was added to an fd set.
Members:
fdset-id: intThe ID of the fd set that fd was added to.
fd: intThe file descriptor that was received via SCM rights and added to the fd set.
Since: 1.2.0
Add a file descriptor, that was passed via SCM rights, to an fd set.
Arguments:
fdset-id: int (optional)The ID of the fd set to add the file descriptor to.
opaque: string (optional)A free-form string that can be used to describe the fd.
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 a file descriptor from an fd set.
Arguments:
fdset-id: intThe ID of the fd set that the file descriptor belongs to.
fd: int (optional)The file descriptor that is to be removed.
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": {} }
Information about a file descriptor that belongs to an fd set.
Members:
fd: intThe file descriptor value.
opaque: string (optional)A free-form string that can be used to describe the fd.
Since: 1.2.0
Information about an fd set.
Members:
fdset-id: intThe ID of the fd set.
fds: array of FdsetFdInfoA list of file descriptors that belong to this fd set.
Since: 1.2.0
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
}
]
}
Information describing the QEMU target.
Members:
arch: stringthe target architecture (eg "x86_64", "i386", etc)
Since: 1.2.0
Return information about the target for this QEMU
Returns: TargetInfo
Since: 1.2.0
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:
sig: string (optional)table signature / identifier (4 bytes)
rev: int (optional)table revision number (dependent on signature, 1 byte)
oem_id: string (optional)OEM identifier (6 bytes)
oem_table_id: string (optional)OEM table identifier (8 bytes)
oem_rev: int (optional)OEM-supplied revision number (4 bytes)
asl_compiler_id: string (optional)identifier of the utility that created the table (4 bytes)
asl_compiler_rev: int (optional)revision number of the utility that created the table (4 bytes)
file: string (optional)colon (:) separated list of pathnames to load and
concatenate as table data. The resultant binary blob is expected to
have an ACPI table header. At least one file is required. This field
excludes data.
data: string (optional)colon (:) separated list of pathnames to load and
concatenate as table data. The resultant binary blob must not have an
ACPI table header. At least one file is required. This field excludes
file.
Since: 1.5
Possible types for an option parameter.
Values:
stringaccepts a character string
booleanaccepts "on" or "off"
numberaccepts a number
sizeaccepts a number followed by an optional suffix (K)ilo, (M)ega, (G)iga, (T)era
Since: 1.5
Details about a single parameter of a command line option.
Members:
name: stringparameter name
type: CommandLineParameterTypeparameter CommandLineParameterType
help: string (optional)human readable text string, not suitable for parsing.
default: string (optional)default value string (since 2.1)
Since: 1.5
Details about a command line option, including its list of parameter details
Members:
option: stringoption name
parameters: array of CommandLineParameterInfoan array of CommandLineParameterInfo
Since: 1.5
Query command line option schema.
Arguments:
option: string (optional)option name
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"
}
]
}
A X86 32-bit register
Values:
EAXNot documented
EBXNot documented
ECXNot documented
EDXNot documented
ESPNot documented
EBPNot documented
ESINot documented
EDINot documented
Since: 1.5
Information about a X86 CPU feature word
Members:
cpuid-input-eax: intInput EAX value for CPUID instruction for that feature word
cpuid-input-ecx: int (optional)Input ECX value for CPUID instruction for that feature word
cpuid-register: X86CPURegister32Output register containing the feature bits
features: intvalue of output register, containing the feature bits
Since: 1.5
Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
Members:
unused: array of X86CPUFeatureWordInfoNot documented
Since: 2.5
Values:
nodeNUMA nodes configuration
distNUMA distance configuration (since 2.10)
cpuproperty based CPU(s) to node mapping (Since: 2.10)
Since: 2.1
A discriminated record of NUMA options. (for OptsVisitor)
Members:
type: NumaOptionsTypeNot documented
NumaNodeOptions when type is "node"NumaDistOptions when type is "dist"NumaCpuOptions when type is "cpu"Since: 2.1
Create a guest NUMA node. (for OptsVisitor)
Members:
nodeid: int (optional)NUMA node ID (increase by 1 from 0 if omitted)
cpus: array of int (optional)VCPUs belonging to this node (assign VCPUS round-robin if omitted)
mem: int (optional)memory size of this node; mutually exclusive with memdev.
Equally divide total memory among nodes if both mem and memdev are
omitted.
memdev: string (optional)memory backend object. If specified for one node, it must be specified for all nodes.
Since: 2.1
Set the distance between 2 NUMA nodes.
Members:
src: intsource NUMA node.
dst: intdestination NUMA node.
val: intNUMA distance from source node to destination node. When a node is unreachable from another node, set the distance between them to 255.
Since: 2.10
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:
CpuInstancePropertiesSince: 2.10
Host memory policy types
Values:
defaultrestore default policy, remove any nondefault policy
preferredset the preferred host nodes for allocation
binda strict policy that restricts memory allocation to the host nodes specified
interleavememory allocations are interleaved across the set of host nodes specified
Since: 2.1
Information about memory backend
Members:
id: string (optional)backend’s ID if backend has ’id’ property (since 2.9)
size: intmemory backend size
merge: booleanenables or disables memory merge support
dump: booleanincludes memory backend’s memory in a core dump or not
prealloc: booleanenables or disables memory preallocation
host-nodes: array of inthost nodes for its memory policy
policy: HostMemPolicymemory policy of memory backend
Since: 2.1
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"
}
]
}
PCDIMMDevice state information
Members:
id: string (optional)device’s ID
addr: intphysical address, where device is mapped
size: intsize of memory that the device provides
slot: intslot number at which device is plugged in
node: intNUMA node number where device is plugged in
memdev: stringmemory backend linked with device
hotplugged: booleantrue if device was hotplugged
hotpluggable: booleantrue if device if could be added/removed while machine is running
Since: 2.1
Union containing information about a memory device
Members:
typeOne of "dimm", "nvdimm"
data: PCDIMMDeviceInfo when type is "dimm"data: PCDIMMDeviceInfo when type is "nvdimm"Since: 2.1
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"
} ] }
Emitted when memory hot unplug error occurs.
Arguments:
device: stringdevice name
msg: stringInformative message
Since: 2.4
Example:
<- { "event": "MEM_UNPLUG_ERROR"
"data": { "device": "dimm1",
"msg": "acpi: device unplug for unsupported device"
},
"timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
Values:
DIMMmemory slot
CPUlogical CPU slot (since 2.7)
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:
device: string (optional)device ID associated with slot
slot: stringslot ID, unique per slot of a given slot-type
slot-type: ACPISlotTypetype of the slot
source: intan integer containing the source event
status: intan integer containing the status code
Since: 2.1
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}
]}
Emitted when guest executes ACPI _OST method.
Arguments:
info: ACPIOSTInfoOSPM Status Indication
Since: 2.1
Example:
<- { "event": "ACPI_DEVICE_OST",
"data": { "device": "d1", "slot": "0",
"slot-type": "DIMM", "source": 1, "status": 0 } }
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": {} }
Emitted when the guest changes the RTC time.
Arguments:
offset: intoffset between base RTC clock (as specified by -rtc base), and new RTC clock value
Note: This event is rate-limited.
Since: 0.13.0
Example:
<- { "event": "RTC_CHANGE",
"data": { "offset": 78 },
"timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
Mode of the replay subsystem.
Values:
nonenormal execution mode. Replay or record are not enabled.
recordrecord mode. All non-deterministic data is written into the replay log.
playreplay mode. Non-deterministic data required for system execution is read from the log.
Since: 2.5
Load the state of all devices from file. The RAM and the block devices of the VM are not loaded by this command.
Arguments:
filename: stringthe file to load the state of the devices from as binary data. See xen-save-devices-state.txt for a description of the binary format.
Since: 2.7
Example:
-> { "execute": "xen-load-devices-state",
"arguments": { "filename": "/tmp/resume" } }
<- { "return": {} }
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:
version: intversion of GIC to be described. Currently, only 2 and 3 are supported.
emulated: booleanwhether current QEMU/hardware supports emulated GIC device in user space.
kernel: booleanwhether current QEMU/hardware supports hardware accelerated GIC device in kernel.
Since: 2.6
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 } ] }
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:
node-id: int (optional)NUMA node ID the CPU belongs to
socket-id: int (optional)socket number within node/board the CPU belongs to
core-id: int (optional)core number within socket the CPU belongs to
thread-id: int (optional)thread number within core the CPU belongs to
Note: currently there are 4 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
Members:
type: stringCPU object type for usage with device_add command
props: CpuInstancePropertieslist of properties to be used for hotplugging CPU
vcpus-count: intnumber of logical VCPU threads HotpluggableCPU provides
qom-path: string (optional)link to existing CPU object if CPU is present or omitted if CPU is not present.
Since: 2.7
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 }
}
]}
GUID information.
Members:
guid: stringthe globally unique identifier
Since: 2.9
Show Virtual Machine Generation ID
Since: 2.9
An enumeration of SEV state information used during query-sev.
Values:
uninitThe guest is uninitialized.
launch-updateThe guest is currently being launched; plaintext data and register state is being imported.
launch-secretThe guest is currently being launched; ciphertext data is being imported.
runningThe guest is fully launched or migrated in.
send-updateThe guest is currently being migrated out to another machine.
receive-updateThe guest is currently being migrated from another machine.
Since: 2.12
Information about Secure Encrypted Virtualization (SEV) support
Members:
enabled: booleantrue if SEV is active
api-major: intSEV API major version
api-minor: intSEV API minor version
build-id: intSEV FW build id
policy: intSEV policy value
state: SevStateSEV guest state
handle: intSEV firmware handle
Since: 2.12
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 } }
SEV Guest Launch measurement information
Members:
data: stringthe measurement value encoded in base64
Since: 2.12
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" } }
The struct describes capability for a Secure Encrypted Virtualization feature.
Members:
pdh: stringPlatform Diffie-Hellman key (base64 encoded)
cert-chain: stringPDH certificate chain (base64 encoded)
cbitpos: intC-bit location in page table entry
reduced-phys-bits: intNumber of physical Address bit reduction when SEV is enabled
Since: 2.12
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}}
Reasons that caused one command to be dropped.
Values:
queue-fullthe command queue is full. This can only occur when the client sends a new non-oob command before the response to the previous non-oob command has been received.
Since: 2.12
Emitted when a command is dropped due to some reason. Commands can only be dropped when the oob capability is enabled.
Arguments:
id: valueThe dropped command’s "id" field.
reason: CommandDropReasonThe reason why the command is dropped.
Since: 2.12
Example:
{ "event": "COMMAND_DROPPED",
"data": {"result": {"id": "libvirt-102",
"reason": "queue-full" } } }
Test OOB functionality. When sending this command with lock=true, it’ll try to hang the dispatcher. When sending it with lock=false, it’ll try to notify the locked thread to continue. Note: it should only be used by QMP test program rather than anything else.
Arguments:
lock: booleanNot documented
Since: 2.12
Example:
{ "execute": "x-oob-test",
"arguments": { "lock": true } }
| Jump to: | A B C D E G H I M N O P Q R S T V W X |
|---|
| Jump to: | A B C D E G H I M N O P Q R S T V W X |
|---|
| Jump to: | A B C D E F G H I J K L M N O P Q R S T U V W X |
|---|
| Jump to: | A B C D E F G H I J K L M N O P Q R S T U V W X |
|---|